diff --git a/package.json b/package.json index 7a3672e..19a998e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@usagi-coffee/tree-sitter-abl", - "version": "0.0.38", + "version": "0.0.39", "description": "ABL grammar for tree-sitter", "main": "bindings/node", "scripts": { diff --git a/src/grammar.json b/src/grammar.json index ea479f1..c1d09ad 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -473,7 +473,7 @@ }, "logical_expression": { "type": "PREC_RIGHT", - "value": 2, + "value": 3, "content": { "type": "SEQ", "members": [ @@ -593,7 +593,7 @@ "members": [ { "type": "PREC_LEFT", - "value": 7, + "value": 8, "content": { "type": "SEQ", "members": [ @@ -626,7 +626,7 @@ }, { "type": "PREC_LEFT", - "value": 2, + "value": 3, "content": { "type": "SEQ", "members": [ @@ -648,7 +648,7 @@ }, { "type": "PREC_LEFT", - "value": 2, + "value": 3, "content": { "type": "SYMBOL", "name": "_expression" @@ -895,7 +895,7 @@ }, "additive_expression": { "type": "PREC_LEFT", - "value": 4, + "value": 5, "content": { "type": "CHOICE", "members": [ @@ -950,7 +950,7 @@ }, "multiplicative_expression": { "type": "PREC_LEFT", - "value": 5, + "value": 6, "content": { "type": "CHOICE", "members": [ @@ -1148,8 +1148,8 @@ ] }, "comparison_expression": { - "type": "PREC_LEFT", - "value": 3, + "type": "PREC_RIGHT", + "value": 4, "content": { "type": "SEQ", "members": [ @@ -1694,60 +1694,90 @@ ] }, "assignment": { - "type": "SEQ", - "members": [ - { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { + "type": "PREC_RIGHT", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "qualified_name" + }, + { + "type": "SYMBOL", + "name": "object_access" + }, + { + "type": "SYMBOL", + "name": "member_access" + } + ] + } + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { "type": "SYMBOL", - "name": "identifier" + "name": "_augmented_assignment" } - }, - { - "type": "SYMBOL", - "name": "qualified_name" - }, + ] + } + }, + { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "CHOICE", + "members": [ { "type": "SYMBOL", - "name": "object_access" + "name": "when_expression" }, { - "type": "SYMBOL", - "name": "member_access" + "type": "BLANK" } ] } - }, - { - "type": "STRING", - "value": "=" - }, + ] + } + }, + "variable_assignment": { + "type": "SEQ", + "members": [ { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SYMBOL", - "name": "_expression" - } + "type": "SYMBOL", + "name": "assignment" }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "when_expression" - }, - { - "type": "BLANK" - } - ] + "type": "SYMBOL", + "name": "_terminator" } ] }, @@ -2261,19 +2291,6 @@ } ] }, - "variable_assignment": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "assignment" - }, - { - "type": "SYMBOL", - "name": "_terminator" - } - ] - }, "buffer_definition": { "type": "SEQ", "members": [ @@ -6419,8 +6436,21 @@ "type": "FIELD", "name": "object", "content": { - "type": "SYMBOL", - "name": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "new_expression" + }, + { + "type": "SYMBOL", + "name": "function_call" + } + ] } }, { @@ -10114,8 +10144,12 @@ { "type": "REPEAT", "content": { - "type": "SYMBOL", - "name": "_expression" + "type": "PREC", + "value": -1, + "content": { + "type": "SYMBOL", + "name": "_expression" + } } }, { @@ -10146,8 +10180,13 @@ { "type": "REPEAT", "content": { - "type": "SYMBOL", - "name": "assignment" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "assignment" + } + ] } }, { @@ -21395,6 +21434,10 @@ "type": "SYMBOL", "name": "_and_operator" }, + { + "type": "SYMBOL", + "name": "_augmented_assignment" + }, { "type": "SYMBOL", "name": "_escaped_string" diff --git a/src/node-types.json b/src/node-types.json index 155fb63..10a2cef 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -514,11 +514,33 @@ "fields": { "name": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "identifier", "named": true + }, + { + "type": "member_access", + "named": true + }, + { + "type": "object_access", + "named": true + }, + { + "type": "qualified_name", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "=", + "named": false } ] } @@ -2298,9 +2320,17 @@ "multiple": false, "required": true, "types": [ + { + "type": "function_call", + "named": true + }, { "type": "identifier", "named": true + }, + { + "type": "new_expression", + "named": true } ] }, diff --git a/src/parser.c b/src/parser.c index 330c67c..6d3ab98 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,15 +14,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 6708 -#define LARGE_STATE_COUNT 199 -#define SYMBOL_COUNT 534 +#define STATE_COUNT 6818 +#define LARGE_STATE_COUNT 207 +#define SYMBOL_COUNT 535 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 305 -#define EXTERNAL_TOKEN_COUNT 7 -#define FIELD_COUNT 26 +#define TOKEN_COUNT 306 +#define EXTERNAL_TOKEN_COUNT 8 +#define FIELD_COUNT 27 #define MAX_ALIAS_SEQUENCE_LENGTH 15 -#define PRODUCTION_ID_COUNT 62 +#define PRODUCTION_ID_COUNT 63 enum { sym_identifier = 1, @@ -327,237 +327,238 @@ enum { sym__namedoublecolon = 300, sym__or_operator = 301, sym__and_operator = 302, - sym__escaped_string = 303, - sym__special_character = 304, - sym_source_code = 305, - sym_body = 306, - sym_dot_body = 307, - sym_comment = 308, - sym_constant = 309, - sym_qualified_name = 310, - sym__block_terminator = 311, - sym_boolean_literal = 312, - sym__decimal_literal = 313, - sym_number_literal = 314, - sym_string_literal = 315, - sym_array_literal = 316, - sym_double_quoted_string = 317, - sym_parenthesized_expression = 318, - sym__logical_operator = 319, - sym_logical_expression = 320, - sym_type_tuning = 321, - sym__unary_minus_expressions = 322, - sym_unary_expression = 323, - sym_ambiguous_expression = 324, - sym_temp_table_expression = 325, - sym_current_changed_expression = 326, - sym_locked_expression = 327, - sym_dataset_expression = 328, - sym_input_expression = 329, - sym__additive_operator = 330, - sym_additive_expression = 331, - sym__multiplicative_operator = 332, - sym_multiplicative_expression = 333, - sym__comparison_operator = 334, - sym_comparison_expression = 335, - sym__binary_expression = 336, - sym_array_access = 337, - sym_include_argument = 338, - sym_include = 339, - sym_primitive_type = 340, - sym_class_type = 341, - sym__type = 342, - sym_when_expression = 343, - sym_assignment = 344, - sym_variable_tuning = 345, - sym_scope_tuning = 346, - sym_access_tuning = 347, - sym_serialization_tuning = 348, - sym_variable_definition = 349, - sym_variable_assignment = 350, - sym_buffer_definition = 351, - sym_query_definition_tuning = 352, - sym_query_fields = 353, - sym_query_definition = 354, - sym_return_type = 355, - sym_function_call_statement = 356, - sym_argument_mode = 357, - sym_argument_pass_type = 358, - sym__function_argument_with_mode = 359, - sym_function_call_argument = 360, - sym_function_arguments = 361, - sym_function_call = 362, - sym_if_statement = 363, - sym_else_statement = 364, - sym_ternary_expression = 365, - sym_label = 366, - sym_while_phrase = 367, - sym_repeat_tuning = 368, - sym_repeat_statement = 369, - sym__procedure_terminator = 370, - sym_procedure_statement = 371, - sym_procedure_parameter_definition = 372, - sym__function_terminator = 373, - sym_function_parameter_mode = 374, - sym_function_parameter_tuning = 375, - sym_function_parameter = 376, - sym_function_parameters = 377, - sym_function_statement = 378, - sym_return_statement = 379, - sym_interface_body = 380, - sym_interface_tuning = 381, - sym_interface_statement = 382, - sym_property_type = 383, - sym_property_tuning = 384, - sym_getter = 385, - sym_setter = 386, - sym_property_definition = 387, - sym_event_definition = 388, - sym_method_tuning = 389, - sym_method_definition = 390, - sym_data_relation = 391, - sym_dataset_definition = 392, - sym_using_statement = 393, - sym_class_body = 394, - sym_constructor_definition = 395, - sym_destructor_definition = 396, - sym_class_tuning = 397, - sym_class_statement = 398, - sym_inherits = 399, - sym_implements = 400, - sym_use_widget_pool = 401, - sym_abstract = 402, - sym_final = 403, - sym_serializable = 404, - sym_new_expression = 405, - sym_object_access = 406, - sym_member_access = 407, - sym_stream_definition = 408, - sym_input_close_statement = 409, - sym_output_close_statement = 410, - sym__stream_statement = 411, - sym_input_stream_tuning = 412, - sym_input_stream_statement = 413, - sym_output_stream_tuning = 414, - sym_output_stream_statement = 415, - sym_on_error_phrase = 416, - sym_on_stop_phrase = 417, - sym_on_quit_phrase = 418, - sym_stop_after_phrase = 419, - sym_do_tuning = 420, - sym_to_phrase = 421, - sym_do_block = 422, - sym__case_terminator = 423, - sym__case_branch_body = 424, - sym_case_conditon = 425, - sym_case_when_branch = 426, - sym_case_otherwise_branch = 427, - sym_case_body = 428, - sym_case_statement = 429, - sym_where_clause = 430, - sym__pre_tuning = 431, - sym_query_tuning = 432, - sym_sort_order = 433, - sym_sort_column = 434, - sym_sort_clause = 435, - sym_for_phrase = 436, - sym_for_statement = 437, - sym__find_type = 438, - sym_find_statement = 439, - sym_can_find_expression = 440, - sym_of = 441, - sym_using = 442, - sym_using_field = 443, - sym_abl_statement = 444, - sym_assign_statement = 445, - sym_catch_statement = 446, - sym_finally_statement = 447, - sym_accumulate_aggregate = 448, - sym_accumulate_statement = 449, - sym_accumulate_expression = 450, - sym_available_expression = 451, - sym_undo_statement = 452, - sym_error_scope_statement = 453, - sym_temp_table_tuning = 454, - sym_field_option = 455, - sym_field_definition = 456, - sym_index_tuning = 457, - sym_index_definition = 458, - sym_workfile_tuning = 459, - sym_workfile_definition = 460, - sym_temp_table_definition = 461, - sym_widget_field = 462, - sym_widget_phrase = 463, - sym_on_statement = 464, - sym_data_source_definition = 465, - sym_prompt_for_statement = 466, - sym_variable = 467, - sym_var_statement = 468, - sym_image_phrase = 469, - sym_size_phrase = 470, - sym_button_tuning = 471, - sym_button_definition = 472, - sym_run_tuning = 473, - sym_run_statement = 474, - sym__expression = 475, - sym__statement = 476, - aux_sym_source_code_repeat1 = 477, - aux_sym_qualified_name_repeat1 = 478, - aux_sym_array_literal_repeat1 = 479, - aux_sym_double_quoted_string_repeat1 = 480, - aux_sym_include_repeat1 = 481, - aux_sym_include_repeat2 = 482, - aux_sym_variable_definition_repeat1 = 483, - aux_sym_variable_definition_repeat2 = 484, - aux_sym_buffer_definition_repeat1 = 485, - aux_sym_query_fields_repeat1 = 486, - aux_sym_query_definition_repeat1 = 487, - aux_sym_function_arguments_repeat1 = 488, - aux_sym_if_statement_repeat1 = 489, - aux_sym_repeat_statement_repeat1 = 490, - aux_sym_function_parameter_repeat1 = 491, - aux_sym_function_parameters_repeat1 = 492, - aux_sym_interface_body_repeat1 = 493, - aux_sym_interface_statement_repeat1 = 494, - aux_sym_property_definition_repeat1 = 495, - aux_sym_property_definition_repeat2 = 496, - aux_sym_property_definition_repeat3 = 497, - aux_sym_event_definition_repeat1 = 498, - aux_sym_method_definition_repeat1 = 499, - aux_sym_data_relation_repeat1 = 500, - aux_sym_class_body_repeat1 = 501, - aux_sym_destructor_definition_repeat1 = 502, - aux_sym_class_statement_repeat1 = 503, - aux_sym_inherits_repeat1 = 504, - aux_sym_object_access_repeat1 = 505, - aux_sym_member_access_repeat1 = 506, - aux_sym_input_stream_statement_repeat1 = 507, - aux_sym_output_stream_statement_repeat1 = 508, - aux_sym_do_block_repeat1 = 509, - aux_sym_case_when_branch_repeat1 = 510, - aux_sym_case_body_repeat1 = 511, - aux_sym_sort_clause_repeat1 = 512, - aux_sym_for_phrase_repeat1 = 513, - aux_sym_for_phrase_repeat2 = 514, - aux_sym_for_statement_repeat1 = 515, - aux_sym_can_find_expression_repeat1 = 516, - aux_sym_using_repeat1 = 517, - aux_sym_abl_statement_repeat1 = 518, - aux_sym_assign_statement_repeat1 = 519, - aux_sym_accumulate_statement_repeat1 = 520, - aux_sym_field_definition_repeat1 = 521, - aux_sym_index_definition_repeat1 = 522, - aux_sym_workfile_definition_repeat1 = 523, - aux_sym_workfile_definition_repeat2 = 524, - aux_sym_workfile_definition_repeat3 = 525, - aux_sym_temp_table_definition_repeat1 = 526, - aux_sym_temp_table_definition_repeat2 = 527, - aux_sym_widget_phrase_repeat1 = 528, - aux_sym_on_statement_repeat1 = 529, - aux_sym_on_statement_repeat2 = 530, - aux_sym_var_statement_repeat1 = 531, - aux_sym_button_definition_repeat1 = 532, - aux_sym_run_statement_repeat1 = 533, + sym__augmented_assignment = 303, + sym__escaped_string = 304, + sym__special_character = 305, + sym_source_code = 306, + sym_body = 307, + sym_dot_body = 308, + sym_comment = 309, + sym_constant = 310, + sym_qualified_name = 311, + sym__block_terminator = 312, + sym_boolean_literal = 313, + sym__decimal_literal = 314, + sym_number_literal = 315, + sym_string_literal = 316, + sym_array_literal = 317, + sym_double_quoted_string = 318, + sym_parenthesized_expression = 319, + sym__logical_operator = 320, + sym_logical_expression = 321, + sym_type_tuning = 322, + sym__unary_minus_expressions = 323, + sym_unary_expression = 324, + sym_ambiguous_expression = 325, + sym_temp_table_expression = 326, + sym_current_changed_expression = 327, + sym_locked_expression = 328, + sym_dataset_expression = 329, + sym_input_expression = 330, + sym__additive_operator = 331, + sym_additive_expression = 332, + sym__multiplicative_operator = 333, + sym_multiplicative_expression = 334, + sym__comparison_operator = 335, + sym_comparison_expression = 336, + sym__binary_expression = 337, + sym_array_access = 338, + sym_include_argument = 339, + sym_include = 340, + sym_primitive_type = 341, + sym_class_type = 342, + sym__type = 343, + sym_when_expression = 344, + sym_assignment = 345, + sym_variable_assignment = 346, + sym_variable_tuning = 347, + sym_scope_tuning = 348, + sym_access_tuning = 349, + sym_serialization_tuning = 350, + sym_variable_definition = 351, + sym_buffer_definition = 352, + sym_query_definition_tuning = 353, + sym_query_fields = 354, + sym_query_definition = 355, + sym_return_type = 356, + sym_function_call_statement = 357, + sym_argument_mode = 358, + sym_argument_pass_type = 359, + sym__function_argument_with_mode = 360, + sym_function_call_argument = 361, + sym_function_arguments = 362, + sym_function_call = 363, + sym_if_statement = 364, + sym_else_statement = 365, + sym_ternary_expression = 366, + sym_label = 367, + sym_while_phrase = 368, + sym_repeat_tuning = 369, + sym_repeat_statement = 370, + sym__procedure_terminator = 371, + sym_procedure_statement = 372, + sym_procedure_parameter_definition = 373, + sym__function_terminator = 374, + sym_function_parameter_mode = 375, + sym_function_parameter_tuning = 376, + sym_function_parameter = 377, + sym_function_parameters = 378, + sym_function_statement = 379, + sym_return_statement = 380, + sym_interface_body = 381, + sym_interface_tuning = 382, + sym_interface_statement = 383, + sym_property_type = 384, + sym_property_tuning = 385, + sym_getter = 386, + sym_setter = 387, + sym_property_definition = 388, + sym_event_definition = 389, + sym_method_tuning = 390, + sym_method_definition = 391, + sym_data_relation = 392, + sym_dataset_definition = 393, + sym_using_statement = 394, + sym_class_body = 395, + sym_constructor_definition = 396, + sym_destructor_definition = 397, + sym_class_tuning = 398, + sym_class_statement = 399, + sym_inherits = 400, + sym_implements = 401, + sym_use_widget_pool = 402, + sym_abstract = 403, + sym_final = 404, + sym_serializable = 405, + sym_new_expression = 406, + sym_object_access = 407, + sym_member_access = 408, + sym_stream_definition = 409, + sym_input_close_statement = 410, + sym_output_close_statement = 411, + sym__stream_statement = 412, + sym_input_stream_tuning = 413, + sym_input_stream_statement = 414, + sym_output_stream_tuning = 415, + sym_output_stream_statement = 416, + sym_on_error_phrase = 417, + sym_on_stop_phrase = 418, + sym_on_quit_phrase = 419, + sym_stop_after_phrase = 420, + sym_do_tuning = 421, + sym_to_phrase = 422, + sym_do_block = 423, + sym__case_terminator = 424, + sym__case_branch_body = 425, + sym_case_conditon = 426, + sym_case_when_branch = 427, + sym_case_otherwise_branch = 428, + sym_case_body = 429, + sym_case_statement = 430, + sym_where_clause = 431, + sym__pre_tuning = 432, + sym_query_tuning = 433, + sym_sort_order = 434, + sym_sort_column = 435, + sym_sort_clause = 436, + sym_for_phrase = 437, + sym_for_statement = 438, + sym__find_type = 439, + sym_find_statement = 440, + sym_can_find_expression = 441, + sym_of = 442, + sym_using = 443, + sym_using_field = 444, + sym_abl_statement = 445, + sym_assign_statement = 446, + sym_catch_statement = 447, + sym_finally_statement = 448, + sym_accumulate_aggregate = 449, + sym_accumulate_statement = 450, + sym_accumulate_expression = 451, + sym_available_expression = 452, + sym_undo_statement = 453, + sym_error_scope_statement = 454, + sym_temp_table_tuning = 455, + sym_field_option = 456, + sym_field_definition = 457, + sym_index_tuning = 458, + sym_index_definition = 459, + sym_workfile_tuning = 460, + sym_workfile_definition = 461, + sym_temp_table_definition = 462, + sym_widget_field = 463, + sym_widget_phrase = 464, + sym_on_statement = 465, + sym_data_source_definition = 466, + sym_prompt_for_statement = 467, + sym_variable = 468, + sym_var_statement = 469, + sym_image_phrase = 470, + sym_size_phrase = 471, + sym_button_tuning = 472, + sym_button_definition = 473, + sym_run_tuning = 474, + sym_run_statement = 475, + sym__expression = 476, + sym__statement = 477, + aux_sym_source_code_repeat1 = 478, + aux_sym_qualified_name_repeat1 = 479, + aux_sym_array_literal_repeat1 = 480, + aux_sym_double_quoted_string_repeat1 = 481, + aux_sym_include_repeat1 = 482, + aux_sym_include_repeat2 = 483, + aux_sym_variable_definition_repeat1 = 484, + aux_sym_variable_definition_repeat2 = 485, + aux_sym_buffer_definition_repeat1 = 486, + aux_sym_query_fields_repeat1 = 487, + aux_sym_query_definition_repeat1 = 488, + aux_sym_function_arguments_repeat1 = 489, + aux_sym_if_statement_repeat1 = 490, + aux_sym_repeat_statement_repeat1 = 491, + aux_sym_function_parameter_repeat1 = 492, + aux_sym_function_parameters_repeat1 = 493, + aux_sym_interface_body_repeat1 = 494, + aux_sym_interface_statement_repeat1 = 495, + aux_sym_property_definition_repeat1 = 496, + aux_sym_property_definition_repeat2 = 497, + aux_sym_property_definition_repeat3 = 498, + aux_sym_event_definition_repeat1 = 499, + aux_sym_method_definition_repeat1 = 500, + aux_sym_data_relation_repeat1 = 501, + aux_sym_class_body_repeat1 = 502, + aux_sym_destructor_definition_repeat1 = 503, + aux_sym_class_statement_repeat1 = 504, + aux_sym_inherits_repeat1 = 505, + aux_sym_object_access_repeat1 = 506, + aux_sym_member_access_repeat1 = 507, + aux_sym_input_stream_statement_repeat1 = 508, + aux_sym_output_stream_statement_repeat1 = 509, + aux_sym_do_block_repeat1 = 510, + aux_sym_case_when_branch_repeat1 = 511, + aux_sym_case_body_repeat1 = 512, + aux_sym_sort_clause_repeat1 = 513, + aux_sym_for_phrase_repeat1 = 514, + aux_sym_for_phrase_repeat2 = 515, + aux_sym_for_statement_repeat1 = 516, + aux_sym_can_find_expression_repeat1 = 517, + aux_sym_using_repeat1 = 518, + aux_sym_abl_statement_repeat1 = 519, + aux_sym_assign_statement_repeat1 = 520, + aux_sym_accumulate_statement_repeat1 = 521, + aux_sym_field_definition_repeat1 = 522, + aux_sym_index_definition_repeat1 = 523, + aux_sym_workfile_definition_repeat1 = 524, + aux_sym_workfile_definition_repeat2 = 525, + aux_sym_workfile_definition_repeat3 = 526, + aux_sym_temp_table_definition_repeat1 = 527, + aux_sym_temp_table_definition_repeat2 = 528, + aux_sym_widget_phrase_repeat1 = 529, + aux_sym_on_statement_repeat1 = 530, + aux_sym_on_statement_repeat2 = 531, + aux_sym_var_statement_repeat1 = 532, + aux_sym_button_definition_repeat1 = 533, + aux_sym_run_statement_repeat1 = 534, }; static const char * const ts_symbol_names[] = { @@ -864,6 +865,7 @@ static const char * const ts_symbol_names[] = { [sym__namedoublecolon] = "::", [sym__or_operator] = "OR", [sym__and_operator] = "AND", + [sym__augmented_assignment] = "_augmented_assignment", [sym__escaped_string] = "_escaped_string", [sym__special_character] = "_special_character", [sym_source_code] = "source_code", @@ -906,12 +908,12 @@ static const char * const ts_symbol_names[] = { [sym__type] = "_type", [sym_when_expression] = "when_expression", [sym_assignment] = "assignment", + [sym_variable_assignment] = "variable_assignment", [sym_variable_tuning] = "variable_tuning", [sym_scope_tuning] = "scope_tuning", [sym_access_tuning] = "access_tuning", [sym_serialization_tuning] = "serialization_tuning", [sym_variable_definition] = "variable_definition", - [sym_variable_assignment] = "variable_assignment", [sym_buffer_definition] = "buffer_definition", [sym_query_definition_tuning] = "query_definition_tuning", [sym_query_fields] = "query_fields", @@ -1401,6 +1403,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__namedoublecolon] = sym__namedoublecolon, [sym__or_operator] = sym__or_operator, [sym__and_operator] = sym__and_operator, + [sym__augmented_assignment] = sym__augmented_assignment, [sym__escaped_string] = sym__escaped_string, [sym__special_character] = sym__special_character, [sym_source_code] = sym_source_code, @@ -1443,12 +1446,12 @@ static const TSSymbol ts_symbol_map[] = { [sym__type] = sym__type, [sym_when_expression] = sym_when_expression, [sym_assignment] = sym_assignment, + [sym_variable_assignment] = sym_variable_assignment, [sym_variable_tuning] = sym_variable_tuning, [sym_scope_tuning] = sym_scope_tuning, [sym_access_tuning] = sym_access_tuning, [sym_serialization_tuning] = sym_serialization_tuning, [sym_variable_definition] = sym_variable_definition, - [sym_variable_assignment] = sym_variable_assignment, [sym_buffer_definition] = sym_buffer_definition, [sym_query_definition_tuning] = sym_query_definition_tuning, [sym_query_fields] = sym_query_fields, @@ -2847,6 +2850,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [sym__augmented_assignment] = { + .visible = false, + .named = true, + }, [sym__escaped_string] = { .visible = false, .named = true, @@ -3015,6 +3022,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_variable_assignment] = { + .visible = true, + .named = true, + }, [sym_variable_tuning] = { .visible = true, .named = true, @@ -3035,10 +3046,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_variable_assignment] = { - .visible = true, - .named = true, - }, [sym_buffer_definition] = { .visible = true, .named = true, @@ -3788,20 +3795,21 @@ enum { field_label = 10, field_name = 11, field_object = 12, - field_procedure = 13, - field_property = 14, - field_size = 15, - field_source = 16, - field_statement = 17, - field_stream = 18, - field_stream_handle = 19, - field_table = 20, - field_target = 21, - field_then = 22, - field_type = 23, - field_value = 24, - field_variable = 25, - field_width = 26, + field_operator = 13, + field_procedure = 14, + field_property = 15, + field_size = 16, + field_source = 17, + field_statement = 18, + field_stream = 19, + field_stream_handle = 20, + field_table = 21, + field_target = 22, + field_then = 23, + field_type = 24, + field_value = 25, + field_variable = 26, + field_width = 27, }; static const char * const ts_field_names[] = { @@ -3818,6 +3826,7 @@ static const char * const ts_field_names[] = { [field_label] = "label", [field_name] = "name", [field_object] = "object", + [field_operator] = "operator", [field_procedure] = "procedure", [field_property] = "property", [field_size] = "size", @@ -3841,59 +3850,60 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [4] = {.index = 4, .length = 1}, [5] = {.index = 5, .length = 1}, [6] = {.index = 6, .length = 1}, - [7] = {.index = 7, .length = 1}, - [8] = {.index = 8, .length = 1}, - [9] = {.index = 9, .length = 2}, - [10] = {.index = 11, .length = 1}, - [12] = {.index = 12, .length = 1}, - [13] = {.index = 13, .length = 1}, - [14] = {.index = 14, .length = 1}, - [15] = {.index = 15, .length = 1}, - [16] = {.index = 16, .length = 1}, - [17] = {.index = 17, .length = 1}, - [18] = {.index = 18, .length = 1}, - [19] = {.index = 19, .length = 2}, - [21] = {.index = 21, .length = 1}, - [22] = {.index = 22, .length = 2}, - [23] = {.index = 24, .length = 1}, - [24] = {.index = 25, .length = 1}, - [25] = {.index = 26, .length = 1}, - [26] = {.index = 27, .length = 1}, - [27] = {.index = 28, .length = 1}, - [28] = {.index = 29, .length = 1}, - [29] = {.index = 30, .length = 1}, - [30] = {.index = 31, .length = 1}, - [31] = {.index = 32, .length = 1}, - [32] = {.index = 33, .length = 2}, + [7] = {.index = 7, .length = 2}, + [8] = {.index = 9, .length = 1}, + [9] = {.index = 10, .length = 1}, + [10] = {.index = 11, .length = 2}, + [11] = {.index = 13, .length = 1}, + [13] = {.index = 14, .length = 1}, + [14] = {.index = 15, .length = 1}, + [15] = {.index = 16, .length = 1}, + [16] = {.index = 17, .length = 1}, + [17] = {.index = 18, .length = 1}, + [18] = {.index = 19, .length = 1}, + [19] = {.index = 20, .length = 1}, + [20] = {.index = 21, .length = 2}, + [22] = {.index = 23, .length = 1}, + [23] = {.index = 24, .length = 2}, + [24] = {.index = 26, .length = 1}, + [25] = {.index = 27, .length = 1}, + [26] = {.index = 28, .length = 1}, + [27] = {.index = 29, .length = 1}, + [28] = {.index = 30, .length = 1}, + [29] = {.index = 31, .length = 1}, + [30] = {.index = 32, .length = 1}, + [31] = {.index = 33, .length = 1}, + [32] = {.index = 34, .length = 1}, [33] = {.index = 35, .length = 2}, - [34] = {.index = 37, .length = 1}, - [35] = {.index = 38, .length = 2}, + [34] = {.index = 37, .length = 2}, + [35] = {.index = 39, .length = 1}, [36] = {.index = 40, .length = 2}, [37] = {.index = 42, .length = 2}, - [38] = {.index = 44, .length = 1}, - [39] = {.index = 45, .length = 2}, - [40] = {.index = 47, .length = 1}, - [41] = {.index = 48, .length = 1}, - [42] = {.index = 49, .length = 2}, - [43] = {.index = 51, .length = 1}, - [44] = {.index = 52, .length = 2}, - [45] = {.index = 54, .length = 3}, - [46] = {.index = 57, .length = 2}, + [38] = {.index = 44, .length = 2}, + [39] = {.index = 46, .length = 1}, + [40] = {.index = 47, .length = 2}, + [41] = {.index = 49, .length = 1}, + [42] = {.index = 50, .length = 1}, + [43] = {.index = 51, .length = 2}, + [44] = {.index = 53, .length = 1}, + [45] = {.index = 54, .length = 2}, + [46] = {.index = 56, .length = 3}, [47] = {.index = 59, .length = 2}, [48] = {.index = 61, .length = 2}, [49] = {.index = 63, .length = 2}, - [50] = {.index = 65, .length = 1}, - [51] = {.index = 66, .length = 1}, - [52] = {.index = 67, .length = 2}, - [53] = {.index = 69, .length = 1}, - [54] = {.index = 15, .length = 1}, - [55] = {.index = 70, .length = 2}, + [50] = {.index = 65, .length = 2}, + [51] = {.index = 67, .length = 1}, + [52] = {.index = 68, .length = 1}, + [53] = {.index = 69, .length = 2}, + [54] = {.index = 71, .length = 1}, + [55] = {.index = 17, .length = 1}, [56] = {.index = 72, .length = 2}, - [57] = {.index = 74, .length = 1}, - [58] = {.index = 75, .length = 3}, - [59] = {.index = 27, .length = 1}, - [60] = {.index = 78, .length = 1}, - [61] = {.index = 79, .length = 2}, + [57] = {.index = 74, .length = 2}, + [58] = {.index = 76, .length = 1}, + [59] = {.index = 77, .length = 3}, + [60] = {.index = 29, .length = 1}, + [61] = {.index = 80, .length = 1}, + [62] = {.index = 81, .length = 2}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3911,150 +3921,153 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [6] = {field_property, 1}, [7] = + {field_name, 0}, + {field_operator, 1}, + [9] = {field_table, 1}, - [8] = + [10] = {field_field, 1}, - [9] = + [11] = {field_property, 0, .inherited = true}, {field_property, 1, .inherited = true}, - [11] = + [13] = {field_condition, 1}, - [12] = + [14] = {field_procedure, 1}, - [13] = + [15] = {field_frame, 2}, - [14] = + [16] = {field_target, 2}, - [15] = + [17] = {field_name, 2}, - [16] = + [18] = {field_type, 1}, - [17] = + [19] = {field_name, 1}, - [18] = + [20] = {field_field, 0}, - [19] = + [21] = {field_table, 2}, {field_type, 1}, - [21] = + [23] = {field_array, 0}, - [22] = + [24] = {field_field, 3}, {field_frame, 2}, - [24] = + [26] = {field_table, 2}, - [25] = + [27] = {field_stream, 2}, - [26] = + [28] = {field_stream_handle, 2}, - [27] = + [29] = {field_name, 3}, - [28] = + [30] = {field_table, 0}, - [29] = + [31] = {field_column, 0}, - [30] = + [32] = {field_label, 1}, - [31] = + [33] = {field_label, 3}, - [32] = + [34] = {field_frame, 3}, - [33] = + [35] = {field_name, 1}, {field_value, 3}, - [35] = + [37] = {field_constant, 3}, {field_table, 2}, - [37] = + [39] = {field_table, 3}, - [38] = + [40] = {field_source, 2}, {field_target, 4}, - [40] = + [42] = {field_name, 2}, {field_table, 4}, - [42] = + [44] = {field_table, 1}, {field_type, 0}, - [44] = + [46] = {field_label, 4}, - [45] = + [47] = {field_label, 1}, {field_label, 4}, - [47] = + [49] = {field_statement, 2, .inherited = true}, - [48] = + [50] = {field_statement, 1, .inherited = true}, - [49] = + [51] = {field_field, 2}, {field_frame, 1}, - [51] = + [53] = {field_size, 3}, - [52] = + [54] = {field_table, 3}, {field_type, 2}, - [54] = + [56] = {field_condition, 1}, {field_else, 5}, {field_then, 3}, - [57] = + [59] = {field_constant, 4}, {field_table, 3}, - [59] = + [61] = {field_name, 2}, {field_table, 5}, - [61] = + [63] = {field_height, 3}, {field_width, 1}, - [63] = + [65] = {field_name, 3}, {field_table, 5}, - [65] = + [67] = {field_label, 5}, - [66] = + [68] = {field_statement, 3, .inherited = true}, - [67] = + [69] = {field_type, 3}, {field_variable, 1}, - [69] = + [71] = {field_size, 4}, - [70] = + [72] = {field_name, 3}, {field_table, 6}, - [72] = + [74] = {field_label, 3}, {field_label, 6}, - [74] = + [76] = {field_label, 6}, - [75] = + [77] = {field_type, 3}, {field_type, 4}, {field_variable, 1}, - [78] = + [80] = {field_condition, 2}, - [79] = + [81] = {field_height, 6}, {field_width, 4}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, - [11] = { + [12] = { [1] = sym_type_tuning, }, - [20] = { + [21] = { [2] = sym_type_tuning, }, - [43] = { + [44] = { [1] = sym_type_tuning, }, - [53] = { + [54] = { [2] = sym_type_tuning, }, - [54] = { + [55] = { [1] = sym_return_type, }, - [59] = { + [60] = { [2] = sym_return_type, }, }; @@ -4121,1504 +4134,1504 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [47] = 47, [48] = 48, [49] = 49, - [50] = 19, - [51] = 20, - [52] = 16, + [50] = 50, + [51] = 51, + [52] = 52, [53] = 53, [54] = 54, - [55] = 53, - [56] = 56, + [55] = 55, + [56] = 20, [57] = 57, - [58] = 58, + [58] = 19, [59] = 59, - [60] = 60, - [61] = 61, + [60] = 11, + [61] = 55, [62] = 62, [63] = 63, [64] = 64, - [65] = 64, - [66] = 64, + [65] = 65, + [66] = 66, [67] = 67, - [68] = 64, - [69] = 67, + [68] = 68, + [69] = 69, [70] = 67, - [71] = 63, - [72] = 64, - [73] = 63, - [74] = 64, - [75] = 75, - [76] = 75, - [77] = 75, - [78] = 75, - [79] = 75, - [80] = 80, - [81] = 81, - [82] = 80, - [83] = 81, - [84] = 81, - [85] = 80, - [86] = 81, - [87] = 80, - [88] = 80, - [89] = 80, - [90] = 81, - [91] = 81, - [92] = 80, - [93] = 80, - [94] = 81, - [95] = 81, - [96] = 80, - [97] = 80, - [98] = 81, - [99] = 80, - [100] = 81, - [101] = 81, - [102] = 80, - [103] = 81, - [104] = 81, - [105] = 80, - [106] = 106, - [107] = 106, - [108] = 106, - [109] = 109, - [110] = 106, - [111] = 109, - [112] = 106, - [113] = 106, - [114] = 109, - [115] = 109, - [116] = 109, - [117] = 109, - [118] = 109, - [119] = 106, - [120] = 106, - [121] = 106, - [122] = 109, - [123] = 106, - [124] = 106, - [125] = 109, - [126] = 109, - [127] = 109, - [128] = 106, - [129] = 106, - [130] = 109, - [131] = 109, - [132] = 132, - [133] = 132, - [134] = 132, - [135] = 132, - [136] = 2, - [137] = 132, - [138] = 3, - [139] = 139, - [140] = 140, - [141] = 3, - [142] = 2, + [71] = 69, + [72] = 69, + [73] = 67, + [74] = 68, + [75] = 69, + [76] = 68, + [77] = 69, + [78] = 69, + [79] = 79, + [80] = 79, + [81] = 79, + [82] = 79, + [83] = 79, + [84] = 84, + [85] = 85, + [86] = 85, + [87] = 84, + [88] = 85, + [89] = 85, + [90] = 84, + [91] = 84, + [92] = 84, + [93] = 85, + [94] = 85, + [95] = 85, + [96] = 84, + [97] = 84, + [98] = 84, + [99] = 85, + [100] = 85, + [101] = 85, + [102] = 84, + [103] = 84, + [104] = 84, + [105] = 85, + [106] = 85, + [107] = 84, + [108] = 85, + [109] = 84, + [110] = 110, + [111] = 110, + [112] = 110, + [113] = 110, + [114] = 110, + [115] = 115, + [116] = 115, + [117] = 115, + [118] = 115, + [119] = 115, + [120] = 110, + [121] = 115, + [122] = 110, + [123] = 115, + [124] = 110, + [125] = 110, + [126] = 115, + [127] = 110, + [128] = 110, + [129] = 110, + [130] = 115, + [131] = 115, + [132] = 115, + [133] = 115, + [134] = 110, + [135] = 115, + [136] = 136, + [137] = 136, + [138] = 136, + [139] = 136, + [140] = 136, + [141] = 2, + [142] = 3, [143] = 143, - [144] = 143, - [145] = 145, - [146] = 143, - [147] = 143, - [148] = 143, - [149] = 143, - [150] = 143, - [151] = 143, - [152] = 143, - [153] = 143, - [154] = 143, - [155] = 143, - [156] = 143, - [157] = 157, + [144] = 144, + [145] = 3, + [146] = 2, + [147] = 147, + [148] = 147, + [149] = 147, + [150] = 147, + [151] = 147, + [152] = 147, + [153] = 147, + [154] = 147, + [155] = 147, + [156] = 147, + [157] = 147, [158] = 158, - [159] = 143, - [160] = 143, - [161] = 14, - [162] = 143, - [163] = 143, - [164] = 143, - [165] = 143, - [166] = 166, - [167] = 143, - [168] = 143, - [169] = 143, - [170] = 143, - [171] = 143, - [172] = 143, - [173] = 143, - [174] = 5, - [175] = 175, - [176] = 21, - [177] = 39, - [178] = 178, - [179] = 4, - [180] = 2, - [181] = 3, - [182] = 182, - [183] = 183, - [184] = 12, - [185] = 9, - [186] = 186, - [187] = 187, - [188] = 188, - [189] = 158, - [190] = 190, + [159] = 159, + [160] = 147, + [161] = 161, + [162] = 147, + [163] = 147, + [164] = 147, + [165] = 147, + [166] = 147, + [167] = 147, + [168] = 147, + [169] = 23, + [170] = 147, + [171] = 147, + [172] = 147, + [173] = 173, + [174] = 147, + [175] = 147, + [176] = 147, + [177] = 147, + [178] = 147, + [179] = 147, + [180] = 180, + [181] = 181, + [182] = 2, + [183] = 39, + [184] = 4, + [185] = 43, + [186] = 5, + [187] = 3, + [188] = 6, + [189] = 10, + [190] = 7, [191] = 191, [192] = 192, - [193] = 193, + [193] = 15, [194] = 194, [195] = 195, [196] = 196, - [197] = 197, + [197] = 161, [198] = 198, [199] = 199, - [200] = 175, - [201] = 13, + [200] = 200, + [201] = 201, [202] = 202, - [203] = 8, - [204] = 7, - [205] = 6, - [206] = 18, - [207] = 11, - [208] = 10, - [209] = 209, - [210] = 193, - [211] = 191, - [212] = 17, - [213] = 7, - [214] = 8, - [215] = 14, - [216] = 5, - [217] = 13, - [218] = 4, - [219] = 10, - [220] = 6, - [221] = 11, - [222] = 190, - [223] = 195, - [224] = 198, - [225] = 197, - [226] = 15, - [227] = 227, - [228] = 182, - [229] = 16, - [230] = 20, - [231] = 19, - [232] = 192, - [233] = 194, - [234] = 183, - [235] = 188, - [236] = 196, - [237] = 23, - [238] = 20, - [239] = 20, - [240] = 3, - [241] = 19, - [242] = 242, - [243] = 22, - [244] = 41, - [245] = 245, - [246] = 246, - [247] = 247, - [248] = 45, - [249] = 46, - [250] = 48, - [251] = 40, - [252] = 29, - [253] = 2, - [254] = 25, - [255] = 245, - [256] = 247, - [257] = 257, - [258] = 245, - [259] = 245, - [260] = 246, - [261] = 261, - [262] = 247, - [263] = 9, - [264] = 18, - [265] = 38, - [266] = 37, + [203] = 203, + [204] = 204, + [205] = 205, + [206] = 206, + [207] = 12, + [208] = 208, + [209] = 19, + [210] = 210, + [211] = 211, + [212] = 9, + [213] = 13, + [214] = 17, + [215] = 8, + [216] = 11, + [217] = 20, + [218] = 180, + [219] = 22, + [220] = 18, + [221] = 14, + [222] = 16, + [223] = 8, + [224] = 199, + [225] = 21, + [226] = 24, + [227] = 23, + [228] = 27, + [229] = 26, + [230] = 11, + [231] = 20, + [232] = 19, + [233] = 9, + [234] = 234, + [235] = 19, + [236] = 20, + [237] = 11, + [238] = 201, + [239] = 204, + [240] = 205, + [241] = 194, + [242] = 25, + [243] = 192, + [244] = 59, + [245] = 200, + [246] = 191, + [247] = 202, + [248] = 198, + [249] = 196, + [250] = 195, + [251] = 6, + [252] = 10, + [253] = 5, + [254] = 4, + [255] = 16, + [256] = 12, + [257] = 24, + [258] = 14, + [259] = 18, + [260] = 17, + [261] = 13, + [262] = 33, + [263] = 263, + [264] = 264, + [265] = 2, + [266] = 266, [267] = 267, - [268] = 16, - [269] = 247, - [270] = 245, - [271] = 246, - [272] = 247, - [273] = 34, - [274] = 19, - [275] = 49, - [276] = 247, - [277] = 21, - [278] = 245, - [279] = 245, - [280] = 246, - [281] = 16, - [282] = 247, - [283] = 15, - [284] = 43, - [285] = 32, - [286] = 30, - [287] = 28, - [288] = 246, - [289] = 247, - [290] = 245, - [291] = 33, - [292] = 247, - [293] = 44, - [294] = 247, - [295] = 245, - [296] = 17, - [297] = 12, - [298] = 36, - [299] = 31, - [300] = 44, - [301] = 245, - [302] = 247, - [303] = 14, - [304] = 39, - [305] = 245, - [306] = 247, - [307] = 42, - [308] = 245, - [309] = 47, - [310] = 247, - [311] = 35, - [312] = 24, - [313] = 26, - [314] = 314, - [315] = 245, - [316] = 27, - [317] = 7, - [318] = 32, - [319] = 21, - [320] = 2, - [321] = 23, - [322] = 34, - [323] = 24, - [324] = 35, - [325] = 42, - [326] = 26, - [327] = 27, - [328] = 28, - [329] = 30, - [330] = 37, - [331] = 38, - [332] = 41, - [333] = 22, - [334] = 227, - [335] = 3, - [336] = 47, - [337] = 39, - [338] = 31, - [339] = 36, - [340] = 6, - [341] = 33, - [342] = 43, - [343] = 343, - [344] = 343, - [345] = 343, - [346] = 8, - [347] = 5, - [348] = 45, - [349] = 46, - [350] = 48, - [351] = 13, - [352] = 4, - [353] = 10, - [354] = 40, - [355] = 343, - [356] = 29, - [357] = 25, - [358] = 6, - [359] = 11, - [360] = 11, - [361] = 343, - [362] = 362, - [363] = 363, - [364] = 364, - [365] = 365, - [366] = 366, - [367] = 367, - [368] = 367, - [369] = 367, - [370] = 370, - [371] = 370, - [372] = 370, - [373] = 373, - [374] = 374, - [375] = 362, - [376] = 376, - [377] = 377, - [378] = 378, - [379] = 379, - [380] = 380, - [381] = 381, - [382] = 364, - [383] = 365, - [384] = 366, - [385] = 370, - [386] = 370, - [387] = 370, - [388] = 380, - [389] = 379, - [390] = 366, - [391] = 365, - [392] = 364, - [393] = 370, - [394] = 370, + [268] = 267, + [269] = 266, + [270] = 15, + [271] = 267, + [272] = 267, + [273] = 273, + [274] = 22, + [275] = 266, + [276] = 267, + [277] = 266, + [278] = 267, + [279] = 266, + [280] = 280, + [281] = 281, + [282] = 3, + [283] = 267, + [284] = 266, + [285] = 267, + [286] = 266, + [287] = 267, + [288] = 266, + [289] = 267, + [290] = 280, + [291] = 23, + [292] = 266, + [293] = 25, + [294] = 267, + [295] = 21, + [296] = 280, + [297] = 7, + [298] = 266, + [299] = 26, + [300] = 267, + [301] = 280, + [302] = 266, + [303] = 266, + [304] = 267, + [305] = 280, + [306] = 266, + [307] = 307, + [308] = 52, + [309] = 51, + [310] = 39, + [311] = 43, + [312] = 27, + [313] = 49, + [314] = 30, + [315] = 40, + [316] = 29, + [317] = 50, + [318] = 48, + [319] = 47, + [320] = 28, + [321] = 41, + [322] = 46, + [323] = 38, + [324] = 37, + [325] = 34, + [326] = 32, + [327] = 31, + [328] = 42, + [329] = 35, + [330] = 36, + [331] = 44, + [332] = 45, + [333] = 59, + [334] = 6, + [335] = 10, + [336] = 5, + [337] = 8, + [338] = 9, + [339] = 4, + [340] = 16, + [341] = 11, + [342] = 20, + [343] = 19, + [344] = 12, + [345] = 11, + [346] = 20, + [347] = 19, + [348] = 234, + [349] = 349, + [350] = 24, + [351] = 14, + [352] = 18, + [353] = 17, + [354] = 349, + [355] = 13, + [356] = 52, + [357] = 51, + [358] = 349, + [359] = 33, + [360] = 39, + [361] = 3, + [362] = 349, + [363] = 43, + [364] = 2, + [365] = 49, + [366] = 46, + [367] = 45, + [368] = 44, + [369] = 36, + [370] = 35, + [371] = 42, + [372] = 31, + [373] = 32, + [374] = 34, + [375] = 37, + [376] = 38, + [377] = 41, + [378] = 28, + [379] = 47, + [380] = 48, + [381] = 50, + [382] = 29, + [383] = 40, + [384] = 30, + [385] = 349, + [386] = 386, + [387] = 387, + [388] = 388, + [389] = 388, + [390] = 388, + [391] = 391, + [392] = 9, + [393] = 393, + [394] = 394, [395] = 395, - [396] = 370, - [397] = 370, - [398] = 379, - [399] = 380, - [400] = 381, - [401] = 364, - [402] = 365, - [403] = 366, - [404] = 381, - [405] = 405, - [406] = 367, - [407] = 370, - [408] = 380, - [409] = 379, - [410] = 380, - [411] = 370, - [412] = 370, - [413] = 413, - [414] = 381, - [415] = 370, - [416] = 416, - [417] = 379, - [418] = 364, - [419] = 366, - [420] = 365, - [421] = 421, - [422] = 366, - [423] = 365, - [424] = 364, - [425] = 381, - [426] = 426, - [427] = 380, - [428] = 379, - [429] = 367, - [430] = 378, - [431] = 376, + [396] = 386, + [397] = 391, + [398] = 398, + [399] = 399, + [400] = 400, + [401] = 401, + [402] = 387, + [403] = 403, + [404] = 404, + [405] = 391, + [406] = 406, + [407] = 393, + [408] = 394, + [409] = 401, + [410] = 391, + [411] = 411, + [412] = 400, + [413] = 395, + [414] = 386, + [415] = 391, + [416] = 8, + [417] = 391, + [418] = 399, + [419] = 400, + [420] = 401, + [421] = 387, + [422] = 422, + [423] = 403, + [424] = 404, + [425] = 391, + [426] = 388, + [427] = 427, + [428] = 391, + [429] = 429, + [430] = 391, + [431] = 391, [432] = 432, - [433] = 362, - [434] = 374, - [435] = 373, - [436] = 370, - [437] = 370, - [438] = 370, - [439] = 405, - [440] = 370, - [441] = 370, - [442] = 370, - [443] = 370, - [444] = 370, - [445] = 370, - [446] = 370, - [447] = 379, - [448] = 380, - [449] = 381, - [450] = 364, - [451] = 365, - [452] = 366, - [453] = 370, - [454] = 370, - [455] = 370, - [456] = 370, - [457] = 405, - [458] = 373, - [459] = 374, - [460] = 366, - [461] = 365, - [462] = 379, - [463] = 380, - [464] = 381, - [465] = 364, - [466] = 365, - [467] = 366, - [468] = 362, - [469] = 364, - [470] = 381, - [471] = 376, - [472] = 380, - [473] = 473, - [474] = 379, - [475] = 370, - [476] = 378, - [477] = 370, - [478] = 379, - [479] = 380, - [480] = 381, - [481] = 364, - [482] = 365, - [483] = 366, - [484] = 379, - [485] = 380, - [486] = 381, - [487] = 395, - [488] = 364, - [489] = 365, - [490] = 366, - [491] = 370, - [492] = 395, - [493] = 493, - [494] = 381, - [495] = 495, - [496] = 370, - [497] = 395, - [498] = 379, - [499] = 380, - [500] = 500, - [501] = 379, - [502] = 380, - [503] = 381, - [504] = 504, - [505] = 364, - [506] = 365, - [507] = 366, - [508] = 381, - [509] = 364, - [510] = 365, - [511] = 366, - [512] = 366, - [513] = 15, - [514] = 514, - [515] = 405, - [516] = 16, - [517] = 378, - [518] = 376, - [519] = 365, - [520] = 364, - [521] = 381, - [522] = 380, - [523] = 366, - [524] = 365, - [525] = 364, - [526] = 381, - [527] = 380, - [528] = 379, - [529] = 379, - [530] = 380, - [531] = 381, - [532] = 364, - [533] = 365, - [534] = 366, - [535] = 379, - [536] = 370, - [537] = 370, - [538] = 395, - [539] = 366, - [540] = 365, - [541] = 364, - [542] = 381, - [543] = 380, - [544] = 379, - [545] = 380, - [546] = 377, - [547] = 547, - [548] = 381, - [549] = 364, - [550] = 365, - [551] = 366, - [552] = 377, - [553] = 553, - [554] = 377, - [555] = 378, - [556] = 376, - [557] = 362, - [558] = 374, - [559] = 373, - [560] = 560, - [561] = 379, - [562] = 377, - [563] = 560, - [564] = 377, - [565] = 379, - [566] = 380, - [567] = 381, - [568] = 364, - [569] = 365, - [570] = 366, - [571] = 416, - [572] = 416, - [573] = 416, - [574] = 416, - [575] = 416, - [576] = 416, - [577] = 405, - [578] = 416, - [579] = 416, - [580] = 416, - [581] = 379, - [582] = 380, - [583] = 381, - [584] = 364, - [585] = 365, - [586] = 366, - [587] = 416, - [588] = 416, - [589] = 363, - [590] = 416, - [591] = 416, - [592] = 416, - [593] = 416, - [594] = 366, - [595] = 365, - [596] = 364, - [597] = 381, - [598] = 380, - [599] = 379, - [600] = 380, - [601] = 381, - [602] = 364, - [603] = 365, - [604] = 366, - [605] = 379, - [606] = 365, - [607] = 607, + [433] = 391, + [434] = 391, + [435] = 391, + [436] = 391, + [437] = 437, + [438] = 427, + [439] = 404, + [440] = 403, + [441] = 387, + [442] = 401, + [443] = 400, + [444] = 399, + [445] = 400, + [446] = 401, + [447] = 387, + [448] = 403, + [449] = 404, + [450] = 399, + [451] = 391, + [452] = 388, + [453] = 391, + [454] = 398, + [455] = 391, + [456] = 398, + [457] = 386, + [458] = 395, + [459] = 399, + [460] = 400, + [461] = 401, + [462] = 387, + [463] = 403, + [464] = 404, + [465] = 394, + [466] = 393, + [467] = 391, + [468] = 391, + [469] = 391, + [470] = 391, + [471] = 391, + [472] = 391, + [473] = 404, + [474] = 399, + [475] = 400, + [476] = 401, + [477] = 387, + [478] = 403, + [479] = 404, + [480] = 399, + [481] = 400, + [482] = 401, + [483] = 387, + [484] = 403, + [485] = 485, + [486] = 404, + [487] = 391, + [488] = 391, + [489] = 391, + [490] = 391, + [491] = 391, + [492] = 393, + [493] = 403, + [494] = 394, + [495] = 387, + [496] = 399, + [497] = 400, + [498] = 401, + [499] = 401, + [500] = 387, + [501] = 403, + [502] = 404, + [503] = 399, + [504] = 400, + [505] = 401, + [506] = 387, + [507] = 403, + [508] = 404, + [509] = 395, + [510] = 386, + [511] = 398, + [512] = 512, + [513] = 391, + [514] = 429, + [515] = 391, + [516] = 516, + [517] = 399, + [518] = 404, + [519] = 429, + [520] = 391, + [521] = 429, + [522] = 399, + [523] = 400, + [524] = 401, + [525] = 387, + [526] = 403, + [527] = 527, + [528] = 404, + [529] = 399, + [530] = 400, + [531] = 401, + [532] = 532, + [533] = 403, + [534] = 403, + [535] = 404, + [536] = 403, + [537] = 387, + [538] = 401, + [539] = 391, + [540] = 400, + [541] = 399, + [542] = 400, + [543] = 399, + [544] = 401, + [545] = 399, + [546] = 400, + [547] = 401, + [548] = 387, + [549] = 403, + [550] = 404, + [551] = 387, + [552] = 403, + [553] = 404, + [554] = 554, + [555] = 387, + [556] = 427, + [557] = 404, + [558] = 429, + [559] = 404, + [560] = 404, + [561] = 403, + [562] = 387, + [563] = 401, + [564] = 400, + [565] = 399, + [566] = 400, + [567] = 401, + [568] = 512, + [569] = 387, + [570] = 403, + [571] = 404, + [572] = 399, + [573] = 391, + [574] = 387, + [575] = 401, + [576] = 400, + [577] = 577, + [578] = 399, + [579] = 391, + [580] = 411, + [581] = 411, + [582] = 398, + [583] = 399, + [584] = 400, + [585] = 401, + [586] = 387, + [587] = 403, + [588] = 404, + [589] = 386, + [590] = 395, + [591] = 394, + [592] = 393, + [593] = 411, + [594] = 399, + [595] = 400, + [596] = 401, + [597] = 387, + [598] = 427, + [599] = 403, + [600] = 404, + [601] = 399, + [602] = 400, + [603] = 401, + [604] = 387, + [605] = 403, + [606] = 404, + [607] = 403, [608] = 608, - [609] = 416, - [610] = 416, - [611] = 416, - [612] = 612, - [613] = 416, - [614] = 366, - [615] = 379, - [616] = 616, - [617] = 380, - [618] = 381, - [619] = 416, - [620] = 364, - [621] = 365, - [622] = 366, - [623] = 362, - [624] = 374, - [625] = 373, - [626] = 20, - [627] = 19, - [628] = 405, - [629] = 378, - [630] = 416, - [631] = 376, - [632] = 362, - [633] = 374, - [634] = 373, - [635] = 416, - [636] = 514, - [637] = 637, - [638] = 365, - [639] = 378, - [640] = 640, - [641] = 641, - [642] = 376, - [643] = 643, - [644] = 362, - [645] = 374, - [646] = 379, - [647] = 380, - [648] = 381, - [649] = 364, - [650] = 365, - [651] = 366, - [652] = 416, - [653] = 405, - [654] = 373, - [655] = 378, - [656] = 376, - [657] = 362, - [658] = 364, - [659] = 374, - [660] = 373, - [661] = 381, - [662] = 514, - [663] = 363, - [664] = 380, - [665] = 379, - [666] = 405, - [667] = 416, - [668] = 514, - [669] = 363, - [670] = 416, - [671] = 378, - [672] = 376, - [673] = 362, - [674] = 374, - [675] = 373, - [676] = 514, - [677] = 379, - [678] = 380, - [679] = 381, - [680] = 364, - [681] = 365, - [682] = 366, - [683] = 379, - [684] = 380, - [685] = 685, - [686] = 381, - [687] = 364, - [688] = 365, - [689] = 366, - [690] = 363, - [691] = 416, - [692] = 514, - [693] = 373, - [694] = 405, - [695] = 374, - [696] = 405, - [697] = 362, - [698] = 9, - [699] = 376, - [700] = 416, - [701] = 413, - [702] = 378, - [703] = 366, - [704] = 376, - [705] = 18, - [706] = 365, - [707] = 364, - [708] = 708, - [709] = 381, - [710] = 637, - [711] = 380, - [712] = 379, - [713] = 366, - [714] = 379, - [715] = 380, - [716] = 381, - [717] = 364, - [718] = 365, - [719] = 366, - [720] = 514, - [721] = 721, - [722] = 364, - [723] = 381, - [724] = 379, - [725] = 380, - [726] = 381, - [727] = 364, - [728] = 365, - [729] = 366, - [730] = 380, - [731] = 363, - [732] = 416, - [733] = 514, - [734] = 379, - [735] = 363, - [736] = 416, - [737] = 378, - [738] = 378, - [739] = 374, - [740] = 740, - [741] = 741, - [742] = 376, - [743] = 362, - [744] = 374, - [745] = 373, - [746] = 373, - [747] = 553, - [748] = 514, - [749] = 363, - [750] = 750, - [751] = 413, - [752] = 432, - [753] = 363, - [754] = 500, - [755] = 363, - [756] = 426, - [757] = 405, - [758] = 708, - [759] = 608, - [760] = 637, - [761] = 405, - [762] = 378, - [763] = 376, - [764] = 362, - [765] = 416, - [766] = 374, - [767] = 373, - [768] = 768, - [769] = 514, - [770] = 770, - [771] = 14, - [772] = 405, - [773] = 44, - [774] = 493, - [775] = 514, - [776] = 379, - [777] = 380, - [778] = 381, - [779] = 364, - [780] = 365, - [781] = 366, - [782] = 379, - [783] = 380, - [784] = 381, - [785] = 364, - [786] = 365, - [787] = 366, - [788] = 12, - [789] = 17, - [790] = 750, - [791] = 378, - [792] = 792, - [793] = 493, - [794] = 376, - [795] = 362, - [796] = 366, - [797] = 374, - [798] = 373, - [799] = 373, - [800] = 374, - [801] = 362, - [802] = 608, - [803] = 378, - [804] = 376, - [805] = 365, - [806] = 363, - [807] = 376, - [808] = 362, - [809] = 364, - [810] = 381, - [811] = 413, - [812] = 432, - [813] = 495, - [814] = 607, - [815] = 405, - [816] = 380, - [817] = 378, - [818] = 376, - [819] = 379, - [820] = 362, - [821] = 708, - [822] = 612, - [823] = 378, - [824] = 637, - [825] = 374, - [826] = 373, - [827] = 374, - [828] = 405, - [829] = 373, - [830] = 373, - [831] = 374, - [832] = 362, - [833] = 376, - [834] = 378, - [835] = 416, - [836] = 405, - [837] = 405, - [838] = 373, - [839] = 374, - [840] = 362, - [841] = 376, - [842] = 378, - [843] = 405, - [844] = 405, - [845] = 553, - [846] = 373, - [847] = 374, - [848] = 362, - [849] = 376, - [850] = 15, - [851] = 378, - [852] = 378, - [853] = 405, - [854] = 376, - [855] = 405, - [856] = 362, - [857] = 373, - [858] = 374, - [859] = 373, - [860] = 374, - [861] = 49, - [862] = 862, - [863] = 362, - [864] = 376, - [865] = 378, - [866] = 405, - [867] = 373, - [868] = 374, - [869] = 362, - [870] = 376, - [871] = 378, - [872] = 405, - [873] = 373, - [874] = 374, - [875] = 362, - [876] = 376, - [877] = 378, - [878] = 405, - [879] = 405, - [880] = 750, - [881] = 373, - [882] = 374, - [883] = 362, - [884] = 376, - [885] = 378, - [886] = 547, - [887] = 405, - [888] = 500, - [889] = 373, - [890] = 374, - [891] = 426, - [892] = 426, - [893] = 416, - [894] = 362, - [895] = 376, - [896] = 378, - [897] = 493, - [898] = 405, - [899] = 514, - [900] = 242, - [901] = 608, - [902] = 373, - [903] = 363, - [904] = 374, - [905] = 362, - [906] = 376, - [907] = 378, - [908] = 553, - [909] = 547, - [910] = 405, - [911] = 378, - [912] = 750, - [913] = 376, - [914] = 373, - [915] = 374, - [916] = 362, - [917] = 376, - [918] = 378, - [919] = 362, - [920] = 374, - [921] = 405, - [922] = 373, - [923] = 547, - [924] = 373, - [925] = 374, - [926] = 362, - [927] = 376, - [928] = 378, - [929] = 500, - [930] = 405, - [931] = 426, - [932] = 416, - [933] = 373, - [934] = 374, - [935] = 362, - [936] = 376, - [937] = 378, - [938] = 708, - [939] = 405, - [940] = 792, - [941] = 373, - [942] = 374, - [943] = 362, - [944] = 16, - [945] = 493, - [946] = 514, - [947] = 378, - [948] = 376, - [949] = 378, - [950] = 405, - [951] = 405, - [952] = 376, - [953] = 373, - [954] = 374, - [955] = 362, - [956] = 376, - [957] = 378, - [958] = 362, - [959] = 608, - [960] = 363, - [961] = 560, - [962] = 553, - [963] = 750, - [964] = 547, - [965] = 405, - [966] = 19, - [967] = 500, - [968] = 20, - [969] = 373, - [970] = 374, - [971] = 41, - [972] = 191, - [973] = 183, - [974] = 196, - [975] = 192, - [976] = 43, - [977] = 33, - [978] = 36, - [979] = 31, - [980] = 39, - [981] = 47, - [982] = 21, - [983] = 35, - [984] = 42, - [985] = 23, - [986] = 24, - [987] = 26, - [988] = 27, - [989] = 28, - [990] = 22, - [991] = 30, - [992] = 188, - [993] = 32, - [994] = 34, - [995] = 37, - [996] = 38, - [997] = 45, - [998] = 194, - [999] = 182, - [1000] = 46, - [1001] = 48, - [1002] = 40, - [1003] = 29, - [1004] = 25, - [1005] = 190, - [1006] = 195, - [1007] = 197, - [1008] = 193, - [1009] = 198, - [1010] = 183, - [1011] = 195, - [1012] = 198, - [1013] = 197, - [1014] = 182, - [1015] = 196, - [1016] = 1016, - [1017] = 194, - [1018] = 193, - [1019] = 192, - [1020] = 190, - [1021] = 191, - [1022] = 43, - [1023] = 188, - [1024] = 1024, - [1025] = 1025, - [1026] = 5, - [1027] = 6, - [1028] = 227, - [1029] = 10, - [1030] = 4, - [1031] = 11, - [1032] = 1032, - [1033] = 7, - [1034] = 13, - [1035] = 8, - [1036] = 18, - [1037] = 7, - [1038] = 14, - [1039] = 9, - [1040] = 19, - [1041] = 20, - [1042] = 6, - [1043] = 16, - [1044] = 49, - [1045] = 44, - [1046] = 242, - [1047] = 20, - [1048] = 10, - [1049] = 4, - [1050] = 11, - [1051] = 13, - [1052] = 5, - [1053] = 12, - [1054] = 17, - [1055] = 8, - [1056] = 19, - [1057] = 227, - [1058] = 15, - [1059] = 16, - [1060] = 32, - [1061] = 46, - [1062] = 20, - [1063] = 19, - [1064] = 24, - [1065] = 23, - [1066] = 20, - [1067] = 42, - [1068] = 41, - [1069] = 19, - [1070] = 35, - [1071] = 49, - [1072] = 33, - [1073] = 18, - [1074] = 40, - [1075] = 21, - [1076] = 47, - [1077] = 15, - [1078] = 242, - [1079] = 28, - [1080] = 48, - [1081] = 27, - [1082] = 26, - [1083] = 31, - [1084] = 30, - [1085] = 37, - [1086] = 9, - [1087] = 39, - [1088] = 22, - [1089] = 45, - [1090] = 36, - [1091] = 16, - [1092] = 17, - [1093] = 12, - [1094] = 34, - [1095] = 38, - [1096] = 29, - [1097] = 43, + [609] = 404, + [610] = 403, + [611] = 387, + [612] = 401, + [613] = 400, + [614] = 399, + [615] = 615, + [616] = 411, + [617] = 398, + [618] = 386, + [619] = 395, + [620] = 394, + [621] = 393, + [622] = 622, + [623] = 403, + [624] = 427, + [625] = 615, + [626] = 411, + [627] = 404, + [628] = 422, + [629] = 399, + [630] = 400, + [631] = 401, + [632] = 387, + [633] = 403, + [634] = 404, + [635] = 422, + [636] = 398, + [637] = 399, + [638] = 386, + [639] = 400, + [640] = 395, + [641] = 401, + [642] = 394, + [643] = 393, + [644] = 422, + [645] = 645, + [646] = 646, + [647] = 387, + [648] = 403, + [649] = 404, + [650] = 404, + [651] = 422, + [652] = 422, + [653] = 427, + [654] = 399, + [655] = 398, + [656] = 386, + [657] = 608, + [658] = 395, + [659] = 394, + [660] = 660, + [661] = 661, + [662] = 393, + [663] = 406, + [664] = 427, + [665] = 422, + [666] = 577, + [667] = 400, + [668] = 15, + [669] = 400, + [670] = 670, + [671] = 422, + [672] = 401, + [673] = 527, + [674] = 22, + [675] = 422, + [676] = 399, + [677] = 400, + [678] = 422, + [679] = 401, + [680] = 437, + [681] = 387, + [682] = 403, + [683] = 404, + [684] = 399, + [685] = 400, + [686] = 401, + [687] = 387, + [688] = 403, + [689] = 404, + [690] = 690, + [691] = 554, + [692] = 422, + [693] = 422, + [694] = 422, + [695] = 554, + [696] = 422, + [697] = 422, + [698] = 698, + [699] = 699, + [700] = 387, + [701] = 398, + [702] = 386, + [703] = 608, + [704] = 660, + [705] = 406, + [706] = 706, + [707] = 395, + [708] = 661, + [709] = 394, + [710] = 393, + [711] = 399, + [712] = 577, + [713] = 404, + [714] = 403, + [715] = 527, + [716] = 387, + [717] = 670, + [718] = 422, + [719] = 422, + [720] = 422, + [721] = 422, + [722] = 422, + [723] = 403, + [724] = 427, + [725] = 401, + [726] = 660, + [727] = 422, + [728] = 437, + [729] = 23, + [730] = 401, + [731] = 422, + [732] = 398, + [733] = 399, + [734] = 400, + [735] = 401, + [736] = 387, + [737] = 403, + [738] = 404, + [739] = 399, + [740] = 400, + [741] = 401, + [742] = 21, + [743] = 387, + [744] = 386, + [745] = 745, + [746] = 746, + [747] = 403, + [748] = 404, + [749] = 512, + [750] = 395, + [751] = 394, + [752] = 554, + [753] = 393, + [754] = 754, + [755] = 422, + [756] = 422, + [757] = 427, + [758] = 577, + [759] = 399, + [760] = 7, + [761] = 698, + [762] = 398, + [763] = 386, + [764] = 395, + [765] = 394, + [766] = 393, + [767] = 608, + [768] = 660, + [769] = 406, + [770] = 706, + [771] = 771, + [772] = 532, + [773] = 661, + [774] = 661, + [775] = 26, + [776] = 403, + [777] = 577, + [778] = 778, + [779] = 706, + [780] = 399, + [781] = 527, + [782] = 400, + [783] = 670, + [784] = 427, + [785] = 785, + [786] = 393, + [787] = 394, + [788] = 395, + [789] = 386, + [790] = 398, + [791] = 427, + [792] = 427, + [793] = 398, + [794] = 400, + [795] = 698, + [796] = 393, + [797] = 394, + [798] = 395, + [799] = 386, + [800] = 398, + [801] = 395, + [802] = 427, + [803] = 394, + [804] = 393, + [805] = 422, + [806] = 394, + [807] = 395, + [808] = 393, + [809] = 437, + [810] = 512, + [811] = 386, + [812] = 398, + [813] = 427, + [814] = 427, + [815] = 393, + [816] = 394, + [817] = 395, + [818] = 386, + [819] = 398, + [820] = 427, + [821] = 393, + [822] = 394, + [823] = 395, + [824] = 386, + [825] = 398, + [826] = 427, + [827] = 393, + [828] = 394, + [829] = 395, + [830] = 386, + [831] = 398, + [832] = 427, + [833] = 660, + [834] = 422, + [835] = 387, + [836] = 393, + [837] = 394, + [838] = 395, + [839] = 386, + [840] = 398, + [841] = 577, + [842] = 778, + [843] = 427, + [844] = 512, + [845] = 754, + [846] = 698, + [847] = 393, + [848] = 394, + [849] = 395, + [850] = 386, + [851] = 398, + [852] = 660, + [853] = 422, + [854] = 427, + [855] = 422, + [856] = 307, + [857] = 660, + [858] = 427, + [859] = 859, + [860] = 393, + [861] = 398, + [862] = 394, + [863] = 386, + [864] = 395, + [865] = 395, + [866] = 394, + [867] = 393, + [868] = 386, + [869] = 398, + [870] = 399, + [871] = 404, + [872] = 427, + [873] = 400, + [874] = 25, + [875] = 387, + [876] = 393, + [877] = 394, + [878] = 395, + [879] = 386, + [880] = 398, + [881] = 422, + [882] = 403, + [883] = 404, + [884] = 427, + [885] = 393, + [886] = 394, + [887] = 395, + [888] = 386, + [889] = 398, + [890] = 427, + [891] = 393, + [892] = 394, + [893] = 395, + [894] = 386, + [895] = 398, + [896] = 427, + [897] = 608, + [898] = 660, + [899] = 427, + [900] = 401, + [901] = 387, + [902] = 393, + [903] = 394, + [904] = 395, + [905] = 386, + [906] = 398, + [907] = 401, + [908] = 771, + [909] = 670, + [910] = 427, + [911] = 400, + [912] = 393, + [913] = 394, + [914] = 395, + [915] = 386, + [916] = 398, + [917] = 661, + [918] = 427, + [919] = 577, + [920] = 577, + [921] = 393, + [922] = 394, + [923] = 395, + [924] = 386, + [925] = 398, + [926] = 670, + [927] = 422, + [928] = 660, + [929] = 427, + [930] = 577, + [931] = 577, + [932] = 660, + [933] = 393, + [934] = 394, + [935] = 395, + [936] = 386, + [937] = 398, + [938] = 938, + [939] = 422, + [940] = 427, + [941] = 437, + [942] = 398, + [943] = 422, + [944] = 577, + [945] = 393, + [946] = 394, + [947] = 395, + [948] = 386, + [949] = 949, + [950] = 398, + [951] = 554, + [952] = 698, + [953] = 386, + [954] = 395, + [955] = 394, + [956] = 427, + [957] = 399, + [958] = 393, + [959] = 660, + [960] = 393, + [961] = 394, + [962] = 395, + [963] = 386, + [964] = 427, + [965] = 422, + [966] = 615, + [967] = 577, + [968] = 660, + [969] = 27, + [970] = 398, + [971] = 422, + [972] = 427, + [973] = 398, + [974] = 393, + [975] = 394, + [976] = 395, + [977] = 386, + [978] = 398, + [979] = 386, + [980] = 427, + [981] = 395, + [982] = 660, + [983] = 394, + [984] = 393, + [985] = 577, + [986] = 40, + [987] = 41, + [988] = 31, + [989] = 27, + [990] = 32, + [991] = 195, + [992] = 191, + [993] = 52, + [994] = 51, + [995] = 33, + [996] = 34, + [997] = 30, + [998] = 37, + [999] = 39, + [1000] = 43, + [1001] = 49, + [1002] = 201, + [1003] = 192, + [1004] = 199, + [1005] = 35, + [1006] = 38, + [1007] = 194, + [1008] = 205, + [1009] = 204, + [1010] = 196, + [1011] = 36, + [1012] = 200, + [1013] = 202, + [1014] = 29, + [1015] = 50, + [1016] = 48, + [1017] = 46, + [1018] = 45, + [1019] = 47, + [1020] = 44, + [1021] = 198, + [1022] = 28, + [1023] = 42, + [1024] = 191, + [1025] = 200, + [1026] = 198, + [1027] = 1027, + [1028] = 196, + [1029] = 195, + [1030] = 202, + [1031] = 1031, + [1032] = 192, + [1033] = 199, + [1034] = 194, + [1035] = 205, + [1036] = 204, + [1037] = 201, + [1038] = 1038, + [1039] = 52, + [1040] = 11, + [1041] = 6, + [1042] = 19, + [1043] = 5, + [1044] = 24, + [1045] = 11, + [1046] = 18, + [1047] = 8, + [1048] = 4, + [1049] = 12, + [1050] = 20, + [1051] = 10, + [1052] = 17, + [1053] = 14, + [1054] = 9, + [1055] = 19, + [1056] = 234, + [1057] = 59, + [1058] = 20, + [1059] = 13, + [1060] = 16, + [1061] = 1061, + [1062] = 18, + [1063] = 11, + [1064] = 5, + [1065] = 15, + [1066] = 59, + [1067] = 4, + [1068] = 19, + [1069] = 307, + [1070] = 6, + [1071] = 14, + [1072] = 11, + [1073] = 16, + [1074] = 22, + [1075] = 20, + [1076] = 8, + [1077] = 10, + [1078] = 13, + [1079] = 21, + [1080] = 19, + [1081] = 234, + [1082] = 17, + [1083] = 26, + [1084] = 12, + [1085] = 9, + [1086] = 20, + [1087] = 25, + [1088] = 24, + [1089] = 7, + [1090] = 27, + [1091] = 23, + [1092] = 46, + [1093] = 29, + [1094] = 23, + [1095] = 39, + [1096] = 48, + [1097] = 34, [1098] = 25, - [1099] = 16, - [1100] = 44, - [1101] = 14, - [1102] = 31, - [1103] = 39, - [1104] = 194, - [1105] = 193, - [1106] = 192, - [1107] = 191, - [1108] = 45, - [1109] = 188, - [1110] = 22, - [1111] = 23, - [1112] = 42, - [1113] = 35, - [1114] = 46, - [1115] = 1115, - [1116] = 21, - [1117] = 196, - [1118] = 24, - [1119] = 197, - [1120] = 27, - [1121] = 28, - [1122] = 30, - [1123] = 29, - [1124] = 25, - [1125] = 47, - [1126] = 32, - [1127] = 34, - [1128] = 37, - [1129] = 183, - [1130] = 38, - [1131] = 41, - [1132] = 48, - [1133] = 40, - [1134] = 182, + [1099] = 38, + [1100] = 52, + [1101] = 32, + [1102] = 21, + [1103] = 31, + [1104] = 37, + [1105] = 7, + [1106] = 26, + [1107] = 30, + [1108] = 40, + [1109] = 41, + [1110] = 28, + [1111] = 49, + [1112] = 22, + [1113] = 307, + [1114] = 51, + [1115] = 15, + [1116] = 42, + [1117] = 35, + [1118] = 36, + [1119] = 33, + [1120] = 45, + [1121] = 44, + [1122] = 50, + [1123] = 27, + [1124] = 47, + [1125] = 43, + [1126] = 33, + [1127] = 48, + [1128] = 202, + [1129] = 51, + [1130] = 49, + [1131] = 204, + [1132] = 52, + [1133] = 205, + [1134] = 194, [1135] = 43, - [1136] = 26, - [1137] = 36, - [1138] = 33, - [1139] = 190, - [1140] = 198, - [1141] = 195, - [1142] = 227, - [1143] = 242, - [1144] = 1144, - [1145] = 1145, - [1146] = 49, - [1147] = 1144, - [1148] = 1144, - [1149] = 1145, - [1150] = 19, - [1151] = 1144, - [1152] = 1144, - [1153] = 20, - [1154] = 1145, - [1155] = 1145, - [1156] = 16, - [1157] = 1145, - [1158] = 1158, - [1159] = 191, - [1160] = 182, - [1161] = 195, - [1162] = 190, - [1163] = 197, - [1164] = 192, - [1165] = 198, - [1166] = 188, - [1167] = 196, - [1168] = 193, - [1169] = 194, - [1170] = 183, + [1136] = 199, + [1137] = 29, + [1138] = 192, + [1139] = 34, + [1140] = 40, + [1141] = 30, + [1142] = 41, + [1143] = 46, + [1144] = 28, + [1145] = 200, + [1146] = 201, + [1147] = 38, + [1148] = 1148, + [1149] = 45, + [1150] = 50, + [1151] = 191, + [1152] = 44, + [1153] = 195, + [1154] = 32, + [1155] = 31, + [1156] = 196, + [1157] = 37, + [1158] = 42, + [1159] = 35, + [1160] = 198, + [1161] = 47, + [1162] = 36, + [1163] = 39, + [1164] = 234, + [1165] = 307, + [1166] = 11, + [1167] = 20, + [1168] = 19, + [1169] = 59, + [1170] = 1170, [1171] = 1171, - [1172] = 191, - [1173] = 182, - [1174] = 2, - [1175] = 183, - [1176] = 197, - [1177] = 198, - [1178] = 1178, - [1179] = 190, - [1180] = 227, - [1181] = 194, - [1182] = 1182, - [1183] = 193, - [1184] = 188, - [1185] = 195, - [1186] = 192, - [1187] = 196, - [1188] = 197, - [1189] = 242, - [1190] = 188, - [1191] = 194, - [1192] = 3, - [1193] = 191, - [1194] = 227, - [1195] = 192, - [1196] = 183, - [1197] = 193, - [1198] = 196, - [1199] = 1199, - [1200] = 182, - [1201] = 190, - [1202] = 198, - [1203] = 195, - [1204] = 1199, - [1205] = 188, - [1206] = 195, - [1207] = 227, - [1208] = 194, - [1209] = 193, - [1210] = 192, - [1211] = 191, - [1212] = 182, - [1213] = 196, - [1214] = 190, - [1215] = 198, - [1216] = 242, - [1217] = 183, - [1218] = 197, - [1219] = 1219, - [1220] = 1219, - [1221] = 1219, - [1222] = 1222, - [1223] = 1222, - [1224] = 1219, - [1225] = 1222, - [1226] = 1219, - [1227] = 1222, - [1228] = 1222, - [1229] = 1219, - [1230] = 1219, - [1231] = 1219, - [1232] = 1219, - [1233] = 1222, - [1234] = 1219, - [1235] = 1222, - [1236] = 1222, - [1237] = 242, - [1238] = 1219, - [1239] = 1222, - [1240] = 1222, - [1241] = 1222, - [1242] = 1219, - [1243] = 1222, - [1244] = 1219, - [1245] = 227, - [1246] = 1222, - [1247] = 1247, - [1248] = 1248, - [1249] = 242, - [1250] = 1248, - [1251] = 1248, - [1252] = 1248, - [1253] = 1248, - [1254] = 1254, - [1255] = 192, - [1256] = 198, - [1257] = 195, - [1258] = 5, - [1259] = 182, - [1260] = 1260, - [1261] = 188, - [1262] = 197, - [1263] = 191, - [1264] = 190, - [1265] = 193, - [1266] = 194, - [1267] = 183, - [1268] = 4, - [1269] = 196, - [1270] = 198, - [1271] = 192, - [1272] = 1272, - [1273] = 1273, - [1274] = 12, - [1275] = 227, - [1276] = 1276, - [1277] = 191, - [1278] = 1276, - [1279] = 1276, - [1280] = 193, - [1281] = 9, - [1282] = 1272, - [1283] = 194, - [1284] = 183, - [1285] = 1276, - [1286] = 196, - [1287] = 182, - [1288] = 197, - [1289] = 1276, - [1290] = 195, - [1291] = 1272, - [1292] = 1272, - [1293] = 188, - [1294] = 190, - [1295] = 1272, - [1296] = 195, - [1297] = 8, - [1298] = 193, - [1299] = 198, - [1300] = 197, - [1301] = 182, - [1302] = 194, - [1303] = 183, - [1304] = 11, - [1305] = 196, - [1306] = 188, - [1307] = 190, - [1308] = 1308, - [1309] = 6, - [1310] = 18, - [1311] = 13, - [1312] = 6, - [1313] = 191, - [1314] = 7, - [1315] = 11, - [1316] = 192, - [1317] = 227, - [1318] = 242, - [1319] = 10, - [1320] = 1320, - [1321] = 17, - [1322] = 14, - [1323] = 1323, - [1324] = 197, - [1325] = 44, - [1326] = 227, - [1327] = 1320, + [1172] = 1170, + [1173] = 1170, + [1174] = 1171, + [1175] = 1170, + [1176] = 1171, + [1177] = 1170, + [1178] = 1171, + [1179] = 1171, + [1180] = 199, + [1181] = 200, + [1182] = 204, + [1183] = 195, + [1184] = 201, + [1185] = 1185, + [1186] = 205, + [1187] = 194, + [1188] = 196, + [1189] = 191, + [1190] = 198, + [1191] = 202, + [1192] = 192, + [1193] = 234, + [1194] = 1194, + [1195] = 1195, + [1196] = 199, + [1197] = 192, + [1198] = 200, + [1199] = 191, + [1200] = 201, + [1201] = 194, + [1202] = 1202, + [1203] = 204, + [1204] = 205, + [1205] = 202, + [1206] = 198, + [1207] = 196, + [1208] = 195, + [1209] = 2, + [1210] = 200, + [1211] = 192, + [1212] = 201, + [1213] = 195, + [1214] = 204, + [1215] = 202, + [1216] = 196, + [1217] = 191, + [1218] = 3, + [1219] = 205, + [1220] = 194, + [1221] = 199, + [1222] = 307, + [1223] = 234, + [1224] = 1224, + [1225] = 198, + [1226] = 196, + [1227] = 200, + [1228] = 205, + [1229] = 234, + [1230] = 199, + [1231] = 204, + [1232] = 194, + [1233] = 201, + [1234] = 195, + [1235] = 198, + [1236] = 307, + [1237] = 1224, + [1238] = 202, + [1239] = 191, + [1240] = 192, + [1241] = 1241, + [1242] = 1242, + [1243] = 1241, + [1244] = 1241, + [1245] = 1242, + [1246] = 1242, + [1247] = 1242, + [1248] = 1242, + [1249] = 1241, + [1250] = 1241, + [1251] = 1241, + [1252] = 1242, + [1253] = 1241, + [1254] = 1242, + [1255] = 307, + [1256] = 1241, + [1257] = 1242, + [1258] = 1241, + [1259] = 1241, + [1260] = 1242, + [1261] = 1242, + [1262] = 1242, + [1263] = 1241, + [1264] = 1242, + [1265] = 1241, + [1266] = 1242, + [1267] = 1241, + [1268] = 234, + [1269] = 1269, + [1270] = 1270, + [1271] = 1271, + [1272] = 307, + [1273] = 1271, + [1274] = 1271, + [1275] = 1271, + [1276] = 1271, + [1277] = 199, + [1278] = 6, + [1279] = 5, + [1280] = 192, + [1281] = 205, + [1282] = 1282, + [1283] = 201, + [1284] = 194, + [1285] = 4, + [1286] = 195, + [1287] = 204, + [1288] = 196, + [1289] = 198, + [1290] = 202, + [1291] = 191, + [1292] = 200, + [1293] = 1293, + [1294] = 191, + [1295] = 205, + [1296] = 204, + [1297] = 201, + [1298] = 202, + [1299] = 1293, + [1300] = 192, + [1301] = 1301, + [1302] = 198, + [1303] = 1301, + [1304] = 199, + [1305] = 194, + [1306] = 200, + [1307] = 195, + [1308] = 7, + [1309] = 10, + [1310] = 1301, + [1311] = 1293, + [1312] = 1293, + [1313] = 1301, + [1314] = 196, + [1315] = 1315, + [1316] = 1301, + [1317] = 1293, + [1318] = 234, + [1319] = 15, + [1320] = 17, + [1321] = 13, + [1322] = 22, + [1323] = 307, + [1324] = 194, + [1325] = 11, + [1326] = 199, + [1327] = 20, [1328] = 19, - [1329] = 195, - [1330] = 20, - [1331] = 198, - [1332] = 190, - [1333] = 1333, - [1334] = 191, - [1335] = 188, - [1336] = 192, - [1337] = 188, - [1338] = 1323, - [1339] = 16, - [1340] = 1340, + [1329] = 11, + [1330] = 205, + [1331] = 204, + [1332] = 201, + [1333] = 16, + [1334] = 234, + [1335] = 8, + [1336] = 195, + [1337] = 9, + [1338] = 196, + [1339] = 9, + [1340] = 20, [1341] = 19, - [1342] = 194, - [1343] = 1343, - [1344] = 183, + [1342] = 59, + [1343] = 198, + [1344] = 202, [1345] = 191, - [1346] = 196, - [1347] = 20, - [1348] = 192, - [1349] = 182, - [1350] = 16, - [1351] = 1351, - [1352] = 193, - [1353] = 1333, - [1354] = 197, - [1355] = 198, - [1356] = 195, - [1357] = 190, - [1358] = 242, - [1359] = 1320, - [1360] = 194, - [1361] = 15, - [1362] = 1323, - [1363] = 1333, - [1364] = 1323, - [1365] = 183, - [1366] = 1333, - [1367] = 196, - [1368] = 182, - [1369] = 1273, - [1370] = 1323, - [1371] = 49, - [1372] = 193, - [1373] = 15, - [1374] = 1374, - [1375] = 1320, - [1376] = 1333, - [1377] = 1320, - [1378] = 2, - [1379] = 2, - [1380] = 30, - [1381] = 43, - [1382] = 33, - [1383] = 191, - [1384] = 36, - [1385] = 192, - [1386] = 188, - [1387] = 190, - [1388] = 2, - [1389] = 195, - [1390] = 25, - [1391] = 198, - [1392] = 227, - [1393] = 227, - [1394] = 193, - [1395] = 31, - [1396] = 49, - [1397] = 39, - [1398] = 47, - [1399] = 2, - [1400] = 3, - [1401] = 194, - [1402] = 29, - [1403] = 242, - [1404] = 1404, - [1405] = 40, - [1406] = 21, - [1407] = 183, - [1408] = 196, - [1409] = 35, - [1410] = 42, - [1411] = 23, - [1412] = 24, - [1413] = 26, - [1414] = 27, - [1415] = 28, - [1416] = 182, - [1417] = 32, - [1418] = 197, - [1419] = 34, - [1420] = 45, - [1421] = 37, - [1422] = 38, - [1423] = 41, - [1424] = 22, - [1425] = 48, - [1426] = 46, - [1427] = 3, - [1428] = 242, - [1429] = 3, - [1430] = 3, - [1431] = 197, - [1432] = 196, - [1433] = 182, - [1434] = 192, - [1435] = 191, - [1436] = 198, - [1437] = 49, - [1438] = 188, - [1439] = 183, - [1440] = 194, - [1441] = 1273, - [1442] = 242, - [1443] = 227, - [1444] = 195, - [1445] = 193, - [1446] = 190, - [1447] = 2, - [1448] = 2, - [1449] = 3, - [1450] = 3, - [1451] = 227, - [1452] = 242, - [1453] = 194, - [1454] = 1454, - [1455] = 182, - [1456] = 197, - [1457] = 191, - [1458] = 1458, - [1459] = 1459, - [1460] = 1454, - [1461] = 1461, - [1462] = 196, - [1463] = 183, - [1464] = 242, - [1465] = 198, - [1466] = 193, - [1467] = 192, - [1468] = 197, - [1469] = 1461, + [1346] = 12, + [1347] = 24, + [1348] = 18, + [1349] = 200, + [1350] = 192, + [1351] = 8, + [1352] = 14, + [1353] = 1353, + [1354] = 198, + [1355] = 205, + [1356] = 1356, + [1357] = 1357, + [1358] = 1356, + [1359] = 1315, + [1360] = 1360, + [1361] = 1361, + [1362] = 202, + [1363] = 199, + [1364] = 1360, + [1365] = 198, + [1366] = 196, + [1367] = 1360, + [1368] = 1360, + [1369] = 205, + [1370] = 204, + [1371] = 1356, + [1372] = 201, + [1373] = 2, + [1374] = 191, + [1375] = 1356, + [1376] = 1357, + [1377] = 201, + [1378] = 200, + [1379] = 1360, + [1380] = 204, + [1381] = 307, + [1382] = 194, + [1383] = 26, + [1384] = 194, + [1385] = 1385, + [1386] = 234, + [1387] = 2, + [1388] = 192, + [1389] = 1389, + [1390] = 199, + [1391] = 1356, + [1392] = 21, + [1393] = 192, + [1394] = 195, + [1395] = 1357, + [1396] = 200, + [1397] = 191, + [1398] = 202, + [1399] = 1357, + [1400] = 23, + [1401] = 27, + [1402] = 196, + [1403] = 195, + [1404] = 1357, + [1405] = 25, + [1406] = 27, + [1407] = 2, + [1408] = 59, + [1409] = 1409, + [1410] = 198, + [1411] = 49, + [1412] = 43, + [1413] = 205, + [1414] = 37, + [1415] = 46, + [1416] = 45, + [1417] = 234, + [1418] = 44, + [1419] = 194, + [1420] = 36, + [1421] = 35, + [1422] = 28, + [1423] = 33, + [1424] = 39, + [1425] = 307, + [1426] = 42, + [1427] = 31, + [1428] = 32, + [1429] = 51, + [1430] = 52, + [1431] = 3, + [1432] = 2, + [1433] = 201, + [1434] = 204, + [1435] = 199, + [1436] = 2, + [1437] = 3, + [1438] = 38, + [1439] = 192, + [1440] = 1440, + [1441] = 2, + [1442] = 234, + [1443] = 196, + [1444] = 59, + [1445] = 200, + [1446] = 3, + [1447] = 191, + [1448] = 30, + [1449] = 40, + [1450] = 202, + [1451] = 29, + [1452] = 34, + [1453] = 50, + [1454] = 48, + [1455] = 47, + [1456] = 41, + [1457] = 195, + [1458] = 3, + [1459] = 200, + [1460] = 3, + [1461] = 195, + [1462] = 201, + [1463] = 234, + [1464] = 199, + [1465] = 307, + [1466] = 192, + [1467] = 198, + [1468] = 1315, + [1469] = 3, [1470] = 191, - [1471] = 195, - [1472] = 1458, - [1473] = 196, - [1474] = 183, - [1475] = 188, - [1476] = 190, - [1477] = 188, + [1471] = 202, + [1472] = 196, + [1473] = 205, + [1474] = 194, + [1475] = 204, + [1476] = 307, + [1477] = 1477, [1478] = 1478, - [1479] = 1454, - [1480] = 190, - [1481] = 1481, + [1479] = 1479, + [1480] = 1479, + [1481] = 1478, [1482] = 1482, [1483] = 1483, - [1484] = 1482, - [1485] = 1461, - [1486] = 1458, - [1487] = 1454, - [1488] = 1488, - [1489] = 1489, - [1490] = 1461, - [1491] = 1458, - [1492] = 182, - [1493] = 1493, - [1494] = 194, - [1495] = 1459, - [1496] = 195, - [1497] = 193, - [1498] = 192, - [1499] = 1499, - [1500] = 198, - [1501] = 1478, - [1502] = 1499, - [1503] = 193, - [1504] = 1504, - [1505] = 191, - [1506] = 188, - [1507] = 188, - [1508] = 192, - [1509] = 183, - [1510] = 1510, + [1484] = 1484, + [1485] = 1482, + [1486] = 1477, + [1487] = 1478, + [1488] = 1482, + [1489] = 1483, + [1490] = 234, + [1491] = 1478, + [1492] = 1482, + [1493] = 1479, + [1494] = 1484, + [1495] = 1479, + [1496] = 307, + [1497] = 202, + [1498] = 191, + [1499] = 205, + [1500] = 200, + [1501] = 194, + [1502] = 1502, + [1503] = 198, + [1504] = 204, + [1505] = 192, + [1506] = 199, + [1507] = 1507, + [1508] = 1508, + [1509] = 192, + [1510] = 200, [1511] = 1511, - [1512] = 197, - [1513] = 1510, + [1512] = 199, + [1513] = 196, [1514] = 194, - [1515] = 182, - [1516] = 197, - [1517] = 1517, - [1518] = 1510, + [1515] = 195, + [1516] = 205, + [1517] = 191, + [1518] = 202, [1519] = 198, [1520] = 196, - [1521] = 183, - [1522] = 194, - [1523] = 193, - [1524] = 192, - [1525] = 191, - [1526] = 195, - [1527] = 190, - [1528] = 198, - [1529] = 195, - [1530] = 190, - [1531] = 1510, - [1532] = 196, - [1533] = 182, + [1521] = 1521, + [1522] = 195, + [1523] = 1507, + [1524] = 1524, + [1525] = 204, + [1526] = 201, + [1527] = 307, + [1528] = 1511, + [1529] = 1529, + [1530] = 1530, + [1531] = 201, + [1532] = 1532, + [1533] = 1533, [1534] = 1534, - [1535] = 1517, - [1536] = 227, - [1537] = 5, - [1538] = 1510, + [1535] = 1535, + [1536] = 1536, + [1537] = 201, + [1538] = 1538, [1539] = 1539, [1540] = 1540, - [1541] = 1511, - [1542] = 227, - [1543] = 1504, - [1544] = 4, - [1545] = 1511, - [1546] = 1511, - [1547] = 1511, + [1541] = 1541, + [1542] = 1542, + [1543] = 1543, + [1544] = 1544, + [1545] = 1545, + [1546] = 1546, + [1547] = 1547, [1548] = 1548, [1549] = 1549, [1550] = 1550, @@ -5637,25 +5650,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1563] = 1563, [1564] = 1564, [1565] = 1565, - [1566] = 1566, + [1566] = 1533, [1567] = 1567, - [1568] = 188, + [1568] = 1568, [1569] = 1569, - [1570] = 197, + [1570] = 1570, [1571] = 1571, - [1572] = 198, + [1572] = 1572, [1573] = 1573, [1574] = 1574, [1575] = 1575, [1576] = 1576, [1577] = 1577, - [1578] = 195, - [1579] = 190, - [1580] = 188, + [1578] = 1578, + [1579] = 1579, + [1580] = 1580, [1581] = 1581, [1582] = 1582, [1583] = 1583, - [1584] = 227, + [1584] = 1584, [1585] = 1585, [1586] = 1586, [1587] = 1587, @@ -5682,7 +5695,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1608] = 1608, [1609] = 1609, [1610] = 1610, - [1611] = 193, + [1611] = 1611, [1612] = 1612, [1613] = 1613, [1614] = 1614, @@ -5690,21 +5703,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1616] = 1616, [1617] = 1617, [1618] = 1618, - [1619] = 1619, + [1619] = 1593, [1620] = 1620, [1621] = 1621, - [1622] = 1622, - [1623] = 1623, - [1624] = 1624, - [1625] = 1625, - [1626] = 1626, - [1627] = 1627, - [1628] = 1628, + [1622] = 1593, + [1623] = 195, + [1624] = 196, + [1625] = 198, + [1626] = 202, + [1627] = 191, + [1628] = 200, [1629] = 1629, [1630] = 1630, [1631] = 1631, [1632] = 1632, - [1633] = 1633, + [1633] = 1593, [1634] = 1634, [1635] = 1635, [1636] = 1636, @@ -5738,48 +5751,48 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1664] = 1664, [1665] = 1665, [1666] = 1666, - [1667] = 182, - [1668] = 196, + [1667] = 1667, + [1668] = 1668, [1669] = 1669, [1670] = 1670, [1671] = 1671, - [1672] = 1672, - [1673] = 1673, - [1674] = 1674, - [1675] = 183, - [1676] = 194, - [1677] = 193, + [1672] = 192, + [1673] = 199, + [1674] = 194, + [1675] = 205, + [1676] = 204, + [1677] = 1677, [1678] = 1678, [1679] = 1679, [1680] = 1680, [1681] = 1681, [1682] = 1682, - [1683] = 192, + [1683] = 1683, [1684] = 1684, - [1685] = 191, + [1685] = 1685, [1686] = 1686, [1687] = 1687, [1688] = 1688, [1689] = 1689, [1690] = 1690, [1691] = 1691, - [1692] = 1692, - [1693] = 1693, + [1692] = 204, + [1693] = 205, [1694] = 1694, - [1695] = 1695, - [1696] = 1696, - [1697] = 1697, - [1698] = 1698, - [1699] = 5, - [1700] = 188, + [1695] = 194, + [1696] = 199, + [1697] = 192, + [1698] = 1588, + [1699] = 1699, + [1700] = 1700, [1701] = 1701, - [1702] = 190, - [1703] = 195, - [1704] = 1701, + [1702] = 1702, + [1703] = 1703, + [1704] = 1704, [1705] = 1705, - [1706] = 198, - [1707] = 197, - [1708] = 1708, + [1706] = 1706, + [1707] = 1707, + [1708] = 1685, [1709] = 1709, [1710] = 1710, [1711] = 1711, @@ -5790,1497 +5803,1497 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1716] = 1716, [1717] = 1717, [1718] = 1718, - [1719] = 182, + [1719] = 1719, [1720] = 1720, [1721] = 1721, [1722] = 1722, - [1723] = 196, + [1723] = 1723, [1724] = 1724, - [1725] = 183, - [1726] = 194, + [1725] = 1725, + [1726] = 234, [1727] = 1727, - [1728] = 1728, - [1729] = 1729, - [1730] = 1730, - [1731] = 1731, - [1732] = 1732, - [1733] = 190, - [1734] = 195, - [1735] = 198, - [1736] = 197, - [1737] = 182, - [1738] = 4, - [1739] = 1739, + [1728] = 200, + [1729] = 191, + [1730] = 202, + [1731] = 1710, + [1732] = 234, + [1733] = 198, + [1734] = 196, + [1735] = 195, + [1736] = 4, + [1737] = 5, + [1738] = 1593, + [1739] = 6, [1740] = 1740, [1741] = 1741, [1742] = 1742, [1743] = 1743, [1744] = 1744, - [1745] = 1745, - [1746] = 1746, - [1747] = 1747, - [1748] = 1564, - [1749] = 1701, - [1750] = 192, - [1751] = 191, + [1745] = 1631, + [1746] = 1569, + [1747] = 1631, + [1748] = 1690, + [1749] = 1650, + [1750] = 1649, + [1751] = 1751, [1752] = 1752, - [1753] = 1753, + [1753] = 1565, [1754] = 1754, - [1755] = 1755, - [1756] = 1756, - [1757] = 1757, - [1758] = 1701, - [1759] = 1731, - [1760] = 1694, - [1761] = 1693, - [1762] = 1645, - [1763] = 1644, - [1764] = 196, - [1765] = 183, - [1766] = 1642, - [1767] = 194, - [1768] = 193, - [1769] = 1769, + [1755] = 1563, + [1756] = 1562, + [1757] = 1561, + [1758] = 1558, + [1759] = 1759, + [1760] = 1760, + [1761] = 1725, + [1762] = 1724, + [1763] = 1723, + [1764] = 1722, + [1765] = 1721, + [1766] = 1714, + [1767] = 1713, + [1768] = 1711, + [1769] = 1583, [1770] = 1770, - [1771] = 1641, - [1772] = 192, - [1773] = 191, - [1774] = 1640, - [1775] = 1637, - [1776] = 12, + [1771] = 1771, + [1772] = 1684, + [1773] = 1534, + [1774] = 1683, + [1775] = 1670, + [1776] = 1776, [1777] = 1777, - [1778] = 1778, - [1779] = 1779, - [1780] = 1780, - [1781] = 1781, - [1782] = 1565, - [1783] = 1783, - [1784] = 1617, - [1785] = 1562, - [1786] = 1561, - [1787] = 1559, - [1788] = 1558, - [1789] = 1789, - [1790] = 1557, - [1791] = 1791, - [1792] = 1792, - [1793] = 1556, - [1794] = 1589, - [1795] = 1590, - [1796] = 1591, - [1797] = 1797, - [1798] = 1665, - [1799] = 1664, - [1800] = 1663, - [1801] = 1660, - [1802] = 1659, - [1803] = 1658, - [1804] = 1657, - [1805] = 1655, - [1806] = 1648, - [1807] = 1630, - [1808] = 1629, - [1809] = 1628, - [1810] = 1627, - [1811] = 1625, - [1812] = 1624, - [1813] = 1623, - [1814] = 1621, - [1815] = 1620, - [1816] = 1619, - [1817] = 1615, - [1818] = 1614, - [1819] = 1613, - [1820] = 1612, - [1821] = 1574, - [1822] = 1610, - [1823] = 1609, - [1824] = 1608, - [1825] = 1607, - [1826] = 1606, - [1827] = 1588, - [1828] = 1587, - [1829] = 1603, - [1830] = 1586, - [1831] = 1585, - [1832] = 1583, - [1833] = 1582, - [1834] = 1581, - [1835] = 1576, - [1836] = 1575, - [1837] = 1549, - [1838] = 1550, - [1839] = 1551, - [1840] = 1552, - [1841] = 1553, - [1842] = 1554, - [1843] = 1555, - [1844] = 1560, - [1845] = 1563, - [1846] = 1566, - [1847] = 1567, - [1848] = 1604, - [1849] = 1569, - [1850] = 1605, - [1851] = 1616, - [1852] = 1571, - [1853] = 1573, - [1854] = 1577, - [1855] = 1592, - [1856] = 1593, - [1857] = 1594, - [1858] = 1595, - [1859] = 1596, - [1860] = 1597, - [1861] = 1598, - [1862] = 1599, - [1863] = 1600, - [1864] = 1601, - [1865] = 1602, - [1866] = 1622, - [1867] = 1633, - [1868] = 1634, - [1869] = 1635, - [1870] = 1636, - [1871] = 1638, - [1872] = 1639, - [1873] = 1643, - [1874] = 1646, - [1875] = 1797, - [1876] = 1792, - [1877] = 1791, - [1878] = 188, - [1879] = 1666, - [1880] = 1618, - [1881] = 1789, - [1882] = 1647, - [1883] = 1626, - [1884] = 1649, - [1885] = 1650, - [1886] = 1548, - [1887] = 1631, - [1888] = 1632, - [1889] = 1656, - [1890] = 1890, - [1891] = 191, - [1892] = 1651, - [1893] = 1652, - [1894] = 1653, - [1895] = 192, - [1896] = 9, - [1897] = 193, - [1898] = 194, - [1899] = 183, - [1900] = 196, - [1901] = 182, - [1902] = 1781, - [1903] = 1780, - [1904] = 1779, - [1905] = 1654, - [1906] = 1661, - [1907] = 1662, - [1908] = 1778, - [1909] = 1777, - [1910] = 197, - [1911] = 198, - [1912] = 195, - [1913] = 1669, - [1914] = 190, - [1915] = 1915, - [1916] = 1670, - [1917] = 1671, - [1918] = 1672, - [1919] = 5, - [1920] = 191, - [1921] = 192, - [1922] = 193, - [1923] = 194, - [1924] = 183, - [1925] = 1673, - [1926] = 1674, - [1927] = 196, - [1928] = 4, - [1929] = 1678, - [1930] = 182, - [1931] = 197, - [1932] = 198, - [1933] = 195, - [1934] = 190, - [1935] = 188, - [1936] = 1701, - [1937] = 5, - [1938] = 1757, - [1939] = 1756, - [1940] = 1755, - [1941] = 1754, - [1942] = 1753, - [1943] = 1752, - [1944] = 1679, - [1945] = 1680, - [1946] = 1681, - [1947] = 1747, - [1948] = 1746, - [1949] = 1745, - [1950] = 1744, - [1951] = 1743, - [1952] = 1742, - [1953] = 1741, - [1954] = 1682, - [1955] = 1955, - [1956] = 1740, - [1957] = 1739, - [1958] = 1724, - [1959] = 4, - [1960] = 1684, - [1961] = 1686, - [1962] = 1890, - [1963] = 1687, - [1964] = 1688, - [1965] = 1689, - [1966] = 242, - [1967] = 242, - [1968] = 1968, - [1969] = 1969, - [1970] = 1970, - [1971] = 1732, - [1972] = 1730, - [1973] = 1729, - [1974] = 1728, - [1975] = 1727, - [1976] = 1976, - [1977] = 1769, - [1978] = 1722, - [1979] = 1721, - [1980] = 1720, - [1981] = 1718, - [1982] = 1717, - [1983] = 1716, - [1984] = 1715, - [1985] = 1714, - [1986] = 1713, - [1987] = 1712, - [1988] = 1711, - [1989] = 1710, - [1990] = 1709, - [1991] = 1708, - [1992] = 1705, - [1993] = 1770, - [1994] = 1690, - [1995] = 1698, - [1996] = 1697, - [1997] = 1696, - [1998] = 1695, - [1999] = 1692, - [2000] = 1691, - [2001] = 1722, - [2002] = 1642, - [2003] = 1745, - [2004] = 8, - [2005] = 196, - [2006] = 2006, - [2007] = 183, - [2008] = 194, - [2009] = 1689, - [2010] = 193, - [2011] = 192, - [2012] = 1688, - [2013] = 188, - [2014] = 190, - [2015] = 191, - [2016] = 195, - [2017] = 198, - [2018] = 7, - [2019] = 197, - [2020] = 1746, - [2021] = 182, - [2022] = 1747, - [2023] = 182, - [2024] = 197, - [2025] = 1797, - [2026] = 198, - [2027] = 195, - [2028] = 1792, - [2029] = 1791, - [2030] = 2030, - [2031] = 196, - [2032] = 190, - [2033] = 1744, - [2034] = 1616, - [2035] = 18, - [2036] = 1587, - [2037] = 1752, - [2038] = 1586, - [2039] = 1753, - [2040] = 1754, - [2041] = 1755, - [2042] = 2042, - [2043] = 188, - [2044] = 1589, - [2045] = 183, - [2046] = 1590, - [2047] = 1591, - [2048] = 1603, - [2049] = 1604, - [2050] = 1585, - [2051] = 1605, - [2052] = 194, - [2053] = 193, - [2054] = 1665, - [2055] = 192, - [2056] = 191, - [2057] = 1606, - [2058] = 1664, - [2059] = 1663, - [2060] = 12, - [2061] = 1660, - [2062] = 1659, - [2063] = 1658, - [2064] = 227, - [2065] = 1607, - [2066] = 5, - [2067] = 1666, - [2068] = 1789, - [2069] = 1657, - [2070] = 1656, - [2071] = 1655, - [2072] = 1648, - [2073] = 1632, - [2074] = 1631, - [2075] = 1630, - [2076] = 1629, - [2077] = 1628, - [2078] = 1627, - [2079] = 1548, - [2080] = 1626, - [2081] = 1625, - [2082] = 1624, - [2083] = 1623, - [2084] = 1621, - [2085] = 1620, - [2086] = 1619, - [2087] = 1608, - [2088] = 1583, - [2089] = 1582, - [2090] = 1618, - [2091] = 1617, - [2092] = 191, - [2093] = 192, - [2094] = 1567, - [2095] = 1690, - [2096] = 193, - [2097] = 1615, - [2098] = 1609, - [2099] = 1691, - [2100] = 12, - [2101] = 194, - [2102] = 1614, - [2103] = 1613, - [2104] = 1612, - [2105] = 183, - [2106] = 1610, - [2107] = 1574, - [2108] = 1610, - [2109] = 1609, - [2110] = 1608, - [2111] = 1607, - [2112] = 1606, - [2113] = 1605, - [2114] = 1604, - [2115] = 1603, - [2116] = 1591, - [2117] = 1590, - [2118] = 1589, - [2119] = 1588, - [2120] = 9, - [2121] = 227, - [2122] = 1692, - [2123] = 1574, - [2124] = 1612, - [2125] = 1686, - [2126] = 1684, - [2127] = 1587, - [2128] = 1586, - [2129] = 1585, - [2130] = 1583, - [2131] = 1582, - [2132] = 1581, - [2133] = 1576, - [2134] = 1575, - [2135] = 1549, - [2136] = 1550, - [2137] = 1613, - [2138] = 1693, - [2139] = 1756, - [2140] = 1551, - [2141] = 1614, - [2142] = 1615, - [2143] = 196, - [2144] = 1552, - [2145] = 1757, - [2146] = 1581, - [2147] = 1576, - [2148] = 4, - [2149] = 1517, - [2150] = 1553, - [2151] = 1554, - [2152] = 1555, - [2153] = 1556, - [2154] = 1575, - [2155] = 9, - [2156] = 1557, - [2157] = 1558, - [2158] = 182, - [2159] = 1559, - [2160] = 1560, - [2161] = 1561, - [2162] = 1562, - [2163] = 1563, - [2164] = 1564, - [2165] = 1565, - [2166] = 1566, - [2167] = 1640, - [2168] = 1569, - [2169] = 197, - [2170] = 198, - [2171] = 1571, - [2172] = 1573, - [2173] = 195, - [2174] = 190, - [2175] = 1549, - [2176] = 1616, - [2177] = 1577, - [2178] = 1592, - [2179] = 1593, - [2180] = 1594, - [2181] = 1595, - [2182] = 1596, - [2183] = 188, - [2184] = 1617, - [2185] = 1618, - [2186] = 11, - [2187] = 9, - [2188] = 1550, - [2189] = 1597, - [2190] = 13, - [2191] = 1743, - [2192] = 1551, - [2193] = 1598, - [2194] = 1599, - [2195] = 1600, - [2196] = 1601, - [2197] = 1602, - [2198] = 5, - [2199] = 1619, - [2200] = 2042, - [2201] = 1620, - [2202] = 1622, - [2203] = 1633, - [2204] = 1552, - [2205] = 1621, - [2206] = 1623, - [2207] = 6, - [2208] = 1624, - [2209] = 1625, - [2210] = 1634, - [2211] = 1635, - [2212] = 4, - [2213] = 2213, - [2214] = 1742, - [2215] = 1741, - [2216] = 1553, - [2217] = 1740, - [2218] = 1636, - [2219] = 1637, - [2220] = 1638, - [2221] = 1639, - [2222] = 1554, - [2223] = 1732, - [2224] = 10, - [2225] = 1641, - [2226] = 1642, - [2227] = 1643, - [2228] = 1644, - [2229] = 1645, - [2230] = 1646, - [2231] = 1739, - [2232] = 1555, - [2233] = 1556, - [2234] = 1647, - [2235] = 1649, - [2236] = 1650, - [2237] = 1651, - [2238] = 1652, - [2239] = 1653, - [2240] = 1654, - [2241] = 1661, - [2242] = 1662, - [2243] = 1557, - [2244] = 1558, - [2245] = 1559, - [2246] = 1669, - [2247] = 1560, - [2248] = 1561, - [2249] = 1504, - [2250] = 1670, - [2251] = 1671, - [2252] = 1672, - [2253] = 1673, - [2254] = 1674, - [2255] = 1678, - [2256] = 1562, - [2257] = 1679, - [2258] = 1563, - [2259] = 1680, - [2260] = 1681, - [2261] = 1682, - [2262] = 1564, - [2263] = 1684, - [2264] = 1565, - [2265] = 1686, - [2266] = 2042, - [2267] = 1777, - [2268] = 1687, - [2269] = 1688, - [2270] = 1778, - [2271] = 1566, - [2272] = 1689, - [2273] = 1732, - [2274] = 1690, - [2275] = 1691, - [2276] = 1692, - [2277] = 1693, - [2278] = 1694, - [2279] = 1695, - [2280] = 1696, - [2281] = 1697, - [2282] = 1698, - [2283] = 1567, - [2284] = 1626, - [2285] = 2006, - [2286] = 2213, - [2287] = 1569, - [2288] = 1571, - [2289] = 1573, - [2290] = 1577, - [2291] = 1705, - [2292] = 1708, - [2293] = 1709, - [2294] = 1710, - [2295] = 1711, - [2296] = 1712, - [2297] = 1713, - [2298] = 1714, - [2299] = 1715, - [2300] = 1592, - [2301] = 1716, - [2302] = 1717, - [2303] = 1731, - [2304] = 1593, - [2305] = 1718, - [2306] = 1720, - [2307] = 1594, - [2308] = 1595, - [2309] = 1694, - [2310] = 1721, - [2311] = 1596, - [2312] = 1727, - [2313] = 1728, - [2314] = 1729, - [2315] = 1730, - [2316] = 1731, - [2317] = 1548, - [2318] = 1597, - [2319] = 242, - [2320] = 1739, - [2321] = 1740, - [2322] = 1682, - [2323] = 1687, + [1778] = 1751, + [1779] = 1669, + [1780] = 1668, + [1781] = 1667, + [1782] = 1665, + [1783] = 1655, + [1784] = 1639, + [1785] = 1638, + [1786] = 1637, + [1787] = 1636, + [1788] = 1635, + [1789] = 1634, + [1790] = 1632, + [1791] = 1630, + [1792] = 1629, + [1793] = 1621, + [1794] = 1614, + [1795] = 1613, + [1796] = 1612, + [1797] = 1611, + [1798] = 1609, + [1799] = 1608, + [1800] = 201, + [1801] = 1577, + [1802] = 1691, + [1803] = 1579, + [1804] = 1597, + [1805] = 1596, + [1806] = 1595, + [1807] = 1594, + [1808] = 1592, + [1809] = 1591, + [1810] = 1590, + [1811] = 1770, + [1812] = 1587, + [1813] = 1586, + [1814] = 1580, + [1815] = 1575, + [1816] = 1535, + [1817] = 1536, + [1818] = 201, + [1819] = 1538, + [1820] = 1539, + [1821] = 1540, + [1822] = 1541, + [1823] = 1542, + [1824] = 1543, + [1825] = 1544, + [1826] = 1545, + [1827] = 1546, + [1828] = 1547, + [1829] = 1548, + [1830] = 1549, + [1831] = 1550, + [1832] = 1551, + [1833] = 1552, + [1834] = 1553, + [1835] = 1554, + [1836] = 1581, + [1837] = 1555, + [1838] = 1556, + [1839] = 1557, + [1840] = 1559, + [1841] = 1560, + [1842] = 1564, + [1843] = 1567, + [1844] = 1568, + [1845] = 198, + [1846] = 1570, + [1847] = 1571, + [1848] = 1572, + [1849] = 1573, + [1850] = 1574, + [1851] = 1576, + [1852] = 1578, + [1853] = 1582, + [1854] = 1589, + [1855] = 1598, + [1856] = 1599, + [1857] = 1584, + [1858] = 1585, + [1859] = 1600, + [1860] = 1601, + [1861] = 1602, + [1862] = 1603, + [1863] = 1604, + [1864] = 1605, + [1865] = 1606, + [1866] = 1607, + [1867] = 1615, + [1868] = 1610, + [1869] = 1532, + [1870] = 1642, + [1871] = 1643, + [1872] = 1645, + [1873] = 1646, + [1874] = 1647, + [1875] = 1648, + [1876] = 1651, + [1877] = 1652, + [1878] = 1653, + [1879] = 1654, + [1880] = 1616, + [1881] = 1656, + [1882] = 1760, + [1883] = 1759, + [1884] = 1754, + [1885] = 1617, + [1886] = 1727, + [1887] = 1618, + [1888] = 1752, + [1889] = 1657, + [1890] = 1658, + [1891] = 1659, + [1892] = 1660, + [1893] = 1893, + [1894] = 1620, + [1895] = 1640, + [1896] = 1641, + [1897] = 1644, + [1898] = 1678, + [1899] = 1661, + [1900] = 1662, + [1901] = 1663, + [1902] = 1682, + [1903] = 1664, + [1904] = 1666, + [1905] = 1776, + [1906] = 1777, + [1907] = 1687, + [1908] = 1771, + [1909] = 1712, + [1910] = 1744, + [1911] = 1743, + [1912] = 1742, + [1913] = 1671, + [1914] = 1677, + [1915] = 1679, + [1916] = 1741, + [1917] = 1740, + [1918] = 1893, + [1919] = 1631, + [1920] = 4, + [1921] = 5, + [1922] = 6, + [1923] = 1923, + [1924] = 1680, + [1925] = 1681, + [1926] = 5, + [1927] = 4, + [1928] = 6, + [1929] = 1686, + [1930] = 1704, + [1931] = 195, + [1932] = 196, + [1933] = 198, + [1934] = 202, + [1935] = 191, + [1936] = 200, + [1937] = 1688, + [1938] = 1689, + [1939] = 201, + [1940] = 1631, + [1941] = 204, + [1942] = 205, + [1943] = 194, + [1944] = 199, + [1945] = 192, + [1946] = 200, + [1947] = 202, + [1948] = 191, + [1949] = 1720, + [1950] = 1719, + [1951] = 195, + [1952] = 1718, + [1953] = 1717, + [1954] = 1716, + [1955] = 1715, + [1956] = 1709, + [1957] = 1707, + [1958] = 1706, + [1959] = 1705, + [1960] = 1703, + [1961] = 1702, + [1962] = 1701, + [1963] = 1700, + [1964] = 1699, + [1965] = 196, + [1966] = 192, + [1967] = 199, + [1968] = 194, + [1969] = 205, + [1970] = 204, + [1971] = 1659, + [1972] = 1740, + [1973] = 4, + [1974] = 1974, + [1975] = 1534, + [1976] = 5, + [1977] = 1751, + [1978] = 1760, + [1979] = 1759, + [1980] = 1754, + [1981] = 1981, + [1982] = 1535, + [1983] = 1575, + [1984] = 1577, + [1985] = 1536, + [1986] = 1579, + [1987] = 1545, + [1988] = 6, + [1989] = 1581, + [1990] = 1569, + [1991] = 307, + [1992] = 1538, + [1993] = 1727, + [1994] = 1584, + [1995] = 1752, + [1996] = 1615, + [1997] = 6, + [1998] = 1539, + [1999] = 1585, + [2000] = 1540, + [2001] = 1541, + [2002] = 15, + [2003] = 1586, + [2004] = 1542, + [2005] = 1543, + [2006] = 1544, + [2007] = 1546, + [2008] = 5, + [2009] = 4, + [2010] = 1587, + [2011] = 1725, + [2012] = 2012, + [2013] = 1547, + [2014] = 1548, + [2015] = 1549, + [2016] = 201, + [2017] = 1588, + [2018] = 1724, + [2019] = 1723, + [2020] = 1722, + [2021] = 1721, + [2022] = 307, + [2023] = 204, + [2024] = 1714, + [2025] = 1713, + [2026] = 1712, + [2027] = 1711, + [2028] = 1583, + [2029] = 1685, + [2030] = 1687, + [2031] = 1770, + [2032] = 205, + [2033] = 1771, + [2034] = 194, + [2035] = 1684, + [2036] = 1683, + [2037] = 1682, + [2038] = 1678, + [2039] = 199, + [2040] = 1670, + [2041] = 1669, + [2042] = 1668, + [2043] = 1667, + [2044] = 1665, + [2045] = 1655, + [2046] = 1644, + [2047] = 1641, + [2048] = 1640, + [2049] = 1639, + [2050] = 1638, + [2051] = 1637, + [2052] = 1636, + [2053] = 1635, + [2054] = 1634, + [2055] = 1632, + [2056] = 192, + [2057] = 1550, + [2058] = 1551, + [2059] = 1630, + [2060] = 1629, + [2061] = 1552, + [2062] = 1580, + [2063] = 1621, + [2064] = 1533, + [2065] = 1553, + [2066] = 200, + [2067] = 1620, + [2068] = 1893, + [2069] = 191, + [2070] = 1618, + [2071] = 1617, + [2072] = 1616, + [2073] = 202, + [2074] = 198, + [2075] = 196, + [2076] = 195, + [2077] = 1554, + [2078] = 1543, + [2079] = 1614, + [2080] = 1613, + [2081] = 1612, + [2082] = 1611, + [2083] = 1609, + [2084] = 1608, + [2085] = 1597, + [2086] = 1596, + [2087] = 1595, + [2088] = 1594, + [2089] = 1592, + [2090] = 1591, + [2091] = 1590, + [2092] = 1590, + [2093] = 201, + [2094] = 204, + [2095] = 205, + [2096] = 194, + [2097] = 199, + [2098] = 192, + [2099] = 1588, + [2100] = 1587, + [2101] = 6, + [2102] = 1555, + [2103] = 1586, + [2104] = 1591, + [2105] = 2105, + [2106] = 1585, + [2107] = 200, + [2108] = 191, + [2109] = 202, + [2110] = 198, + [2111] = 1584, + [2112] = 1569, + [2113] = 1581, + [2114] = 2105, + [2115] = 196, + [2116] = 1580, + [2117] = 1579, + [2118] = 1577, + [2119] = 1575, + [2120] = 1751, + [2121] = 1534, + [2122] = 1535, + [2123] = 1536, + [2124] = 1538, + [2125] = 1539, + [2126] = 1540, + [2127] = 1541, + [2128] = 1542, + [2129] = 195, + [2130] = 1592, + [2131] = 1556, + [2132] = 5, + [2133] = 2105, + [2134] = 2134, + [2135] = 4, + [2136] = 1599, + [2137] = 1544, + [2138] = 1545, + [2139] = 1546, + [2140] = 1547, + [2141] = 1548, + [2142] = 1549, + [2143] = 1550, + [2144] = 1551, + [2145] = 1552, + [2146] = 2146, + [2147] = 1594, + [2148] = 1595, + [2149] = 2105, + [2150] = 1596, + [2151] = 1597, + [2152] = 1553, + [2153] = 1554, + [2154] = 1557, + [2155] = 1608, + [2156] = 1609, + [2157] = 1611, + [2158] = 1612, + [2159] = 1555, + [2160] = 1556, + [2161] = 1613, + [2162] = 1558, + [2163] = 1614, + [2164] = 1744, + [2165] = 1557, + [2166] = 1558, + [2167] = 1559, + [2168] = 1559, + [2169] = 1560, + [2170] = 1561, + [2171] = 1562, + [2172] = 1563, + [2173] = 1564, + [2174] = 1565, + [2175] = 1533, + [2176] = 1567, + [2177] = 1568, + [2178] = 1560, + [2179] = 1743, + [2180] = 1570, + [2181] = 1571, + [2182] = 1561, + [2183] = 1562, + [2184] = 1563, + [2185] = 2105, + [2186] = 1572, + [2187] = 1573, + [2188] = 1574, + [2189] = 1576, + [2190] = 1578, + [2191] = 1582, + [2192] = 1564, + [2193] = 1565, + [2194] = 2194, + [2195] = 1567, + [2196] = 7, + [2197] = 15, + [2198] = 1589, + [2199] = 10, + [2200] = 1568, + [2201] = 2201, + [2202] = 201, + [2203] = 1598, + [2204] = 1570, + [2205] = 1600, + [2206] = 1571, + [2207] = 204, + [2208] = 205, + [2209] = 1601, + [2210] = 1602, + [2211] = 194, + [2212] = 1603, + [2213] = 199, + [2214] = 192, + [2215] = 1572, + [2216] = 1615, + [2217] = 1604, + [2218] = 1573, + [2219] = 1574, + [2220] = 1616, + [2221] = 1576, + [2222] = 200, + [2223] = 1605, + [2224] = 1606, + [2225] = 1607, + [2226] = 191, + [2227] = 1610, + [2228] = 1532, + [2229] = 202, + [2230] = 198, + [2231] = 1642, + [2232] = 196, + [2233] = 195, + [2234] = 1643, + [2235] = 1617, + [2236] = 1645, + [2237] = 1646, + [2238] = 1647, + [2239] = 1618, + [2240] = 1893, + [2241] = 1648, + [2242] = 1649, + [2243] = 1578, + [2244] = 1650, + [2245] = 1651, + [2246] = 1652, + [2247] = 1653, + [2248] = 1582, + [2249] = 1620, + [2250] = 1621, + [2251] = 1654, + [2252] = 2012, + [2253] = 1656, + [2254] = 1657, + [2255] = 1658, + [2256] = 1660, + [2257] = 1661, + [2258] = 1589, + [2259] = 1598, + [2260] = 1662, + [2261] = 1663, + [2262] = 1599, + [2263] = 1600, + [2264] = 1601, + [2265] = 1664, + [2266] = 1629, + [2267] = 1602, + [2268] = 1603, + [2269] = 1666, + [2270] = 1671, + [2271] = 1604, + [2272] = 2272, + [2273] = 1677, + [2274] = 1630, + [2275] = 1679, + [2276] = 1605, + [2277] = 1606, + [2278] = 1680, + [2279] = 1632, + [2280] = 1681, + [2281] = 1686, + [2282] = 1704, + [2283] = 15, + [2284] = 1688, + [2285] = 1634, + [2286] = 1635, + [2287] = 1689, + [2288] = 1690, + [2289] = 1636, + [2290] = 1691, + [2291] = 1607, + [2292] = 1637, + [2293] = 1638, + [2294] = 1699, + [2295] = 1700, + [2296] = 1639, + [2297] = 1647, + [2298] = 1701, + [2299] = 1702, + [2300] = 1703, + [2301] = 1705, + [2302] = 1610, + [2303] = 1532, + [2304] = 1706, + [2305] = 1642, + [2306] = 1643, + [2307] = 2307, + [2308] = 1707, + [2309] = 1709, + [2310] = 1645, + [2311] = 1646, + [2312] = 1648, + [2313] = 1715, + [2314] = 1716, + [2315] = 1717, + [2316] = 1718, + [2317] = 7, + [2318] = 10, + [2319] = 1719, + [2320] = 1720, + [2321] = 1650, + [2322] = 1640, + [2323] = 1740, [2324] = 1741, - [2325] = 1742, - [2326] = 1598, - [2327] = 1599, - [2328] = 1730, - [2329] = 1743, - [2330] = 1744, - [2331] = 1745, - [2332] = 1746, - [2333] = 1747, - [2334] = 1695, - [2335] = 1600, - [2336] = 1729, + [2325] = 1649, + [2326] = 1641, + [2327] = 1644, + [2328] = 1651, + [2329] = 1742, + [2330] = 1743, + [2331] = 1744, + [2332] = 1655, + [2333] = 1652, + [2334] = 1654, + [2335] = 234, + [2336] = 1653, [2337] = 1752, - [2338] = 1753, - [2339] = 1754, - [2340] = 1755, - [2341] = 1601, - [2342] = 1602, - [2343] = 1756, - [2344] = 1757, - [2345] = 1681, - [2346] = 1777, - [2347] = 1778, - [2348] = 1680, - [2349] = 1679, - [2350] = 1678, - [2351] = 1779, - [2352] = 1780, - [2353] = 1781, - [2354] = 1674, - [2355] = 2042, - [2356] = 1622, - [2357] = 1633, - [2358] = 1789, - [2359] = 1666, - [2360] = 2030, - [2361] = 2213, - [2362] = 1627, - [2363] = 1728, - [2364] = 1791, - [2365] = 1792, - [2366] = 1797, - [2367] = 1634, - [2368] = 1665, - [2369] = 1635, - [2370] = 1636, - [2371] = 1664, - [2372] = 1663, - [2373] = 1637, - [2374] = 1638, - [2375] = 1639, - [2376] = 1628, - [2377] = 1629, - [2378] = 1630, - [2379] = 1588, - [2380] = 1640, - [2381] = 1673, - [2382] = 1660, - [2383] = 1779, - [2384] = 1659, - [2385] = 2042, - [2386] = 1641, - [2387] = 1671, - [2388] = 1670, - [2389] = 1669, - [2390] = 1696, - [2391] = 1697, - [2392] = 1698, - [2393] = 1658, - [2394] = 1657, - [2395] = 1656, - [2396] = 2213, - [2397] = 1672, - [2398] = 1781, - [2399] = 1705, - [2400] = 1780, - [2401] = 1708, - [2402] = 1709, - [2403] = 1710, - [2404] = 1711, - [2405] = 1662, - [2406] = 1712, - [2407] = 1504, - [2408] = 1655, - [2409] = 1661, - [2410] = 1713, - [2411] = 1517, - [2412] = 1654, - [2413] = 1648, - [2414] = 1714, - [2415] = 1715, - [2416] = 1716, + [2338] = 1727, + [2339] = 1981, + [2340] = 1754, + [2341] = 1759, + [2342] = 1760, + [2343] = 1665, + [2344] = 1667, + [2345] = 1656, + [2346] = 1668, + [2347] = 1725, + [2348] = 1669, + [2349] = 1657, + [2350] = 1724, + [2351] = 1723, + [2352] = 1658, + [2353] = 1659, + [2354] = 1660, + [2355] = 1661, + [2356] = 1662, + [2357] = 1686, + [2358] = 1670, + [2359] = 1663, + [2360] = 1664, + [2361] = 1722, + [2362] = 1742, + [2363] = 1721, + [2364] = 1666, + [2365] = 1671, + [2366] = 1677, + [2367] = 1679, + [2368] = 1680, + [2369] = 195, + [2370] = 196, + [2371] = 198, + [2372] = 202, + [2373] = 191, + [2374] = 200, + [2375] = 192, + [2376] = 199, + [2377] = 194, + [2378] = 205, + [2379] = 204, + [2380] = 201, + [2381] = 1681, + [2382] = 195, + [2383] = 1714, + [2384] = 196, + [2385] = 198, + [2386] = 1713, + [2387] = 202, + [2388] = 191, + [2389] = 200, + [2390] = 192, + [2391] = 199, + [2392] = 1712, + [2393] = 194, + [2394] = 205, + [2395] = 204, + [2396] = 201, + [2397] = 1704, + [2398] = 1688, + [2399] = 1689, + [2400] = 1690, + [2401] = 2401, + [2402] = 1691, + [2403] = 1700, + [2404] = 1699, + [2405] = 1701, + [2406] = 1702, + [2407] = 1703, + [2408] = 1705, + [2409] = 1706, + [2410] = 1707, + [2411] = 1709, + [2412] = 1715, + [2413] = 2272, + [2414] = 1678, + [2415] = 1716, + [2416] = 1711, [2417] = 1717, - [2418] = 1539, - [2419] = 1632, - [2420] = 1653, - [2421] = 1631, - [2422] = 1718, - [2423] = 1720, - [2424] = 1652, - [2425] = 1651, - [2426] = 1721, - [2427] = 12, - [2428] = 1650, - [2429] = 1649, - [2430] = 1722, - [2431] = 1647, - [2432] = 1727, - [2433] = 2213, - [2434] = 1646, - [2435] = 1645, - [2436] = 1644, - [2437] = 1643, - [2438] = 193, - [2439] = 198, - [2440] = 11, - [2441] = 49, - [2442] = 2442, - [2443] = 6, - [2444] = 9, + [2418] = 1718, + [2419] = 1682, + [2420] = 1683, + [2421] = 1583, + [2422] = 7, + [2423] = 10, + [2424] = 1687, + [2425] = 1771, + [2426] = 1719, + [2427] = 1770, + [2428] = 1684, + [2429] = 1720, + [2430] = 1685, + [2431] = 1741, + [2432] = 307, + [2433] = 15, + [2434] = 19, + [2435] = 2435, + [2436] = 10, + [2437] = 59, + [2438] = 20, + [2439] = 2435, + [2440] = 2435, + [2441] = 2441, + [2442] = 1694, + [2443] = 7, + [2444] = 20, [2445] = 19, - [2446] = 242, - [2447] = 20, - [2448] = 10, + [2446] = 20, + [2447] = 2441, + [2448] = 9, [2449] = 14, - [2450] = 16, - [2451] = 13, - [2452] = 8, + [2450] = 11, + [2451] = 2435, + [2452] = 18, [2453] = 9, - [2454] = 6, - [2455] = 242, - [2456] = 10, - [2457] = 12, - [2458] = 7, - [2459] = 18, - [2460] = 13, - [2461] = 13, - [2462] = 8, - [2463] = 11, - [2464] = 11, - [2465] = 191, - [2466] = 7, - [2467] = 192, - [2468] = 2468, - [2469] = 193, - [2470] = 18, - [2471] = 6, - [2472] = 194, - [2473] = 183, - [2474] = 19, - [2475] = 227, - [2476] = 44, - [2477] = 20, - [2478] = 182, - [2479] = 197, - [2480] = 17, - [2481] = 12, - [2482] = 16, - [2483] = 18, - [2484] = 15, - [2485] = 1976, - [2486] = 7, - [2487] = 1970, - [2488] = 227, - [2489] = 2489, - [2490] = 196, - [2491] = 242, - [2492] = 1955, - [2493] = 10, - [2494] = 8, - [2495] = 198, - [2496] = 195, - [2497] = 190, - [2498] = 188, - [2499] = 227, - [2500] = 188, - [2501] = 190, - [2502] = 195, - [2503] = 198, - [2504] = 191, - [2505] = 197, - [2506] = 182, - [2507] = 196, - [2508] = 192, - [2509] = 183, - [2510] = 195, - [2511] = 190, - [2512] = 193, - [2513] = 194, - [2514] = 188, - [2515] = 183, - [2516] = 191, - [2517] = 227, - [2518] = 196, - [2519] = 182, - [2520] = 197, - [2521] = 192, - [2522] = 227, - [2523] = 194, - [2524] = 195, - [2525] = 2525, + [2454] = 10, + [2455] = 234, + [2456] = 11, + [2457] = 24, + [2458] = 19, + [2459] = 13, + [2460] = 201, + [2461] = 7, + [2462] = 204, + [2463] = 205, + [2464] = 194, + [2465] = 199, + [2466] = 192, + [2467] = 11, + [2468] = 1507, + [2469] = 200, + [2470] = 191, + [2471] = 12, + [2472] = 22, + [2473] = 17, + [2474] = 202, + [2475] = 198, + [2476] = 24, + [2477] = 196, + [2478] = 8, + [2479] = 12, + [2480] = 195, + [2481] = 234, + [2482] = 20, + [2483] = 19, + [2484] = 19, + [2485] = 15, + [2486] = 10, + [2487] = 7, + [2488] = 2441, + [2489] = 234, + [2490] = 15, + [2491] = 20, + [2492] = 16, + [2493] = 9, + [2494] = 17, + [2495] = 14, + [2496] = 22, + [2497] = 2441, + [2498] = 13, + [2499] = 8, + [2500] = 13, + [2501] = 2435, + [2502] = 17, + [2503] = 2441, + [2504] = 22, + [2505] = 1507, + [2506] = 11, + [2507] = 18, + [2508] = 11, + [2509] = 14, + [2510] = 24, + [2511] = 234, + [2512] = 18, + [2513] = 16, + [2514] = 12, + [2515] = 16, + [2516] = 59, + [2517] = 8, + [2518] = 307, + [2519] = 2134, + [2520] = 27, + [2521] = 22, + [2522] = 59, + [2523] = 16, + [2524] = 234, + [2525] = 13, [2526] = 2526, - [2527] = 36, - [2528] = 191, - [2529] = 2529, - [2530] = 32, - [2531] = 192, - [2532] = 193, - [2533] = 194, - [2534] = 183, - [2535] = 196, - [2536] = 242, - [2537] = 2537, - [2538] = 182, - [2539] = 242, - [2540] = 2525, - [2541] = 7, - [2542] = 2542, - [2543] = 2526, - [2544] = 31, - [2545] = 30, - [2546] = 2546, + [2527] = 23, + [2528] = 18, + [2529] = 9, + [2530] = 8, + [2531] = 59, + [2532] = 19, + [2533] = 20, + [2534] = 26, + [2535] = 25, + [2536] = 26, + [2537] = 234, + [2538] = 17, + [2539] = 22, + [2540] = 307, + [2541] = 2307, + [2542] = 21, + [2543] = 17, + [2544] = 9, + [2545] = 14, + [2546] = 11, [2547] = 18, [2548] = 2548, - [2549] = 37, - [2550] = 197, - [2551] = 15, - [2552] = 2525, - [2553] = 2525, - [2554] = 2525, - [2555] = 49, - [2556] = 33, - [2557] = 227, - [2558] = 38, - [2559] = 39, - [2560] = 198, - [2561] = 2561, - [2562] = 41, - [2563] = 22, - [2564] = 45, - [2565] = 8, - [2566] = 2537, - [2567] = 46, - [2568] = 2542, - [2569] = 2569, - [2570] = 48, - [2571] = 2525, - [2572] = 2572, - [2573] = 40, - [2574] = 19, - [2575] = 2542, - [2576] = 20, + [2549] = 26, + [2550] = 24, + [2551] = 13, + [2552] = 21, + [2553] = 8, + [2554] = 25, + [2555] = 307, + [2556] = 12, + [2557] = 25, + [2558] = 13, + [2559] = 14, + [2560] = 24, + [2561] = 19, + [2562] = 201, + [2563] = 204, + [2564] = 205, + [2565] = 194, + [2566] = 199, + [2567] = 192, + [2568] = 200, + [2569] = 191, + [2570] = 202, + [2571] = 198, + [2572] = 196, + [2573] = 195, + [2574] = 12, + [2575] = 21, + [2576] = 27, [2577] = 2577, - [2578] = 195, - [2579] = 2577, - [2580] = 190, - [2581] = 16, - [2582] = 21, - [2583] = 2577, - [2584] = 2584, - [2585] = 2585, - [2586] = 2529, - [2587] = 2529, - [2588] = 2542, - [2589] = 2526, - [2590] = 2542, - [2591] = 2542, - [2592] = 188, - [2593] = 2584, - [2594] = 2526, - [2595] = 2542, - [2596] = 28, - [2597] = 2585, - [2598] = 2525, - [2599] = 191, - [2600] = 27, - [2601] = 26, - [2602] = 192, - [2603] = 2525, - [2604] = 2604, - [2605] = 29, - [2606] = 242, - [2607] = 2542, - [2608] = 2525, - [2609] = 25, - [2610] = 2584, - [2611] = 2526, - [2612] = 2526, - [2613] = 193, - [2614] = 2585, - [2615] = 2526, - [2616] = 17, - [2617] = 2569, + [2578] = 20, + [2579] = 11, + [2580] = 8, + [2581] = 201, + [2582] = 204, + [2583] = 205, + [2584] = 194, + [2585] = 199, + [2586] = 192, + [2587] = 200, + [2588] = 191, + [2589] = 202, + [2590] = 198, + [2591] = 196, + [2592] = 195, + [2593] = 23, + [2594] = 234, + [2595] = 19, + [2596] = 2146, + [2597] = 307, + [2598] = 20, + [2599] = 59, + [2600] = 17, + [2601] = 22, + [2602] = 11, + [2603] = 234, + [2604] = 18, + [2605] = 195, + [2606] = 12, + [2607] = 196, + [2608] = 19, + [2609] = 198, + [2610] = 202, + [2611] = 24, + [2612] = 23, + [2613] = 191, + [2614] = 200, + [2615] = 192, + [2616] = 9, + [2617] = 199, [2618] = 194, - [2619] = 19, - [2620] = 2585, - [2621] = 2584, - [2622] = 183, - [2623] = 196, - [2624] = 20, - [2625] = 44, - [2626] = 2569, - [2627] = 11, - [2628] = 14, - [2629] = 2542, + [2619] = 20, + [2620] = 205, + [2621] = 204, + [2622] = 201, + [2623] = 14, + [2624] = 16, + [2625] = 11, + [2626] = 19, + [2627] = 307, + [2628] = 20, + [2629] = 11, [2630] = 16, - [2631] = 2526, - [2632] = 2537, - [2633] = 182, - [2634] = 197, - [2635] = 198, - [2636] = 227, - [2637] = 6, - [2638] = 2525, - [2639] = 227, - [2640] = 2569, - [2641] = 195, - [2642] = 2585, - [2643] = 2585, - [2644] = 190, - [2645] = 188, - [2646] = 19, - [2647] = 2525, - [2648] = 2585, - [2649] = 2577, - [2650] = 2585, - [2651] = 2585, - [2652] = 2585, - [2653] = 2526, - [2654] = 2584, - [2655] = 2525, - [2656] = 2529, - [2657] = 20, - [2658] = 2585, - [2659] = 2525, - [2660] = 13, - [2661] = 11, - [2662] = 2585, - [2663] = 2585, - [2664] = 2542, - [2665] = 2526, - [2666] = 2585, - [2667] = 2542, - [2668] = 242, - [2669] = 2669, - [2670] = 15, - [2671] = 23, - [2672] = 42, - [2673] = 2525, - [2674] = 2525, - [2675] = 2585, - [2676] = 2604, - [2677] = 16, - [2678] = 18, - [2679] = 2585, - [2680] = 2542, - [2681] = 6, - [2682] = 2537, - [2683] = 2585, - [2684] = 2526, - [2685] = 17, - [2686] = 2585, - [2687] = 2585, - [2688] = 2525, - [2689] = 34, - [2690] = 19, - [2691] = 2569, - [2692] = 47, - [2693] = 2604, - [2694] = 35, - [2695] = 44, - [2696] = 2525, - [2697] = 14, - [2698] = 2526, - [2699] = 24, - [2700] = 20, - [2701] = 191, - [2702] = 2585, - [2703] = 2585, - [2704] = 10, - [2705] = 19, - [2706] = 2537, - [2707] = 2585, - [2708] = 2585, - [2709] = 192, - [2710] = 193, - [2711] = 2585, - [2712] = 2525, - [2713] = 7, - [2714] = 194, - [2715] = 183, - [2716] = 196, - [2717] = 20, - [2718] = 182, - [2719] = 197, - [2720] = 2585, - [2721] = 2585, - [2722] = 2585, - [2723] = 198, - [2724] = 2542, - [2725] = 227, - [2726] = 2585, - [2727] = 2577, - [2728] = 2529, - [2729] = 43, - [2730] = 190, - [2731] = 188, - [2732] = 1481, - [2733] = 16, - [2734] = 2525, - [2735] = 2006, - [2736] = 10, - [2737] = 2585, - [2738] = 2738, - [2739] = 13, - [2740] = 2585, - [2741] = 2585, - [2742] = 17, - [2743] = 227, - [2744] = 2525, - [2745] = 2526, - [2746] = 16, - [2747] = 2006, - [2748] = 2585, - [2749] = 2525, - [2750] = 2529, - [2751] = 15, - [2752] = 49, - [2753] = 2525, - [2754] = 2585, - [2755] = 2525, - [2756] = 2525, - [2757] = 2525, - [2758] = 14, - [2759] = 2525, - [2760] = 2525, - [2761] = 2525, - [2762] = 2525, - [2763] = 8, - [2764] = 2525, - [2765] = 2525, - [2766] = 2585, - [2767] = 44, - [2768] = 2525, - [2769] = 2525, - [2770] = 2525, - [2771] = 36, - [2772] = 39, - [2773] = 242, - [2774] = 36, + [2631] = 27, + [2632] = 234, + [2633] = 38, + [2634] = 44, + [2635] = 2635, + [2636] = 2636, + [2637] = 2637, + [2638] = 2638, + [2639] = 2639, + [2640] = 2640, + [2641] = 2639, + [2642] = 2642, + [2643] = 2637, + [2644] = 2644, + [2645] = 2635, + [2646] = 2646, + [2647] = 2644, + [2648] = 31, + [2649] = 2649, + [2650] = 2644, + [2651] = 2644, + [2652] = 2644, + [2653] = 2640, + [2654] = 42, + [2655] = 2642, + [2656] = 35, + [2657] = 2637, + [2658] = 50, + [2659] = 2646, + [2660] = 46, + [2661] = 2636, + [2662] = 45, + [2663] = 2649, + [2664] = 33, + [2665] = 36, + [2666] = 44, + [2667] = 41, + [2668] = 36, + [2669] = 40, + [2670] = 2640, + [2671] = 2639, + [2672] = 28, + [2673] = 2640, + [2674] = 21, + [2675] = 2636, + [2676] = 2642, + [2677] = 2644, + [2678] = 2637, + [2679] = 2640, + [2680] = 2644, + [2681] = 2644, + [2682] = 2644, + [2683] = 35, + [2684] = 2638, + [2685] = 2012, + [2686] = 2644, + [2687] = 2640, + [2688] = 2640, + [2689] = 42, + [2690] = 2642, + [2691] = 43, + [2692] = 29, + [2693] = 2640, + [2694] = 59, + [2695] = 23, + [2696] = 32, + [2697] = 2640, + [2698] = 2644, + [2699] = 34, + [2700] = 30, + [2701] = 21, + [2702] = 2640, + [2703] = 2644, + [2704] = 2640, + [2705] = 2640, + [2706] = 40, + [2707] = 39, + [2708] = 2644, + [2709] = 2640, + [2710] = 2644, + [2711] = 2644, + [2712] = 2640, + [2713] = 2640, + [2714] = 2642, + [2715] = 2644, + [2716] = 2644, + [2717] = 2637, + [2718] = 52, + [2719] = 51, + [2720] = 2636, + [2721] = 2637, + [2722] = 2640, + [2723] = 2640, + [2724] = 2638, + [2725] = 2642, + [2726] = 2640, + [2727] = 52, + [2728] = 2640, + [2729] = 2640, + [2730] = 25, + [2731] = 27, + [2732] = 2640, + [2733] = 2637, + [2734] = 2642, + [2735] = 2640, + [2736] = 2644, + [2737] = 51, + [2738] = 2642, + [2739] = 2739, + [2740] = 25, + [2741] = 2637, + [2742] = 2642, + [2743] = 307, + [2744] = 2644, + [2745] = 2640, + [2746] = 2644, + [2747] = 2649, + [2748] = 43, + [2749] = 29, + [2750] = 2637, + [2751] = 25, + [2752] = 204, + [2753] = 2640, + [2754] = 2640, + [2755] = 2639, + [2756] = 2644, + [2757] = 234, + [2758] = 2642, + [2759] = 2759, + [2760] = 26, + [2761] = 234, + [2762] = 2637, + [2763] = 47, + [2764] = 23, + [2765] = 1530, + [2766] = 52, + [2767] = 2640, + [2768] = 27, + [2769] = 2638, + [2770] = 201, + [2771] = 23, + [2772] = 2772, + [2773] = 2644, + [2774] = 234, [2775] = 2775, - [2776] = 33, - [2777] = 2777, - [2778] = 19, - [2779] = 21, - [2780] = 2780, - [2781] = 20, - [2782] = 29, - [2783] = 25, - [2784] = 25, - [2785] = 29, - [2786] = 49, - [2787] = 40, - [2788] = 2788, - [2789] = 40, - [2790] = 242, - [2791] = 242, - [2792] = 16, - [2793] = 19, - [2794] = 20, - [2795] = 36, - [2796] = 43, - [2797] = 242, - [2798] = 48, - [2799] = 14, - [2800] = 31, - [2801] = 46, - [2802] = 45, - [2803] = 16, - [2804] = 33, - [2805] = 42, - [2806] = 44, - [2807] = 2780, - [2808] = 23, - [2809] = 242, - [2810] = 31, - [2811] = 22, - [2812] = 2812, - [2813] = 41, - [2814] = 2780, - [2815] = 48, - [2816] = 46, - [2817] = 2777, - [2818] = 2788, - [2819] = 2777, - [2820] = 33, - [2821] = 2777, - [2822] = 24, - [2823] = 45, - [2824] = 38, - [2825] = 2775, - [2826] = 37, - [2827] = 2780, - [2828] = 19, - [2829] = 20, - [2830] = 227, + [2776] = 31, + [2777] = 2644, + [2778] = 33, + [2779] = 2779, + [2780] = 204, + [2781] = 201, + [2782] = 204, + [2783] = 205, + [2784] = 194, + [2785] = 199, + [2786] = 192, + [2787] = 200, + [2788] = 191, + [2789] = 205, + [2790] = 202, + [2791] = 198, + [2792] = 51, + [2793] = 196, + [2794] = 195, + [2795] = 32, + [2796] = 194, + [2797] = 2642, + [2798] = 34, + [2799] = 199, + [2800] = 2639, + [2801] = 2646, + [2802] = 2644, + [2803] = 2637, + [2804] = 192, + [2805] = 2642, + [2806] = 48, + [2807] = 200, + [2808] = 2640, + [2809] = 2639, + [2810] = 30, + [2811] = 40, + [2812] = 2649, + [2813] = 191, + [2814] = 2640, + [2815] = 29, + [2816] = 2012, + [2817] = 21, + [2818] = 26, + [2819] = 2644, + [2820] = 39, + [2821] = 50, + [2822] = 45, + [2823] = 202, + [2824] = 48, + [2825] = 46, + [2826] = 2642, + [2827] = 50, + [2828] = 2644, + [2829] = 2636, + [2830] = 48, [2831] = 47, - [2832] = 16, + [2832] = 2644, [2833] = 47, - [2834] = 22, - [2835] = 34, - [2836] = 43, - [2837] = 2775, - [2838] = 32, - [2839] = 2812, - [2840] = 30, - [2841] = 2812, - [2842] = 28, - [2843] = 27, - [2844] = 26, - [2845] = 2775, - [2846] = 24, - [2847] = 23, - [2848] = 42, - [2849] = 35, - [2850] = 43, - [2851] = 2788, - [2852] = 25, - [2853] = 29, - [2854] = 41, - [2855] = 26, - [2856] = 21, - [2857] = 40, - [2858] = 27, - [2859] = 2788, - [2860] = 227, + [2834] = 2640, + [2835] = 2637, + [2836] = 2646, + [2837] = 198, + [2838] = 195, + [2839] = 196, + [2840] = 33, + [2841] = 28, + [2842] = 196, + [2843] = 41, + [2844] = 195, + [2845] = 2638, + [2846] = 198, + [2847] = 2640, + [2848] = 202, + [2849] = 307, + [2850] = 30, + [2851] = 2644, + [2852] = 191, + [2853] = 37, + [2854] = 200, + [2855] = 38, + [2856] = 38, + [2857] = 37, + [2858] = 39, + [2859] = 27, + [2860] = 2644, [2861] = 28, - [2862] = 2812, - [2863] = 2788, - [2864] = 2775, - [2865] = 2812, - [2866] = 48, - [2867] = 2777, - [2868] = 30, - [2869] = 46, - [2870] = 45, - [2871] = 49, - [2872] = 2872, - [2873] = 2780, - [2874] = 15, - [2875] = 21, - [2876] = 14, - [2877] = 32, - [2878] = 39, - [2879] = 22, - [2880] = 38, - [2881] = 41, - [2882] = 47, - [2883] = 37, - [2884] = 15, - [2885] = 17, - [2886] = 35, - [2887] = 35, - [2888] = 227, - [2889] = 42, - [2890] = 23, - [2891] = 39, - [2892] = 38, - [2893] = 24, - [2894] = 37, - [2895] = 17, - [2896] = 34, - [2897] = 26, - [2898] = 2898, - [2899] = 27, - [2900] = 28, - [2901] = 30, - [2902] = 44, - [2903] = 34, - [2904] = 31, - [2905] = 32, - [2906] = 23, - [2907] = 39, - [2908] = 2908, - [2909] = 21, - [2910] = 31, - [2911] = 2908, - [2912] = 27, - [2913] = 34, - [2914] = 49, + [2862] = 192, + [2863] = 2863, + [2864] = 307, + [2865] = 41, + [2866] = 34, + [2867] = 199, + [2868] = 194, + [2869] = 32, + [2870] = 31, + [2871] = 205, + [2872] = 42, + [2873] = 35, + [2874] = 36, + [2875] = 2644, + [2876] = 44, + [2877] = 45, + [2878] = 46, + [2879] = 49, + [2880] = 49, + [2881] = 37, + [2882] = 2640, + [2883] = 2646, + [2884] = 201, + [2885] = 2640, + [2886] = 43, + [2887] = 2649, + [2888] = 2644, + [2889] = 49, + [2890] = 2640, + [2891] = 2635, + [2892] = 26, + [2893] = 2644, + [2894] = 2640, + [2895] = 2644, + [2896] = 2637, + [2897] = 307, + [2898] = 2644, + [2899] = 45, + [2900] = 2900, + [2901] = 33, + [2902] = 48, + [2903] = 47, + [2904] = 29, + [2905] = 40, + [2906] = 30, + [2907] = 2907, + [2908] = 28, + [2909] = 41, + [2910] = 234, + [2911] = 33, + [2912] = 38, + [2913] = 28, + [2914] = 37, [2915] = 41, - [2916] = 32, - [2917] = 41, - [2918] = 26, - [2919] = 48, - [2920] = 22, - [2921] = 46, + [2916] = 307, + [2917] = 47, + [2918] = 2907, + [2919] = 51, + [2920] = 234, + [2921] = 33, [2922] = 2922, [2923] = 2923, - [2924] = 45, - [2925] = 29, - [2926] = 47, - [2927] = 25, - [2928] = 2928, - [2929] = 24, - [2930] = 2922, - [2931] = 43, - [2932] = 45, - [2933] = 2908, - [2934] = 46, - [2935] = 38, - [2936] = 31, - [2937] = 48, - [2938] = 37, + [2924] = 48, + [2925] = 307, + [2926] = 31, + [2927] = 38, + [2928] = 51, + [2929] = 37, + [2930] = 34, + [2931] = 2900, + [2932] = 50, + [2933] = 2933, + [2934] = 50, + [2935] = 31, + [2936] = 2933, + [2937] = 42, + [2938] = 34, [2939] = 2939, - [2940] = 33, - [2941] = 2922, - [2942] = 2922, - [2943] = 2922, - [2944] = 40, - [2945] = 25, + [2940] = 35, + [2941] = 32, + [2942] = 31, + [2943] = 36, + [2944] = 42, + [2945] = 35, [2946] = 36, - [2947] = 242, - [2948] = 35, - [2949] = 42, - [2950] = 242, - [2951] = 23, - [2952] = 2908, - [2953] = 24, - [2954] = 43, - [2955] = 26, - [2956] = 27, - [2957] = 22, - [2958] = 30, - [2959] = 28, - [2960] = 28, - [2961] = 47, - [2962] = 40, - [2963] = 29, - [2964] = 36, - [2965] = 2965, - [2966] = 242, - [2967] = 2908, - [2968] = 2968, - [2969] = 2969, - [2970] = 2970, - [2971] = 2971, - [2972] = 2972, - [2973] = 30, - [2974] = 2974, - [2975] = 33, - [2976] = 32, - [2977] = 39, - [2978] = 34, - [2979] = 38, - [2980] = 21, - [2981] = 37, - [2982] = 2982, - [2983] = 35, - [2984] = 42, - [2985] = 2985, - [2986] = 2986, - [2987] = 2987, - [2988] = 2988, - [2989] = 2985, - [2990] = 2990, - [2991] = 1483, - [2992] = 2992, - [2993] = 2985, - [2994] = 2987, - [2995] = 2995, - [2996] = 2996, - [2997] = 2990, - [2998] = 2987, - [2999] = 2999, - [3000] = 2990, - [3001] = 2986, - [3002] = 2987, - [3003] = 2990, - [3004] = 2988, - [3005] = 2985, - [3006] = 2986, - [3007] = 2985, - [3008] = 2990, - [3009] = 2986, - [3010] = 2986, - [3011] = 2987, - [3012] = 3012, + [2947] = 29, + [2948] = 44, + [2949] = 45, + [2950] = 46, + [2951] = 38, + [2952] = 39, + [2953] = 32, + [2954] = 46, + [2955] = 40, + [2956] = 49, + [2957] = 52, + [2958] = 43, + [2959] = 30, + [2960] = 30, + [2961] = 40, + [2962] = 2900, + [2963] = 2907, + [2964] = 2964, + [2965] = 51, + [2966] = 43, + [2967] = 29, + [2968] = 2922, + [2969] = 2923, + [2970] = 44, + [2971] = 234, + [2972] = 52, + [2973] = 50, + [2974] = 2922, + [2975] = 2923, + [2976] = 48, + [2977] = 47, + [2978] = 2907, + [2979] = 2922, + [2980] = 2923, + [2981] = 28, + [2982] = 2900, + [2983] = 41, + [2984] = 43, + [2985] = 49, + [2986] = 46, + [2987] = 2907, + [2988] = 2922, + [2989] = 2923, + [2990] = 42, + [2991] = 35, + [2992] = 2900, + [2993] = 2933, + [2994] = 36, + [2995] = 39, + [2996] = 39, + [2997] = 49, + [2998] = 37, + [2999] = 307, + [3000] = 44, + [3001] = 2933, + [3002] = 2933, + [3003] = 34, + [3004] = 52, + [3005] = 45, + [3006] = 32, + [3007] = 307, + [3008] = 3008, + [3009] = 3009, + [3010] = 307, + [3011] = 3011, + [3012] = 3011, [3013] = 3013, - [3014] = 3014, + [3014] = 307, [3015] = 3015, [3016] = 3016, - [3017] = 3017, + [3017] = 3011, [3018] = 3018, [3019] = 3019, [3020] = 3020, - [3021] = 3021, + [3021] = 3009, [3022] = 3022, - [3023] = 3021, - [3024] = 3024, - [3025] = 3024, - [3026] = 3026, - [3027] = 3021, + [3023] = 3023, + [3024] = 3009, + [3025] = 3025, + [3026] = 3009, + [3027] = 3011, [3028] = 3028, - [3029] = 3029, - [3030] = 3030, + [3029] = 3009, + [3030] = 3011, [3031] = 3031, [3032] = 3032, [3033] = 3033, [3034] = 3034, - [3035] = 3035, + [3035] = 3031, [3036] = 3036, - [3037] = 3032, + [3037] = 3037, [3038] = 3038, - [3039] = 3029, + [3039] = 3031, [3040] = 3038, - [3041] = 3022, - [3042] = 3030, - [3043] = 3022, - [3044] = 3026, - [3045] = 3028, - [3046] = 3034, - [3047] = 3029, - [3048] = 3021, - [3049] = 3035, - [3050] = 3050, - [3051] = 3030, - [3052] = 3036, - [3053] = 3053, - [3054] = 3032, - [3055] = 3028, - [3056] = 3031, - [3057] = 3024, - [3058] = 3022, - [3059] = 3036, - [3060] = 3050, - [3061] = 3050, - [3062] = 3030, - [3063] = 3024, - [3064] = 3032, - [3065] = 3034, - [3066] = 3024, - [3067] = 3026, - [3068] = 3028, + [3041] = 3041, + [3042] = 3041, + [3043] = 3041, + [3044] = 3033, + [3045] = 3037, + [3046] = 3033, + [3047] = 1529, + [3048] = 3031, + [3049] = 3031, + [3050] = 3033, + [3051] = 3033, + [3052] = 3052, + [3053] = 3041, + [3054] = 3038, + [3055] = 3041, + [3056] = 3038, + [3057] = 3038, + [3058] = 3058, + [3059] = 3059, + [3060] = 3060, + [3061] = 3061, + [3062] = 3062, + [3063] = 3063, + [3064] = 3064, + [3065] = 3065, + [3066] = 3066, + [3067] = 3067, + [3068] = 3068, [3069] = 3069, - [3070] = 3031, - [3071] = 3026, - [3072] = 3029, - [3073] = 3022, - [3074] = 3034, - [3075] = 3050, - [3076] = 3036, - [3077] = 3036, - [3078] = 3026, - [3079] = 3035, + [3070] = 3070, + [3071] = 3071, + [3072] = 3068, + [3073] = 3073, + [3074] = 3074, + [3075] = 3075, + [3076] = 3076, + [3077] = 3068, + [3078] = 3070, + [3079] = 3071, [3080] = 3080, - [3081] = 3050, - [3082] = 3032, - [3083] = 3031, - [3084] = 3084, - [3085] = 3034, - [3086] = 3031, - [3087] = 3021, - [3088] = 3038, - [3089] = 3038, - [3090] = 3035, - [3091] = 3035, - [3092] = 3030, - [3093] = 3029, - [3094] = 3028, - [3095] = 3038, - [3096] = 1481, - [3097] = 1483, - [3098] = 3098, - [3099] = 3099, - [3100] = 3100, - [3101] = 3101, - [3102] = 3102, - [3103] = 6, - [3104] = 3104, - [3105] = 3105, + [3081] = 3081, + [3082] = 3082, + [3083] = 3075, + [3084] = 3082, + [3085] = 3081, + [3086] = 3076, + [3087] = 3087, + [3088] = 3080, + [3089] = 3073, + [3090] = 3081, + [3091] = 3091, + [3092] = 3092, + [3093] = 3093, + [3094] = 3094, + [3095] = 3095, + [3096] = 3071, + [3097] = 3075, + [3098] = 3073, + [3099] = 3069, + [3100] = 3095, + [3101] = 3070, + [3102] = 3092, + [3103] = 3087, + [3104] = 3082, + [3105] = 3095, [3106] = 3106, [3107] = 3107, - [3108] = 3100, - [3109] = 3109, - [3110] = 3100, - [3111] = 3111, - [3112] = 3112, - [3113] = 3111, - [3114] = 3109, - [3115] = 3115, - [3116] = 11, - [3117] = 3111, - [3118] = 3118, - [3119] = 3100, - [3120] = 3120, - [3121] = 3109, - [3122] = 3109, - [3123] = 3111, + [3108] = 3106, + [3109] = 3068, + [3110] = 3107, + [3111] = 3068, + [3112] = 3087, + [3113] = 3106, + [3114] = 3092, + [3115] = 3095, + [3116] = 3069, + [3117] = 3094, + [3118] = 3073, + [3119] = 3070, + [3120] = 3081, + [3121] = 3082, + [3122] = 3093, + [3123] = 3074, [3124] = 3124, [3125] = 3125, - [3126] = 3109, - [3127] = 3111, - [3128] = 3128, - [3129] = 3129, - [3130] = 3100, - [3131] = 3131, - [3132] = 3132, - [3133] = 3133, - [3134] = 3134, - [3135] = 3135, - [3136] = 3136, - [3137] = 3134, - [3138] = 3134, - [3139] = 3139, - [3140] = 3140, - [3141] = 3136, - [3142] = 3134, - [3143] = 3143, - [3144] = 3140, - [3145] = 3136, - [3146] = 3136, - [3147] = 3147, - [3148] = 3140, - [3149] = 3143, - [3150] = 3150, - [3151] = 3140, - [3152] = 3143, - [3153] = 3153, - [3154] = 3154, - [3155] = 3140, - [3156] = 3156, - [3157] = 3157, - [3158] = 3143, - [3159] = 3134, - [3160] = 3160, - [3161] = 3136, - [3162] = 3162, - [3163] = 3143, - [3164] = 15, - [3165] = 3165, + [3126] = 3107, + [3127] = 3076, + [3128] = 3075, + [3129] = 3106, + [3130] = 3130, + [3131] = 3071, + [3132] = 3074, + [3133] = 3080, + [3134] = 3070, + [3135] = 3076, + [3136] = 3074, + [3137] = 3082, + [3138] = 3094, + [3139] = 3087, + [3140] = 3093, + [3141] = 3080, + [3142] = 3074, + [3143] = 3092, + [3144] = 3071, + [3145] = 3075, + [3146] = 3069, + [3147] = 3093, + [3148] = 3093, + [3149] = 3076, + [3150] = 3107, + [3151] = 3094, + [3152] = 3080, + [3153] = 3081, + [3154] = 3094, + [3155] = 3073, + [3156] = 3095, + [3157] = 3106, + [3158] = 3069, + [3159] = 3107, + [3160] = 3092, + [3161] = 3087, + [3162] = 1530, + [3163] = 3163, + [3164] = 1529, + [3165] = 8, [3166] = 3166, [3167] = 3167, - [3168] = 3135, + [3168] = 3168, [3169] = 3169, - [3170] = 3167, + [3170] = 3166, [3171] = 3171, [3172] = 3172, - [3173] = 3173, - [3174] = 3167, - [3175] = 3173, - [3176] = 3167, - [3177] = 3154, - [3178] = 3178, - [3179] = 3179, + [3173] = 3166, + [3174] = 3174, + [3175] = 3175, + [3176] = 3176, + [3177] = 3166, + [3178] = 3167, + [3179] = 3167, [3180] = 3180, - [3181] = 3181, - [3182] = 3157, - [3183] = 3183, - [3184] = 3171, - [3185] = 3181, - [3186] = 3179, - [3187] = 3171, + [3181] = 3176, + [3182] = 3176, + [3183] = 3166, + [3184] = 3184, + [3185] = 3185, + [3186] = 3186, + [3187] = 3167, [3188] = 3188, - [3189] = 3173, - [3190] = 3173, - [3191] = 3179, - [3192] = 3179, - [3193] = 3179, - [3194] = 3167, + [3189] = 3176, + [3190] = 3190, + [3191] = 9, + [3192] = 3167, + [3193] = 3193, + [3194] = 3176, [3195] = 3195, - [3196] = 3181, - [3197] = 3171, - [3198] = 3171, - [3199] = 3181, - [3200] = 3173, + [3196] = 3196, + [3197] = 3197, + [3198] = 3198, + [3199] = 3199, + [3200] = 3200, [3201] = 3201, - [3202] = 3181, + [3202] = 3202, [3203] = 3203, [3204] = 3204, [3205] = 3205, [3206] = 3206, [3207] = 3207, - [3208] = 3208, - [3209] = 3098, + [3208] = 27, + [3209] = 3209, [3210] = 3210, [3211] = 3211, [3212] = 3212, @@ -7289,3496 +7302,3606 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3215] = 3215, [3216] = 3216, [3217] = 3217, - [3218] = 3218, - [3219] = 3219, + [3218] = 3200, + [3219] = 3213, [3220] = 3220, - [3221] = 3218, - [3222] = 3219, - [3223] = 3223, + [3221] = 3216, + [3222] = 3222, + [3223] = 3217, [3224] = 3224, - [3225] = 3225, - [3226] = 3219, - [3227] = 3224, - [3228] = 3219, - [3229] = 3225, - [3230] = 3225, - [3231] = 3225, - [3232] = 3218, - [3233] = 3219, - [3234] = 3225, - [3235] = 3235, - [3236] = 3236, - [3237] = 3224, + [3225] = 3215, + [3226] = 3226, + [3227] = 3216, + [3228] = 3214, + [3229] = 3229, + [3230] = 3207, + [3231] = 3215, + [3232] = 3213, + [3233] = 3213, + [3234] = 3216, + [3235] = 3213, + [3236] = 3214, + [3237] = 3215, [3238] = 3238, - [3239] = 3224, - [3240] = 3218, - [3241] = 3224, - [3242] = 3242, - [3243] = 3218, - [3244] = 3244, - [3245] = 3244, - [3246] = 3246, - [3247] = 3246, - [3248] = 3246, + [3239] = 3214, + [3240] = 3216, + [3241] = 3241, + [3242] = 3215, + [3243] = 3243, + [3244] = 3217, + [3245] = 3199, + [3246] = 3217, + [3247] = 3214, + [3248] = 3217, [3249] = 3249, [3250] = 3250, [3251] = 3251, - [3252] = 3244, - [3253] = 3251, + [3252] = 3252, + [3253] = 3253, [3254] = 3254, [3255] = 3255, - [3256] = 3249, - [3257] = 3255, - [3258] = 3255, - [3259] = 3255, - [3260] = 3249, - [3261] = 3251, - [3262] = 3255, - [3263] = 3244, - [3264] = 3249, - [3265] = 3251, - [3266] = 3244, - [3267] = 3251, - [3268] = 3249, - [3269] = 3269, - [3270] = 3251, - [3271] = 3244, - [3272] = 3246, - [3273] = 3244, - [3274] = 3249, - [3275] = 3249, - [3276] = 3244, - [3277] = 3251, - [3278] = 3244, - [3279] = 3249, - [3280] = 3255, - [3281] = 3281, - [3282] = 3255, - [3283] = 3244, - [3284] = 3251, - [3285] = 3255, - [3286] = 3249, - [3287] = 3244, - [3288] = 3249, - [3289] = 3251, - [3290] = 3249, - [3291] = 3251, - [3292] = 3255, - [3293] = 3251, - [3294] = 3246, - [3295] = 3249, + [3256] = 3256, + [3257] = 3257, + [3258] = 3163, + [3259] = 3259, + [3260] = 3260, + [3261] = 3261, + [3262] = 3262, + [3263] = 3263, + [3264] = 3263, + [3265] = 3265, + [3266] = 3266, + [3267] = 3267, + [3268] = 3266, + [3269] = 3267, + [3270] = 3265, + [3271] = 3271, + [3272] = 3265, + [3273] = 3266, + [3274] = 3274, + [3275] = 3275, + [3276] = 3274, + [3277] = 3263, + [3278] = 3274, + [3279] = 3274, + [3280] = 3280, + [3281] = 3267, + [3282] = 3265, + [3283] = 3283, + [3284] = 3284, + [3285] = 3265, + [3286] = 3263, + [3287] = 3267, + [3288] = 3266, + [3289] = 3266, + [3290] = 3290, + [3291] = 3291, + [3292] = 3263, + [3293] = 3293, + [3294] = 3267, + [3295] = 3274, [3296] = 3296, - [3297] = 3255, - [3298] = 3255, - [3299] = 3249, + [3297] = 3296, + [3298] = 3298, + [3299] = 3296, [3300] = 3300, - [3301] = 3255, - [3302] = 3244, - [3303] = 3251, - [3304] = 3255, - [3305] = 3244, - [3306] = 3251, - [3307] = 3307, - [3308] = 11, - [3309] = 3309, - [3310] = 3310, - [3311] = 3311, - [3312] = 3312, - [3313] = 3313, - [3314] = 3313, - [3315] = 3307, - [3316] = 3316, - [3317] = 3316, - [3318] = 3316, - [3319] = 3312, - [3320] = 3313, - [3321] = 3321, - [3322] = 3307, - [3323] = 3312, - [3324] = 3309, - [3325] = 3312, - [3326] = 3307, - [3327] = 3327, - [3328] = 3307, - [3329] = 3309, - [3330] = 3316, - [3331] = 6, - [3332] = 3332, - [3333] = 3312, - [3334] = 3316, - [3335] = 3309, - [3336] = 3313, - [3337] = 3309, - [3338] = 3313, - [3339] = 3339, - [3340] = 3340, - [3341] = 3341, - [3342] = 3342, + [3301] = 3301, + [3302] = 3302, + [3303] = 3298, + [3304] = 3296, + [3305] = 3296, + [3306] = 3306, + [3307] = 3298, + [3308] = 3308, + [3309] = 3302, + [3310] = 3296, + [3311] = 3298, + [3312] = 3302, + [3313] = 3300, + [3314] = 3300, + [3315] = 3300, + [3316] = 3302, + [3317] = 3301, + [3318] = 3302, + [3319] = 3298, + [3320] = 3300, + [3321] = 3298, + [3322] = 3300, + [3323] = 3301, + [3324] = 3302, + [3325] = 3301, + [3326] = 3326, + [3327] = 3298, + [3328] = 3296, + [3329] = 3300, + [3330] = 3300, + [3331] = 3302, + [3332] = 3296, + [3333] = 3298, + [3334] = 3334, + [3335] = 3302, + [3336] = 3302, + [3337] = 3300, + [3338] = 3338, + [3339] = 3300, + [3340] = 3302, + [3341] = 3298, + [3342] = 3298, [3343] = 3343, - [3344] = 3344, - [3345] = 3342, - [3346] = 3346, - [3347] = 3347, - [3348] = 15, - [3349] = 3339, - [3350] = 3350, - [3351] = 3351, - [3352] = 3352, - [3353] = 3353, - [3354] = 3354, - [3355] = 3355, - [3356] = 3356, - [3357] = 3347, - [3358] = 3358, + [3344] = 3296, + [3345] = 3298, + [3346] = 3296, + [3347] = 3298, + [3348] = 3301, + [3349] = 3302, + [3350] = 3300, + [3351] = 3302, + [3352] = 3296, + [3353] = 3300, + [3354] = 3300, + [3355] = 3302, + [3356] = 3298, + [3357] = 3296, + [3358] = 3296, [3359] = 3359, - [3360] = 3254, - [3361] = 3342, + [3360] = 3360, + [3361] = 3361, [3362] = 3362, - [3363] = 3356, - [3364] = 3342, - [3365] = 3365, + [3363] = 3363, + [3364] = 3364, + [3365] = 3364, [3366] = 3366, - [3367] = 3367, - [3368] = 3347, - [3369] = 3369, - [3370] = 3352, - [3371] = 3371, - [3372] = 3342, - [3373] = 3373, - [3374] = 3358, - [3375] = 3339, - [3376] = 3339, - [3377] = 3340, - [3378] = 3356, - [3379] = 3371, - [3380] = 3340, - [3381] = 3340, + [3367] = 3360, + [3368] = 3368, + [3369] = 3360, + [3370] = 3370, + [3371] = 3361, + [3372] = 3364, + [3373] = 3370, + [3374] = 3370, + [3375] = 8, + [3376] = 9, + [3377] = 3362, + [3378] = 3370, + [3379] = 3362, + [3380] = 3361, + [3381] = 3364, [3382] = 3362, - [3383] = 3383, - [3384] = 5, - [3385] = 3354, - [3386] = 3386, - [3387] = 3366, - [3388] = 3366, - [3389] = 3362, - [3390] = 3362, - [3391] = 3358, - [3392] = 3354, - [3393] = 3358, - [3394] = 3356, - [3395] = 3354, - [3396] = 3352, - [3397] = 3351, - [3398] = 3352, - [3399] = 3340, - [3400] = 3400, - [3401] = 3347, - [3402] = 3371, - [3403] = 3403, - [3404] = 3366, - [3405] = 3356, - [3406] = 3406, - [3407] = 3352, - [3408] = 3351, - [3409] = 3358, - [3410] = 3410, - [3411] = 3362, - [3412] = 3354, - [3413] = 3347, - [3414] = 3414, - [3415] = 3415, - [3416] = 3366, - [3417] = 3371, - [3418] = 4, - [3419] = 3351, - [3420] = 3371, - [3421] = 3339, + [3383] = 3360, + [3384] = 3360, + [3385] = 3370, + [3386] = 3361, + [3387] = 3362, + [3388] = 3361, + [3389] = 3364, + [3390] = 3390, + [3391] = 3391, + [3392] = 3392, + [3393] = 3393, + [3394] = 3394, + [3395] = 3395, + [3396] = 3396, + [3397] = 3394, + [3398] = 3393, + [3399] = 3396, + [3400] = 3334, + [3401] = 3401, + [3402] = 3402, + [3403] = 3395, + [3404] = 3391, + [3405] = 3405, + [3406] = 3395, + [3407] = 3407, + [3408] = 3408, + [3409] = 3401, + [3410] = 3394, + [3411] = 3408, + [3412] = 3412, + [3413] = 3395, + [3414] = 3391, + [3415] = 3408, + [3416] = 3416, + [3417] = 3395, + [3418] = 27, + [3419] = 3395, + [3420] = 3420, + [3421] = 3393, [3422] = 3422, - [3423] = 3351, + [3423] = 3420, [3424] = 3424, - [3425] = 3424, - [3426] = 3426, - [3427] = 3424, + [3425] = 3425, + [3426] = 3394, + [3427] = 3395, [3428] = 3428, - [3429] = 3429, - [3430] = 3428, - [3431] = 3429, - [3432] = 3428, - [3433] = 3433, - [3434] = 3434, - [3435] = 3435, - [3436] = 3435, - [3437] = 3424, - [3438] = 3438, - [3439] = 3429, - [3440] = 3440, - [3441] = 3429, - [3442] = 3433, - [3443] = 3443, - [3444] = 3444, - [3445] = 3428, - [3446] = 3446, - [3447] = 3444, - [3448] = 3429, - [3449] = 3435, - [3450] = 3444, - [3451] = 12, - [3452] = 3433, - [3453] = 3440, - [3454] = 3426, - [3455] = 3443, - [3456] = 3440, - [3457] = 3438, - [3458] = 3426, - [3459] = 3443, - [3460] = 3438, - [3461] = 3434, - [3462] = 3462, - [3463] = 3426, - [3464] = 3446, - [3465] = 3440, - [3466] = 3446, - [3467] = 3434, + [3429] = 3405, + [3430] = 3430, + [3431] = 3405, + [3432] = 3432, + [3433] = 3393, + [3434] = 3428, + [3435] = 3401, + [3436] = 3395, + [3437] = 3391, + [3438] = 3391, + [3439] = 3439, + [3440] = 3408, + [3441] = 3441, + [3442] = 3393, + [3443] = 3395, + [3444] = 3401, + [3445] = 3432, + [3446] = 3430, + [3447] = 3408, + [3448] = 3448, + [3449] = 3396, + [3450] = 3432, + [3451] = 3394, + [3452] = 3422, + [3453] = 3430, + [3454] = 3454, + [3455] = 3401, + [3456] = 3396, + [3457] = 3432, + [3458] = 3405, + [3459] = 3428, + [3460] = 3460, + [3461] = 3405, + [3462] = 3432, + [3463] = 3395, + [3464] = 3422, + [3465] = 3430, + [3466] = 3422, + [3467] = 3467, [3468] = 3468, - [3469] = 3443, - [3470] = 3444, - [3471] = 3434, - [3472] = 3440, - [3473] = 3426, - [3474] = 3433, - [3475] = 3435, - [3476] = 3428, - [3477] = 3424, - [3478] = 3438, - [3479] = 3433, - [3480] = 3480, - [3481] = 3481, - [3482] = 3435, - [3483] = 3443, - [3484] = 3434, - [3485] = 3444, - [3486] = 3446, - [3487] = 3438, - [3488] = 3446, + [3469] = 3420, + [3470] = 3470, + [3471] = 3395, + [3472] = 3472, + [3473] = 3420, + [3474] = 3474, + [3475] = 3475, + [3476] = 3430, + [3477] = 3477, + [3478] = 3395, + [3479] = 3479, + [3480] = 3428, + [3481] = 3422, + [3482] = 3428, + [3483] = 3396, + [3484] = 3395, + [3485] = 3420, + [3486] = 3486, + [3487] = 3487, + [3488] = 3488, [3489] = 3489, [3490] = 3490, [3491] = 3491, [3492] = 3492, [3493] = 3493, [3494] = 3494, - [3495] = 3495, - [3496] = 3495, - [3497] = 3495, + [3495] = 3494, + [3496] = 3487, + [3497] = 3491, [3498] = 3498, - [3499] = 3499, - [3500] = 3500, + [3499] = 3493, + [3500] = 3493, [3501] = 3490, [3502] = 3502, - [3503] = 3495, - [3504] = 3502, - [3505] = 3499, - [3506] = 3502, + [3503] = 3503, + [3504] = 3498, + [3505] = 3505, + [3506] = 19, [3507] = 3507, [3508] = 3508, - [3509] = 3507, - [3510] = 3495, - [3511] = 3511, - [3512] = 3512, - [3513] = 3495, - [3514] = 3495, - [3515] = 3495, - [3516] = 3516, - [3517] = 3489, - [3518] = 3502, - [3519] = 3519, - [3520] = 3520, - [3521] = 3521, - [3522] = 3522, - [3523] = 3495, - [3524] = 3524, - [3525] = 16, - [3526] = 3526, - [3527] = 3495, - [3528] = 3494, - [3529] = 3529, - [3530] = 3530, - [3531] = 3531, - [3532] = 3532, + [3509] = 3502, + [3510] = 3502, + [3511] = 3508, + [3512] = 5, + [3513] = 3508, + [3514] = 3508, + [3515] = 3498, + [3516] = 3490, + [3517] = 3507, + [3518] = 3491, + [3519] = 3489, + [3520] = 3507, + [3521] = 3507, + [3522] = 6, + [3523] = 3505, + [3524] = 3489, + [3525] = 3490, + [3526] = 3503, + [3527] = 3493, + [3528] = 3505, + [3529] = 3487, + [3530] = 3494, + [3531] = 24, + [3532] = 3494, [3533] = 3533, - [3534] = 3502, - [3535] = 3535, - [3536] = 3502, - [3537] = 3500, - [3538] = 3538, - [3539] = 3539, - [3540] = 3502, - [3541] = 3491, - [3542] = 3542, - [3543] = 3498, - [3544] = 3544, - [3545] = 3545, - [3546] = 3492, - [3547] = 3547, - [3548] = 3495, - [3549] = 3549, - [3550] = 3550, - [3551] = 3551, - [3552] = 3551, - [3553] = 3550, - [3554] = 3549, - [3555] = 3545, - [3556] = 3547, - [3557] = 3508, - [3558] = 3519, - [3559] = 47, - [3560] = 3492, - [3561] = 3495, - [3562] = 3545, - [3563] = 3495, - [3564] = 3551, - [3565] = 3550, - [3566] = 3493, - [3567] = 3498, - [3568] = 3495, - [3569] = 3538, - [3570] = 3533, - [3571] = 3532, - [3572] = 3499, - [3573] = 3531, - [3574] = 3549, - [3575] = 3520, - [3576] = 3521, - [3577] = 3530, - [3578] = 3547, - [3579] = 3508, - [3580] = 3495, - [3581] = 3495, - [3582] = 3512, - [3583] = 3529, - [3584] = 3507, - [3585] = 43, - [3586] = 3526, - [3587] = 3495, - [3588] = 3495, - [3589] = 3522, - [3590] = 3495, - [3591] = 3495, - [3592] = 3542, - [3593] = 3521, - [3594] = 3520, - [3595] = 3544, - [3596] = 3522, - [3597] = 3519, - [3598] = 3490, - [3599] = 3500, - [3600] = 3538, - [3601] = 3495, - [3602] = 3526, - [3603] = 3493, - [3604] = 3489, - [3605] = 3502, - [3606] = 3491, - [3607] = 3500, - [3608] = 3502, - [3609] = 3495, - [3610] = 44, - [3611] = 3495, - [3612] = 3612, - [3613] = 3495, - [3614] = 3542, - [3615] = 3502, - [3616] = 3533, - [3617] = 3512, - [3618] = 3512, - [3619] = 3508, - [3620] = 3494, + [3534] = 3534, + [3535] = 3503, + [3536] = 4, + [3537] = 3534, + [3538] = 11, + [3539] = 3502, + [3540] = 3503, + [3541] = 21, + [3542] = 3534, + [3543] = 3543, + [3544] = 3503, + [3545] = 3491, + [3546] = 3533, + [3547] = 3533, + [3548] = 3502, + [3549] = 3487, + [3550] = 3507, + [3551] = 3493, + [3552] = 3508, + [3553] = 3489, + [3554] = 3505, + [3555] = 3491, + [3556] = 3487, + [3557] = 3533, + [3558] = 3498, + [3559] = 3505, + [3560] = 3560, + [3561] = 3534, + [3562] = 3494, + [3563] = 3498, + [3564] = 3533, + [3565] = 3534, + [3566] = 3489, + [3567] = 3567, + [3568] = 3568, + [3569] = 3490, + [3570] = 20, + [3571] = 3571, + [3572] = 52, + [3573] = 3573, + [3574] = 3574, + [3575] = 3575, + [3576] = 3028, + [3577] = 3577, + [3578] = 3578, + [3579] = 3579, + [3580] = 3580, + [3581] = 3581, + [3582] = 3582, + [3583] = 3583, + [3584] = 3584, + [3585] = 3585, + [3586] = 3586, + [3587] = 3580, + [3588] = 3588, + [3589] = 3589, + [3590] = 3579, + [3591] = 3584, + [3592] = 3592, + [3593] = 3593, + [3594] = 3594, + [3595] = 3595, + [3596] = 3596, + [3597] = 3573, + [3598] = 3598, + [3599] = 3573, + [3600] = 3579, + [3601] = 3573, + [3602] = 3602, + [3603] = 3602, + [3604] = 3604, + [3605] = 3605, + [3606] = 3579, + [3607] = 3607, + [3608] = 3608, + [3609] = 3579, + [3610] = 3610, + [3611] = 3595, + [3612] = 3579, + [3613] = 3613, + [3614] = 3578, + [3615] = 3602, + [3616] = 3616, + [3617] = 3617, + [3618] = 3618, + [3619] = 3579, + [3620] = 3620, [3621] = 3621, - [3622] = 3544, - [3623] = 3544, - [3624] = 3495, - [3625] = 3499, - [3626] = 3542, - [3627] = 3494, - [3628] = 2982, - [3629] = 3495, + [3622] = 3596, + [3623] = 3607, + [3624] = 3624, + [3625] = 3607, + [3626] = 3022, + [3627] = 3627, + [3628] = 3025, + [3629] = 3579, [3630] = 3630, [3631] = 3631, - [3632] = 3612, - [3633] = 3491, - [3634] = 3495, - [3635] = 3495, - [3636] = 3493, - [3637] = 3520, - [3638] = 3521, - [3639] = 3494, - [3640] = 3522, - [3641] = 3495, - [3642] = 2971, - [3643] = 3526, - [3644] = 3529, - [3645] = 2968, - [3646] = 3490, - [3647] = 3499, - [3648] = 3508, - [3649] = 3495, + [3632] = 3617, + [3633] = 3608, + [3634] = 3620, + [3635] = 3598, + [3636] = 3604, + [3637] = 3637, + [3638] = 3575, + [3639] = 3578, + [3640] = 3640, + [3641] = 3641, + [3642] = 3642, + [3643] = 3643, + [3644] = 3644, + [3645] = 3645, + [3646] = 3579, + [3647] = 3589, + [3648] = 3574, + [3649] = 3649, [3650] = 3650, - [3651] = 3529, - [3652] = 3490, - [3653] = 3512, - [3654] = 3502, - [3655] = 3612, - [3656] = 3507, - [3657] = 3495, - [3658] = 19, - [3659] = 3489, - [3660] = 3502, - [3661] = 3502, - [3662] = 3532, - [3663] = 3663, - [3664] = 3531, - [3665] = 3533, - [3666] = 3538, + [3651] = 3592, + [3652] = 3652, + [3653] = 3602, + [3654] = 3584, + [3655] = 3582, + [3656] = 3631, + [3657] = 3657, + [3658] = 3589, + [3659] = 3650, + [3660] = 3582, + [3661] = 3649, + [3662] = 3571, + [3663] = 3596, + [3664] = 3644, + [3665] = 3579, + [3666] = 3581, [3667] = 3667, - [3668] = 3530, - [3669] = 3669, - [3670] = 3612, - [3671] = 3495, - [3672] = 3489, - [3673] = 3495, - [3674] = 3498, - [3675] = 3520, - [3676] = 3521, - [3677] = 3522, - [3678] = 3526, - [3679] = 3529, - [3680] = 3544, - [3681] = 3542, - [3682] = 3491, - [3683] = 3533, - [3684] = 3519, - [3685] = 3538, - [3686] = 3519, - [3687] = 3493, - [3688] = 3498, - [3689] = 20, - [3690] = 3507, - [3691] = 3547, - [3692] = 3549, - [3693] = 3550, - [3694] = 3551, - [3695] = 3612, - [3696] = 3530, - [3697] = 3697, - [3698] = 3531, - [3699] = 3532, - [3700] = 3547, - [3701] = 3549, - [3702] = 3550, - [3703] = 3551, - [3704] = 3704, - [3705] = 3500, - [3706] = 3492, - [3707] = 3531, - [3708] = 3532, - [3709] = 3495, - [3710] = 3530, - [3711] = 3545, - [3712] = 3492, - [3713] = 3545, - [3714] = 3714, - [3715] = 3715, - [3716] = 3716, - [3717] = 3717, - [3718] = 3718, - [3719] = 3719, + [3668] = 3593, + [3669] = 3583, + [3670] = 3610, + [3671] = 3574, + [3672] = 3620, + [3673] = 3673, + [3674] = 3645, + [3675] = 3621, + [3676] = 3593, + [3677] = 3581, + [3678] = 3579, + [3679] = 3582, + [3680] = 3680, + [3681] = 3681, + [3682] = 3593, + [3683] = 3595, + [3684] = 3581, + [3685] = 3607, + [3686] = 3686, + [3687] = 3616, + [3688] = 3589, + [3689] = 3596, + [3690] = 3580, + [3691] = 3578, + [3692] = 3580, + [3693] = 3573, + [3694] = 3694, + [3695] = 3579, + [3696] = 3583, + [3697] = 3594, + [3698] = 3616, + [3699] = 3592, + [3700] = 3588, + [3701] = 3583, + [3702] = 3607, + [3703] = 3657, + [3704] = 3586, + [3705] = 3667, + [3706] = 3594, + [3707] = 3644, + [3708] = 3631, + [3709] = 3652, + [3710] = 3630, + [3711] = 3579, + [3712] = 3657, + [3713] = 3650, + [3714] = 3571, + [3715] = 3649, + [3716] = 3584, + [3717] = 3574, + [3718] = 3610, + [3719] = 3586, [3720] = 3720, - [3721] = 3721, - [3722] = 3714, - [3723] = 3723, - [3724] = 3718, - [3725] = 3725, - [3726] = 3726, - [3727] = 3715, - [3728] = 3728, - [3729] = 3718, - [3730] = 3715, - [3731] = 3468, - [3732] = 3720, - [3733] = 3725, + [3721] = 3624, + [3722] = 3621, + [3723] = 3680, + [3724] = 3579, + [3725] = 3624, + [3726] = 3681, + [3727] = 3588, + [3728] = 3579, + [3729] = 7, + [3730] = 3598, + [3731] = 3731, + [3732] = 3641, + [3733] = 3579, [3734] = 3734, - [3735] = 3720, - [3736] = 3736, - [3737] = 3715, - [3738] = 3719, - [3739] = 3739, - [3740] = 3718, - [3741] = 3741, - [3742] = 3742, - [3743] = 3743, - [3744] = 3720, - [3745] = 3745, - [3746] = 3725, - [3747] = 3747, - [3748] = 3719, - [3749] = 3749, - [3750] = 3717, - [3751] = 1481, - [3752] = 3715, - [3753] = 1483, - [3754] = 3754, - [3755] = 3755, - [3756] = 3756, - [3757] = 3749, - [3758] = 3758, - [3759] = 3754, - [3760] = 3760, - [3761] = 3761, - [3762] = 3721, - [3763] = 3749, - [3764] = 3764, - [3765] = 3754, - [3766] = 3742, - [3767] = 3742, - [3768] = 3764, - [3769] = 3749, - [3770] = 3717, - [3771] = 3714, - [3772] = 3772, - [3773] = 3773, - [3774] = 3764, - [3775] = 3717, - [3776] = 3718, - [3777] = 3764, - [3778] = 3764, - [3779] = 3742, - [3780] = 3749, - [3781] = 3725, - [3782] = 3717, - [3783] = 3714, - [3784] = 3784, - [3785] = 3714, - [3786] = 3725, - [3787] = 3754, - [3788] = 3720, - [3789] = 3719, - [3790] = 3742, - [3791] = 3754, - [3792] = 3719, - [3793] = 3793, - [3794] = 3794, - [3795] = 1603, - [3796] = 1604, - [3797] = 3793, - [3798] = 3798, - [3799] = 3799, - [3800] = 1605, - [3801] = 1591, - [3802] = 3802, - [3803] = 1590, - [3804] = 1617, - [3805] = 3798, - [3806] = 3806, - [3807] = 3807, - [3808] = 3794, - [3809] = 3793, - [3810] = 1589, - [3811] = 3811, - [3812] = 3806, - [3813] = 3807, - [3814] = 3807, - [3815] = 3815, - [3816] = 3816, - [3817] = 1618, - [3818] = 3793, - [3819] = 1556, - [3820] = 3806, - [3821] = 1626, - [3822] = 1548, - [3823] = 1631, - [3824] = 1557, - [3825] = 2572, - [3826] = 1632, - [3827] = 1656, - [3828] = 1558, - [3829] = 3794, - [3830] = 3806, - [3831] = 3807, - [3832] = 2561, - [3833] = 1616, - [3834] = 3834, - [3835] = 3835, - [3836] = 3811, - [3837] = 3799, - [3838] = 3794, - [3839] = 1559, - [3840] = 1561, - [3841] = 1562, - [3842] = 1564, - [3843] = 3794, - [3844] = 1565, - [3845] = 3806, + [3735] = 3624, + [3736] = 3602, + [3737] = 3595, + [3738] = 3681, + [3739] = 3652, + [3740] = 3594, + [3741] = 3652, + [3742] = 3594, + [3743] = 3579, + [3744] = 3579, + [3745] = 3579, + [3746] = 3746, + [3747] = 3667, + [3748] = 3579, + [3749] = 3624, + [3750] = 3643, + [3751] = 3642, + [3752] = 3574, + [3753] = 3579, + [3754] = 3681, + [3755] = 3681, + [3756] = 3641, + [3757] = 3680, + [3758] = 3630, + [3759] = 3631, + [3760] = 3621, + [3761] = 3617, + [3762] = 3579, + [3763] = 3644, + [3764] = 3667, + [3765] = 3610, + [3766] = 3645, + [3767] = 3649, + [3768] = 3579, + [3769] = 3617, + [3770] = 3586, + [3771] = 3650, + [3772] = 3588, + [3773] = 3598, + [3774] = 3592, + [3775] = 3630, + [3776] = 3631, + [3777] = 3644, + [3778] = 3667, + [3779] = 3657, + [3780] = 3608, + [3781] = 3586, + [3782] = 3588, + [3783] = 3592, + [3784] = 3680, + [3785] = 3620, + [3786] = 3579, + [3787] = 3579, + [3788] = 3652, + [3789] = 3582, + [3790] = 3616, + [3791] = 3579, + [3792] = 3642, + [3793] = 3604, + [3794] = 3645, + [3795] = 3616, + [3796] = 3680, + [3797] = 3579, + [3798] = 3575, + [3799] = 3584, + [3800] = 3617, + [3801] = 3645, + [3802] = 3604, + [3803] = 3595, + [3804] = 3620, + [3805] = 3571, + [3806] = 3571, + [3807] = 3578, + [3808] = 3589, + [3809] = 3579, + [3810] = 3657, + [3811] = 3579, + [3812] = 3608, + [3813] = 3650, + [3814] = 3579, + [3815] = 3649, + [3816] = 3579, + [3817] = 3575, + [3818] = 3593, + [3819] = 3583, + [3820] = 3610, + [3821] = 3621, + [3822] = 3581, + [3823] = 3643, + [3824] = 3643, + [3825] = 3642, + [3826] = 3641, + [3827] = 3643, + [3828] = 3642, + [3829] = 3579, + [3830] = 3575, + [3831] = 3604, + [3832] = 3608, + [3833] = 3579, + [3834] = 3596, + [3835] = 3598, + [3836] = 3580, + [3837] = 3630, + [3838] = 3641, + [3839] = 3579, + [3840] = 3840, + [3841] = 3841, + [3842] = 3842, + [3843] = 3843, + [3844] = 1529, + [3845] = 3845, [3846] = 3846, - [3847] = 1637, - [3848] = 1640, - [3849] = 3799, - [3850] = 1641, - [3851] = 3793, - [3852] = 3852, - [3853] = 1642, - [3854] = 1644, - [3855] = 1645, - [3856] = 3811, - [3857] = 3799, - [3858] = 3858, - [3859] = 3798, - [3860] = 3798, + [3847] = 3847, + [3848] = 3848, + [3849] = 3849, + [3850] = 3850, + [3851] = 3851, + [3852] = 3849, + [3853] = 3845, + [3854] = 3851, + [3855] = 3855, + [3856] = 3851, + [3857] = 3857, + [3858] = 3848, + [3859] = 3859, + [3860] = 3851, [3861] = 3861, - [3862] = 3811, - [3863] = 1693, - [3864] = 1694, - [3865] = 3865, - [3866] = 3866, - [3867] = 1731, - [3868] = 3799, - [3869] = 3811, - [3870] = 3798, - [3871] = 3807, + [3862] = 3862, + [3863] = 3863, + [3864] = 3864, + [3865] = 3849, + [3866] = 3847, + [3867] = 3857, + [3868] = 3868, + [3869] = 3868, + [3870] = 3870, + [3871] = 3862, [3872] = 3872, - [3873] = 3873, - [3874] = 3874, - [3875] = 3875, - [3876] = 3876, - [3877] = 3877, - [3878] = 3878, - [3879] = 3879, - [3880] = 3880, - [3881] = 3881, - [3882] = 3882, - [3883] = 3883, - [3884] = 3884, - [3885] = 3885, - [3886] = 3886, + [3873] = 3872, + [3874] = 3864, + [3875] = 3870, + [3876] = 3862, + [3877] = 3857, + [3878] = 3855, + [3879] = 3849, + [3880] = 3872, + [3881] = 3872, + [3882] = 3851, + [3883] = 3847, + [3884] = 3845, + [3885] = 3843, + [3886] = 3845, [3887] = 3887, - [3888] = 3888, - [3889] = 3889, - [3890] = 3877, - [3891] = 3891, - [3892] = 3892, - [3893] = 3893, - [3894] = 3873, - [3895] = 3895, - [3896] = 3896, - [3897] = 3897, - [3898] = 3886, - [3899] = 3886, - [3900] = 3900, - [3901] = 3877, - [3902] = 3902, - [3903] = 3902, - [3904] = 3875, - [3905] = 3878, - [3906] = 3906, - [3907] = 3881, - [3908] = 3908, - [3909] = 3909, + [3888] = 3872, + [3889] = 3864, + [3890] = 3868, + [3891] = 3849, + [3892] = 3864, + [3893] = 3848, + [3894] = 3868, + [3895] = 3848, + [3896] = 3845, + [3897] = 3843, + [3898] = 1530, + [3899] = 3847, + [3900] = 3543, + [3901] = 3857, + [3902] = 3847, + [3903] = 3903, + [3904] = 3904, + [3905] = 3848, + [3906] = 3862, + [3907] = 3843, + [3908] = 3843, + [3909] = 3862, [3910] = 3910, [3911] = 3911, [3912] = 3912, - [3913] = 3883, - [3914] = 3881, - [3915] = 3884, - [3916] = 3895, - [3917] = 3874, - [3918] = 3880, - [3919] = 3882, - [3920] = 3883, - [3921] = 3884, - [3922] = 3881, - [3923] = 3875, - [3924] = 3886, - [3925] = 3879, - [3926] = 3906, - [3927] = 3886, + [3913] = 3868, + [3914] = 3914, + [3915] = 3857, + [3916] = 3916, + [3917] = 3917, + [3918] = 3918, + [3919] = 3864, + [3920] = 3920, + [3921] = 3921, + [3922] = 3922, + [3923] = 1644, + [3924] = 3924, + [3925] = 3925, + [3926] = 3926, + [3927] = 3927, [3928] = 3928, - [3929] = 3884, - [3930] = 3911, - [3931] = 3883, + [3929] = 2779, + [3930] = 3926, + [3931] = 3931, [3932] = 3932, - [3933] = 3882, - [3934] = 3874, - [3935] = 3880, - [3936] = 3873, - [3937] = 3911, - [3938] = 3895, + [3933] = 2739, + [3934] = 3934, + [3935] = 1615, + [3936] = 1616, + [3937] = 1558, + [3938] = 1534, [3939] = 3939, - [3940] = 3879, - [3941] = 3880, - [3942] = 3873, - [3943] = 3943, - [3944] = 3944, - [3945] = 3945, - [3946] = 3906, - [3947] = 3943, - [3948] = 3877, - [3949] = 3879, - [3950] = 3874, - [3951] = 3943, - [3952] = 3902, - [3953] = 3878, - [3954] = 3877, - [3955] = 3895, - [3956] = 3943, - [3957] = 3875, - [3958] = 3878, - [3959] = 3873, - [3960] = 3906, - [3961] = 3902, - [3962] = 3962, - [3963] = 3906, - [3964] = 3878, - [3965] = 3875, - [3966] = 3911, - [3967] = 3874, - [3968] = 3882, - [3969] = 3969, - [3970] = 3902, - [3971] = 3971, - [3972] = 3943, - [3973] = 3881, - [3974] = 3882, - [3975] = 3911, - [3976] = 3976, - [3977] = 3879, - [3978] = 3895, - [3979] = 3880, - [3980] = 3884, - [3981] = 3883, - [3982] = 3982, - [3983] = 3983, + [3940] = 3934, + [3941] = 1641, + [3942] = 1751, + [3943] = 1690, + [3944] = 1617, + [3945] = 3926, + [3946] = 1650, + [3947] = 3939, + [3948] = 1640, + [3949] = 3934, + [3950] = 1620, + [3951] = 3934, + [3952] = 1649, + [3953] = 3924, + [3954] = 3934, + [3955] = 1579, + [3956] = 1581, + [3957] = 3957, + [3958] = 3939, + [3959] = 3959, + [3960] = 3960, + [3961] = 3926, + [3962] = 1577, + [3963] = 3922, + [3964] = 1712, + [3965] = 1618, + [3966] = 3939, + [3967] = 3922, + [3968] = 1533, + [3969] = 1561, + [3970] = 1893, + [3971] = 1678, + [3972] = 1682, + [3973] = 3973, + [3974] = 3926, + [3975] = 1687, + [3976] = 3922, + [3977] = 1569, + [3978] = 1565, + [3979] = 3939, + [3980] = 3922, + [3981] = 1584, + [3982] = 1585, + [3983] = 3924, [3984] = 3984, - [3985] = 3985, + [3985] = 3924, [3986] = 3986, - [3987] = 3987, - [3988] = 3988, - [3989] = 3989, - [3990] = 3990, + [3987] = 3924, + [3988] = 1563, + [3989] = 1685, + [3990] = 1562, [3991] = 3991, [3992] = 3992, - [3993] = 3991, + [3993] = 3993, [3994] = 3994, - [3995] = 3995, + [3995] = 3993, [3996] = 3996, [3997] = 3997, - [3998] = 3987, + [3998] = 3993, [3999] = 3999, [4000] = 3991, [4001] = 4001, - [4002] = 4001, + [4002] = 4002, [4003] = 4003, [4004] = 4004, - [4005] = 4005, - [4006] = 3984, + [4005] = 4001, + [4006] = 3996, [4007] = 4007, - [4008] = 4008, + [4008] = 4007, [4009] = 4009, - [4010] = 4009, + [4010] = 4010, [4011] = 4011, - [4012] = 4012, + [4012] = 3996, [4013] = 4013, - [4014] = 4014, - [4015] = 4009, - [4016] = 4016, - [4017] = 4012, - [4018] = 4003, - [4019] = 1792, + [4014] = 3993, + [4015] = 4001, + [4016] = 4007, + [4017] = 4017, + [4018] = 4018, + [4019] = 4010, [4020] = 4020, - [4021] = 4001, + [4021] = 3993, [4022] = 4022, [4023] = 4023, [4024] = 4024, - [4025] = 4025, - [4026] = 4007, - [4027] = 4027, + [4025] = 3991, + [4026] = 3996, + [4027] = 4010, [4028] = 4028, - [4029] = 4012, - [4030] = 4009, - [4031] = 3999, - [4032] = 3997, - [4033] = 3990, - [4034] = 4001, + [4029] = 4029, + [4030] = 3991, + [4031] = 3991, + [4032] = 4010, + [4033] = 4010, + [4034] = 4034, [4035] = 4035, - [4036] = 4036, - [4037] = 4037, + [4036] = 4007, + [4037] = 3996, [4038] = 4038, - [4039] = 3996, - [4040] = 4007, - [4041] = 4025, - [4042] = 4023, - [4043] = 4043, + [4039] = 4039, + [4040] = 4040, + [4041] = 4007, + [4042] = 4001, + [4043] = 4001, [4044] = 4044, - [4045] = 4043, - [4046] = 3987, - [4047] = 4035, - [4048] = 4043, - [4049] = 4044, - [4050] = 4043, - [4051] = 4025, + [4045] = 4045, + [4046] = 4046, + [4047] = 4047, + [4048] = 4048, + [4049] = 4049, + [4050] = 4050, + [4051] = 4047, [4052] = 4052, - [4053] = 4020, - [4054] = 4052, - [4055] = 4012, + [4053] = 4053, + [4054] = 4054, + [4055] = 4055, [4056] = 4056, - [4057] = 3987, - [4058] = 3983, - [4059] = 4035, + [4057] = 4057, + [4058] = 4057, + [4059] = 4059, [4060] = 4060, - [4061] = 4004, - [4062] = 3983, - [4063] = 3985, - [4064] = 4028, - [4065] = 4027, + [4061] = 4061, + [4062] = 4044, + [4063] = 4063, + [4064] = 4063, + [4065] = 4065, [4066] = 4066, - [4067] = 4024, - [4068] = 4023, - [4069] = 4037, - [4070] = 3985, - [4071] = 4024, + [4067] = 4067, + [4068] = 4068, + [4069] = 4069, + [4070] = 4070, + [4071] = 4060, [4072] = 4072, - [4073] = 3984, - [4074] = 4014, - [4075] = 1666, - [4076] = 4005, - [4077] = 4044, - [4078] = 3984, + [4073] = 4073, + [4074] = 4074, + [4075] = 4075, + [4076] = 4076, + [4077] = 4077, + [4078] = 4057, [4079] = 4079, - [4080] = 4003, - [4081] = 4014, + [4080] = 4066, + [4081] = 4081, [4082] = 4082, - [4083] = 4013, - [4084] = 4011, - [4085] = 4027, - [4086] = 4004, - [4087] = 4028, - [4088] = 4038, - [4089] = 3989, - [4090] = 4052, + [4083] = 4048, + [4084] = 4074, + [4085] = 4085, + [4086] = 4074, + [4087] = 4069, + [4088] = 4088, + [4089] = 4082, + [4090] = 4090, [4091] = 4091, [4092] = 4092, - [4093] = 3991, - [4094] = 3984, - [4095] = 4028, - [4096] = 3994, - [4097] = 3988, - [4098] = 3994, + [4093] = 4067, + [4094] = 4068, + [4095] = 4049, + [4096] = 4096, + [4097] = 4097, + [4098] = 4098, [4099] = 4099, - [4100] = 4100, - [4101] = 3996, - [4102] = 4024, - [4103] = 3995, - [4104] = 4104, - [4105] = 4005, - [4106] = 4091, - [4107] = 3988, - [4108] = 3999, - [4109] = 3994, - [4110] = 3997, - [4111] = 4111, - [4112] = 3995, - [4113] = 3994, - [4114] = 3988, - [4115] = 4027, - [4116] = 4028, - [4117] = 4004, - [4118] = 4044, - [4119] = 3997, - [4120] = 4024, - [4121] = 3983, - [4122] = 3985, - [4123] = 3996, - [4124] = 4035, - [4125] = 4052, - [4126] = 3992, - [4127] = 3991, - [4128] = 3995, - [4129] = 3983, - [4130] = 4007, - [4131] = 4012, - [4132] = 3999, - [4133] = 4044, - [4134] = 4009, - [4135] = 4052, - [4136] = 4008, - [4137] = 4013, - [4138] = 4035, - [4139] = 4001, - [4140] = 3996, - [4141] = 3999, - [4142] = 3992, - [4143] = 4016, - [4144] = 3997, - [4145] = 4016, - [4146] = 4005, - [4147] = 4008, - [4148] = 4008, - [4149] = 4016, - [4150] = 4011, - [4151] = 4013, - [4152] = 4091, - [4153] = 4007, - [4154] = 4014, - [4155] = 3990, - [4156] = 4003, - [4157] = 3989, - [4158] = 3990, - [4159] = 4004, - [4160] = 4038, - [4161] = 4023, - [4162] = 4099, - [4163] = 4023, - [4164] = 4020, - [4165] = 3992, - [4166] = 4025, - [4167] = 4027, - [4168] = 3987, - [4169] = 4016, - [4170] = 4003, - [4171] = 4014, - [4172] = 4020, - [4173] = 4013, - [4174] = 4008, - [4175] = 3990, - [4176] = 4176, - [4177] = 3988, - [4178] = 4011, - [4179] = 3992, - [4180] = 3985, - [4181] = 3995, - [4182] = 4020, - [4183] = 4011, - [4184] = 4025, - [4185] = 4037, - [4186] = 14, - [4187] = 4091, - [4188] = 4038, - [4189] = 3989, - [4190] = 3989, - [4191] = 4038, - [4192] = 4037, - [4193] = 4091, - [4194] = 4005, - [4195] = 4043, - [4196] = 4037, - [4197] = 4197, - [4198] = 4198, - [4199] = 4199, - [4200] = 4200, - [4201] = 4201, - [4202] = 4202, - [4203] = 4203, - [4204] = 4204, - [4205] = 4205, - [4206] = 4206, - [4207] = 4207, - [4208] = 4208, - [4209] = 4209, - [4210] = 4210, - [4211] = 4211, - [4212] = 4212, - [4213] = 4213, - [4214] = 4214, - [4215] = 4215, - [4216] = 4216, - [4217] = 4217, - [4218] = 4218, - [4219] = 4219, - [4220] = 4220, + [4100] = 4045, + [4101] = 4047, + [4102] = 4068, + [4103] = 4068, + [4104] = 4067, + [4105] = 4105, + [4106] = 4067, + [4107] = 4107, + [4108] = 4046, + [4109] = 4044, + [4110] = 4081, + [4111] = 4060, + [4112] = 4088, + [4113] = 4113, + [4114] = 4114, + [4115] = 4098, + [4116] = 4116, + [4117] = 4116, + [4118] = 4105, + [4119] = 4076, + [4120] = 4061, + [4121] = 4105, + [4122] = 4116, + [4123] = 4076, + [4124] = 4079, + [4125] = 4048, + [4126] = 4065, + [4127] = 4069, + [4128] = 4047, + [4129] = 1727, + [4130] = 4130, + [4131] = 4069, + [4132] = 1759, + [4133] = 4059, + [4134] = 23, + [4135] = 4082, + [4136] = 4097, + [4137] = 4092, + [4138] = 4091, + [4139] = 4076, + [4140] = 4077, + [4141] = 4061, + [4142] = 4081, + [4143] = 4113, + [4144] = 4074, + [4145] = 4107, + [4146] = 4045, + [4147] = 4065, + [4148] = 4114, + [4149] = 4048, + [4150] = 4061, + [4151] = 4063, + [4152] = 4077, + [4153] = 4113, + [4154] = 4066, + [4155] = 4096, + [4156] = 4088, + [4157] = 4098, + [4158] = 4113, + [4159] = 4105, + [4160] = 4116, + [4161] = 4046, + [4162] = 4049, + [4163] = 4052, + [4164] = 4107, + [4165] = 4090, + [4166] = 4114, + [4167] = 4091, + [4168] = 4085, + [4169] = 4116, + [4170] = 4057, + [4171] = 4050, + [4172] = 4070, + [4173] = 4107, + [4174] = 4105, + [4175] = 4092, + [4176] = 4059, + [4177] = 4061, + [4178] = 4045, + [4179] = 4085, + [4180] = 4098, + [4181] = 4048, + [4182] = 4053, + [4183] = 4088, + [4184] = 4063, + [4185] = 4082, + [4186] = 4047, + [4187] = 4097, + [4188] = 4097, + [4189] = 4092, + [4190] = 4091, + [4191] = 4092, + [4192] = 4059, + [4193] = 4069, + [4194] = 4070, + [4195] = 4050, + [4196] = 4091, + [4197] = 4081, + [4198] = 4077, + [4199] = 4079, + [4200] = 4090, + [4201] = 4065, + [4202] = 4074, + [4203] = 4070, + [4204] = 4050, + [4205] = 4098, + [4206] = 4046, + [4207] = 4049, + [4208] = 4114, + [4209] = 4088, + [4210] = 4052, + [4211] = 4090, + [4212] = 4079, + [4213] = 4085, + [4214] = 4045, + [4215] = 4053, + [4216] = 4096, + [4217] = 4068, + [4218] = 4067, + [4219] = 4070, + [4220] = 4050, [4221] = 4221, - [4222] = 4222, - [4223] = 4223, - [4224] = 4224, - [4225] = 4225, - [4226] = 4226, - [4227] = 4227, - [4228] = 4220, - [4229] = 4229, - [4230] = 4230, - [4231] = 4231, - [4232] = 1454, - [4233] = 4213, - [4234] = 4234, + [4222] = 4053, + [4223] = 4096, + [4224] = 4066, + [4225] = 4090, + [4226] = 4081, + [4227] = 4044, + [4228] = 4085, + [4229] = 4114, + [4230] = 4060, + [4231] = 4076, + [4232] = 4044, + [4233] = 4053, + [4234] = 4082, [4235] = 4235, - [4236] = 1461, - [4237] = 4237, - [4238] = 1458, - [4239] = 4239, - [4240] = 1482, - [4241] = 4215, - [4242] = 4242, - [4243] = 4210, - [4244] = 4211, - [4245] = 4245, - [4246] = 4246, + [4236] = 4052, + [4237] = 4057, + [4238] = 4066, + [4239] = 4049, + [4240] = 4240, + [4241] = 4241, + [4242] = 4046, + [4243] = 4059, + [4244] = 4060, + [4245] = 4079, + [4246] = 4052, [4247] = 4247, - [4248] = 4248, - [4249] = 4215, - [4250] = 4216, - [4251] = 4227, - [4252] = 4245, - [4253] = 4223, - [4254] = 4254, - [4255] = 4239, - [4256] = 4245, + [4248] = 4065, + [4249] = 4107, + [4250] = 4096, + [4251] = 4077, + [4252] = 4063, + [4253] = 4113, + [4254] = 4097, + [4255] = 4255, + [4256] = 4255, [4257] = 4257, - [4258] = 4239, - [4259] = 4223, - [4260] = 4204, + [4258] = 4258, + [4259] = 4259, + [4260] = 4260, [4261] = 4261, - [4262] = 4211, - [4263] = 4263, - [4264] = 4205, + [4262] = 4262, + [4263] = 2739, + [4264] = 4257, [4265] = 4265, - [4266] = 1478, + [4266] = 4266, [4267] = 4267, [4268] = 4268, [4269] = 4269, - [4270] = 4224, - [4271] = 4206, + [4270] = 4270, + [4271] = 4271, [4272] = 4272, - [4273] = 4209, - [4274] = 4204, - [4275] = 4207, + [4273] = 4273, + [4274] = 4261, + [4275] = 4275, [4276] = 4276, [4277] = 4277, - [4278] = 4205, - [4279] = 4279, - [4280] = 4280, - [4281] = 4220, - [4282] = 4208, + [4278] = 4278, + [4279] = 1478, + [4280] = 1479, + [4281] = 4281, + [4282] = 1483, [4283] = 4283, - [4284] = 1499, + [4284] = 4266, [4285] = 4285, [4286] = 4286, - [4287] = 4213, - [4288] = 4261, - [4289] = 4286, - [4290] = 4286, - [4291] = 4217, - [4292] = 4283, - [4293] = 4293, - [4294] = 4294, - [4295] = 4295, + [4287] = 4273, + [4288] = 4288, + [4289] = 4289, + [4290] = 4290, + [4291] = 4269, + [4292] = 4292, + [4293] = 4270, + [4294] = 39, + [4295] = 4277, [4296] = 4296, - [4297] = 4234, - [4298] = 4237, - [4299] = 4261, + [4297] = 4262, + [4298] = 1477, + [4299] = 1482, [4300] = 4300, - [4301] = 4276, - [4302] = 4293, - [4303] = 4293, - [4304] = 4295, + [4301] = 4301, + [4302] = 4302, + [4303] = 4303, + [4304] = 4261, [4305] = 4305, - [4306] = 4265, - [4307] = 4295, - [4308] = 2572, - [4309] = 4280, - [4310] = 2561, + [4306] = 4306, + [4307] = 4255, + [4308] = 4308, + [4309] = 4309, + [4310] = 4272, [4311] = 4311, - [4312] = 4197, - [4313] = 4313, + [4312] = 4312, + [4313] = 4289, [4314] = 4314, - [4315] = 4242, - [4316] = 4311, - [4317] = 4220, + [4315] = 4315, + [4316] = 2739, + [4317] = 4317, [4318] = 4318, - [4319] = 4280, - [4320] = 4203, - [4321] = 4237, - [4322] = 4272, - [4323] = 4279, - [4324] = 4305, - [4325] = 4311, - [4326] = 4212, - [4327] = 4314, - [4328] = 4314, - [4329] = 4206, - [4330] = 39, - [4331] = 4209, - [4332] = 4276, + [4319] = 4319, + [4320] = 4273, + [4321] = 4321, + [4322] = 4322, + [4323] = 4323, + [4324] = 4324, + [4325] = 4325, + [4326] = 4326, + [4327] = 4327, + [4328] = 43, + [4329] = 4329, + [4330] = 4330, + [4331] = 4331, + [4332] = 4332, [4333] = 4333, - [4334] = 1458, + [4334] = 4334, [4335] = 4335, - [4336] = 4336, - [4337] = 4285, - [4338] = 4212, - [4339] = 4283, - [4340] = 1461, - [4341] = 4341, - [4342] = 4342, - [4343] = 4203, - [4344] = 4344, - [4345] = 4224, - [4346] = 4346, - [4347] = 4237, - [4348] = 4305, - [4349] = 4349, - [4350] = 4197, - [4351] = 1481, - [4352] = 4198, - [4353] = 4242, - [4354] = 4242, - [4355] = 4355, - [4356] = 4198, - [4357] = 4344, - [4358] = 4210, - [4359] = 21, - [4360] = 4360, - [4361] = 4361, - [4362] = 4342, - [4363] = 4261, - [4364] = 4265, - [4365] = 4227, - [4366] = 4237, - [4367] = 4223, - [4368] = 4203, - [4369] = 4305, - [4370] = 4342, - [4371] = 4344, - [4372] = 4342, - [4373] = 4198, - [4374] = 4197, - [4375] = 4344, - [4376] = 4376, - [4377] = 4207, - [4378] = 4272, - [4379] = 4344, - [4380] = 4220, - [4381] = 4342, - [4382] = 4211, - [4383] = 4279, + [4336] = 2779, + [4337] = 4331, + [4338] = 4331, + [4339] = 4322, + [4340] = 4340, + [4341] = 4273, + [4342] = 4255, + [4343] = 4343, + [4344] = 4261, + [4345] = 4345, + [4346] = 9, + [4347] = 4288, + [4348] = 4269, + [4349] = 4265, + [4350] = 4272, + [4351] = 4285, + [4352] = 4269, + [4353] = 4353, + [4354] = 4258, + [4355] = 4259, + [4356] = 4330, + [4357] = 4357, + [4358] = 4358, + [4359] = 4359, + [4360] = 4289, + [4361] = 4324, + [4362] = 4262, + [4363] = 1530, + [4364] = 4283, + [4365] = 4314, + [4366] = 8, + [4367] = 4276, + [4368] = 4368, + [4369] = 4327, + [4370] = 4289, + [4371] = 4358, + [4372] = 4272, + [4373] = 4373, + [4374] = 4303, + [4375] = 4326, + [4376] = 4314, + [4377] = 4377, + [4378] = 4330, + [4379] = 4379, + [4380] = 4269, + [4381] = 4262, + [4382] = 4321, + [4383] = 4383, [4384] = 4384, - [4385] = 4212, - [4386] = 4386, - [4387] = 4207, - [4388] = 4388, - [4389] = 4208, - [4390] = 4311, + [4385] = 4275, + [4386] = 4276, + [4387] = 4387, + [4388] = 4261, + [4389] = 4283, + [4390] = 4272, [4391] = 4391, - [4392] = 4392, - [4393] = 4216, - [4394] = 4213, - [4395] = 4395, - [4396] = 4234, - [4397] = 4217, - [4398] = 4234, - [4399] = 4261, - [4400] = 4265, - [4401] = 4198, - [4402] = 4280, - [4403] = 4279, - [4404] = 4265, - [4405] = 4280, - [4406] = 4311, - [4407] = 4272, - [4408] = 4197, - [4409] = 4208, - [4410] = 4410, - [4411] = 4295, - [4412] = 4242, - [4413] = 4413, - [4414] = 4314, - [4415] = 4295, - [4416] = 4293, - [4417] = 4203, - [4418] = 4293, - [4419] = 4212, - [4420] = 4206, - [4421] = 4286, - [4422] = 4314, - [4423] = 4305, - [4424] = 4276, - [4425] = 4285, - [4426] = 4206, - [4427] = 4209, - [4428] = 4209, - [4429] = 4286, - [4430] = 4283, - [4431] = 4224, - [4432] = 4285, - [4433] = 4234, - [4434] = 4227, - [4435] = 4227, - [4436] = 4205, - [4437] = 4223, - [4438] = 4217, - [4439] = 4204, - [4440] = 4276, - [4441] = 4205, - [4442] = 4211, - [4443] = 4443, - [4444] = 4217, - [4445] = 4204, - [4446] = 4272, - [4447] = 4279, - [4448] = 4239, - [4449] = 4245, - [4450] = 4224, - [4451] = 4213, - [4452] = 4207, - [4453] = 1454, - [4454] = 4216, - [4455] = 4215, - [4456] = 4208, - [4457] = 4210, - [4458] = 4210, - [4459] = 4283, - [4460] = 4215, - [4461] = 4216, - [4462] = 4285, - [4463] = 4245, - [4464] = 4239, - [4465] = 4465, - [4466] = 4466, - [4467] = 4467, - [4468] = 4468, - [4469] = 4469, - [4470] = 2572, - [4471] = 4471, - [4472] = 4472, - [4473] = 4471, - [4474] = 4474, - [4475] = 4466, - [4476] = 4476, - [4477] = 4474, - [4478] = 4478, - [4479] = 4467, - [4480] = 4480, - [4481] = 4465, - [4482] = 4482, - [4483] = 4483, - [4484] = 4484, - [4485] = 4485, - [4486] = 4465, - [4487] = 4487, - [4488] = 4488, - [4489] = 4489, - [4490] = 4466, - [4491] = 4468, - [4492] = 4489, - [4493] = 4489, - [4494] = 4494, - [4495] = 4488, - [4496] = 4471, - [4497] = 4488, - [4498] = 4498, - [4499] = 4488, + [4392] = 4259, + [4393] = 4258, + [4394] = 4290, + [4395] = 4266, + [4396] = 4358, + [4397] = 4257, + [4398] = 4398, + [4399] = 4259, + [4400] = 4258, + [4401] = 4401, + [4402] = 4319, + [4403] = 4257, + [4404] = 4275, + [4405] = 4276, + [4406] = 4406, + [4407] = 4283, + [4408] = 4289, + [4409] = 4409, + [4410] = 4308, + [4411] = 4257, + [4412] = 4412, + [4413] = 4315, + [4414] = 4330, + [4415] = 4292, + [4416] = 4416, + [4417] = 4314, + [4418] = 4290, + [4419] = 4332, + [4420] = 4358, + [4421] = 4353, + [4422] = 4422, + [4423] = 4281, + [4424] = 4285, + [4425] = 4301, + [4426] = 4281, + [4427] = 4427, + [4428] = 4288, + [4429] = 4429, + [4430] = 4270, + [4431] = 4277, + [4432] = 4292, + [4433] = 4433, + [4434] = 4301, + [4435] = 4265, + [4436] = 4353, + [4437] = 4331, + [4438] = 4345, + [4439] = 4353, + [4440] = 4319, + [4441] = 4259, + [4442] = 4302, + [4443] = 4302, + [4444] = 4331, + [4445] = 1479, + [4446] = 1478, + [4447] = 4447, + [4448] = 4258, + [4449] = 4335, + [4450] = 4332, + [4451] = 4303, + [4452] = 4319, + [4453] = 4321, + [4454] = 1482, + [4455] = 4301, + [4456] = 4326, + [4457] = 4327, + [4458] = 4324, + [4459] = 4322, + [4460] = 4275, + [4461] = 4461, + [4462] = 4321, + [4463] = 4281, + [4464] = 4322, + [4465] = 4285, + [4466] = 4288, + [4467] = 4308, + [4468] = 4321, + [4469] = 4312, + [4470] = 4470, + [4471] = 4327, + [4472] = 4315, + [4473] = 4319, + [4474] = 4270, + [4475] = 4277, + [4476] = 4301, + [4477] = 4292, + [4478] = 4302, + [4479] = 4303, + [4480] = 4290, + [4481] = 4290, + [4482] = 4283, + [4483] = 4276, + [4484] = 4275, + [4485] = 4266, + [4486] = 4308, + [4487] = 4292, + [4488] = 4262, + [4489] = 4312, + [4490] = 4315, + [4491] = 4491, + [4492] = 4315, + [4493] = 4312, + [4494] = 4312, + [4495] = 4322, + [4496] = 2779, + [4497] = 4327, + [4498] = 4308, + [4499] = 4330, [4500] = 4500, - [4501] = 4501, - [4502] = 4502, + [4501] = 4345, + [4502] = 4314, [4503] = 4503, - [4504] = 4489, + [4504] = 4266, [4505] = 4505, [4506] = 4506, - [4507] = 4507, - [4508] = 4501, - [4509] = 4489, - [4510] = 4510, - [4511] = 4488, - [4512] = 4512, - [4513] = 4513, - [4514] = 4501, - [4515] = 4465, - [4516] = 4516, - [4517] = 4517, - [4518] = 4474, - [4519] = 4474, - [4520] = 4474, - [4521] = 4521, - [4522] = 4522, - [4523] = 2561, - [4524] = 4467, - [4525] = 4465, - [4526] = 11, + [4507] = 4358, + [4508] = 4335, + [4509] = 4255, + [4510] = 4265, + [4511] = 4324, + [4512] = 4326, + [4513] = 4303, + [4514] = 4353, + [4515] = 4281, + [4516] = 4302, + [4517] = 4324, + [4518] = 4326, + [4519] = 4273, + [4520] = 4332, + [4521] = 4265, + [4522] = 4345, + [4523] = 4335, + [4524] = 4332, + [4525] = 4277, + [4526] = 4270, [4527] = 4527, - [4528] = 4528, - [4529] = 4467, - [4530] = 6, - [4531] = 4531, - [4532] = 4532, + [4528] = 1484, + [4529] = 4335, + [4530] = 4345, + [4531] = 4288, + [4532] = 4285, [4533] = 4533, - [4534] = 4468, - [4535] = 4535, + [4534] = 4534, + [4535] = 4534, [4536] = 4536, [4537] = 4537, - [4538] = 4538, - [4539] = 4471, + [4538] = 4537, + [4539] = 4539, [4540] = 4540, - [4541] = 4471, - [4542] = 4468, + [4541] = 4541, + [4542] = 4542, [4543] = 4543, [4544] = 4544, [4545] = 4545, [4546] = 4546, - [4547] = 4547, - [4548] = 4548, - [4549] = 4549, - [4550] = 4550, - [4551] = 4551, - [4552] = 4552, + [4547] = 4544, + [4548] = 4546, + [4549] = 4539, + [4550] = 4544, + [4551] = 4537, + [4552] = 4534, [4553] = 4553, - [4554] = 4467, - [4555] = 4468, + [4554] = 4544, + [4555] = 4555, [4556] = 4556, [4557] = 4557, [4558] = 4558, [4559] = 4559, [4560] = 4560, - [4561] = 4561, + [4561] = 4543, [4562] = 4562, - [4563] = 4563, + [4563] = 5, [4564] = 4564, - [4565] = 4565, + [4565] = 4542, [4566] = 4566, - [4567] = 4567, - [4568] = 4568, - [4569] = 4569, - [4570] = 1757, - [4571] = 1756, + [4567] = 4553, + [4568] = 4553, + [4569] = 4539, + [4570] = 4539, + [4571] = 4571, [4572] = 4572, - [4573] = 1755, - [4574] = 1754, - [4575] = 1753, - [4576] = 4576, - [4577] = 1752, + [4573] = 10, + [4574] = 4574, + [4575] = 4575, + [4576] = 4543, + [4577] = 4577, [4578] = 4578, [4579] = 4579, [4580] = 4580, - [4581] = 4581, - [4582] = 4582, + [4581] = 4534, + [4582] = 4, [4583] = 4583, - [4584] = 4584, - [4585] = 4585, - [4586] = 1747, - [4587] = 4587, - [4588] = 1746, - [4589] = 4589, - [4590] = 1745, + [4584] = 6, + [4585] = 27, + [4586] = 4586, + [4587] = 4537, + [4588] = 4588, + [4589] = 4543, + [4590] = 4553, [4591] = 4591, - [4592] = 4592, - [4593] = 1744, - [4594] = 1743, + [4592] = 4546, + [4593] = 4593, + [4594] = 4594, [4595] = 4595, [4596] = 4596, [4597] = 4597, [4598] = 4598, - [4599] = 1742, - [4600] = 1741, - [4601] = 1740, - [4602] = 4564, + [4599] = 4543, + [4600] = 4600, + [4601] = 4542, + [4602] = 4534, [4603] = 4603, - [4604] = 1739, - [4605] = 4585, + [4604] = 4542, + [4605] = 4537, [4606] = 4606, - [4607] = 1724, - [4608] = 4608, - [4609] = 4581, + [4607] = 4541, + [4608] = 4544, + [4609] = 4609, [4610] = 4610, - [4611] = 4598, + [4611] = 4542, [4612] = 4612, [4613] = 4613, [4614] = 4614, - [4615] = 4482, + [4615] = 4615, [4616] = 4616, - [4617] = 4613, - [4618] = 4591, - [4619] = 4578, + [4617] = 4553, + [4618] = 4618, + [4619] = 4619, [4620] = 4620, [4621] = 4621, [4622] = 4622, [4623] = 4623, [4624] = 4624, - [4625] = 4616, - [4626] = 4626, + [4625] = 4625, + [4626] = 4539, [4627] = 4627, - [4628] = 4628, + [4628] = 4541, [4629] = 4629, [4630] = 4630, [4631] = 4631, - [4632] = 4632, + [4632] = 1598, [4633] = 4633, - [4634] = 1732, - [4635] = 1769, + [4634] = 4634, + [4635] = 4635, [4636] = 4636, - [4637] = 4612, - [4638] = 4614, - [4639] = 4639, - [4640] = 4640, - [4641] = 4641, + [4637] = 4637, + [4638] = 4638, + [4639] = 1587, + [4640] = 1609, + [4641] = 1612, [4642] = 4642, [4643] = 4643, - [4644] = 4568, + [4644] = 4644, [4645] = 4645, - [4646] = 4630, + [4646] = 4646, [4647] = 4647, - [4648] = 4613, - [4649] = 1777, - [4650] = 1778, - [4651] = 1770, + [4648] = 4648, + [4649] = 4649, + [4650] = 4650, + [4651] = 1608, [4652] = 4652, [4653] = 4653, - [4654] = 4654, - [4655] = 1729, - [4656] = 4592, - [4657] = 1779, - [4658] = 1780, - [4659] = 4581, - [4660] = 4660, - [4661] = 4661, - [4662] = 1728, - [4663] = 1727, - [4664] = 4597, - [4665] = 4613, - [4666] = 4666, - [4667] = 4603, - [4668] = 4564, - [4669] = 4669, - [4670] = 1722, - [4671] = 4596, - [4672] = 4582, - [4673] = 4584, - [4674] = 4652, - [4675] = 4596, - [4676] = 4676, - [4677] = 4677, + [4654] = 1597, + [4655] = 4655, + [4656] = 4656, + [4657] = 4657, + [4658] = 4658, + [4659] = 4645, + [4660] = 9, + [4661] = 1613, + [4662] = 1614, + [4663] = 4663, + [4664] = 4637, + [4665] = 4665, + [4666] = 1596, + [4667] = 1595, + [4668] = 16, + [4669] = 7, + [4670] = 4652, + [4671] = 4648, + [4672] = 4663, + [4673] = 1594, + [4674] = 4645, + [4675] = 4665, + [4676] = 4637, + [4677] = 1744, [4678] = 4678, - [4679] = 1721, + [4679] = 4645, [4680] = 4680, - [4681] = 1781, - [4682] = 4578, + [4681] = 4637, + [4682] = 1592, [4683] = 4683, - [4684] = 4565, - [4685] = 4591, + [4684] = 1743, + [4685] = 4685, [4686] = 4686, - [4687] = 4686, - [4688] = 4688, - [4689] = 4582, - [4690] = 4690, - [4691] = 4683, - [4692] = 4686, - [4693] = 4616, - [4694] = 1720, - [4695] = 4683, - [4696] = 4690, - [4697] = 4565, - [4698] = 1718, - [4699] = 4699, - [4700] = 4652, - [4701] = 4584, - [4702] = 4688, - [4703] = 4613, + [4687] = 4687, + [4688] = 4645, + [4689] = 4689, + [4690] = 4637, + [4691] = 1742, + [4692] = 1710, + [4693] = 4693, + [4694] = 4533, + [4695] = 1741, + [4696] = 4696, + [4697] = 4697, + [4698] = 4698, + [4699] = 1740, + [4700] = 1752, + [4701] = 1776, + [4702] = 1591, + [4703] = 1777, [4704] = 4704, - [4705] = 4669, - [4706] = 4502, + [4705] = 4616, + [4706] = 4620, [4707] = 4707, - [4708] = 4666, - [4709] = 4603, - [4710] = 1789, - [4711] = 1717, - [4712] = 1716, - [4713] = 1715, - [4714] = 1714, - [4715] = 4641, - [4716] = 4507, + [4708] = 1754, + [4709] = 4709, + [4710] = 4710, + [4711] = 1760, + [4712] = 4693, + [4713] = 4635, + [4714] = 4714, + [4715] = 4643, + [4716] = 4649, [4717] = 4633, - [4718] = 1713, - [4719] = 1712, - [4720] = 1711, - [4721] = 1710, - [4722] = 4661, - [4723] = 4723, - [4724] = 4660, - [4725] = 4626, - [4726] = 4632, - [4727] = 4528, - [4728] = 4622, - [4729] = 4583, - [4730] = 4645, - [4731] = 1709, - [4732] = 4610, - [4733] = 1708, - [4734] = 1705, - [4735] = 4632, - [4736] = 4532, - [4737] = 4642, - [4738] = 4643, - [4739] = 4654, - [4740] = 4606, + [4718] = 1719, + [4719] = 4652, + [4720] = 4648, + [4721] = 1590, + [4722] = 1621, + [4723] = 1629, + [4724] = 4683, + [4725] = 1630, + [4726] = 4686, + [4727] = 4727, + [4728] = 1632, + [4729] = 8, + [4730] = 1634, + [4731] = 1635, + [4732] = 1636, + [4733] = 4709, + [4734] = 4710, + [4735] = 4735, + [4736] = 1637, + [4737] = 1638, + [4738] = 1639, + [4739] = 1588, + [4740] = 4714, [4741] = 4741, - [4742] = 4653, - [4743] = 4678, - [4744] = 4596, - [4745] = 1698, - [4746] = 4723, - [4747] = 4747, - [4748] = 1697, - [4749] = 1696, - [4750] = 4629, - [4751] = 1695, - [4752] = 1692, - [4753] = 4597, - [4754] = 4754, - [4755] = 4592, - [4756] = 1791, - [4757] = 4643, - [4758] = 4582, - [4759] = 1691, - [4760] = 1690, - [4761] = 1689, - [4762] = 4642, - [4763] = 4614, - [4764] = 4567, - [4765] = 4765, - [4766] = 4612, - [4767] = 1688, - [4768] = 1797, - [4769] = 1687, - [4770] = 4572, - [4771] = 1686, - [4772] = 1684, - [4773] = 4598, - [4774] = 4630, - [4775] = 4568, - [4776] = 1682, - [4777] = 1681, - [4778] = 4640, - [4779] = 4629, - [4780] = 4639, - [4781] = 4579, - [4782] = 4628, - [4783] = 1680, - [4784] = 4661, - [4785] = 4627, - [4786] = 4624, - [4787] = 4660, + [4742] = 4655, + [4743] = 4600, + [4744] = 4744, + [4745] = 1611, + [4746] = 4615, + [4747] = 1718, + [4748] = 4748, + [4749] = 4749, + [4750] = 4750, + [4751] = 12, + [4752] = 4709, + [4753] = 4710, + [4754] = 4714, + [4755] = 4755, + [4756] = 1717, + [4757] = 4757, + [4758] = 4758, + [4759] = 4687, + [4760] = 4760, + [4761] = 4761, + [4762] = 4762, + [4763] = 4763, + [4764] = 4693, + [4765] = 4693, + [4766] = 4709, + [4767] = 4693, + [4768] = 4768, + [4769] = 4769, + [4770] = 4710, + [4771] = 4771, + [4772] = 4714, + [4773] = 4714, + [4774] = 4774, + [4775] = 4775, + [4776] = 4776, + [4777] = 4777, + [4778] = 1716, + [4779] = 1575, + [4780] = 1715, + [4781] = 4653, + [4782] = 4782, + [4783] = 4768, + [4784] = 4784, + [4785] = 4785, + [4786] = 4633, + [4787] = 1586, [4788] = 4788, - [4789] = 4613, - [4790] = 4623, - [4791] = 4621, - [4792] = 1679, - [4793] = 4587, - [4794] = 4596, - [4795] = 4620, - [4796] = 1730, - [4797] = 4587, - [4798] = 4798, - [4799] = 1674, - [4800] = 1673, - [4801] = 4801, - [4802] = 4628, - [4803] = 4598, - [4804] = 4804, - [4805] = 4805, - [4806] = 4598, - [4807] = 1672, - [4808] = 1671, - [4809] = 4582, - [4810] = 4810, - [4811] = 4613, - [4812] = 1670, - [4813] = 1669, - [4814] = 4814, - [4815] = 1662, - [4816] = 4598, - [4817] = 4817, - [4818] = 4627, - [4819] = 4819, - [4820] = 1661, - [4821] = 4654, - [4822] = 4579, - [4823] = 15, - [4824] = 4616, - [4825] = 4583, - [4826] = 1654, - [4827] = 1653, - [4828] = 4591, - [4829] = 4578, - [4830] = 4620, - [4831] = 4621, - [4832] = 4747, - [4833] = 4567, - [4834] = 4623, - [4835] = 4624, + [4789] = 4789, + [4790] = 4683, + [4791] = 4686, + [4792] = 4792, + [4793] = 4777, + [4794] = 52, + [4795] = 4795, + [4796] = 4796, + [4797] = 4655, + [4798] = 4776, + [4799] = 4693, + [4800] = 4655, + [4801] = 4777, + [4802] = 4802, + [4803] = 4655, + [4804] = 4785, + [4805] = 4655, + [4806] = 1709, + [4807] = 1707, + [4808] = 1706, + [4809] = 1665, + [4810] = 4633, + [4811] = 1705, + [4812] = 4655, + [4813] = 1703, + [4814] = 4777, + [4815] = 4776, + [4816] = 1702, + [4817] = 4655, + [4818] = 1701, + [4819] = 1700, + [4820] = 1699, + [4821] = 4768, + [4822] = 4768, + [4823] = 4655, + [4824] = 4824, + [4825] = 4825, + [4826] = 4687, + [4827] = 4789, + [4828] = 4655, + [4829] = 4829, + [4830] = 4830, + [4831] = 4831, + [4832] = 4832, + [4833] = 4833, + [4834] = 4834, + [4835] = 4835, [4836] = 4836, - [4837] = 4627, - [4838] = 4628, - [4839] = 4585, - [4840] = 4629, - [4841] = 4632, - [4842] = 4653, - [4843] = 1652, - [4844] = 4583, - [4845] = 4845, - [4846] = 4612, - [4847] = 4598, + [4837] = 4837, + [4838] = 4838, + [4839] = 4839, + [4840] = 4840, + [4841] = 4788, + [4842] = 4636, + [4843] = 4646, + [4844] = 4707, + [4845] = 4634, + [4846] = 4761, + [4847] = 4847, [4848] = 4848, - [4849] = 4669, - [4850] = 4614, - [4851] = 4598, - [4852] = 4642, + [4849] = 4744, + [4850] = 4850, + [4851] = 4784, + [4852] = 4839, [4853] = 4853, - [4854] = 4643, - [4855] = 1651, - [4856] = 1650, - [4857] = 4585, - [4858] = 4581, - [4859] = 4613, - [4860] = 4653, - [4861] = 4654, - [4862] = 1649, - [4863] = 4678, - [4864] = 4572, - [4865] = 4660, - [4866] = 4613, - [4867] = 4661, - [4868] = 4645, - [4869] = 4869, - [4870] = 4598, - [4871] = 36, - [4872] = 4666, - [4873] = 4603, - [4874] = 4564, - [4875] = 1647, - [4876] = 1646, - [4877] = 4567, - [4878] = 4584, - [4879] = 4613, - [4880] = 4652, - [4881] = 4881, - [4882] = 4882, - [4883] = 4587, - [4884] = 1643, - [4885] = 4885, - [4886] = 4592, - [4887] = 4686, - [4888] = 4645, - [4889] = 4598, - [4890] = 4683, - [4891] = 4597, - [4892] = 1665, - [4893] = 1639, - [4894] = 4598, - [4895] = 1638, - [4896] = 1664, - [4897] = 1636, - [4898] = 4898, - [4899] = 4669, - [4900] = 4666, - [4901] = 1663, - [4902] = 1635, - [4903] = 1634, - [4904] = 1633, - [4905] = 4296, - [4906] = 1622, - [4907] = 4581, - [4908] = 1602, - [4909] = 4641, - [4910] = 1660, - [4911] = 4645, - [4912] = 4633, - [4913] = 33, - [4914] = 4598, - [4915] = 1601, - [4916] = 1600, - [4917] = 1599, - [4918] = 1659, - [4919] = 1598, - [4920] = 4613, - [4921] = 4921, - [4922] = 4626, - [4923] = 4622, - [4924] = 1678, - [4925] = 1658, - [4926] = 4610, - [4927] = 1596, - [4928] = 1595, - [4929] = 4929, - [4930] = 4606, - [4931] = 4882, - [4932] = 4848, - [4933] = 1594, - [4934] = 1593, - [4935] = 1592, - [4936] = 4680, - [4937] = 4606, - [4938] = 1657, - [4939] = 1577, - [4940] = 1655, - [4941] = 4941, - [4942] = 4613, - [4943] = 1648, - [4944] = 1573, - [4945] = 1571, - [4946] = 1569, - [4947] = 1630, - [4948] = 4606, - [4949] = 4597, - [4950] = 4639, - [4951] = 4640, - [4952] = 4747, - [4953] = 4592, - [4954] = 4610, - [4955] = 4610, - [4956] = 4568, - [4957] = 4630, - [4958] = 1567, - [4959] = 4959, - [4960] = 1566, - [4961] = 4567, - [4962] = 1629, - [4963] = 1628, - [4964] = 1563, - [4965] = 4622, - [4966] = 4572, - [4967] = 4626, - [4968] = 1560, - [4969] = 1627, - [4970] = 1597, - [4971] = 4572, - [4972] = 1625, - [4973] = 4690, - [4974] = 4613, - [4975] = 4579, - [4976] = 4633, - [4977] = 4641, - [4978] = 1624, - [4979] = 1623, - [4980] = 1621, - [4981] = 1555, - [4982] = 1554, - [4983] = 4587, - [4984] = 1553, - [4985] = 1620, - [4986] = 1552, - [4987] = 1619, - [4988] = 4666, - [4989] = 4669, - [4990] = 4688, - [4991] = 4991, - [4992] = 4579, - [4993] = 1551, - [4994] = 1550, - [4995] = 1549, - [4996] = 4882, - [4997] = 4997, - [4998] = 1615, - [4999] = 4683, - [5000] = 4686, - [5001] = 5001, - [5002] = 4598, - [5003] = 5003, - [5004] = 5004, - [5005] = 5005, - [5006] = 4688, - [5007] = 1575, - [5008] = 4848, - [5009] = 4624, - [5010] = 4640, - [5011] = 1576, - [5012] = 4623, - [5013] = 1581, - [5014] = 1614, - [5015] = 4641, - [5016] = 1582, - [5017] = 4621, - [5018] = 1583, - [5019] = 4680, - [5020] = 4848, - [5021] = 1613, - [5022] = 4690, - [5023] = 4613, - [5024] = 1585, - [5025] = 4565, - [5026] = 1612, - [5027] = 1586, - [5028] = 4613, - [5029] = 1587, - [5030] = 1574, - [5031] = 4652, - [5032] = 4616, - [5033] = 4680, - [5034] = 5034, - [5035] = 4633, - [5036] = 1588, - [5037] = 4622, - [5038] = 4626, - [5039] = 5039, - [5040] = 4584, - [5041] = 4882, - [5042] = 4676, - [5043] = 1610, - [5044] = 4591, - [5045] = 4578, - [5046] = 4620, - [5047] = 1609, - [5048] = 4585, - [5049] = 5049, - [5050] = 4564, - [5051] = 4677, - [5052] = 4621, - [5053] = 5053, - [5054] = 4603, - [5055] = 4639, - [5056] = 4676, - [5057] = 4623, - [5058] = 5058, - [5059] = 4624, - [5060] = 1608, - [5061] = 1607, - [5062] = 4680, - [5063] = 4627, - [5064] = 4628, - [5065] = 4629, - [5066] = 4632, - [5067] = 4620, - [5068] = 1606, - [5069] = 4583, - [5070] = 4688, - [5071] = 4848, - [5072] = 4882, - [5073] = 4661, - [5074] = 4612, - [5075] = 4613, - [5076] = 4614, - [5077] = 5077, - [5078] = 4630, - [5079] = 4660, - [5080] = 4639, - [5081] = 4642, - [5082] = 4654, - [5083] = 4568, - [5084] = 4643, - [5085] = 4690, - [5086] = 4640, - [5087] = 4565, - [5088] = 4653, - [5089] = 4819, - [5090] = 13, - [5091] = 5091, - [5092] = 5092, - [5093] = 5093, + [4854] = 4854, + [4855] = 4838, + [4856] = 4856, + [4857] = 4704, + [4858] = 4858, + [4859] = 4650, + [4860] = 4829, + [4861] = 4825, + [4862] = 4757, + [4863] = 4693, + [4864] = 1580, + [4865] = 4749, + [4866] = 4748, + [4867] = 4710, + [4868] = 4848, + [4869] = 4757, + [4870] = 4704, + [4871] = 4686, + [4872] = 4683, + [4873] = 1667, + [4874] = 4847, + [4875] = 4648, + [4876] = 4652, + [4877] = 4877, + [4878] = 1669, + [4879] = 4784, + [4880] = 4788, + [4881] = 4831, + [4882] = 4831, + [4883] = 4837, + [4884] = 33, + [4885] = 4748, + [4886] = 4693, + [4887] = 4749, + [4888] = 4802, + [4889] = 4836, + [4890] = 4802, + [4891] = 1668, + [4892] = 4825, + [4893] = 4789, + [4894] = 4829, + [4895] = 1670, + [4896] = 4785, + [4897] = 1535, + [4898] = 4858, + [4899] = 4850, + [4900] = 1536, + [4901] = 4856, + [4902] = 4854, + [4903] = 4653, + [4904] = 4853, + [4905] = 4850, + [4906] = 4906, + [4907] = 4774, + [4908] = 4744, + [4909] = 4853, + [4910] = 1538, + [4911] = 4848, + [4912] = 4769, + [4913] = 4847, + [4914] = 4914, + [4915] = 3028, + [4916] = 4776, + [4917] = 4709, + [4918] = 1539, + [4919] = 1540, + [4920] = 4763, + [4921] = 4634, + [4922] = 4922, + [4923] = 4763, + [4924] = 4655, + [4925] = 4503, + [4926] = 4926, + [4927] = 1541, + [4928] = 1655, + [4929] = 51, + [4930] = 4741, + [4931] = 4931, + [4932] = 4932, + [4933] = 4707, + [4934] = 4934, + [4935] = 4935, + [4936] = 4633, + [4937] = 4937, + [4938] = 4643, + [4939] = 1542, + [4940] = 4635, + [4941] = 4646, + [4942] = 4693, + [4943] = 4832, + [4944] = 4833, + [4945] = 4834, + [4946] = 4835, + [4947] = 1543, + [4948] = 4636, + [4949] = 4836, + [4950] = 1544, + [4951] = 4837, + [4952] = 1545, + [4953] = 4839, + [4954] = 1546, + [4955] = 4838, + [4956] = 1547, + [4957] = 1684, + [4958] = 4838, + [4959] = 4839, + [4960] = 4960, + [4961] = 4636, + [4962] = 1548, + [4963] = 4646, + [4964] = 1771, + [4965] = 4837, + [4966] = 4707, + [4967] = 1770, + [4968] = 4665, + [4969] = 4663, + [4970] = 4634, + [4971] = 1549, + [4972] = 1550, + [4973] = 1551, + [4974] = 1552, + [4975] = 1553, + [4976] = 1554, + [4977] = 1555, + [4978] = 1556, + [4979] = 1557, + [4980] = 1720, + [4981] = 1559, + [4982] = 1560, + [4983] = 4847, + [4984] = 4848, + [4985] = 4836, + [4986] = 4744, + [4987] = 4685, + [4988] = 4850, + [4989] = 4835, + [4990] = 4858, + [4991] = 1691, + [4992] = 4853, + [4993] = 4854, + [4994] = 4834, + [4995] = 4693, + [4996] = 4833, + [4997] = 4693, + [4998] = 4856, + [4999] = 4858, + [5000] = 4856, + [5001] = 4687, + [5002] = 4829, + [5003] = 4832, + [5004] = 4825, + [5005] = 1564, + [5006] = 4749, + [5007] = 1571, + [5008] = 4635, + [5009] = 4643, + [5010] = 1567, + [5011] = 1568, + [5012] = 4748, + [5013] = 4649, + [5014] = 5014, + [5015] = 5015, + [5016] = 4693, + [5017] = 4774, + [5018] = 4757, + [5019] = 4704, + [5020] = 3022, + [5021] = 5021, + [5022] = 4741, + [5023] = 1583, + [5024] = 4784, + [5025] = 1570, + [5026] = 1656, + [5027] = 1572, + [5028] = 1573, + [5029] = 1574, + [5030] = 1576, + [5031] = 1578, + [5032] = 1582, + [5033] = 1589, + [5034] = 3025, + [5035] = 1599, + [5036] = 1600, + [5037] = 1601, + [5038] = 4788, + [5039] = 4831, + [5040] = 4769, + [5041] = 4834, + [5042] = 5042, + [5043] = 4655, + [5044] = 4763, + [5045] = 4802, + [5046] = 1689, + [5047] = 4741, + [5048] = 5048, + [5049] = 1711, + [5050] = 1713, + [5051] = 5051, + [5052] = 4693, + [5053] = 4789, + [5054] = 4785, + [5055] = 4769, + [5056] = 4653, + [5057] = 4761, + [5058] = 4771, + [5059] = 4774, + [5060] = 1602, + [5061] = 4774, + [5062] = 1603, + [5063] = 4777, + [5064] = 4832, + [5065] = 4776, + [5066] = 4653, + [5067] = 4769, + [5068] = 1688, + [5069] = 1604, + [5070] = 1605, + [5071] = 1704, + [5072] = 1606, + [5073] = 1686, + [5074] = 4785, + [5075] = 1607, + [5076] = 4768, + [5077] = 1714, + [5078] = 1610, + [5079] = 4789, + [5080] = 5080, + [5081] = 1532, + [5082] = 1642, + [5083] = 1643, + [5084] = 1645, + [5085] = 1646, + [5086] = 1647, + [5087] = 1648, + [5088] = 1721, + [5089] = 4802, + [5090] = 1651, + [5091] = 1652, + [5092] = 1653, + [5093] = 1722, [5094] = 5094, - [5095] = 5095, - [5096] = 5096, - [5097] = 5097, + [5095] = 4763, + [5096] = 1654, + [5097] = 4665, [5098] = 5098, - [5099] = 5099, - [5100] = 5100, + [5099] = 4831, + [5100] = 4665, [5101] = 5101, - [5102] = 5102, - [5103] = 5103, - [5104] = 5104, - [5105] = 5105, - [5106] = 5106, - [5107] = 5107, - [5108] = 5108, - [5109] = 5097, - [5110] = 5110, - [5111] = 5111, - [5112] = 5112, - [5113] = 5113, + [5102] = 4788, + [5103] = 4655, + [5104] = 4693, + [5105] = 4784, + [5106] = 4835, + [5107] = 4693, + [5108] = 4741, + [5109] = 4663, + [5110] = 4685, + [5111] = 4704, + [5112] = 4757, + [5113] = 1681, [5114] = 5114, - [5115] = 5102, - [5116] = 5096, - [5117] = 5117, - [5118] = 5118, - [5119] = 5119, - [5120] = 5101, - [5121] = 5101, - [5122] = 5122, - [5123] = 5102, - [5124] = 5094, - [5125] = 5125, - [5126] = 5104, - [5127] = 5096, - [5128] = 5128, - [5129] = 5119, - [5130] = 5130, - [5131] = 5131, - [5132] = 5103, - [5133] = 5133, - [5134] = 5097, - [5135] = 5103, + [5115] = 4833, + [5116] = 1683, + [5117] = 4649, + [5118] = 4663, + [5119] = 1723, + [5120] = 4643, + [5121] = 4635, + [5122] = 4832, + [5123] = 4833, + [5124] = 4748, + [5125] = 4687, + [5126] = 4749, + [5127] = 5127, + [5128] = 4834, + [5129] = 4835, + [5130] = 4836, + [5131] = 1724, + [5132] = 4837, + [5133] = 4698, + [5134] = 4693, + [5135] = 4838, [5136] = 5136, - [5137] = 5093, - [5138] = 5138, - [5139] = 5110, - [5140] = 5140, - [5141] = 5097, - [5142] = 5094, - [5143] = 5143, - [5144] = 5096, - [5145] = 5140, - [5146] = 5096, - [5147] = 5093, - [5148] = 5125, - [5149] = 5149, - [5150] = 5150, - [5151] = 5151, - [5152] = 5152, - [5153] = 5101, + [5137] = 1657, + [5138] = 1658, + [5139] = 1659, + [5140] = 1660, + [5141] = 1661, + [5142] = 1662, + [5143] = 1663, + [5144] = 1664, + [5145] = 4839, + [5146] = 1666, + [5147] = 1671, + [5148] = 4636, + [5149] = 4646, + [5150] = 4707, + [5151] = 4634, + [5152] = 4847, + [5153] = 1680, [5154] = 5154, - [5155] = 5155, - [5156] = 5156, - [5157] = 5102, - [5158] = 5158, - [5159] = 5159, - [5160] = 5160, - [5161] = 5161, - [5162] = 5102, - [5163] = 5163, - [5164] = 5164, - [5165] = 5165, - [5166] = 5166, - [5167] = 5101, - [5168] = 5156, - [5169] = 5169, - [5170] = 5170, - [5171] = 5166, - [5172] = 5172, - [5173] = 5173, - [5174] = 5096, - [5175] = 5104, - [5176] = 5117, - [5177] = 5170, - [5178] = 5102, - [5179] = 5102, - [5180] = 5096, - [5181] = 5172, - [5182] = 5170, + [5155] = 4693, + [5156] = 4848, + [5157] = 4854, + [5158] = 4744, + [5159] = 4850, + [5160] = 5021, + [5161] = 4698, + [5162] = 4853, + [5163] = 4854, + [5164] = 4825, + [5165] = 1677, + [5166] = 1725, + [5167] = 4652, + [5168] = 1679, + [5169] = 4829, + [5170] = 4856, + [5171] = 4858, + [5172] = 4648, + [5173] = 4683, + [5174] = 4686, + [5175] = 5175, + [5176] = 5176, + [5177] = 5177, + [5178] = 5178, + [5179] = 5179, + [5180] = 5180, + [5181] = 5181, + [5182] = 5182, [5183] = 5183, - [5184] = 5117, - [5185] = 5101, - [5186] = 5102, + [5184] = 5184, + [5185] = 5185, + [5186] = 5182, [5187] = 5187, [5188] = 5188, - [5189] = 5189, - [5190] = 5117, + [5189] = 5177, + [5190] = 5190, [5191] = 5191, [5192] = 5192, - [5193] = 5117, - [5194] = 5194, - [5195] = 5166, - [5196] = 5156, - [5197] = 5117, + [5193] = 5193, + [5194] = 5179, + [5195] = 5195, + [5196] = 5196, + [5197] = 5182, [5198] = 5198, [5199] = 5199, - [5200] = 5122, - [5201] = 5101, - [5202] = 5164, - [5203] = 2982, - [5204] = 5172, - [5205] = 5161, - [5206] = 5206, + [5200] = 5177, + [5201] = 5201, + [5202] = 5182, + [5203] = 5203, + [5204] = 5204, + [5205] = 5205, + [5206] = 5185, [5207] = 5207, - [5208] = 5160, - [5209] = 5096, - [5210] = 5149, - [5211] = 5101, - [5212] = 5101, - [5213] = 5102, - [5214] = 4502, - [5215] = 5096, - [5216] = 5096, - [5217] = 5117, - [5218] = 5161, - [5219] = 5053, - [5220] = 5117, - [5221] = 5194, - [5222] = 5117, - [5223] = 2971, - [5224] = 43, - [5225] = 4528, - [5226] = 2968, - [5227] = 5122, - [5228] = 5096, - [5229] = 5117, - [5230] = 5125, - [5231] = 5231, - [5232] = 5232, - [5233] = 5172, - [5234] = 5140, - [5235] = 5235, - [5236] = 5102, - [5237] = 5131, + [5208] = 5208, + [5209] = 5179, + [5210] = 5210, + [5211] = 5211, + [5212] = 5212, + [5213] = 5213, + [5214] = 5177, + [5215] = 5215, + [5216] = 5188, + [5217] = 5217, + [5218] = 5218, + [5219] = 5219, + [5220] = 5179, + [5221] = 5177, + [5222] = 5222, + [5223] = 5223, + [5224] = 5224, + [5225] = 5217, + [5226] = 5177, + [5227] = 5227, + [5228] = 5179, + [5229] = 5229, + [5230] = 5224, + [5231] = 5218, + [5232] = 5217, + [5233] = 5182, + [5234] = 5234, + [5235] = 5208, + [5236] = 5188, + [5237] = 5185, [5238] = 5238, - [5239] = 5117, - [5240] = 5096, - [5241] = 5101, - [5242] = 5160, - [5243] = 5140, - [5244] = 5244, - [5245] = 5093, - [5246] = 5096, - [5247] = 5125, - [5248] = 5248, - [5249] = 5131, - [5250] = 5250, + [5239] = 5205, + [5240] = 5198, + [5241] = 5241, + [5242] = 5204, + [5243] = 5243, + [5244] = 5234, + [5245] = 5179, + [5246] = 5223, + [5247] = 5183, + [5248] = 5196, + [5249] = 5223, + [5250] = 5182, [5251] = 5251, - [5252] = 5117, - [5253] = 5161, - [5254] = 5238, - [5255] = 5164, - [5256] = 5235, - [5257] = 5257, - [5258] = 5110, - [5259] = 5259, - [5260] = 5170, - [5261] = 5261, - [5262] = 5172, - [5263] = 5207, + [5252] = 5205, + [5253] = 5190, + [5254] = 10, + [5255] = 5177, + [5256] = 5177, + [5257] = 5179, + [5258] = 5179, + [5259] = 5182, + [5260] = 5260, + [5261] = 5182, + [5262] = 5177, + [5263] = 5176, [5264] = 5264, - [5265] = 5096, - [5266] = 5101, - [5267] = 5103, - [5268] = 5119, - [5269] = 5101, - [5270] = 5122, - [5271] = 5207, - [5272] = 5207, - [5273] = 5096, - [5274] = 5117, - [5275] = 5094, - [5276] = 5238, - [5277] = 5094, - [5278] = 5278, - [5279] = 5118, - [5280] = 5102, + [5265] = 5175, + [5266] = 5187, + [5267] = 5176, + [5268] = 5177, + [5269] = 5179, + [5270] = 5182, + [5271] = 5271, + [5272] = 5190, + [5273] = 5273, + [5274] = 5196, + [5275] = 5204, + [5276] = 5276, + [5277] = 5185, + [5278] = 5188, + [5279] = 5217, + [5280] = 5280, [5281] = 5281, - [5282] = 5103, - [5283] = 5283, - [5284] = 5235, - [5285] = 5166, + [5282] = 5176, + [5283] = 5187, + [5284] = 5208, + [5285] = 5224, [5286] = 5286, - [5287] = 5156, - [5288] = 5119, - [5289] = 5238, - [5290] = 5099, - [5291] = 5291, - [5292] = 5235, + [5287] = 5187, + [5288] = 5218, + [5289] = 5177, + [5290] = 5290, + [5291] = 5179, + [5292] = 5208, [5293] = 5293, - [5294] = 5294, - [5295] = 5261, - [5296] = 5101, - [5297] = 5110, - [5298] = 5096, - [5299] = 5101, + [5294] = 5182, + [5295] = 5273, + [5296] = 5296, + [5297] = 5223, + [5298] = 5298, + [5299] = 5224, [5300] = 5300, - [5301] = 5117, - [5302] = 5302, - [5303] = 5149, - [5304] = 5101, - [5305] = 5096, - [5306] = 5119, + [5301] = 5301, + [5302] = 5179, + [5303] = 5303, + [5304] = 5304, + [5305] = 5177, + [5306] = 5306, [5307] = 5307, - [5308] = 5101, + [5308] = 5211, [5309] = 5309, - [5310] = 5238, - [5311] = 5101, - [5312] = 5110, - [5313] = 5096, - [5314] = 5101, - [5315] = 5315, - [5316] = 5096, - [5317] = 5101, - [5318] = 5194, - [5319] = 5194, - [5320] = 5096, - [5321] = 5101, - [5322] = 5101, - [5323] = 5096, - [5324] = 5160, - [5325] = 5325, - [5326] = 5096, - [5327] = 5327, - [5328] = 5101, - [5329] = 5149, - [5330] = 5101, - [5331] = 5331, - [5332] = 5117, - [5333] = 5101, - [5334] = 5334, - [5335] = 5335, - [5336] = 5122, - [5337] = 5337, - [5338] = 5338, - [5339] = 5339, + [5310] = 5310, + [5311] = 5190, + [5312] = 5312, + [5313] = 5190, + [5314] = 5211, + [5315] = 5190, + [5316] = 5196, + [5317] = 5219, + [5318] = 5318, + [5319] = 5190, + [5320] = 5219, + [5321] = 5190, + [5322] = 5183, + [5323] = 5323, + [5324] = 5273, + [5325] = 5190, + [5326] = 5190, + [5327] = 5208, + [5328] = 5328, + [5329] = 5190, + [5330] = 5190, + [5331] = 5190, + [5332] = 5332, + [5333] = 5183, + [5334] = 5179, + [5335] = 8, + [5336] = 5175, + [5337] = 5177, + [5338] = 4616, + [5339] = 5218, [5340] = 5340, - [5341] = 5097, - [5342] = 5194, - [5343] = 5151, - [5344] = 5170, - [5345] = 5101, - [5346] = 10, - [5347] = 5096, - [5348] = 5348, - [5349] = 5349, - [5350] = 5096, - [5351] = 5207, - [5352] = 5352, - [5353] = 5156, - [5354] = 5131, - [5355] = 5164, - [5356] = 5102, - [5357] = 5164, - [5358] = 5149, - [5359] = 5101, - [5360] = 5096, - [5361] = 5235, - [5362] = 5131, - [5363] = 5140, - [5364] = 5093, - [5365] = 5125, - [5366] = 5102, - [5367] = 5183, + [5341] = 5234, + [5342] = 5342, + [5343] = 5219, + [5344] = 4762, + [5345] = 5345, + [5346] = 5211, + [5347] = 5347, + [5348] = 5224, + [5349] = 5328, + [5350] = 5350, + [5351] = 5351, + [5352] = 9, + [5353] = 5218, + [5354] = 5182, + [5355] = 5219, + [5356] = 5181, + [5357] = 5217, + [5358] = 5188, + [5359] = 5185, + [5360] = 5178, + [5361] = 5211, + [5362] = 5362, + [5363] = 5179, + [5364] = 5328, + [5365] = 5177, + [5366] = 5238, + [5367] = 5367, [5368] = 5368, - [5369] = 5096, - [5370] = 5160, - [5371] = 5161, - [5372] = 5166, - [5373] = 5373, + [5369] = 5204, + [5370] = 5370, + [5371] = 5371, + [5372] = 5372, + [5373] = 5205, [5374] = 5374, [5375] = 5375, - [5376] = 5376, - [5377] = 5377, + [5376] = 5273, + [5377] = 5196, [5378] = 5378, [5379] = 5379, - [5380] = 5380, - [5381] = 5381, - [5382] = 5382, + [5380] = 5179, + [5381] = 5190, + [5382] = 5178, [5383] = 5383, - [5384] = 5384, - [5385] = 5385, - [5386] = 5386, - [5387] = 5387, - [5388] = 5388, - [5389] = 5389, - [5390] = 5390, - [5391] = 5391, - [5392] = 5392, - [5393] = 5393, - [5394] = 5394, - [5395] = 5395, + [5384] = 5182, + [5385] = 5234, + [5386] = 5178, + [5387] = 5175, + [5388] = 5183, + [5389] = 4600, + [5390] = 5179, + [5391] = 5177, + [5392] = 5177, + [5393] = 4760, + [5394] = 5179, + [5395] = 5177, [5396] = 5396, - [5397] = 5397, - [5398] = 5378, - [5399] = 5399, + [5397] = 5179, + [5398] = 5177, + [5399] = 5179, [5400] = 5400, - [5401] = 5401, - [5402] = 5402, + [5401] = 5177, + [5402] = 5179, [5403] = 5403, - [5404] = 5404, - [5405] = 5405, - [5406] = 5406, - [5407] = 5404, + [5404] = 5182, + [5405] = 5223, + [5406] = 2779, + [5407] = 5179, [5408] = 5408, - [5409] = 5409, - [5410] = 5410, + [5409] = 5177, + [5410] = 5179, [5411] = 5411, - [5412] = 5412, + [5412] = 5179, [5413] = 5413, - [5414] = 5414, - [5415] = 5415, - [5416] = 5416, - [5417] = 5417, - [5418] = 5403, - [5419] = 5419, + [5414] = 5176, + [5415] = 5179, + [5416] = 5177, + [5417] = 5177, + [5418] = 5379, + [5419] = 5286, [5420] = 5420, [5421] = 5421, - [5422] = 5422, - [5423] = 5423, - [5424] = 5409, - [5425] = 5425, - [5426] = 5426, + [5422] = 5177, + [5423] = 5411, + [5424] = 5379, + [5425] = 5286, + [5426] = 5411, [5427] = 5427, - [5428] = 5403, - [5429] = 5423, - [5430] = 5430, - [5431] = 5431, - [5432] = 5432, - [5433] = 5433, - [5434] = 17, - [5435] = 5435, - [5436] = 5436, - [5437] = 5414, - [5438] = 5409, + [5428] = 5187, + [5429] = 5379, + [5430] = 25, + [5431] = 5286, + [5432] = 5205, + [5433] = 5204, + [5434] = 27, + [5435] = 5411, + [5436] = 5190, + [5437] = 5437, + [5438] = 5178, [5439] = 5439, - [5440] = 5440, - [5441] = 5441, - [5442] = 5419, - [5443] = 5443, - [5444] = 5444, - [5445] = 5402, - [5446] = 5446, - [5447] = 5403, - [5448] = 5400, - [5449] = 5392, - [5450] = 5450, - [5451] = 5451, - [5452] = 5409, - [5453] = 5423, - [5454] = 5384, - [5455] = 5248, - [5456] = 4532, - [5457] = 5457, + [5440] = 5179, + [5441] = 5379, + [5442] = 5177, + [5443] = 5179, + [5444] = 5177, + [5445] = 5286, + [5446] = 5177, + [5447] = 5177, + [5448] = 5273, + [5449] = 5179, + [5450] = 5175, + [5451] = 2739, + [5452] = 5179, + [5453] = 5411, + [5454] = 5177, + [5455] = 5234, + [5456] = 5456, + [5457] = 5179, [5458] = 5458, [5459] = 5459, - [5460] = 5423, - [5461] = 5100, - [5462] = 4507, + [5460] = 5460, + [5461] = 5461, + [5462] = 5462, [5463] = 5463, [5464] = 5464, [5465] = 5465, - [5466] = 16, + [5466] = 5466, [5467] = 5467, [5468] = 5468, - [5469] = 5402, + [5469] = 5469, [5470] = 5470, [5471] = 5471, - [5472] = 5383, - [5473] = 5426, - [5474] = 49, - [5475] = 5394, - [5476] = 5396, + [5472] = 5472, + [5473] = 5473, + [5474] = 5474, + [5475] = 5475, + [5476] = 5476, [5477] = 5477, - [5478] = 5427, + [5478] = 5478, [5479] = 5479, [5480] = 5480, - [5481] = 5450, - [5482] = 5482, - [5483] = 5155, + [5481] = 5465, + [5482] = 59, + [5483] = 5483, [5484] = 5484, - [5485] = 5377, + [5485] = 5485, [5486] = 5486, - [5487] = 5379, + [5487] = 5487, [5488] = 5488, - [5489] = 5464, + [5489] = 5489, [5490] = 5490, - [5491] = 5491, - [5492] = 5404, + [5491] = 5466, + [5492] = 11, [5493] = 5493, - [5494] = 19, - [5495] = 5495, - [5496] = 5423, - [5497] = 5467, + [5494] = 5494, + [5495] = 5465, + [5496] = 5496, + [5497] = 5485, [5498] = 5498, [5499] = 5499, - [5500] = 5500, + [5500] = 5487, [5501] = 5501, [5502] = 5502, [5503] = 5503, [5504] = 5504, - [5505] = 5488, - [5506] = 5443, - [5507] = 5479, - [5508] = 5390, - [5509] = 5389, + [5505] = 5465, + [5506] = 5506, + [5507] = 5507, + [5508] = 5508, + [5509] = 5485, [5510] = 5510, - [5511] = 5379, - [5512] = 5512, - [5513] = 5377, + [5511] = 11, + [5512] = 5503, + [5513] = 5513, [5514] = 5514, - [5515] = 5515, + [5515] = 5487, [5516] = 5516, - [5517] = 5417, - [5518] = 5395, - [5519] = 5433, - [5520] = 5441, + [5517] = 5507, + [5518] = 5498, + [5519] = 5504, + [5520] = 5520, [5521] = 5521, - [5522] = 5468, - [5523] = 5523, - [5524] = 5404, - [5525] = 5470, - [5526] = 5477, - [5527] = 5480, + [5522] = 5485, + [5523] = 5499, + [5524] = 5487, + [5525] = 5486, + [5526] = 5526, + [5527] = 5527, [5528] = 5528, - [5529] = 5529, - [5530] = 5393, - [5531] = 5385, - [5532] = 5532, + [5529] = 19, + [5530] = 5530, + [5531] = 5496, + [5532] = 5494, [5533] = 5533, - [5534] = 5436, - [5535] = 5499, - [5536] = 5536, + [5534] = 5534, + [5535] = 5490, + [5536] = 19, [5537] = 5537, - [5538] = 5503, - [5539] = 5539, - [5540] = 5423, - [5541] = 5541, - [5542] = 5510, - [5543] = 5543, - [5544] = 20, + [5538] = 5490, + [5539] = 5533, + [5540] = 5350, + [5541] = 4615, + [5542] = 5484, + [5543] = 20, + [5544] = 5544, [5545] = 5545, - [5546] = 5546, - [5547] = 5547, - [5548] = 5532, - [5549] = 5432, - [5550] = 5402, - [5551] = 2974, - [5552] = 5404, - [5553] = 5541, + [5546] = 20, + [5547] = 5479, + [5548] = 5548, + [5549] = 5549, + [5550] = 5465, + [5551] = 5551, + [5552] = 5480, + [5553] = 5553, [5554] = 5554, - [5555] = 5555, + [5555] = 5469, [5556] = 5556, - [5557] = 5515, + [5557] = 5557, [5558] = 5558, - [5559] = 5559, + [5559] = 5527, [5560] = 5560, [5561] = 5561, - [5562] = 5410, + [5562] = 5463, [5563] = 5563, - [5564] = 5393, - [5565] = 5385, - [5566] = 5408, + [5564] = 5533, + [5565] = 5549, + [5566] = 5566, [5567] = 5567, - [5568] = 5499, - [5569] = 5569, - [5570] = 5493, - [5571] = 5397, - [5572] = 5423, + [5568] = 5568, + [5569] = 5464, + [5570] = 5570, + [5571] = 5465, + [5572] = 5467, [5573] = 5573, - [5574] = 5486, - [5575] = 5575, - [5576] = 5503, - [5577] = 5510, - [5578] = 5412, - [5579] = 5579, + [5574] = 5574, + [5575] = 5470, + [5576] = 5474, + [5577] = 5577, + [5578] = 5475, + [5579] = 5476, [5580] = 5580, - [5581] = 5581, - [5582] = 5582, - [5583] = 5416, - [5584] = 4482, - [5585] = 5409, - [5586] = 5586, - [5587] = 5587, - [5588] = 5375, + [5581] = 5471, + [5582] = 5477, + [5583] = 5583, + [5584] = 5584, + [5585] = 5548, + [5586] = 5551, + [5587] = 5558, + [5588] = 5553, [5589] = 5589, - [5590] = 5446, - [5591] = 5591, - [5592] = 5515, - [5593] = 5593, - [5594] = 5510, - [5595] = 5393, - [5596] = 5385, + [5590] = 5590, + [5591] = 5589, + [5592] = 5592, + [5593] = 11, + [5594] = 5594, + [5595] = 5483, + [5596] = 5566, [5597] = 5597, - [5598] = 5404, - [5599] = 5499, - [5600] = 5593, - [5601] = 5503, - [5602] = 5510, - [5603] = 5458, + [5598] = 5598, + [5599] = 5599, + [5600] = 5493, + [5601] = 59, + [5602] = 5602, + [5603] = 5603, [5604] = 5604, [5605] = 5605, - [5606] = 5606, - [5607] = 5582, - [5608] = 5420, - [5609] = 5423, - [5610] = 5515, - [5611] = 5611, - [5612] = 5421, - [5613] = 5613, - [5614] = 5614, - [5615] = 5573, - [5616] = 5616, - [5617] = 5393, - [5618] = 5533, - [5619] = 5385, + [5606] = 5474, + [5607] = 5607, + [5608] = 5608, + [5609] = 5520, + [5610] = 5506, + [5611] = 5471, + [5612] = 5502, + [5613] = 5501, + [5614] = 5458, + [5615] = 5615, + [5616] = 5548, + [5617] = 5551, + [5618] = 5607, + [5619] = 5510, [5620] = 5620, - [5621] = 5621, + [5621] = 5460, [5622] = 5622, - [5623] = 5151, - [5624] = 5536, - [5625] = 5375, - [5626] = 5586, + [5623] = 5545, + [5624] = 5584, + [5625] = 5553, + [5626] = 5626, [5627] = 5627, - [5628] = 5628, + [5628] = 5526, [5629] = 5629, [5630] = 5630, - [5631] = 5558, - [5632] = 5408, - [5633] = 5547, - [5634] = 5515, - [5635] = 5537, + [5631] = 5631, + [5632] = 5508, + [5633] = 5633, + [5634] = 5634, + [5635] = 5566, [5636] = 5636, [5637] = 5637, - [5638] = 5450, - [5639] = 5404, - [5640] = 5391, - [5641] = 5459, - [5642] = 5376, - [5643] = 5488, - [5644] = 5450, - [5645] = 5523, - [5646] = 5426, - [5647] = 5533, - [5648] = 5423, - [5649] = 5528, - [5650] = 5457, - [5651] = 5488, - [5652] = 5450, - [5653] = 5653, - [5654] = 5482, - [5655] = 5536, - [5656] = 5528, - [5657] = 5546, - [5658] = 5488, - [5659] = 5423, - [5660] = 5450, - [5661] = 5539, - [5662] = 5614, - [5663] = 5523, - [5664] = 5537, - [5665] = 5536, - [5666] = 5666, - [5667] = 5667, - [5668] = 5404, - [5669] = 5488, - [5670] = 5450, - [5671] = 5529, - [5672] = 5672, - [5673] = 5536, - [5674] = 5488, - [5675] = 5450, - [5676] = 5536, - [5677] = 5547, + [5638] = 5527, + [5639] = 5626, + [5640] = 5640, + [5641] = 5641, + [5642] = 5642, + [5643] = 5643, + [5644] = 5527, + [5645] = 5645, + [5646] = 5646, + [5647] = 5465, + [5648] = 5648, + [5649] = 5480, + [5650] = 5650, + [5651] = 5474, + [5652] = 5652, + [5653] = 5471, + [5654] = 5654, + [5655] = 5655, + [5656] = 5629, + [5657] = 5548, + [5658] = 5658, + [5659] = 5659, + [5660] = 5660, + [5661] = 5661, + [5662] = 5622, + [5663] = 5663, + [5664] = 5664, + [5665] = 5665, + [5666] = 5592, + [5667] = 5465, + [5668] = 5630, + [5669] = 5669, + [5670] = 5463, + [5671] = 5631, + [5672] = 5551, + [5673] = 5480, + [5674] = 5674, + [5675] = 5650, + [5676] = 5483, + [5677] = 5553, [5678] = 5678, - [5679] = 5679, - [5680] = 5486, - [5681] = 5681, - [5682] = 5682, - [5683] = 5383, - [5684] = 5488, + [5679] = 5674, + [5680] = 5527, + [5681] = 5459, + [5682] = 5362, + [5683] = 5683, + [5684] = 5684, [5685] = 5685, - [5686] = 5394, - [5687] = 5396, - [5688] = 5541, - [5689] = 5558, - [5690] = 5450, + [5686] = 5642, + [5687] = 5566, + [5688] = 5688, + [5689] = 4620, + [5690] = 5690, [5691] = 5691, - [5692] = 5450, - [5693] = 5536, - [5694] = 5514, - [5695] = 5380, - [5696] = 5488, - [5697] = 5450, - [5698] = 5479, - [5699] = 5404, - [5700] = 5536, - [5701] = 5512, - [5702] = 5467, - [5703] = 5488, - [5704] = 5495, - [5705] = 5381, - [5706] = 5450, - [5707] = 5423, - [5708] = 5536, - [5709] = 5500, - [5710] = 5501, - [5711] = 5464, - [5712] = 5495, - [5713] = 5488, - [5714] = 5488, - [5715] = 5715, - [5716] = 5605, - [5717] = 5390, - [5718] = 5389, - [5719] = 5450, - [5720] = 5604, - [5721] = 5502, - [5722] = 5536, - [5723] = 5378, - [5724] = 5384, - [5725] = 5488, - [5726] = 5417, - [5727] = 5395, - [5728] = 5433, - [5729] = 5422, - [5730] = 5468, - [5731] = 5471, - [5732] = 5450, - [5733] = 5470, - [5734] = 5477, - [5735] = 5480, - [5736] = 5736, - [5737] = 5392, - [5738] = 5491, - [5739] = 5400, - [5740] = 5532, - [5741] = 5443, - [5742] = 5742, - [5743] = 5743, - [5744] = 5536, + [5692] = 5692, + [5693] = 5646, + [5694] = 5527, + [5695] = 5695, + [5696] = 5474, + [5697] = 5464, + [5698] = 5602, + [5699] = 5465, + [5700] = 5700, + [5701] = 5480, + [5702] = 5702, + [5703] = 5471, + [5704] = 5487, + [5705] = 5599, + [5706] = 5706, + [5707] = 5627, + [5708] = 5708, + [5709] = 5709, + [5710] = 5710, + [5711] = 5711, + [5712] = 5683, + [5713] = 5683, + [5714] = 5642, + [5715] = 20, + [5716] = 27, + [5717] = 5688, + [5718] = 5597, + [5719] = 5573, + [5720] = 5720, + [5721] = 5654, + [5722] = 5566, + [5723] = 5563, + [5724] = 5527, + [5725] = 5467, + [5726] = 5549, + [5727] = 5599, + [5728] = 5590, + [5729] = 5557, + [5730] = 5560, + [5731] = 5467, + [5732] = 5520, + [5733] = 5646, + [5734] = 5594, + [5735] = 5604, + [5736] = 5465, + [5737] = 5608, + [5738] = 5480, + [5739] = 5573, + [5740] = 5458, + [5741] = 5627, + [5742] = 5508, + [5743] = 5466, + [5744] = 5633, [5745] = 5745, - [5746] = 5436, - [5747] = 5539, - [5748] = 5432, - [5749] = 5749, - [5750] = 5521, - [5751] = 5430, - [5752] = 5425, - [5753] = 5422, - [5754] = 5404, - [5755] = 5421, - [5756] = 5420, - [5757] = 5416, - [5758] = 5412, - [5759] = 5759, - [5760] = 5423, - [5761] = 5410, - [5762] = 5554, - [5763] = 5556, - [5764] = 5484, - [5765] = 5471, - [5766] = 5559, - [5767] = 5560, - [5768] = 5561, - [5769] = 5457, - [5770] = 5770, - [5771] = 5482, - [5772] = 5446, - [5773] = 5423, - [5774] = 5425, - [5775] = 5775, - [5776] = 5419, - [5777] = 5493, - [5778] = 5397, - [5779] = 5779, - [5780] = 5780, - [5781] = 5554, - [5782] = 5555, - [5783] = 5556, - [5784] = 5423, - [5785] = 5376, - [5786] = 5484, - [5787] = 5458, - [5788] = 5459, - [5789] = 5427, - [5790] = 5790, - [5791] = 5546, - [5792] = 5386, - [5793] = 5587, - [5794] = 5391, - [5795] = 5414, - [5796] = 5404, - [5797] = 5591, - [5798] = 5586, - [5799] = 5377, - [5800] = 5591, - [5801] = 5375, - [5802] = 5380, - [5803] = 5521, - [5804] = 5381, - [5805] = 5573, - [5806] = 5614, - [5807] = 5404, - [5808] = 5491, - [5809] = 5604, - [5810] = 5605, - [5811] = 5606, - [5812] = 5606, - [5813] = 5605, - [5814] = 5604, - [5815] = 5404, - [5816] = 5381, - [5817] = 5380, - [5818] = 5391, - [5819] = 5614, - [5820] = 5414, - [5821] = 5591, - [5822] = 5606, - [5823] = 5423, - [5824] = 5587, - [5825] = 5423, - [5826] = 5431, - [5827] = 5559, - [5828] = 5502, - [5829] = 5560, - [5830] = 5375, - [5831] = 5586, - [5832] = 5380, - [5833] = 5833, - [5834] = 5427, - [5835] = 5381, - [5836] = 5397, - [5837] = 5512, - [5838] = 5561, - [5839] = 5391, - [5840] = 5379, - [5841] = 5386, - [5842] = 5842, - [5843] = 5493, - [5844] = 5499, - [5845] = 5845, - [5846] = 5459, - [5847] = 5376, - [5848] = 5419, - [5849] = 5582, - [5850] = 5404, - [5851] = 5561, - [5852] = 5560, - [5853] = 5414, - [5854] = 5426, - [5855] = 5427, - [5856] = 5856, - [5857] = 5559, - [5858] = 5500, - [5859] = 5482, - [5860] = 5419, - [5861] = 5404, - [5862] = 5446, - [5863] = 5410, - [5864] = 5402, - [5865] = 5457, - [5866] = 5446, - [5867] = 5412, - [5868] = 5416, - [5869] = 5426, - [5870] = 5423, - [5871] = 5539, - [5872] = 5536, - [5873] = 5457, - [5874] = 5403, - [5875] = 5503, - [5876] = 5421, - [5877] = 5514, - [5878] = 5423, - [5879] = 5422, - [5880] = 5880, - [5881] = 5471, - [5882] = 5425, - [5883] = 5532, - [5884] = 5884, - [5885] = 5484, - [5886] = 5471, - [5887] = 5480, - [5888] = 5383, - [5889] = 5477, - [5890] = 5491, - [5891] = 5394, - [5892] = 5396, - [5893] = 5470, - [5894] = 5430, - [5895] = 5501, - [5896] = 5529, - [5897] = 5450, - [5898] = 5502, - [5899] = 5468, - [5900] = 5395, - [5901] = 5417, - [5902] = 5484, - [5903] = 5386, - [5904] = 5431, - [5905] = 5183, - [5906] = 5432, - [5907] = 5512, - [5908] = 5389, - [5909] = 5495, - [5910] = 5390, - [5911] = 5514, - [5912] = 5521, - [5913] = 5404, - [5914] = 5500, - [5915] = 5501, - [5916] = 5491, - [5917] = 5488, - [5918] = 5502, - [5919] = 5488, - [5920] = 5501, - [5921] = 5500, - [5922] = 5390, - [5923] = 5389, - [5924] = 5512, - [5925] = 5529, - [5926] = 5436, - [5927] = 5495, - [5928] = 5443, - [5929] = 5400, - [5930] = 5392, - [5931] = 5417, - [5932] = 5395, - [5933] = 5514, - [5934] = 5468, - [5935] = 5450, - [5936] = 5521, - [5937] = 5470, - [5938] = 5477, - [5939] = 5480, - [5940] = 5384, - [5941] = 5396, + [5746] = 5746, + [5747] = 5544, + [5748] = 5467, + [5749] = 5652, + [5750] = 5648, + [5751] = 5654, + [5752] = 5520, + [5753] = 5563, + [5754] = 5655, + [5755] = 5563, + [5756] = 5661, + [5757] = 5467, + [5758] = 5758, + [5759] = 5469, + [5760] = 5544, + [5761] = 5640, + [5762] = 5669, + [5763] = 5763, + [5764] = 5544, + [5765] = 5520, + [5766] = 5636, + [5767] = 5573, + [5768] = 5467, + [5769] = 5640, + [5770] = 5678, + [5771] = 5520, + [5772] = 5602, + [5773] = 5459, + [5774] = 5599, + [5775] = 5646, + [5776] = 5688, + [5777] = 5467, + [5778] = 5640, + [5779] = 5688, + [5780] = 5526, + [5781] = 5520, + [5782] = 5467, + [5783] = 5640, + [5784] = 5784, + [5785] = 5467, + [5786] = 5642, + [5787] = 5520, + [5788] = 5470, + [5789] = 5789, + [5790] = 5589, + [5791] = 5475, + [5792] = 5476, + [5793] = 5467, + [5794] = 5602, + [5795] = 5477, + [5796] = 5640, + [5797] = 5646, + [5798] = 5683, + [5799] = 5658, + [5800] = 5520, + [5801] = 5678, + [5802] = 5467, + [5803] = 5527, + [5804] = 5493, + [5805] = 5640, + [5806] = 5459, + [5807] = 5688, + [5808] = 5678, + [5809] = 5598, + [5810] = 5810, + [5811] = 5520, + [5812] = 5655, + [5813] = 5459, + [5814] = 5603, + [5815] = 5678, + [5816] = 5605, + [5817] = 5467, + [5818] = 5818, + [5819] = 5819, + [5820] = 5520, + [5821] = 5465, + [5822] = 5480, + [5823] = 5502, + [5824] = 5501, + [5825] = 5640, + [5826] = 5826, + [5827] = 5520, + [5828] = 5669, + [5829] = 5467, + [5830] = 5640, + [5831] = 5544, + [5832] = 5460, + [5833] = 5622, + [5834] = 5545, + [5835] = 5510, + [5836] = 5626, + [5837] = 5563, + [5838] = 5661, + [5839] = 5629, + [5840] = 5630, + [5841] = 5631, + [5842] = 5573, + [5843] = 5599, + [5844] = 5844, + [5845] = 5607, + [5846] = 5636, + [5847] = 5669, + [5848] = 5520, + [5849] = 5661, + [5850] = 5640, + [5851] = 5479, + [5852] = 5709, + [5853] = 5643, + [5854] = 5553, + [5855] = 5467, + [5856] = 5655, + [5857] = 5655, + [5858] = 5642, + [5859] = 5654, + [5860] = 5654, + [5861] = 5708, + [5862] = 5648, + [5863] = 5589, + [5864] = 5648, + [5865] = 5683, + [5866] = 5652, + [5867] = 5633, + [5868] = 5658, + [5869] = 5660, + [5870] = 5466, + [5871] = 5508, + [5872] = 5663, + [5873] = 5664, + [5874] = 5665, + [5875] = 5558, + [5876] = 5652, + [5877] = 5633, + [5878] = 5627, + [5879] = 5466, + [5880] = 4650, + [5881] = 5745, + [5882] = 5508, + [5883] = 5674, + [5884] = 5650, + [5885] = 5627, + [5886] = 5458, + [5887] = 5458, + [5888] = 5888, + [5889] = 5608, + [5890] = 5608, + [5891] = 5604, + [5892] = 5604, + [5893] = 5893, + [5894] = 5894, + [5895] = 5594, + [5896] = 5758, + [5897] = 5897, + [5898] = 5594, + [5899] = 5691, + [5900] = 5592, + [5901] = 5901, + [5902] = 5590, + [5903] = 5695, + [5904] = 5652, + [5905] = 5905, + [5906] = 5592, + [5907] = 5607, + [5908] = 5908, + [5909] = 5580, + [5910] = 5746, + [5911] = 5608, + [5912] = 5745, + [5913] = 5480, + [5914] = 5494, + [5915] = 5708, + [5916] = 5709, + [5917] = 5710, + [5918] = 5590, + [5919] = 5527, + [5920] = 5920, + [5921] = 5496, + [5922] = 5551, + [5923] = 5923, + [5924] = 5604, + [5925] = 5597, + [5926] = 5485, + [5927] = 5465, + [5928] = 5560, + [5929] = 5480, + [5930] = 5558, + [5931] = 5640, + [5932] = 5557, + [5933] = 5758, + [5934] = 5934, + [5935] = 5251, + [5936] = 5557, + [5937] = 5560, + [5938] = 4533, + [5939] = 5464, + [5940] = 5580, + [5941] = 5941, [5942] = 5942, - [5943] = 5394, - [5944] = 5532, - [5945] = 5430, - [5946] = 5946, - [5947] = 5383, - [5948] = 5536, - [5949] = 5529, - [5950] = 5378, - [5951] = 5539, - [5952] = 5952, - [5953] = 5953, - [5954] = 5546, - [5955] = 5546, - [5956] = 5464, - [5957] = 5467, - [5958] = 5479, - [5959] = 5541, - [5960] = 5486, - [5961] = 5408, - [5962] = 5410, - [5963] = 5412, - [5964] = 5416, - [5965] = 5573, - [5966] = 5582, - [5967] = 5420, - [5968] = 5559, - [5969] = 5560, - [5970] = 5561, - [5971] = 5421, - [5972] = 5422, - [5973] = 5425, - [5974] = 5420, - [5975] = 5430, - [5976] = 5431, - [5977] = 5432, - [5978] = 5436, - [5979] = 5493, - [5980] = 5397, - [5981] = 5408, - [5982] = 5482, - [5983] = 5443, - [5984] = 5400, - [5985] = 5587, - [5986] = 5392, - [5987] = 5523, - [5988] = 5593, - [5989] = 5384, - [5990] = 5378, - [5991] = 5528, - [5992] = 5533, - [5993] = 5587, - [5994] = 5537, - [5995] = 5458, - [5996] = 5464, - [5997] = 5591, - [5998] = 5547, - [5999] = 5431, - [6000] = 5573, - [6001] = 5467, - [6002] = 5376, - [6003] = 5459, - [6004] = 5479, - [6005] = 5558, - [6006] = 5582, - [6007] = 5377, - [6008] = 5541, - [6009] = 5604, - [6010] = 5605, - [6011] = 5606, - [6012] = 5486, - [6013] = 5558, - [6014] = 5547, - [6015] = 5537, - [6016] = 5586, - [6017] = 5593, - [6018] = 5614, - [6019] = 5523, - [6020] = 5458, - [6021] = 5528, - [6022] = 5379, - [6023] = 5533, - [6024] = 5593, - [6025] = 6025, + [5943] = 5484, + [5944] = 5597, + [5945] = 5483, + [5946] = 5486, + [5947] = 5464, + [5948] = 5948, + [5949] = 5480, + [5950] = 5465, + [5951] = 5480, + [5952] = 5745, + [5953] = 5746, + [5954] = 5710, + [5955] = 5465, + [5956] = 5516, + [5957] = 5709, + [5958] = 5708, + [5959] = 5710, + [5960] = 5484, + [5961] = 5484, + [5962] = 5527, + [5963] = 5580, + [5964] = 5528, + [5965] = 5758, + [5966] = 5966, + [5967] = 5967, + [5968] = 5695, + [5969] = 5490, + [5970] = 5602, + [5971] = 5527, + [5972] = 5972, + [5973] = 5494, + [5974] = 5496, + [5975] = 5975, + [5976] = 5691, + [5977] = 5607, + [5978] = 5978, + [5979] = 5465, + [5980] = 5499, + [5981] = 5648, + [5982] = 5490, + [5983] = 5528, + [5984] = 5650, + [5985] = 5527, + [5986] = 5674, + [5987] = 5643, + [5988] = 5988, + [5989] = 5516, + [5990] = 5510, + [5991] = 5633, + [5992] = 5467, + [5993] = 5506, + [5994] = 5695, + [5995] = 5470, + [5996] = 5494, + [5997] = 5504, + [5998] = 5475, + [5999] = 5476, + [6000] = 5605, + [6001] = 5665, + [6002] = 5477, + [6003] = 19, + [6004] = 5664, + [6005] = 5663, + [6006] = 5496, + [6007] = 5506, + [6008] = 5499, + [6009] = 5516, + [6010] = 5507, + [6011] = 5528, + [6012] = 5746, + [6013] = 5548, + [6014] = 5504, + [6015] = 5503, + [6016] = 5598, + [6017] = 5665, + [6018] = 5499, + [6019] = 5643, + [6020] = 5640, + [6021] = 5603, + [6022] = 5598, + [6023] = 5605, + [6024] = 5636, + [6025] = 5527, [6026] = 6026, - [6027] = 6027, - [6028] = 6028, + [6027] = 5520, + [6028] = 5664, [6029] = 6029, - [6030] = 6030, - [6031] = 6031, - [6032] = 6032, - [6033] = 6033, - [6034] = 6025, + [6030] = 5502, + [6031] = 5501, + [6032] = 5631, + [6033] = 5630, + [6034] = 5629, [6035] = 6035, - [6036] = 6036, - [6037] = 6037, + [6036] = 5504, + [6037] = 5498, [6038] = 6038, - [6039] = 6038, - [6040] = 6040, - [6041] = 6032, - [6042] = 6042, - [6043] = 6043, - [6044] = 6044, - [6045] = 6045, - [6046] = 6046, - [6047] = 6047, - [6048] = 6048, - [6049] = 6028, - [6050] = 6035, - [6051] = 6051, - [6052] = 6052, - [6053] = 6053, - [6054] = 6027, - [6055] = 6055, - [6056] = 6056, - [6057] = 6030, - [6058] = 6058, - [6059] = 6059, - [6060] = 6036, - [6061] = 6044, - [6062] = 6033, - [6063] = 6063, - [6064] = 6045, - [6065] = 6046, - [6066] = 6042, - [6067] = 6067, - [6068] = 6068, - [6069] = 6069, - [6070] = 6070, - [6071] = 6071, - [6072] = 6047, + [6039] = 5460, + [6040] = 5622, + [6041] = 5626, + [6042] = 5626, + [6043] = 5622, + [6044] = 5465, + [6045] = 5629, + [6046] = 5630, + [6047] = 5631, + [6048] = 5480, + [6049] = 5486, + [6050] = 5460, + [6051] = 5528, + [6052] = 5636, + [6053] = 5493, + [6054] = 6054, + [6055] = 5603, + [6056] = 5640, + [6057] = 5663, + [6058] = 5501, + [6059] = 5643, + [6060] = 5502, + [6061] = 6061, + [6062] = 5520, + [6063] = 5605, + [6064] = 5603, + [6065] = 5507, + [6066] = 5661, + [6067] = 5594, + [6068] = 5592, + [6069] = 5691, + [6070] = 5483, + [6071] = 5598, + [6072] = 5589, [6073] = 6073, - [6074] = 6073, - [6075] = 6075, - [6076] = 6036, - [6077] = 6077, - [6078] = 6078, - [6079] = 6079, - [6080] = 6080, - [6081] = 6053, - [6082] = 6082, - [6083] = 6078, - [6084] = 6084, - [6085] = 6085, - [6086] = 6086, - [6087] = 6077, - [6088] = 6088, - [6089] = 6089, - [6090] = 6090, - [6091] = 6091, - [6092] = 6044, - [6093] = 6093, - [6094] = 33, - [6095] = 6043, - [6096] = 6096, - [6097] = 6097, + [6074] = 5507, + [6075] = 5480, + [6076] = 5663, + [6077] = 5664, + [6078] = 5665, + [6079] = 5479, + [6080] = 5465, + [6081] = 5476, + [6082] = 5475, + [6083] = 5470, + [6084] = 5469, + [6085] = 5467, + [6086] = 5527, + [6087] = 5674, + [6088] = 5650, + [6089] = 5503, + [6090] = 5516, + [6091] = 5558, + [6092] = 5498, + [6093] = 5669, + [6094] = 5527, + [6095] = 5486, + [6096] = 5463, + [6097] = 5503, [6098] = 6098, - [6099] = 6099, - [6100] = 6100, - [6101] = 6101, - [6102] = 6102, - [6103] = 6037, - [6104] = 6104, - [6105] = 6105, - [6106] = 6106, - [6107] = 6107, - [6108] = 6108, - [6109] = 6109, - [6110] = 6110, - [6111] = 6111, - [6112] = 6112, - [6113] = 6113, - [6114] = 6055, - [6115] = 6115, - [6116] = 6075, - [6117] = 6085, - [6118] = 6118, - [6119] = 6063, - [6120] = 6055, - [6121] = 6121, - [6122] = 6112, - [6123] = 6101, - [6124] = 6109, - [6125] = 6108, - [6126] = 6107, - [6127] = 6110, - [6128] = 6111, - [6129] = 6100, - [6130] = 6099, - [6131] = 6104, - [6132] = 6098, - [6133] = 6097, - [6134] = 6134, - [6135] = 6075, - [6136] = 6085, - [6137] = 6137, - [6138] = 6138, + [6099] = 5465, + [6100] = 5659, + [6101] = 5691, + [6102] = 5533, + [6103] = 5695, + [6104] = 5549, + [6105] = 5465, + [6106] = 5480, + [6107] = 5590, + [6108] = 5498, + [6109] = 5480, + [6110] = 5549, + [6111] = 5708, + [6112] = 5709, + [6113] = 5710, + [6114] = 5533, + [6115] = 5463, + [6116] = 6116, + [6117] = 5526, + [6118] = 5597, + [6119] = 5469, + [6120] = 5660, + [6121] = 5479, + [6122] = 5493, + [6123] = 5580, + [6124] = 5557, + [6125] = 5560, + [6126] = 6126, + [6127] = 5506, + [6128] = 5510, + [6129] = 3015, + [6130] = 5526, + [6131] = 5745, + [6132] = 5746, + [6133] = 6133, + [6134] = 5527, + [6135] = 5527, + [6136] = 5465, + [6137] = 5480, + [6138] = 5758, [6139] = 6139, - [6140] = 6086, - [6141] = 6091, + [6140] = 6140, + [6141] = 6141, [6142] = 6142, - [6143] = 6138, - [6144] = 6139, - [6145] = 6031, - [6146] = 6101, + [6143] = 6143, + [6144] = 6144, + [6145] = 6145, + [6146] = 6146, [6147] = 6147, - [6148] = 6084, - [6149] = 6026, + [6148] = 6148, + [6149] = 6149, [6150] = 6150, - [6151] = 6105, - [6152] = 6080, - [6153] = 6106, - [6154] = 6121, - [6155] = 6026, - [6156] = 6150, - [6157] = 6113, - [6158] = 6115, - [6159] = 6056, + [6151] = 6151, + [6152] = 6152, + [6153] = 6153, + [6154] = 6154, + [6155] = 6149, + [6156] = 6156, + [6157] = 6147, + [6158] = 6158, + [6159] = 6159, [6160] = 6160, - [6161] = 6121, - [6162] = 6162, + [6161] = 6161, + [6162] = 6156, [6163] = 6163, - [6164] = 6067, - [6165] = 6118, - [6166] = 6121, - [6167] = 6167, + [6164] = 6161, + [6165] = 6165, + [6166] = 6166, + [6167] = 6152, [6168] = 6168, - [6169] = 6051, - [6170] = 6163, - [6171] = 6045, - [6172] = 6031, - [6173] = 6118, - [6174] = 6167, + [6169] = 6156, + [6170] = 6161, + [6171] = 6147, + [6172] = 6172, + [6173] = 6173, + [6174] = 6174, [6175] = 6175, - [6176] = 6115, - [6177] = 6113, + [6176] = 6176, + [6177] = 6161, [6178] = 6178, [6179] = 6179, - [6180] = 6059, - [6181] = 6046, + [6180] = 6180, + [6181] = 6181, [6182] = 6182, - [6183] = 6102, - [6184] = 6184, - [6185] = 6110, - [6186] = 6186, + [6183] = 6158, + [6184] = 6149, + [6185] = 6139, + [6186] = 6146, [6187] = 6187, - [6188] = 6111, - [6189] = 6056, - [6190] = 6190, + [6188] = 6147, + [6189] = 6152, + [6190] = 6149, [6191] = 6191, - [6192] = 6105, - [6193] = 6051, - [6194] = 6105, - [6195] = 6106, - [6196] = 6048, - [6197] = 6106, - [6198] = 6198, - [6199] = 6113, + [6192] = 6152, + [6193] = 6193, + [6194] = 6179, + [6195] = 6195, + [6196] = 6196, + [6197] = 6197, + [6198] = 6172, + [6199] = 6199, [6200] = 6200, [6201] = 6201, - [6202] = 6029, - [6203] = 6203, - [6204] = 6168, - [6205] = 6115, - [6206] = 6067, - [6207] = 6118, - [6208] = 6052, - [6209] = 6121, - [6210] = 6201, - [6211] = 6118, - [6212] = 6102, + [6202] = 6161, + [6203] = 6156, + [6204] = 6204, + [6205] = 6205, + [6206] = 6206, + [6207] = 6207, + [6208] = 6208, + [6209] = 6209, + [6210] = 6147, + [6211] = 6211, + [6212] = 6146, [6213] = 6213, - [6214] = 6115, - [6215] = 6215, - [6216] = 6113, - [6217] = 6200, - [6218] = 6029, - [6219] = 6077, - [6220] = 6058, - [6221] = 6113, - [6222] = 6077, - [6223] = 6115, - [6224] = 6102, - [6225] = 6198, - [6226] = 6106, - [6227] = 6105, - [6228] = 6190, - [6229] = 6182, - [6230] = 6118, - [6231] = 6048, - [6232] = 6168, - [6233] = 6030, - [6234] = 6051, - [6235] = 6201, - [6236] = 6200, - [6237] = 6063, - [6238] = 6198, - [6239] = 6048, - [6240] = 6056, - [6241] = 6241, - [6242] = 6106, - [6243] = 6243, - [6244] = 6028, - [6245] = 6105, - [6246] = 6246, - [6247] = 6190, - [6248] = 6248, - [6249] = 6182, - [6250] = 6241, - [6251] = 6167, - [6252] = 6059, - [6253] = 6163, - [6254] = 6254, - [6255] = 6255, - [6256] = 6031, - [6257] = 6121, - [6258] = 6105, - [6259] = 6150, - [6260] = 6026, - [6261] = 6261, - [6262] = 6106, - [6263] = 6139, - [6264] = 6138, - [6265] = 6138, - [6266] = 6067, - [6267] = 6267, - [6268] = 6113, - [6269] = 6269, - [6270] = 6115, - [6271] = 6118, - [6272] = 6272, - [6273] = 6121, - [6274] = 6274, - [6275] = 6080, + [6214] = 6214, + [6215] = 6146, + [6216] = 6216, + [6217] = 6217, + [6218] = 6166, + [6219] = 6219, + [6220] = 6147, + [6221] = 6213, + [6222] = 6152, + [6223] = 6223, + [6224] = 6224, + [6225] = 6225, + [6226] = 6149, + [6227] = 6224, + [6228] = 6228, + [6229] = 6229, + [6230] = 6230, + [6231] = 6231, + [6232] = 6232, + [6233] = 6233, + [6234] = 6234, + [6235] = 6235, + [6236] = 6236, + [6237] = 6174, + [6238] = 6238, + [6239] = 6176, + [6240] = 6240, + [6241] = 6211, + [6242] = 6240, + [6243] = 6235, + [6244] = 6234, + [6245] = 6233, + [6246] = 6161, + [6247] = 6247, + [6248] = 6231, + [6249] = 6142, + [6250] = 6238, + [6251] = 6165, + [6252] = 6252, + [6253] = 6153, + [6254] = 6223, + [6255] = 6149, + [6256] = 6256, + [6257] = 6232, + [6258] = 6158, + [6259] = 6139, + [6260] = 6152, + [6261] = 6229, + [6262] = 6262, + [6263] = 6179, + [6264] = 6252, + [6265] = 6142, + [6266] = 6256, + [6267] = 6147, + [6268] = 6146, + [6269] = 6208, + [6270] = 6270, + [6271] = 6271, + [6272] = 6207, + [6273] = 6213, + [6274] = 6206, + [6275] = 6205, [6276] = 6276, - [6277] = 6063, - [6278] = 6084, + [6277] = 6277, + [6278] = 6224, [6279] = 6279, - [6280] = 6091, - [6281] = 6281, - [6282] = 6058, - [6283] = 6043, - [6284] = 6075, - [6285] = 6032, - [6286] = 6104, - [6287] = 6287, - [6288] = 6288, - [6289] = 6025, - [6290] = 6107, - [6291] = 6108, - [6292] = 6109, - [6293] = 6053, - [6294] = 6112, + [6280] = 6195, + [6281] = 6200, + [6282] = 6282, + [6283] = 6283, + [6284] = 6229, + [6285] = 6150, + [6286] = 6151, + [6287] = 6252, + [6288] = 6159, + [6289] = 6191, + [6290] = 6156, + [6291] = 6146, + [6292] = 6193, + [6293] = 6154, + [6294] = 6256, [6295] = 6295, - [6296] = 6111, - [6297] = 6297, - [6298] = 6055, - [6299] = 6110, - [6300] = 6300, - [6301] = 6105, - [6302] = 6106, - [6303] = 6038, - [6304] = 6047, - [6305] = 6113, - [6306] = 6115, - [6307] = 6118, - [6308] = 6121, - [6309] = 6309, - [6310] = 6100, - [6311] = 6099, - [6312] = 6101, - [6313] = 6098, - [6314] = 6097, - [6315] = 6032, - [6316] = 6093, - [6317] = 6134, + [6296] = 6156, + [6297] = 6152, + [6298] = 6172, + [6299] = 6299, + [6300] = 6271, + [6301] = 6238, + [6302] = 6153, + [6303] = 6283, + [6304] = 6304, + [6305] = 6154, + [6306] = 6149, + [6307] = 6149, + [6308] = 6152, + [6309] = 6161, + [6310] = 6147, + [6311] = 6311, + [6312] = 6311, + [6313] = 6313, + [6314] = 6161, + [6315] = 6156, + [6316] = 6146, + [6317] = 6317, [6318] = 6318, - [6319] = 6150, - [6320] = 6086, - [6321] = 6042, + [6319] = 6156, + [6320] = 26, + [6321] = 6321, [6322] = 6322, - [6323] = 6037, - [6324] = 6324, - [6325] = 6085, - [6326] = 6139, - [6327] = 6327, - [6328] = 6033, + [6323] = 6232, + [6324] = 6175, + [6325] = 6325, + [6326] = 6311, + [6327] = 6144, + [6328] = 6318, [6329] = 6329, - [6330] = 6105, - [6331] = 6106, - [6332] = 6113, + [6330] = 6330, + [6331] = 6331, + [6332] = 6176, [6333] = 6333, - [6334] = 6115, - [6335] = 6118, - [6336] = 6243, - [6337] = 6121, - [6338] = 6035, - [6339] = 6080, + [6334] = 6174, + [6335] = 6335, + [6336] = 6236, + [6337] = 6337, + [6338] = 6181, + [6339] = 6339, [6340] = 6340, - [6341] = 6078, - [6342] = 6342, + [6341] = 6341, + [6342] = 6144, [6343] = 6343, - [6344] = 6344, - [6345] = 6345, - [6346] = 6346, - [6347] = 6027, - [6348] = 6029, - [6349] = 6027, - [6350] = 6084, - [6351] = 6105, - [6352] = 6106, - [6353] = 6113, - [6354] = 6115, - [6355] = 6118, - [6356] = 6121, + [6344] = 6156, + [6345] = 6271, + [6346] = 6204, + [6347] = 6209, + [6348] = 6348, + [6349] = 6349, + [6350] = 6350, + [6351] = 6161, + [6352] = 6225, + [6353] = 6270, + [6354] = 6295, + [6355] = 6200, + [6356] = 6152, [6357] = 6357, - [6358] = 6201, - [6359] = 6078, - [6360] = 6073, - [6361] = 6200, - [6362] = 6362, - [6363] = 6363, - [6364] = 6035, - [6365] = 6365, - [6366] = 6052, + [6358] = 6357, + [6359] = 6236, + [6360] = 6181, + [6361] = 6154, + [6362] = 6147, + [6363] = 6153, + [6364] = 6364, + [6365] = 6172, + [6366] = 6340, [6367] = 6367, - [6368] = 6056, - [6369] = 6369, - [6370] = 6370, + [6368] = 6368, + [6369] = 6364, + [6370] = 6146, [6371] = 6371, - [6372] = 6038, - [6373] = 6100, - [6374] = 6099, - [6375] = 6098, - [6376] = 6376, - [6377] = 6377, + [6372] = 6372, + [6373] = 6191, + [6374] = 6374, + [6375] = 6200, + [6376] = 33, + [6377] = 6371, [6378] = 6378, - [6379] = 6025, - [6380] = 6380, - [6381] = 6381, - [6382] = 6382, - [6383] = 6383, - [6384] = 36, - [6385] = 6121, + [6379] = 6379, + [6380] = 6204, + [6381] = 6213, + [6382] = 6165, + [6383] = 6209, + [6384] = 6146, + [6385] = 6385, [6386] = 6386, - [6387] = 6032, - [6388] = 6029, - [6389] = 6043, - [6390] = 6093, - [6391] = 6363, - [6392] = 6362, - [6393] = 6046, - [6394] = 6394, - [6395] = 6045, - [6396] = 6396, - [6397] = 6309, - [6398] = 6073, - [6399] = 6105, - [6400] = 6040, - [6401] = 6401, - [6402] = 6402, - [6403] = 6403, - [6404] = 6404, - [6405] = 6405, - [6406] = 6406, - [6407] = 6407, - [6408] = 6044, - [6409] = 6409, - [6410] = 6106, - [6411] = 6386, + [6387] = 6225, + [6388] = 6270, + [6389] = 6389, + [6390] = 6229, + [6391] = 6386, + [6392] = 6386, + [6393] = 6295, + [6394] = 6232, + [6395] = 6395, + [6396] = 6195, + [6397] = 6397, + [6398] = 6240, + [6399] = 6247, + [6400] = 6235, + [6401] = 6357, + [6402] = 6234, + [6403] = 6364, + [6404] = 6247, + [6405] = 6371, + [6406] = 6233, + [6407] = 6231, + [6408] = 6223, + [6409] = 6156, + [6410] = 6161, + [6411] = 6411, [6412] = 6412, - [6413] = 6033, - [6414] = 6300, - [6415] = 6297, - [6416] = 6295, - [6417] = 6137, - [6418] = 6028, - [6419] = 6113, - [6420] = 6036, - [6421] = 6115, - [6422] = 6118, - [6423] = 6030, - [6424] = 6052, - [6425] = 6052, - [6426] = 6377, - [6427] = 6427, - [6428] = 6028, - [6429] = 6121, - [6430] = 6381, - [6431] = 6382, - [6432] = 6383, + [6413] = 6413, + [6414] = 6414, + [6415] = 6415, + [6416] = 6374, + [6417] = 6208, + [6418] = 6207, + [6419] = 6206, + [6420] = 6205, + [6421] = 6421, + [6422] = 6149, + [6423] = 6152, + [6424] = 6364, + [6425] = 6414, + [6426] = 6223, + [6427] = 6159, + [6428] = 6147, + [6429] = 6149, + [6430] = 6147, + [6431] = 26, + [6432] = 6413, [6433] = 6433, - [6434] = 6043, - [6435] = 6386, - [6436] = 6030, - [6437] = 6037, - [6438] = 6036, - [6439] = 6042, - [6440] = 6363, - [6441] = 6362, - [6442] = 6044, - [6443] = 6048, - [6444] = 6073, - [6445] = 6051, - [6446] = 6309, - [6447] = 6112, - [6448] = 6241, - [6449] = 6040, - [6450] = 6401, - [6451] = 6402, - [6452] = 6403, - [6453] = 6404, - [6454] = 6405, - [6455] = 6025, - [6456] = 6409, - [6457] = 6287, - [6458] = 6243, - [6459] = 6045, + [6434] = 6146, + [6435] = 6374, + [6436] = 6395, + [6437] = 6437, + [6438] = 6211, + [6439] = 6439, + [6440] = 6440, + [6441] = 6412, + [6442] = 6412, + [6443] = 6443, + [6444] = 6411, + [6445] = 6150, + [6446] = 6414, + [6447] = 6447, + [6448] = 6413, + [6449] = 6412, + [6450] = 6450, + [6451] = 6397, + [6452] = 6247, + [6453] = 6151, + [6454] = 6238, + [6455] = 6411, + [6456] = 6456, + [6457] = 6386, + [6458] = 6458, + [6459] = 6193, [6460] = 6460, - [6461] = 6300, - [6462] = 6297, - [6463] = 6295, - [6464] = 6137, - [6465] = 6046, - [6466] = 6466, - [6467] = 6163, - [6468] = 6059, - [6469] = 6097, - [6470] = 6470, - [6471] = 6471, - [6472] = 6377, - [6473] = 6105, - [6474] = 6038, - [6475] = 6031, - [6476] = 6381, - [6477] = 6382, - [6478] = 6383, + [6461] = 6397, + [6462] = 6462, + [6463] = 6156, + [6464] = 6411, + [6465] = 6161, + [6466] = 6367, + [6467] = 6395, + [6468] = 6149, + [6469] = 6397, + [6470] = 6152, + [6471] = 6144, + [6472] = 6413, + [6473] = 6473, + [6474] = 6208, + [6475] = 6207, + [6476] = 6206, + [6477] = 6477, + [6478] = 6146, [6479] = 6479, - [6480] = 6480, - [6481] = 6386, - [6482] = 6106, - [6483] = 6113, - [6484] = 6115, - [6485] = 6118, - [6486] = 6363, - [6487] = 6362, + [6480] = 6146, + [6481] = 6414, + [6482] = 6482, + [6483] = 6483, + [6484] = 6484, + [6485] = 6205, + [6486] = 6486, + [6487] = 6487, [6488] = 6488, - [6489] = 6067, - [6490] = 6198, - [6491] = 6309, - [6492] = 6093, - [6493] = 6493, - [6494] = 6040, - [6495] = 6401, - [6496] = 6402, - [6497] = 6403, - [6498] = 6404, - [6499] = 6121, - [6500] = 6409, - [6501] = 6501, - [6502] = 6383, - [6503] = 6078, - [6504] = 6091, - [6505] = 6300, - [6506] = 6297, - [6507] = 6295, - [6508] = 6137, - [6509] = 6035, - [6510] = 6080, - [6511] = 6084, + [6489] = 6156, + [6490] = 6490, + [6491] = 6491, + [6492] = 6492, + [6493] = 6154, + [6494] = 6395, + [6495] = 6479, + [6496] = 6153, + [6497] = 6497, + [6498] = 6172, + [6499] = 6340, + [6500] = 6462, + [6501] = 6458, + [6502] = 6412, + [6503] = 6450, + [6504] = 6367, + [6505] = 6149, + [6506] = 6201, + [6507] = 6152, + [6508] = 6147, + [6509] = 6509, + [6510] = 6510, + [6511] = 6511, [6512] = 6512, - [6513] = 6382, - [6514] = 6113, - [6515] = 6377, - [6516] = 6115, - [6517] = 6027, - [6518] = 6091, - [6519] = 6381, - [6520] = 6382, - [6521] = 6383, - [6522] = 6522, - [6523] = 6085, - [6524] = 6386, - [6525] = 6525, - [6526] = 6118, - [6527] = 6121, - [6528] = 6104, - [6529] = 6363, - [6530] = 6362, - [6531] = 6167, - [6532] = 6101, - [6533] = 6107, - [6534] = 6309, - [6535] = 6033, - [6536] = 6037, - [6537] = 6040, - [6538] = 6401, - [6539] = 6402, - [6540] = 6403, - [6541] = 6404, - [6542] = 6042, - [6543] = 6409, - [6544] = 6108, - [6545] = 6110, - [6546] = 6109, - [6547] = 6547, - [6548] = 6300, - [6549] = 6297, - [6550] = 6295, - [6551] = 6137, - [6552] = 6111, - [6553] = 6097, + [6513] = 6513, + [6514] = 6514, + [6515] = 6515, + [6516] = 6516, + [6517] = 6517, + [6518] = 6518, + [6519] = 6374, + [6520] = 6175, + [6521] = 6146, + [6522] = 6374, + [6523] = 6216, + [6524] = 6199, + [6525] = 6180, + [6526] = 6228, + [6527] = 6247, + [6528] = 6191, + [6529] = 6371, + [6530] = 6200, + [6531] = 6213, + [6532] = 6371, + [6533] = 6161, + [6534] = 6191, + [6535] = 6486, + [6536] = 6536, + [6537] = 6364, + [6538] = 6538, + [6539] = 6490, + [6540] = 6491, + [6541] = 6492, + [6542] = 6518, + [6543] = 6159, + [6544] = 6479, + [6545] = 6229, + [6546] = 6357, + [6547] = 6232, + [6548] = 6147, + [6549] = 6462, + [6550] = 6458, + [6551] = 6357, + [6552] = 6552, + [6553] = 6238, [6554] = 6554, - [6555] = 6055, - [6556] = 6047, - [6557] = 6381, - [6558] = 6075, - [6559] = 6381, - [6560] = 31, - [6561] = 6381, - [6562] = 6118, - [6563] = 6381, - [6564] = 6345, - [6565] = 6381, - [6566] = 6063, - [6567] = 6381, - [6568] = 6113, - [6569] = 6381, - [6570] = 6100, - [6571] = 6381, - [6572] = 6105, - [6573] = 6099, - [6574] = 6098, - [6575] = 6053, - [6576] = 6134, - [6577] = 6138, - [6578] = 6139, - [6579] = 6579, - [6580] = 6086, - [6581] = 6047, - [6582] = 6409, - [6583] = 6118, - [6584] = 6118, - [6585] = 6104, - [6586] = 6053, - [6587] = 6118, - [6588] = 6118, - [6589] = 6026, - [6590] = 6150, - [6591] = 6591, - [6592] = 6112, - [6593] = 6118, - [6594] = 6594, - [6595] = 6595, - [6596] = 6058, - [6597] = 6597, - [6598] = 6381, - [6599] = 6327, - [6600] = 6118, - [6601] = 6396, - [6602] = 6376, - [6603] = 6118, - [6604] = 6604, - [6605] = 6121, - [6606] = 6606, - [6607] = 6607, - [6608] = 6608, - [6609] = 6118, - [6610] = 6344, - [6611] = 6611, + [6555] = 6201, + [6556] = 6208, + [6557] = 6386, + [6558] = 6509, + [6559] = 6510, + [6560] = 6511, + [6561] = 6512, + [6562] = 6513, + [6563] = 6514, + [6564] = 6151, + [6565] = 6518, + [6566] = 6150, + [6567] = 6490, + [6568] = 6395, + [6569] = 6569, + [6570] = 6216, + [6571] = 6199, + [6572] = 6180, + [6573] = 6228, + [6574] = 6240, + [6575] = 6235, + [6576] = 6295, + [6577] = 6234, + [6578] = 6492, + [6579] = 6491, + [6580] = 6233, + [6581] = 6486, + [6582] = 6231, + [6583] = 6240, + [6584] = 6142, + [6585] = 6490, + [6586] = 6491, + [6587] = 6492, + [6588] = 6223, + [6589] = 6270, + [6590] = 6479, + [6591] = 6295, + [6592] = 6165, + [6593] = 6593, + [6594] = 6270, + [6595] = 6462, + [6596] = 6458, + [6597] = 6149, + [6598] = 6433, + [6599] = 6152, + [6600] = 6201, + [6601] = 6225, + [6602] = 6225, + [6603] = 6509, + [6604] = 6510, + [6605] = 6511, + [6606] = 6512, + [6607] = 6513, + [6608] = 6516, + [6609] = 6518, + [6610] = 6209, + [6611] = 6204, [6612] = 6612, - [6613] = 6163, - [6614] = 6118, - [6615] = 6407, - [6616] = 6167, - [6617] = 6327, - [6618] = 6118, - [6619] = 6396, - [6620] = 6376, - [6621] = 6621, - [6622] = 6118, + [6613] = 6147, + [6614] = 6216, + [6615] = 6199, + [6616] = 6180, + [6617] = 6228, + [6618] = 6207, + [6619] = 6206, + [6620] = 6181, + [6621] = 6205, + [6622] = 6236, [6623] = 6623, - [6624] = 6606, - [6625] = 6607, - [6626] = 6608, - [6627] = 6406, - [6628] = 6118, - [6629] = 6115, - [6630] = 6405, + [6624] = 6486, + [6625] = 6209, + [6626] = 6147, + [6627] = 6166, + [6628] = 6490, + [6629] = 6491, + [6630] = 6492, [6631] = 6631, - [6632] = 6106, - [6633] = 6105, - [6634] = 6327, - [6635] = 6118, - [6636] = 6396, - [6637] = 6376, - [6638] = 6118, - [6639] = 6639, - [6640] = 6640, - [6641] = 6606, - [6642] = 6607, - [6643] = 6608, - [6644] = 6644, - [6645] = 6645, - [6646] = 6118, - [6647] = 6647, - [6648] = 6648, - [6649] = 6649, - [6650] = 6650, - [6651] = 6327, - [6652] = 6118, - [6653] = 6396, - [6654] = 6376, - [6655] = 6168, - [6656] = 6656, - [6657] = 6107, - [6658] = 6606, - [6659] = 6607, - [6660] = 6608, - [6661] = 6608, - [6662] = 6662, - [6663] = 6118, - [6664] = 6664, - [6665] = 6096, - [6666] = 6607, - [6667] = 6606, - [6668] = 6115, - [6669] = 6113, - [6670] = 6190, - [6671] = 6404, - [6672] = 6182, - [6673] = 6134, - [6674] = 6674, - [6675] = 6118, - [6676] = 6108, - [6677] = 6109, - [6678] = 6118, - [6679] = 6093, - [6680] = 6401, - [6681] = 6201, - [6682] = 6200, - [6683] = 6058, - [6684] = 6403, + [6632] = 6195, + [6633] = 6479, + [6634] = 6144, + [6635] = 6204, + [6636] = 6147, + [6637] = 6637, + [6638] = 6462, + [6639] = 6458, + [6640] = 6397, + [6641] = 6318, + [6642] = 6147, + [6643] = 6201, + [6644] = 6147, + [6645] = 6147, + [6646] = 6509, + [6647] = 6510, + [6648] = 6511, + [6649] = 6512, + [6650] = 6513, + [6651] = 6414, + [6652] = 6518, + [6653] = 6147, + [6654] = 6193, + [6655] = 6175, + [6656] = 6147, + [6657] = 6216, + [6658] = 6199, + [6659] = 6180, + [6660] = 6228, + [6661] = 6211, + [6662] = 6147, + [6663] = 6181, + [6664] = 6147, + [6665] = 6490, + [6666] = 6666, + [6667] = 6490, + [6668] = 6413, + [6669] = 6490, + [6670] = 6147, + [6671] = 6490, + [6672] = 6515, + [6673] = 6490, + [6674] = 6311, + [6675] = 6490, + [6676] = 6490, + [6677] = 6146, + [6678] = 6678, + [6679] = 6490, + [6680] = 6680, + [6681] = 6283, + [6682] = 6514, + [6683] = 6156, + [6684] = 6161, [6685] = 6685, - [6686] = 6077, - [6687] = 6377, - [6688] = 6086, - [6689] = 6190, - [6690] = 6102, - [6691] = 6198, - [6692] = 6118, - [6693] = 6402, - [6694] = 6096, - [6695] = 6182, - [6696] = 6059, - [6697] = 6096, - [6698] = 6106, - [6699] = 6168, - [6700] = 6096, + [6686] = 6686, + [6687] = 6687, + [6688] = 6156, + [6689] = 6283, + [6690] = 6159, + [6691] = 6236, + [6692] = 6147, + [6693] = 6271, + [6694] = 6694, + [6695] = 6695, + [6696] = 6696, + [6697] = 6697, + [6698] = 6174, + [6699] = 6147, + [6700] = 3025, [6701] = 6701, [6702] = 6702, - [6703] = 6703, - [6704] = 6704, + [6703] = 6151, + [6704] = 6150, [6705] = 6705, [6706] = 6706, - [6707] = 6707, + [6707] = 6484, + [6708] = 6176, + [6709] = 6140, + [6710] = 6477, + [6711] = 3022, + [6712] = 6147, + [6713] = 6256, + [6714] = 6714, + [6715] = 6715, + [6716] = 6716, + [6717] = 6252, + [6718] = 6304, + [6719] = 6147, + [6720] = 6720, + [6721] = 6224, + [6722] = 6149, + [6723] = 6158, + [6724] = 6161, + [6725] = 6484, + [6726] = 6152, + [6727] = 6140, + [6728] = 6477, + [6729] = 6156, + [6730] = 6139, + [6731] = 6179, + [6732] = 6714, + [6733] = 6715, + [6734] = 6716, + [6735] = 6147, + [6736] = 6147, + [6737] = 6179, + [6738] = 6738, + [6739] = 6142, + [6740] = 6740, + [6741] = 6224, + [6742] = 6484, + [6743] = 6252, + [6744] = 6140, + [6745] = 6477, + [6746] = 6746, + [6747] = 6139, + [6748] = 6158, + [6749] = 6714, + [6750] = 6715, + [6751] = 6716, + [6752] = 6256, + [6753] = 6271, + [6754] = 6165, + [6755] = 6147, + [6756] = 6678, + [6757] = 6678, + [6758] = 6678, + [6759] = 6149, + [6760] = 6283, + [6761] = 6484, + [6762] = 6762, + [6763] = 6140, + [6764] = 6477, + [6765] = 6765, + [6766] = 6231, + [6767] = 6176, + [6768] = 6714, + [6769] = 6715, + [6770] = 6716, + [6771] = 6174, + [6772] = 6772, + [6773] = 6276, + [6774] = 6152, + [6775] = 6311, + [6776] = 6146, + [6777] = 6147, + [6778] = 51, + [6779] = 6318, + [6780] = 6509, + [6781] = 6175, + [6782] = 6510, + [6783] = 6783, + [6784] = 6784, + [6785] = 6511, + [6786] = 6512, + [6787] = 6166, + [6788] = 6678, + [6789] = 6233, + [6790] = 6234, + [6791] = 6791, + [6792] = 3028, + [6793] = 6513, + [6794] = 6714, + [6795] = 6211, + [6796] = 6486, + [6797] = 6195, + [6798] = 6147, + [6799] = 6166, + [6800] = 6715, + [6801] = 6716, + [6802] = 6193, + [6803] = 6411, + [6804] = 6276, + [6805] = 6147, + [6806] = 6806, + [6807] = 6276, + [6808] = 6235, + [6809] = 6318, + [6810] = 6276, + [6811] = 6811, + [6812] = 6812, + [6813] = 6813, + [6814] = 6814, + [6815] = 6815, + [6816] = 6816, + [6817] = 6817, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -10786,76 +10909,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(1324); - if (lookahead == '"') ADVANCE(2459); - if (lookahead == '&') ADVANCE(1347); - if (lookahead == '\'') ADVANCE(2464); - if (lookahead == '(') ADVANCE(2465); - if (lookahead == ')') ADVANCE(2466); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '.') ADVANCE(1326); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == 'B') ADVANCE(1423); - if (lookahead == 'N') ADVANCE(1408); - if (lookahead == 'S') ADVANCE(1399); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == ']') ADVANCE(2458); - if (lookahead == 'b') ADVANCE(1618); - if (lookahead == 'n') ADVANCE(1623); - if (lookahead == 's') ADVANCE(1626); - if (lookahead == '{') ADVANCE(1343); - if (lookahead == '}') ADVANCE(1348); + if (eof) ADVANCE(1332); + if (lookahead == '"') ADVANCE(2470); + if (lookahead == '&') ADVANCE(1355); + if (lookahead == '\'') ADVANCE(2475); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == ')') ADVANCE(2477); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '.') ADVANCE(1334); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == 'B') ADVANCE(1432); + if (lookahead == 'N') ADVANCE(1416); + if (lookahead == 'S') ADVANCE(1407); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == ']') ADVANCE(2469); + if (lookahead == 'b') ADVANCE(1627); + if (lookahead == 'n') ADVANCE(1632); + if (lookahead == 's') ADVANCE(1637); + if (lookahead == '{') ADVANCE(1351); + if (lookahead == '}') ADVANCE(1356); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1523); + lookahead == 'a') ADVANCE(1532); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1425); + lookahead == 'c') ADVANCE(1434); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1434); + lookahead == 'd') ADVANCE(1443); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1432); + lookahead == 'e') ADVANCE(1441); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1811); + lookahead == 'f') ADVANCE(1822); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1627); + lookahead == 'g') ADVANCE(1638); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1629); + lookahead == 'h') ADVANCE(1640); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1967); + lookahead == 'i') ADVANCE(1978); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1697); + lookahead == 'k') ADVANCE(1708); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1426); + lookahead == 'l') ADVANCE(1435); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1427); + lookahead == 'm') ADVANCE(1436); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1780); + lookahead == 'o') ADVANCE(1791); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1428); + lookahead == 'p') ADVANCE(1437); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2372); + lookahead == 'q') ADVANCE(2383); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1548); + lookahead == 'r') ADVANCE(1557); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1445); + lookahead == 't') ADVANCE(1454); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1999); + lookahead == 'u') ADVANCE(2010); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1447); + lookahead == 'v') ADVANCE(1456); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1818); + lookahead == 'w') ADVANCE(1829); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2680); + lookahead == 'x') ADVANCE(2691); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2681); + lookahead == 'y') ADVANCE(2692); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -10866,8 +10989,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(27); if (('J' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('j' <= lookahead && lookahead <= '|')) ADVANCE(2447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + ('j' <= lookahead && lookahead <= '|')) ADVANCE(2458); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); END_STATE(); case 1: if (lookahead == '\n') SKIP(35) @@ -10891,10 +11014,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(5) END_STATE(); case 7: - if (lookahead == '\n') SKIP(64) + if (lookahead == '\n') SKIP(66) END_STATE(); case 8: - if (lookahead == '\n') SKIP(64) + if (lookahead == '\n') SKIP(66) if (lookahead == '\r') SKIP(7) END_STATE(); case 9: @@ -10912,10 +11035,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(11) END_STATE(); case 13: - if (lookahead == '\n') SKIP(70) + if (lookahead == '\n') SKIP(73) END_STATE(); case 14: - if (lookahead == '\n') SKIP(70) + if (lookahead == '\n') SKIP(73) if (lookahead == '\r') SKIP(13) END_STATE(); case 15: @@ -10934,8 +11057,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 19: if (lookahead == '\n') SKIP(33) - if (lookahead == '\r') ADVANCE(2463); - if (lookahead != 0) ADVANCE(2463); + if (lookahead == '\r') ADVANCE(2474); + if (lookahead != 0) ADVANCE(2474); END_STATE(); case 20: if (lookahead == '\n') SKIP(26) @@ -10945,33 +11068,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(20) END_STATE(); case 22: - if (lookahead == '\n') SKIP(208) + if (lookahead == '\n') SKIP(216) END_STATE(); case 23: - if (lookahead == '\n') SKIP(208) + if (lookahead == '\n') SKIP(216) if (lookahead == '\r') SKIP(22) - if (lookahead == '.') ADVANCE(243); + if (lookahead == '.') ADVANCE(251); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(186); + lookahead == '|') ADVANCE(193); END_STATE(); case 24: - if (lookahead == '\n') ADVANCE(127); + if (lookahead == '\n') ADVANCE(134); if (lookahead == '\r') ADVANCE(25); - if (lookahead == '*') ADVANCE(1341); - if (lookahead != 0) ADVANCE(128); + if (lookahead == '*') ADVANCE(1349); + if (lookahead != 0) ADVANCE(135); END_STATE(); case 25: - if (lookahead == '\n') ADVANCE(127); - if (lookahead == '*') ADVANCE(1341); - if (lookahead != 0) ADVANCE(128); + if (lookahead == '\n') ADVANCE(134); + if (lookahead == '*') ADVANCE(1349); + if (lookahead != 0) ADVANCE(135); END_STATE(); case 26: - if (lookahead == ' ') ADVANCE(2648); - if (lookahead == ')') ADVANCE(2466); - if (lookahead == '/') ADVANCE(126); + if (lookahead == ' ') ADVANCE(2659); + if (lookahead == ')') ADVANCE(2477); + if (lookahead == '/') ADVANCE(133); if (lookahead == '\\') SKIP(21) - if (lookahead == '{') ADVANCE(1343); + if (lookahead == '{') ADVANCE(1351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -10981,75 +11104,75 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(26) END_STATE(); case 27: - if (lookahead == '"') ADVANCE(2459); - if (lookahead == '&') ADVANCE(1347); - if (lookahead == '\'') ADVANCE(2464); - if (lookahead == '(') ADVANCE(2465); - if (lookahead == ')') ADVANCE(2466); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '.') ADVANCE(1326); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == 'B') ADVANCE(1423); - if (lookahead == 'N') ADVANCE(1408); - if (lookahead == 'S') ADVANCE(1399); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == ']') ADVANCE(2458); - if (lookahead == 'b') ADVANCE(1618); - if (lookahead == 'n') ADVANCE(1623); - if (lookahead == 's') ADVANCE(1626); - if (lookahead == '{') ADVANCE(1343); - if (lookahead == '}') ADVANCE(1348); + if (lookahead == '"') ADVANCE(2470); + if (lookahead == '&') ADVANCE(1355); + if (lookahead == '\'') ADVANCE(2475); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == ')') ADVANCE(2477); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '.') ADVANCE(1334); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == 'B') ADVANCE(1432); + if (lookahead == 'N') ADVANCE(1416); + if (lookahead == 'S') ADVANCE(1407); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == ']') ADVANCE(2469); + if (lookahead == 'b') ADVANCE(1627); + if (lookahead == 'n') ADVANCE(1632); + if (lookahead == 's') ADVANCE(1637); + if (lookahead == '{') ADVANCE(1351); + if (lookahead == '}') ADVANCE(1356); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1523); + lookahead == 'a') ADVANCE(1532); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1425); + lookahead == 'c') ADVANCE(1434); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1434); + lookahead == 'd') ADVANCE(1443); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1432); + lookahead == 'e') ADVANCE(1441); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1811); + lookahead == 'f') ADVANCE(1822); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1627); + lookahead == 'g') ADVANCE(1638); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1629); + lookahead == 'h') ADVANCE(1640); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1967); + lookahead == 'i') ADVANCE(1978); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1697); + lookahead == 'k') ADVANCE(1708); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1426); + lookahead == 'l') ADVANCE(1435); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1427); + lookahead == 'm') ADVANCE(1436); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1780); + lookahead == 'o') ADVANCE(1791); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1428); + lookahead == 'p') ADVANCE(1437); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2372); + lookahead == 'q') ADVANCE(2383); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1548); + lookahead == 'r') ADVANCE(1557); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1445); + lookahead == 't') ADVANCE(1454); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1999); + lookahead == 'u') ADVANCE(2010); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1447); + lookahead == 'v') ADVANCE(1456); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1818); + lookahead == 'w') ADVANCE(1829); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2680); + lookahead == 'x') ADVANCE(2691); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2681); + lookahead == 'y') ADVANCE(2692); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -11060,42 +11183,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(27); if (('J' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('j' <= lookahead && lookahead <= '|')) ADVANCE(2447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + ('j' <= lookahead && lookahead <= '|')) ADVANCE(2458); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); END_STATE(); case 28: - if (lookahead == '"') ADVANCE(2459); - if (lookahead == '&') ADVANCE(2498); - if (lookahead == '(') ADVANCE(2465); - if (lookahead == ')') ADVANCE(2466); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == ']') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1343); - if (lookahead == '}') ADVANCE(1348); + if (lookahead == '"') ADVANCE(2470); + if (lookahead == '&') ADVANCE(2509); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == ')') ADVANCE(2477); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == ']') ADVANCE(2469); + if (lookahead == '{') ADVANCE(1351); + if (lookahead == '}') ADVANCE(1356); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1691); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -11106,42 +11229,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(28); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); case 29: - if (lookahead == '"') ADVANCE(2459); - if (lookahead == '&') ADVANCE(2498); - if (lookahead == '(') ADVANCE(2465); - if (lookahead == ')') ADVANCE(2466); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == ']') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1343); - if (lookahead == '}') ADVANCE(1348); + if (lookahead == '"') ADVANCE(2470); + if (lookahead == '&') ADVANCE(2509); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == ')') ADVANCE(2477); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == ']') ADVANCE(2469); + if (lookahead == '{') ADVANCE(1351); + if (lookahead == '}') ADVANCE(1356); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1691); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -11152,23 +11275,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(29); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); case 30: - if (lookahead == '"') ADVANCE(2459); - if (lookahead == '&') ADVANCE(2498); - if (lookahead == '(') ADVANCE(2465); - if (lookahead == ')') ADVANCE(2466); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(126); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); - if (lookahead == '}') ADVANCE(1348); + if (lookahead == '"') ADVANCE(2470); + if (lookahead == '&') ADVANCE(2509); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == ')') ADVANCE(2477); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(133); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); + if (lookahead == '}') ADVANCE(1356); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -11177,101 +11298,95 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2454); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2465); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); case 31: - if (lookahead == '"') ADVANCE(2459); - if (lookahead == '&') ADVANCE(2498); - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'N') ADVANCE(1413); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == 'n') ADVANCE(1680); - if (lookahead == '{') ADVANCE(1343); - if (lookahead == '}') ADVANCE(1348); + if (lookahead == '"') ADVANCE(2470); + if (lookahead == '&') ADVANCE(2509); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == 'N') ADVANCE(1422); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == 'n') ADVANCE(1691); + if (lookahead == '{') ADVANCE(1351); + if (lookahead == '}') ADVANCE(1356); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); - if (lookahead == '\f' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(31) + lookahead == 'm') ADVANCE(1485); if (lookahead == '\t' || lookahead == '\n' || + lookahead == '\f' || lookahead == '\r' || - lookahead == ' ') ADVANCE(31); + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(31) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); case 32: - if (lookahead == '"') ADVANCE(2459); - if (lookahead == '&') ADVANCE(2498); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); - if (lookahead == '}') ADVANCE(1348); + if (lookahead == '"') ADVANCE(2470); + if (lookahead == '&') ADVANCE(2509); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); + if (lookahead == '}') ADVANCE(1356); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1678); - if (lookahead == '\f' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(32) + lookahead == 'n') ADVANCE(1689); if (lookahead == '\t' || lookahead == '\n' || + lookahead == '\f' || lookahead == '\r' || - lookahead == ' ') ADVANCE(32); + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(32) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); case 33: - if (lookahead == '"') ADVANCE(2459); - if (lookahead == '/') ADVANCE(2460); + if (lookahead == '"') ADVANCE(2470); + if (lookahead == '/') ADVANCE(2471); if (lookahead == '\\') ADVANCE(19); - if (lookahead == '{') ADVANCE(1345); + if (lookahead == '{') ADVANCE(1353); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -11279,14 +11394,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(2461); - if (lookahead != 0) ADVANCE(2462); + lookahead == 65279) ADVANCE(2472); + if (lookahead != 0) ADVANCE(2473); END_STATE(); case 34: - if (lookahead == '&') ADVANCE(1347); - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + if (lookahead == '&') ADVANCE(1355); + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -11295,76 +11410,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(34) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2454); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2465); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); case 35: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == ')') ADVANCE(2466); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2478); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'B') ADVANCE(242); - if (lookahead == 'N') ADVANCE(225); - if (lookahead == 'S') ADVANCE(212); - if (lookahead == '[') ADVANCE(2456); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == ')') ADVANCE(2477); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2489); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == 'B') ADVANCE(250); + if (lookahead == 'N') ADVANCE(233); + if (lookahead == 'S') ADVANCE(220); + if (lookahead == '[') ADVANCE(2467); if (lookahead == '\\') SKIP(2) - if (lookahead == ']') ADVANCE(2458); - if (lookahead == 'b') ADVANCE(494); - if (lookahead == 'n') ADVANCE(496); - if (lookahead == 's') ADVANCE(502); - if (lookahead == '{') ADVANCE(1343); - if (lookahead == '}') ADVANCE(1348); + if (lookahead == ']') ADVANCE(2469); + if (lookahead == 'b') ADVANCE(502); + if (lookahead == 'n') ADVANCE(504); + if (lookahead == 's') ADVANCE(510); + if (lookahead == '{') ADVANCE(1351); + if (lookahead == '}') ADVANCE(1356); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(340); + lookahead == 'a') ADVANCE(348); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(244); + lookahead == 'c') ADVANCE(252); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(245); + lookahead == 'd') ADVANCE(253); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(246); + lookahead == 'e') ADVANCE(254); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(684); + lookahead == 'f') ADVANCE(692); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(503); + lookahead == 'g') ADVANCE(511); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(504); + lookahead == 'h') ADVANCE(512); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(822); + lookahead == 'i') ADVANCE(830); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(526); + lookahead == 'k') ADVANCE(534); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(247); + lookahead == 'l') ADVANCE(255); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(248); + lookahead == 'm') ADVANCE(256); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(625); + lookahead == 'o') ADVANCE(633); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(250); + lookahead == 'p') ADVANCE(258); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(365); + lookahead == 'r') ADVANCE(373); if (lookahead == 'T' || - lookahead == 't') ADVANCE(261); + lookahead == 't') ADVANCE(269); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(871); + lookahead == 'u') ADVANCE(879); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(930); + lookahead == 'v') ADVANCE(938); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(664); + lookahead == 'w') ADVANCE(672); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(827); + lookahead == 'x') ADVANCE(835); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2681); + lookahead == 'y') ADVANCE(2692); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -11373,64 +11488,64 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(35); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2454); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2465); END_STATE(); case 36: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == ')') ADVANCE(2466); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2478); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'B') ADVANCE(242); - if (lookahead == 'N') ADVANCE(229); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == ')') ADVANCE(2477); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2489); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == 'B') ADVANCE(250); + if (lookahead == 'N') ADVANCE(237); if (lookahead == '\\') SKIP(4) - if (lookahead == ']') ADVANCE(2458); - if (lookahead == 'b') ADVANCE(494); - if (lookahead == 'n') ADVANCE(497); - if (lookahead == '{') ADVANCE(1343); + if (lookahead == ']') ADVANCE(2469); + if (lookahead == 'b') ADVANCE(502); + if (lookahead == 'n') ADVANCE(505); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(867); + lookahead == 'a') ADVANCE(875); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(929); + lookahead == 'c') ADVANCE(937); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(543); + lookahead == 'd') ADVANCE(551); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(362); + lookahead == 'e') ADVANCE(370); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(687); + lookahead == 'f') ADVANCE(695); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(503); + lookahead == 'g') ADVANCE(511); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(504); + lookahead == 'h') ADVANCE(512); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(873); + lookahead == 'i') ADVANCE(881); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(526); + lookahead == 'k') ADVANCE(534); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(251); + lookahead == 'l') ADVANCE(259); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(249); + lookahead == 'm') ADVANCE(257); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(624); + lookahead == 'o') ADVANCE(632); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(315); + lookahead == 'p') ADVANCE(323); if (lookahead == 'S' || - lookahead == 's') ADVANCE(572); + lookahead == 's') ADVANCE(580); if (lookahead == 'T' || - lookahead == 't') ADVANCE(667); + lookahead == 't') ADVANCE(675); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(877); + lookahead == 'u') ADVANCE(885); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(666); + lookahead == 'w') ADVANCE(674); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(827); + lookahead == 'x') ADVANCE(835); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -11441,61 +11556,61 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(36); END_STATE(); case 37: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == ')') ADVANCE(2466); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2478); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'N') ADVANCE(230); - if (lookahead == '[') ADVANCE(2456); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == ')') ADVANCE(2477); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2489); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == 'N') ADVANCE(238); + if (lookahead == '[') ADVANCE(2467); if (lookahead == '\\') SKIP(6) - if (lookahead == 'n') ADVANCE(498); - if (lookahead == '{') ADVANCE(1343); + if (lookahead == 'n') ADVANCE(506); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(342); + lookahead == 'a') ADVANCE(350); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(492); + lookahead == 'b') ADVANCE(500); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(925); + lookahead == 'c') ADVANCE(933); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(394); + lookahead == 'd') ADVANCE(402); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(868); + lookahead == 'e') ADVANCE(876); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(658); + lookahead == 'f') ADVANCE(666); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(503); + lookahead == 'g') ADVANCE(511); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(504); + lookahead == 'h') ADVANCE(512); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(846); + lookahead == 'i') ADVANCE(854); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(329); + lookahead == 'l') ADVANCE(337); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(252); + lookahead == 'm') ADVANCE(260); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(624); + lookahead == 'o') ADVANCE(632); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(638); + lookahead == 'p') ADVANCE(646); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1265); + lookahead == 'q') ADVANCE(1273); if (lookahead == 'S' || - lookahead == 's') ADVANCE(615); + lookahead == 's') ADVANCE(623); if (lookahead == 'T' || - lookahead == 't') ADVANCE(926); + lookahead == 't') ADVANCE(934); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1121); + lookahead == 'u') ADVANCE(1129); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(682); + lookahead == 'w') ADVANCE(690); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(827); + lookahead == 'x') ADVANCE(835); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -11506,56 +11621,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(37); END_STATE(); case 38: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == ')') ADVANCE(2466); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2478); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'N') ADVANCE(232); - if (lookahead == 'S') ADVANCE(214); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == ')') ADVANCE(2477); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2489); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == 'N') ADVANCE(240); + if (lookahead == 'S') ADVANCE(222); if (lookahead == '\\') SKIP(12) - if (lookahead == 'n') ADVANCE(501); - if (lookahead == 's') ADVANCE(724); - if (lookahead == '{') ADVANCE(1343); + if (lookahead == 'n') ADVANCE(509); + if (lookahead == 's') ADVANCE(732); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(996); + lookahead == 'a') ADVANCE(1004); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(491); + lookahead == 'b') ADVANCE(499); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(314); + lookahead == 'c') ADVANCE(322); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(395); + lookahead == 'd') ADVANCE(403); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(767); + lookahead == 'e') ADVANCE(775); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(659); + lookahead == 'f') ADVANCE(667); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(503); + lookahead == 'g') ADVANCE(511); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(847); + lookahead == 'i') ADVANCE(855); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(329); + lookahead == 'l') ADVANCE(337); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(297); + lookahead == 'm') ADVANCE(305); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1173); + lookahead == 'o') ADVANCE(1181); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(638); + lookahead == 'p') ADVANCE(646); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(366); + lookahead == 'r') ADVANCE(374); if (lookahead == 'T' || - lookahead == 't') ADVANCE(979); + lookahead == 't') ADVANCE(987); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(672); + lookahead == 'w') ADVANCE(680); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2679); + lookahead == 'x') ADVANCE(2690); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -11564,31 +11679,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2454); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2465); END_STATE(); case 39: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == ')') ADVANCE(2466); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '.') ADVANCE(1326); - if (lookahead == '/') ADVANCE(126); - if (lookahead == ':') ADVANCE(1325); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == ')') ADVANCE(2477); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '.') ADVANCE(1334); + if (lookahead == '/') ADVANCE(133); + if (lookahead == ':') ADVANCE(1333); if (lookahead == '\\') SKIP(18) - if (lookahead == '{') ADVANCE(1343); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(995); + lookahead == 'a') ADVANCE(1003); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(734); + lookahead == 'b') ADVANCE(742); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(323); + lookahead == 'c') ADVANCE(331); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(870); + lookahead == 'e') ADVANCE(878); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1253); + lookahead == 'f') ADVANCE(1261); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(685); + lookahead == 'l') ADVANCE(693); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1049); + lookahead == 'p') ADVANCE(1057); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -11599,59 +11714,58 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(39) END_STATE(); case 40: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == ')') ADVANCE(2466); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(126); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '=') ADVANCE(2484); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == ')') ADVANCE(2477); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(133); + if (lookahead == ':') ADVANCE(1333); if (lookahead == '\\') SKIP(10) - if (lookahead == '{') ADVANCE(1343); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(341); + lookahead == 'a') ADVANCE(349); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1083); + lookahead == 'b') ADVANCE(1091); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(932); + lookahead == 'c') ADVANCE(940); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(306); + lookahead == 'd') ADVANCE(314); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(424); + lookahead == 'e') ADVANCE(432); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(744); + lookahead == 'f') ADVANCE(752); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(580); + lookahead == 'g') ADVANCE(588); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(504); + lookahead == 'h') ADVANCE(512); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(830); + lookahead == 'i') ADVANCE(838); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(331); + lookahead == 'l') ADVANCE(339); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(522); + lookahead == 'm') ADVANCE(530); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(509); + lookahead == 'n') ADVANCE(517); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(626); + lookahead == 'o') ADVANCE(634); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(282); + lookahead == 'p') ADVANCE(290); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1268); + lookahead == 'q') ADVANCE(1276); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(510); + lookahead == 'r') ADVANCE(518); if (lookahead == 'S' || - lookahead == 's') ADVANCE(619); + lookahead == 's') ADVANCE(627); if (lookahead == 'T' || - lookahead == 't') ADVANCE(556); + lookahead == 't') ADVANCE(564); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1121); + lookahead == 'u') ADVANCE(1129); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(296); + lookahead == 'v') ADVANCE(304); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(683); + lookahead == 'w') ADVANCE(691); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(827); + lookahead == 'x') ADVANCE(835); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -11662,29 +11776,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(40); END_STATE(); case 41: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == ')') ADVANCE(2466); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(126); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == ')') ADVANCE(2477); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(133); if (lookahead == '\\') SKIP(16) - if (lookahead == '{') ADVANCE(1343); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(997); + lookahead == 'a') ADVANCE(1005); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(734); + lookahead == 'b') ADVANCE(742); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1278); + lookahead == 'e') ADVANCE(1286); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(850); + lookahead == 'i') ADVANCE(858); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(969); + lookahead == 'n') ADVANCE(977); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(851); + lookahead == 'o') ADVANCE(859); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(582); + lookahead == 'p') ADVANCE(590); if (lookahead == 'S' || - lookahead == 's') ADVANCE(584); + lookahead == 's') ADVANCE(592); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -11695,32 +11809,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(41); END_STATE(); case 42: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == ')') ADVANCE(2466); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '/') ADVANCE(126); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == ')') ADVANCE(2477); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '/') ADVANCE(133); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2404); + lookahead == 'a') ADVANCE(2415); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2120); + lookahead == 'c') ADVANCE(2131); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1495); + lookahead == 'd') ADVANCE(1504); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2063); + lookahead == 'i') ADVANCE(2074); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1521); + lookahead == 'm') ADVANCE(1530); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1702); + lookahead == 'n') ADVANCE(1713); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2374); + lookahead == 'o') ADVANCE(2385); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2371); + lookahead == 's') ADVANCE(2382); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1684); + lookahead == 't') ADVANCE(1695); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -11729,30 +11843,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(42) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('b' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); case 43: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == ')') ADVANCE(2466); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '/') ADVANCE(126); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == ')') ADVANCE(2477); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '/') ADVANCE(133); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1495); + lookahead == 'd') ADVANCE(1504); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2063); + lookahead == 'i') ADVANCE(2074); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1702); + lookahead == 'n') ADVANCE(1713); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2374); + lookahead == 'o') ADVANCE(2385); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1685); + lookahead == 't') ADVANCE(1696); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -11761,38 +11875,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(43) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); case 44: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == ')') ADVANCE(2466); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '/') ADVANCE(126); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == ')') ADVANCE(2477); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '/') ADVANCE(133); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2423); + lookahead == 'e') ADVANCE(2434); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2065); + lookahead == 'i') ADVANCE(2076); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1701); + lookahead == 'n') ADVANCE(1712); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1781); + lookahead == 'o') ADVANCE(1792); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1834); + lookahead == 's') ADVANCE(1845); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1685); + lookahead == 't') ADVANCE(1696); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2274); + lookahead == 'u') ADVANCE(2285); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1832); + lookahead == 'w') ADVANCE(1843); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -11801,47 +11915,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(44) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); case 45: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == 'N') ADVANCE(1412); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == ']') ADVANCE(2458); - if (lookahead == 'n') ADVANCE(1625); - if (lookahead == '{') ADVANCE(1343); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == 'N') ADVANCE(1420); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == ']') ADVANCE(2469); + if (lookahead == 'n') ADVANCE(1635); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2065); + lookahead == 'i') ADVANCE(2076); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1685); + lookahead == 't') ADVANCE(1696); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -11850,49 +11964,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(45); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); case 46: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == ']') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1343); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == ']') ADVANCE(2469); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2065); + lookahead == 'i') ADVANCE(2076); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1625); + lookahead == 'n') ADVANCE(1635); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1685); + lookahead == 't') ADVANCE(1696); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -11901,47 +12015,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(46); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); case 47: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == ']') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1343); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == ']') ADVANCE(2469); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2065); + lookahead == 'i') ADVANCE(2076); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1625); + lookahead == 'n') ADVANCE(1635); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1685); + lookahead == 't') ADVANCE(1696); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -11950,47 +12064,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(47); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); case 48: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == ']') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1343); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == ']') ADVANCE(2469); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2065); + lookahead == 'i') ADVANCE(2076); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1624); + lookahead == 'n') ADVANCE(1633); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1685); + lookahead == 't') ADVANCE(1696); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -11999,48 +12113,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(48); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); case 49: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == 'N') ADVANCE(1412); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == 'n') ADVANCE(1625); - if (lookahead == '{') ADVANCE(1343); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == 'N') ADVANCE(1420); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == 'n') ADVANCE(1635); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1621); + lookahead == 'b') ADVANCE(1630); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2065); + lookahead == 'i') ADVANCE(2076); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1998); + lookahead == 'o') ADVANCE(2009); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1685); + lookahead == 't') ADVANCE(1696); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -12049,50 +12163,50 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(49) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); case 50: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1621); + lookahead == 'b') ADVANCE(1630); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2065); + lookahead == 'i') ADVANCE(2076); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1625); + lookahead == 'n') ADVANCE(1635); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1998); + lookahead == 'o') ADVANCE(2009); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1685); + lookahead == 't') ADVANCE(1696); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -12101,48 +12215,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(50) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); case 51: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1621); + lookahead == 'b') ADVANCE(1630); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2065); + lookahead == 'i') ADVANCE(2076); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1625); + lookahead == 'n') ADVANCE(1635); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1998); + lookahead == 'o') ADVANCE(2009); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1685); + lookahead == 't') ADVANCE(1696); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -12151,48 +12265,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(51) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); case 52: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1621); + lookahead == 'b') ADVANCE(1630); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2065); + lookahead == 'i') ADVANCE(2076); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1624); + lookahead == 'n') ADVANCE(1633); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1998); + lookahead == 'o') ADVANCE(2009); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1685); + lookahead == 't') ADVANCE(1696); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -12201,41 +12315,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(52) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); case 53: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'N') ADVANCE(1413); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == 'n') ADVANCE(1680); - if (lookahead == '{') ADVANCE(1343); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == 'N') ADVANCE(1421); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == 'n') ADVANCE(1636); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1830); + lookahead == 'w') ADVANCE(1841); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -12246,38 +12360,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(53); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); case 54: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == 'N') ADVANCE(1421); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == 'n') ADVANCE(1636); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1830); + lookahead == 'm') ADVANCE(1485); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -12288,41 +12400,123 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(54); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); case 55: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1631); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2127); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2179); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1692); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1642); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1485); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1636); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1841); + if (lookahead == '\f' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(55) + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(55); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + END_STATE(); + case 56: + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1631); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2127); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2179); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1692); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1642); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1485); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1636); + if (lookahead == '\f' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(56) + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(56); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + END_STATE(); + case 57: + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2069); + lookahead == 'd') ADVANCE(2080); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1996); + lookahead == 'i') ADVANCE(2007); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1691); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -12330,240 +12524,240 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(55) + lookahead == 65279) SKIP(57) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 56: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == 'N') ADVANCE(1412); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == 'n') ADVANCE(1625); - if (lookahead == '{') ADVANCE(1343); + case 58: + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == 'N') ADVANCE(1420); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == 'n') ADVANCE(1635); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1891); + lookahead == 'f') ADVANCE(1902); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2018); + lookahead == 'i') ADVANCE(2029); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1685); + lookahead == 't') ADVANCE(1696); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(56) + lookahead == 65279) SKIP(58) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(56); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + lookahead == ' ') ADVANCE(58); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 57: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 59: + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1890); + lookahead == 'f') ADVANCE(1901); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2018); + lookahead == 'i') ADVANCE(2029); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1625); + lookahead == 'n') ADVANCE(1635); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1685); + lookahead == 't') ADVANCE(1696); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(57) + lookahead == 65279) SKIP(59) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(57); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + lookahead == ' ') ADVANCE(59); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 58: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 60: + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1891); + lookahead == 'f') ADVANCE(1902); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2018); + lookahead == 'i') ADVANCE(2029); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1625); + lookahead == 'n') ADVANCE(1635); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1685); + lookahead == 't') ADVANCE(1696); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(58) + lookahead == 65279) SKIP(60) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(58); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + lookahead == ' ') ADVANCE(60); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 59: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 61: + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1891); + lookahead == 'f') ADVANCE(1902); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2018); + lookahead == 'i') ADVANCE(2029); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1624); + lookahead == 'n') ADVANCE(1633); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1685); + lookahead == 't') ADVANCE(1696); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(59) + lookahead == 65279) SKIP(61) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(59); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + lookahead == ' ') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 60: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == 'N') ADVANCE(1412); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == 'n') ADVANCE(1625); - if (lookahead == '{') ADVANCE(1343); + case 62: + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == 'N') ADVANCE(1420); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == 'n') ADVANCE(1635); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2065); + lookahead == 'i') ADVANCE(2076); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1683); + lookahead == 't') ADVANCE(1694); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -12571,47 +12765,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(60) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + lookahead == 65279) SKIP(62) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 61: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 63: + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2065); + lookahead == 'i') ADVANCE(2076); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1625); + lookahead == 'n') ADVANCE(1635); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1683); + lookahead == 't') ADVANCE(1694); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -12619,45 +12813,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(61) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + lookahead == 65279) SKIP(63) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 62: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 64: + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2065); + lookahead == 'i') ADVANCE(2076); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1625); + lookahead == 'n') ADVANCE(1635); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1683); + lookahead == 't') ADVANCE(1694); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -12665,45 +12859,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(62) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + lookahead == 65279) SKIP(64) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 63: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 65: + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2065); + lookahead == 'i') ADVANCE(2076); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1624); + lookahead == 'n') ADVANCE(1633); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1683); + lookahead == 't') ADVANCE(1694); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -12711,98 +12905,98 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(63) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + lookahead == 65279) SKIP(65) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 64: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2478); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'S') ADVANCE(213); - if (lookahead == '[') ADVANCE(2456); + case 66: + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2489); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == 'S') ADVANCE(221); + if (lookahead == '[') ADVANCE(2467); if (lookahead == '\\') SKIP(8) - if (lookahead == ']') ADVANCE(2458); - if (lookahead == 's') ADVANCE(521); - if (lookahead == '{') ADVANCE(1343); + if (lookahead == ']') ADVANCE(2469); + if (lookahead == 's') ADVANCE(529); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1254); + lookahead == 'a') ADVANCE(1262); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(493); + lookahead == 'b') ADVANCE(501); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(313); + lookahead == 'c') ADVANCE(321); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(394); + lookahead == 'd') ADVANCE(402); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(869); + lookahead == 'e') ADVANCE(877); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(657); + lookahead == 'f') ADVANCE(665); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(453); + lookahead == 'g') ADVANCE(461); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(504); + lookahead == 'h') ADVANCE(512); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(848); + lookahead == 'i') ADVANCE(856); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(329); + lookahead == 'l') ADVANCE(337); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(297); + lookahead == 'm') ADVANCE(305); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(499); + lookahead == 'n') ADVANCE(507); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(851); + lookahead == 'o') ADVANCE(859); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(280); + lookahead == 'p') ADVANCE(288); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(364); + lookahead == 'r') ADVANCE(372); if (lookahead == 'T' || - lookahead == 't') ADVANCE(980); + lookahead == 't') ADVANCE(988); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(670); + lookahead == 'w') ADVANCE(678); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(827); + lookahead == 'x') ADVANCE(835); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2681); + lookahead == 'y') ADVANCE(2692); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(64) + lookahead == 65279) SKIP(66) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(64); + lookahead == ' ') ADVANCE(66); END_STATE(); - case 65: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '/') ADVANCE(126); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 67: + if (lookahead == '(') ADVANCE(2476); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '/') ADVANCE(133); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2192); + lookahead == 'b') ADVANCE(2203); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2065); + lookahead == 'i') ADVANCE(2076); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1702); + lookahead == 'n') ADVANCE(1713); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1998); + lookahead == 'o') ADVANCE(2009); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1685); + lookahead == 't') ADVANCE(1696); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -12810,127 +13004,152 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(65) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + lookahead == 65279) SKIP(67) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 66: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(126); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == ']') ADVANCE(2458); - if (lookahead == '{') ADVANCE(1343); + case 68: + if (lookahead == '(') ADVANCE(2476); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(133); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1715); + if (lookahead == '\f' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(68) + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(68); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2465); + if (lookahead == '-' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + END_STATE(); + case 69: + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(133); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == ']') ADVANCE(2469); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2065); + lookahead == 'i') ADVANCE(2076); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1702); + lookahead == 'n') ADVANCE(1713); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1685); + lookahead == 't') ADVANCE(1696); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(66) + lookahead == 65279) SKIP(69) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(66); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + lookahead == ' ') ADVANCE(69); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 67: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(126); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 70: + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(133); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2243); + lookahead == 'a') ADVANCE(2254); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1891); + lookahead == 'f') ADVANCE(1902); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2018); + lookahead == 'i') ADVANCE(2029); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1702); + lookahead == 'n') ADVANCE(1713); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1685); + lookahead == 't') ADVANCE(1696); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(67) + lookahead == 65279) SKIP(70) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(67); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + lookahead == ' ') ADVANCE(70); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('b' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 68: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(126); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 71: + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(133); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1891); + lookahead == 'f') ADVANCE(1902); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2018); + lookahead == 'i') ADVANCE(2029); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1702); + lookahead == 'n') ADVANCE(1713); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1685); + lookahead == 't') ADVANCE(1696); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(68) + lookahead == 65279) SKIP(71) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(68); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + lookahead == ' ') ADVANCE(71); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 69: - if (lookahead == '(') ADVANCE(2465); - if (lookahead == '-') ADVANCE(2469); - if (lookahead == '/') ADVANCE(126); - if (lookahead == '?') ADVANCE(2451); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 72: + if (lookahead == '(') ADVANCE(2476); + if (lookahead == '-') ADVANCE(2480); + if (lookahead == '/') ADVANCE(133); + if (lookahead == '?') ADVANCE(2462); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2065); + lookahead == 'i') ADVANCE(2076); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1702); + lookahead == 'n') ADVANCE(1713); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1683); + lookahead == 't') ADVANCE(1694); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -12938,94 +13157,94 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(69) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2453); + lookahead == 65279) SKIP(72) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2464); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 70: - if (lookahead == ')') ADVANCE(2466); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2478); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'N') ADVANCE(231); + case 73: + if (lookahead == ')') ADVANCE(2477); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2489); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == 'N') ADVANCE(239); if (lookahead == '\\') SKIP(14) - if (lookahead == 'n') ADVANCE(500); - if (lookahead == '{') ADVANCE(1343); + if (lookahead == 'n') ADVANCE(508); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(994); + lookahead == 'a') ADVANCE(1002); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(495); + lookahead == 'b') ADVANCE(503); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(937); + lookahead == 'c') ADVANCE(945); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(543); + lookahead == 'd') ADVANCE(551); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1024); + lookahead == 'e') ADVANCE(1032); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(741); + lookahead == 'f') ADVANCE(749); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(453); + lookahead == 'g') ADVANCE(461); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(504); + lookahead == 'h') ADVANCE(512); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(873); + lookahead == 'i') ADVANCE(881); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(330); + lookahead == 'l') ADVANCE(338); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(298); + lookahead == 'm') ADVANCE(306); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(281); + lookahead == 'p') ADVANCE(289); if (lookahead == 'S' || - lookahead == 's') ADVANCE(520); + lookahead == 's') ADVANCE(528); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(827); + lookahead == 'x') ADVANCE(835); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(70) + lookahead == 65279) SKIP(73) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(70); + lookahead == ' ') ADVANCE(73); END_STATE(); - case 71: - if (lookahead == ')') ADVANCE(2466); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 74: + if (lookahead == ')') ADVANCE(2477); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1636); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13033,46 +13252,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(71) + lookahead == 65279) SKIP(74) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 72: - if (lookahead == ')') ADVANCE(2466); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 75: + if (lookahead == ')') ADVANCE(2477); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2166); + lookahead == 'e') ADVANCE(2177); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1677); + lookahead == 'n') ADVANCE(1688); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1781); + lookahead == 'o') ADVANCE(1792); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1834); + lookahead == 's') ADVANCE(1845); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2274); + lookahead == 'u') ADVANCE(2285); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1832); + lookahead == 'w') ADVANCE(1843); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13080,44 +13299,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(72) + lookahead == 65279) SKIP(75) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 73: - if (lookahead == ')') ADVANCE(2466); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 76: + if (lookahead == ')') ADVANCE(2477); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2166); + lookahead == 'e') ADVANCE(2177); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1677); + lookahead == 'n') ADVANCE(1688); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1781); + lookahead == 'o') ADVANCE(1792); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1834); + lookahead == 's') ADVANCE(1845); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2274); + lookahead == 'u') ADVANCE(2285); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1832); + lookahead == 'w') ADVANCE(1843); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13125,22 +13344,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(73) + lookahead == 65279) SKIP(76) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 74: - if (lookahead == ')') ADVANCE(2466); - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 77: + if (lookahead == ')') ADVANCE(2477); + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2065); + lookahead == 'i') ADVANCE(2076); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2374); + lookahead == 'o') ADVANCE(2385); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13148,128 +13367,206 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(74) + lookahead == 65279) SKIP(77) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 75: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 78: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1636); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1830); + lookahead == 'w') ADVANCE(1841); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(75) + lookahead == 65279) SKIP(78) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(75); + lookahead == ' ') ADVANCE(78); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 76: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 79: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1631); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2127); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2179); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2240); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1692); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1642); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1485); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1636); + if (lookahead == '\f' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(79) + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(79); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + END_STATE(); + case 80: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1678); + lookahead == 'n') ADVANCE(1634); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1830); + lookahead == 'w') ADVANCE(1841); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(76) + lookahead == 65279) SKIP(80) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(76); + lookahead == ' ') ADVANCE(80); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 77: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 81: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1631); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2127); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2179); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1692); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1642); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1485); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1634); + if (lookahead == '\f' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(81) + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(81); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + END_STATE(); + case 82: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1621); + lookahead == 'b') ADVANCE(1630); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2166); + lookahead == 'e') ADVANCE(2177); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1677); + lookahead == 'n') ADVANCE(1688); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1998); + lookahead == 'o') ADVANCE(2009); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1834); + lookahead == 's') ADVANCE(1845); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2274); + lookahead == 'u') ADVANCE(2285); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13277,43 +13574,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(77) + lookahead == 65279) SKIP(82) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 78: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 83: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1621); + lookahead == 'b') ADVANCE(1630); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2166); + lookahead == 'e') ADVANCE(2177); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1677); + lookahead == 'n') ADVANCE(1688); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1998); + lookahead == 'o') ADVANCE(2009); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1834); + lookahead == 's') ADVANCE(1845); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2274); + lookahead == 'u') ADVANCE(2285); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13321,42 +13618,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(78) + lookahead == 65279) SKIP(83) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 79: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'N') ADVANCE(1413); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == 'n') ADVANCE(1680); - if (lookahead == '{') ADVANCE(1343); + case 84: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == 'N') ADVANCE(1422); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == 'n') ADVANCE(1691); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2069); + lookahead == 'd') ADVANCE(2080); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1996); + lookahead == 'i') ADVANCE(2007); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13364,42 +13661,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(79) + lookahead == 65279) SKIP(84) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 80: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 85: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2034); + lookahead == 'a') ADVANCE(2045); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1691); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1781); + lookahead == 'o') ADVANCE(1792); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13407,40 +13704,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(80) + lookahead == 65279) SKIP(85) if (('D' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('d' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 81: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 86: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2034); + lookahead == 'a') ADVANCE(2045); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1691); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1781); + lookahead == 'o') ADVANCE(1792); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13448,42 +13745,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(81) + lookahead == 65279) SKIP(86) if (('D' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('d' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 82: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 87: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2069); + lookahead == 'd') ADVANCE(2080); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1996); + lookahead == 'i') ADVANCE(2007); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1678); + lookahead == 'n') ADVANCE(1689); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13491,1110 +13788,1190 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(82) + lookahead == 65279) SKIP(87) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 83: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'N') ADVANCE(1413); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == 'n') ADVANCE(1680); - if (lookahead == '{') ADVANCE(1343); + case 88: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == 'N') ADVANCE(1421); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == 'n') ADVANCE(1636); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1830); + lookahead == 'w') ADVANCE(1841); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(83) + lookahead == 65279) SKIP(88) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(83); + lookahead == ' ') ADVANCE(88); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 84: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'N') ADVANCE(1413); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == 'n') ADVANCE(1680); - if (lookahead == '{') ADVANCE(1343); + case 89: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == 'N') ADVANCE(1421); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == 'n') ADVANCE(1636); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(84) + lookahead == 65279) SKIP(89) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(84); + lookahead == ' ') ADVANCE(89); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 85: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'N') ADVANCE(1415); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == 'n') ADVANCE(1678); - if (lookahead == '{') ADVANCE(1343); + case 90: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == 'N') ADVANCE(1424); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == 'n') ADVANCE(1634); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1830); + lookahead == 'w') ADVANCE(1841); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(85) + lookahead == 65279) SKIP(90) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(85); + lookahead == ' ') ADVANCE(90); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 86: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'N') ADVANCE(1415); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == 'n') ADVANCE(1678); - if (lookahead == '{') ADVANCE(1343); + case 91: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == 'N') ADVANCE(1424); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == 'n') ADVANCE(1634); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(86) + lookahead == 65279) SKIP(91) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(86); + lookahead == ' ') ADVANCE(91); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 87: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 92: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2138); + lookahead == 'a') ADVANCE(2149); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1620); + lookahead == 'b') ADVANCE(1629); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2077); + lookahead == 'c') ADVANCE(2088); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1541); + lookahead == 'e') ADVANCE(1550); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1697); + lookahead == 'k') ADVANCE(1708); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1474); + lookahead == 'l') ADVANCE(1483); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1444); + lookahead == 'm') ADVANCE(1453); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1674); + lookahead == 'n') ADVANCE(1685); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1506); + lookahead == 'p') ADVANCE(1515); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2078); + lookahead == 's') ADVANCE(2089); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2027); + lookahead == 'u') ADVANCE(2038); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(87) + lookahead == 65279) SKIP(92) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(87); + lookahead == ' ') ADVANCE(92); if (('D' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('d' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 88: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 93: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2138); + lookahead == 'a') ADVANCE(2149); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1620); + lookahead == 'b') ADVANCE(1629); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2077); + lookahead == 'c') ADVANCE(2088); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1541); + lookahead == 'e') ADVANCE(1550); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1697); + lookahead == 'k') ADVANCE(1708); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1474); + lookahead == 'l') ADVANCE(1483); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1444); + lookahead == 'm') ADVANCE(1453); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1674); + lookahead == 'n') ADVANCE(1685); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1506); + lookahead == 'p') ADVANCE(1515); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2027); + lookahead == 'u') ADVANCE(2038); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(88) + lookahead == 65279) SKIP(93) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(88); + lookahead == ' ') ADVANCE(93); if (('D' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('d' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 89: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 94: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2138); + lookahead == 'a') ADVANCE(2149); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1620); + lookahead == 'b') ADVANCE(1629); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2077); + lookahead == 'c') ADVANCE(2088); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1541); + lookahead == 'e') ADVANCE(1550); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1697); + lookahead == 'k') ADVANCE(1708); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1474); + lookahead == 'l') ADVANCE(1483); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1444); + lookahead == 'm') ADVANCE(1453); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1674); + lookahead == 'n') ADVANCE(1685); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1506); + lookahead == 'p') ADVANCE(1515); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2078); + lookahead == 's') ADVANCE(2089); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2027); + lookahead == 'u') ADVANCE(2038); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(89) + lookahead == 65279) SKIP(94) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(89); + lookahead == ' ') ADVANCE(94); if (('D' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('d' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 90: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 95: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2138); + lookahead == 'a') ADVANCE(2149); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1620); + lookahead == 'b') ADVANCE(1629); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2077); + lookahead == 'c') ADVANCE(2088); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1541); + lookahead == 'e') ADVANCE(1550); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1697); + lookahead == 'k') ADVANCE(1708); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1474); + lookahead == 'l') ADVANCE(1483); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1444); + lookahead == 'm') ADVANCE(1453); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1674); + lookahead == 'n') ADVANCE(1685); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1506); + lookahead == 'p') ADVANCE(1515); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2027); + lookahead == 'u') ADVANCE(2038); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(90) + lookahead == 65279) SKIP(95) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(90); + lookahead == ' ') ADVANCE(95); if (('D' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('d' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 91: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 96: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2401); + lookahead == 'a') ADVANCE(2412); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1619); + lookahead == 'b') ADVANCE(1628); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2129); + lookahead == 'c') ADVANCE(2140); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1540); + lookahead == 'd') ADVANCE(1549); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1812); + lookahead == 'f') ADVANCE(1823); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1992); + lookahead == 'i') ADVANCE(2003); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1510); + lookahead == 'l') ADVANCE(1519); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1475); + lookahead == 'm') ADVANCE(1484); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1673); + lookahead == 'n') ADVANCE(1684); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1794); + lookahead == 'p') ADVANCE(1805); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1878); + lookahead == 's') ADVANCE(1889); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2121); + lookahead == 't') ADVANCE(2132); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(91) + lookahead == 65279) SKIP(96) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(91); + lookahead == ' ') ADVANCE(96); if (('H' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('h' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('h' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 92: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 97: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2401); + lookahead == 'a') ADVANCE(2412); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1619); + lookahead == 'b') ADVANCE(1628); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2129); + lookahead == 'c') ADVANCE(2140); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1540); + lookahead == 'd') ADVANCE(1549); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1813); + lookahead == 'f') ADVANCE(1824); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1992); + lookahead == 'i') ADVANCE(2003); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1510); + lookahead == 'l') ADVANCE(1519); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1475); + lookahead == 'm') ADVANCE(1484); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1673); + lookahead == 'n') ADVANCE(1684); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1794); + lookahead == 'p') ADVANCE(1805); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1878); + lookahead == 's') ADVANCE(1889); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2121); + lookahead == 't') ADVANCE(2132); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(92) + lookahead == 65279) SKIP(97) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(92); + lookahead == ' ') ADVANCE(97); if (('H' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('h' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('h' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 93: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 98: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1620); + lookahead == 'b') ADVANCE(1629); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2118); + lookahead == 'c') ADVANCE(2129); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1541); + lookahead == 'e') ADVANCE(1550); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1630); + lookahead == 'l') ADVANCE(1641); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1444); + lookahead == 'm') ADVANCE(1453); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1675); + lookahead == 'n') ADVANCE(1686); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2078); + lookahead == 's') ADVANCE(2089); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2027); + lookahead == 'u') ADVANCE(2038); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(93) + lookahead == 65279) SKIP(98) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(93); + lookahead == ' ') ADVANCE(98); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 94: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 99: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1620); + lookahead == 'b') ADVANCE(1629); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2118); + lookahead == 'c') ADVANCE(2129); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1541); + lookahead == 'e') ADVANCE(1550); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1630); + lookahead == 'l') ADVANCE(1641); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1444); + lookahead == 'm') ADVANCE(1453); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1675); + lookahead == 'n') ADVANCE(1686); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2027); + lookahead == 'u') ADVANCE(2038); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(94) + lookahead == 65279) SKIP(99) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(94); + lookahead == ' ') ADVANCE(99); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 95: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 100: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1620); + lookahead == 'b') ADVANCE(1629); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2118); + lookahead == 'c') ADVANCE(2129); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1541); + lookahead == 'e') ADVANCE(1550); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1630); + lookahead == 'l') ADVANCE(1641); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1444); + lookahead == 'm') ADVANCE(1453); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1675); + lookahead == 'n') ADVANCE(1686); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2078); + lookahead == 's') ADVANCE(2089); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2027); + lookahead == 'u') ADVANCE(2038); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(95) + lookahead == 65279) SKIP(100) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(95); + lookahead == ' ') ADVANCE(100); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 96: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 101: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1620); + lookahead == 'b') ADVANCE(1629); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2118); + lookahead == 'c') ADVANCE(2129); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1541); + lookahead == 'e') ADVANCE(1550); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1630); + lookahead == 'l') ADVANCE(1641); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1444); + lookahead == 'm') ADVANCE(1453); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1675); + lookahead == 'n') ADVANCE(1686); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2027); + lookahead == 'u') ADVANCE(2038); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(96) + lookahead == 65279) SKIP(101) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(96); + lookahead == ' ') ADVANCE(101); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 97: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 102: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2080); + lookahead == 'c') ADVANCE(2091); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1726); + lookahead == 'd') ADVANCE(1737); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2167); + lookahead == 'e') ADVANCE(2178); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1888); + lookahead == 'f') ADVANCE(1899); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1629); + lookahead == 'h') ADVANCE(1640); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2020); + lookahead == 'i') ADVANCE(2031); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1511); + lookahead == 'l') ADVANCE(1520); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1679); + lookahead == 'n') ADVANCE(1690); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1750); + lookahead == 's') ADVANCE(1761); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1976); + lookahead == 'x') ADVANCE(1987); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(97) + lookahead == 65279) SKIP(102) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(97); + lookahead == ' ') ADVANCE(102); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 98: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 103: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2080); + lookahead == 'c') ADVANCE(2091); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1726); + lookahead == 'd') ADVANCE(1737); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2167); + lookahead == 'e') ADVANCE(2178); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1888); + lookahead == 'f') ADVANCE(1899); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1629); + lookahead == 'h') ADVANCE(1640); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2057); + lookahead == 'i') ADVANCE(2068); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1511); + lookahead == 'l') ADVANCE(1520); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1679); + lookahead == 'n') ADVANCE(1690); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1750); + lookahead == 's') ADVANCE(1761); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1976); + lookahead == 'x') ADVANCE(1987); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(98) + lookahead == 65279) SKIP(103) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(98); + lookahead == ' ') ADVANCE(103); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 99: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 104: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2080); + lookahead == 'c') ADVANCE(2091); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1726); + lookahead == 'd') ADVANCE(1737); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2167); + lookahead == 'e') ADVANCE(2178); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2132); + lookahead == 'f') ADVANCE(2143); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2057); + lookahead == 'i') ADVANCE(2068); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1511); + lookahead == 'l') ADVANCE(1520); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1676); + lookahead == 'n') ADVANCE(1687); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(99) + lookahead == 65279) SKIP(104) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(99); + lookahead == ' ') ADVANCE(104); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 100: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 105: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2080); + lookahead == 'c') ADVANCE(2091); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1726); + lookahead == 'd') ADVANCE(1737); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2167); + lookahead == 'e') ADVANCE(2178); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1889); + lookahead == 'f') ADVANCE(1900); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1629); + lookahead == 'h') ADVANCE(1640); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2020); + lookahead == 'i') ADVANCE(2031); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1511); + lookahead == 'l') ADVANCE(1520); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1679); + lookahead == 'n') ADVANCE(1690); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1750); + lookahead == 's') ADVANCE(1761); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1976); + lookahead == 'x') ADVANCE(1987); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(100) + lookahead == 65279) SKIP(105) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(100); + lookahead == ' ') ADVANCE(105); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 101: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 106: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2080); + lookahead == 'c') ADVANCE(2091); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1726); + lookahead == 'd') ADVANCE(1737); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2167); + lookahead == 'e') ADVANCE(2178); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1889); + lookahead == 'f') ADVANCE(1900); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1629); + lookahead == 'h') ADVANCE(1640); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2057); + lookahead == 'i') ADVANCE(2068); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1511); + lookahead == 'l') ADVANCE(1520); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1679); + lookahead == 'n') ADVANCE(1690); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1750); + lookahead == 's') ADVANCE(1761); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1976); + lookahead == 'x') ADVANCE(1987); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(101) + lookahead == 65279) SKIP(106) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(101); + lookahead == ' ') ADVANCE(106); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 102: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 107: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2080); + lookahead == 'c') ADVANCE(2091); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1726); + lookahead == 'd') ADVANCE(1737); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2167); + lookahead == 'e') ADVANCE(2178); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2133); + lookahead == 'f') ADVANCE(2144); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2057); + lookahead == 'i') ADVANCE(2068); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1511); + lookahead == 'l') ADVANCE(1520); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1676); + lookahead == 'n') ADVANCE(1687); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(102) + lookahead == 65279) SKIP(107) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(102); + lookahead == ' ') ADVANCE(107); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 103: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 108: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1726); + lookahead == 'd') ADVANCE(1737); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2167); + lookahead == 'e') ADVANCE(2178); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1628); + lookahead == 'g') ADVANCE(1639); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2057); + lookahead == 'i') ADVANCE(2068); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1676); + lookahead == 'n') ADVANCE(1687); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1462); + lookahead == 'p') ADVANCE(1471); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1752); + lookahead == 's') ADVANCE(1763); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(103) + lookahead == 65279) SKIP(108) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(103); + lookahead == ' ') ADVANCE(108); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 104: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 109: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1726); + lookahead == 'd') ADVANCE(1737); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2167); + lookahead == 'e') ADVANCE(2178); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1628); + lookahead == 'g') ADVANCE(1639); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2057); + lookahead == 'i') ADVANCE(2068); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1676); + lookahead == 'n') ADVANCE(1687); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1462); + lookahead == 'p') ADVANCE(1471); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1752); + lookahead == 's') ADVANCE(1763); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(104) + lookahead == 65279) SKIP(109) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(104); + lookahead == ' ') ADVANCE(109); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 105: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 110: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1631); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2127); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2179); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2240); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1692); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1642); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1485); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1691); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1841); + if (lookahead == '\f' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(110) + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(110); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + END_STATE(); + case 111: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1631); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2127); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2179); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1692); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1642); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1485); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1691); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1841); + if (lookahead == '\f' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(111) + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(111); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + END_STATE(); + case 112: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2166); + lookahead == 'e') ADVANCE(2177); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1677); + lookahead == 'n') ADVANCE(1688); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1834); + lookahead == 's') ADVANCE(1845); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2274); + lookahead == 'u') ADVANCE(2285); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(105) + lookahead == 65279) SKIP(112) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(105); + lookahead == ' ') ADVANCE(112); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 106: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 113: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2166); + lookahead == 'e') ADVANCE(2177); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1677); + lookahead == 'n') ADVANCE(1688); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1834); + lookahead == 's') ADVANCE(1845); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2274); + lookahead == 'u') ADVANCE(2285); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(106) + lookahead == 65279) SKIP(113) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(106); + lookahead == ' ') ADVANCE(113); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 107: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'B') ADVANCE(1424); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == 'b') ADVANCE(1622); - if (lookahead == '{') ADVANCE(1343); + case 114: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == 'B') ADVANCE(1433); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == 'b') ADVANCE(1631); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1994); + lookahead == 'e') ADVANCE(2005); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1691); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1998); + lookahead == 'o') ADVANCE(2009); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1835); + lookahead == 'w') ADVANCE(1846); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -14602,40 +14979,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(107) + lookahead == 65279) SKIP(114) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 108: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'B') ADVANCE(1424); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == 'b') ADVANCE(1622); - if (lookahead == '{') ADVANCE(1343); + case 115: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == 'B') ADVANCE(1433); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == 'b') ADVANCE(1631); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1994); + lookahead == 'e') ADVANCE(2005); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1691); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1998); + lookahead == 'o') ADVANCE(2009); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1835); + lookahead == 'w') ADVANCE(1846); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -14643,46 +15020,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(108) + lookahead == 65279) SKIP(115) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 109: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'B') ADVANCE(1424); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == 'b') ADVANCE(1622); - if (lookahead == '{') ADVANCE(1343); + case 116: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == 'B') ADVANCE(1433); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == 'b') ADVANCE(1631); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1691); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1998); + lookahead == 'o') ADVANCE(2009); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2358); + lookahead == 's') ADVANCE(2369); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2193); + lookahead == 't') ADVANCE(2204); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1836); + lookahead == 'w') ADVANCE(1847); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -14690,44 +15067,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(109) + lookahead == 65279) SKIP(116) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 110: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'B') ADVANCE(1424); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == 'b') ADVANCE(1622); - if (lookahead == '{') ADVANCE(1343); + case 117: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == 'B') ADVANCE(1433); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == 'b') ADVANCE(1631); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1691); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1998); + lookahead == 'o') ADVANCE(2009); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2358); + lookahead == 's') ADVANCE(2369); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2193); + lookahead == 't') ADVANCE(2204); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1836); + lookahead == 'w') ADVANCE(1847); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -14735,42 +15112,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(110) + lookahead == 65279) SKIP(117) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 111: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 118: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1994); + lookahead == 'e') ADVANCE(2005); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1691); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1998); + lookahead == 'o') ADVANCE(2009); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1845); + lookahead == 'w') ADVANCE(1856); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -14778,40 +15155,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(111) + lookahead == 65279) SKIP(118) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 112: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 119: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1994); + lookahead == 'e') ADVANCE(2005); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1691); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1998); + lookahead == 'o') ADVANCE(2009); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1845); + lookahead == 'w') ADVANCE(1856); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -14819,44 +15196,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(112) + lookahead == 65279) SKIP(119) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 113: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 120: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1691); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1998); + lookahead == 'o') ADVANCE(2009); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2358); + lookahead == 's') ADVANCE(2369); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2193); + lookahead == 't') ADVANCE(2204); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -14864,40 +15241,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(113) + lookahead == 65279) SKIP(120) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 114: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 121: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1691); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1998); + lookahead == 'o') ADVANCE(2009); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -14905,42 +15282,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(114) + lookahead == 65279) SKIP(121) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 115: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 122: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1691); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1998); + lookahead == 'o') ADVANCE(2009); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2358); + lookahead == 's') ADVANCE(2369); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2193); + lookahead == 't') ADVANCE(2204); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -14948,38 +15325,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(115) + lookahead == 65279) SKIP(122) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 116: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 123: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1691); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1998); + lookahead == 'o') ADVANCE(2009); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -14987,37 +15364,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(116) + lookahead == 65279) SKIP(123) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 117: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 124: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1920); + lookahead == 'e') ADVANCE(1931); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1691); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15025,35 +15402,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(117) + lookahead == 65279) SKIP(124) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 118: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 125: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1920); + lookahead == 'e') ADVANCE(1931); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1691); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15061,41 +15438,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(118) + lookahead == 65279) SKIP(125) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 119: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 126: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1691); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2070); + lookahead == 't') ADVANCE(2081); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1830); + lookahead == 'w') ADVANCE(1841); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15103,39 +15480,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(119) + lookahead == 65279) SKIP(126) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 120: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 127: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1691); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2070); + lookahead == 't') ADVANCE(2081); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15143,39 +15520,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(120) + lookahead == 65279) SKIP(127) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 121: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 128: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1691); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1829); + lookahead == 't') ADVANCE(1840); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15183,39 +15560,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(121) + lookahead == 65279) SKIP(128) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 122: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 129: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1691); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2070); + lookahead == 't') ADVANCE(2081); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1830); + lookahead == 'w') ADVANCE(1841); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15223,37 +15600,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(122) + lookahead == 65279) SKIP(129) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 123: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 130: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1691); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2070); + lookahead == 't') ADVANCE(2081); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15261,37 +15638,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(123) + lookahead == 65279) SKIP(130) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 124: - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == '-') ADVANCE(2479); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 131: + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == '-') ADVANCE(2490); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1622); + lookahead == 'b') ADVANCE(1631); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2116); + lookahead == 'c') ADVANCE(2127); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2168); + lookahead == 'e') ADVANCE(2179); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1681); + lookahead == 'g') ADVANCE(1692); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1631); + lookahead == 'l') ADVANCE(1642); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1476); + lookahead == 'm') ADVANCE(1485); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1680); + lookahead == 'n') ADVANCE(1691); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1829); + lookahead == 't') ADVANCE(1840); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15299,28 +15676,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(124) + lookahead == 65279) SKIP(131) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 125: - if (lookahead == '*') ADVANCE(1337); - if (lookahead == '.') ADVANCE(243); - if (lookahead == '/') ADVANCE(1330); + case 132: + if (lookahead == '*') ADVANCE(1345); + if (lookahead == '.') ADVANCE(251); + if (lookahead == '/') ADVANCE(1338); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(186); + lookahead == '|') ADVANCE(193); END_STATE(); - case 126: - if (lookahead == '*') ADVANCE(1337); - if (lookahead == '/') ADVANCE(1328); + case 133: + if (lookahead == '*') ADVANCE(1345); + if (lookahead == '/') ADVANCE(1336); END_STATE(); - case 127: - if (lookahead == '*') ADVANCE(1341); - if (lookahead == '/') ADVANCE(129); + case 134: + if (lookahead == '*') ADVANCE(1349); + if (lookahead == '/') ADVANCE(136); if (lookahead == '\\') ADVANCE(24); - if (lookahead == '{') ADVANCE(1344); + if (lookahead == '{') ADVANCE(1352); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15328,26 +15705,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(127); - if (lookahead != 0) ADVANCE(128); + lookahead == 65279) ADVANCE(134); + if (lookahead != 0) ADVANCE(135); END_STATE(); - case 128: - if (lookahead == '*') ADVANCE(1341); - if (lookahead != 0) ADVANCE(128); + case 135: + if (lookahead == '*') ADVANCE(1349); + if (lookahead != 0) ADVANCE(135); END_STATE(); - case 129: - if (lookahead == '*') ADVANCE(1338); - if (lookahead == '/') ADVANCE(1329); - if (lookahead != 0) ADVANCE(128); + case 136: + if (lookahead == '*') ADVANCE(1346); + if (lookahead == '/') ADVANCE(1337); + if (lookahead != 0) ADVANCE(135); END_STATE(); - case 130: - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '/') ADVANCE(126); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 137: + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '/') ADVANCE(133); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1998); + lookahead == 'o') ADVANCE(2009); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15355,23 +15732,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(130) + lookahead == 65279) SKIP(137) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 131: - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 138: + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2069); + lookahead == 'd') ADVANCE(2080); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1996); + lookahead == 'i') ADVANCE(2007); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15379,256 +15756,259 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(131) + lookahead == 65279) SKIP(138) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); - END_STATE(); - case 132: - if (lookahead == '-') ADVANCE(215); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2470); - END_STATE(); - case 133: - if (lookahead == '-') ADVANCE(260); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2470); - END_STATE(); - case 134: - if (lookahead == '-') ADVANCE(699); - END_STATE(); - case 135: - if (lookahead == '-') ADVANCE(435); - END_STATE(); - case 136: - if (lookahead == '-') ADVANCE(1084); - END_STATE(); - case 137: - if (lookahead == '-') ADVANCE(1084); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(583); - END_STATE(); - case 138: - if (lookahead == '-') ADVANCE(894); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); case 139: - if (lookahead == '-') ADVANCE(676); + if (lookahead == '-') ADVANCE(223); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2481); END_STATE(); case 140: - if (lookahead == '-') ADVANCE(216); + if (lookahead == '-') ADVANCE(268); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2470); + lookahead == 't') ADVANCE(2481); END_STATE(); case 141: - if (lookahead == '-') ADVANCE(372); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2470); + if (lookahead == '-') ADVANCE(707); END_STATE(); case 142: - if (lookahead == '-') ADVANCE(219); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2470); + if (lookahead == '-') ADVANCE(443); END_STATE(); case 143: - if (lookahead == '-') ADVANCE(410); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2470); + if (lookahead == '-') ADVANCE(1092); END_STATE(); case 144: - if (lookahead == '-') ADVANCE(309); + if (lookahead == '-') ADVANCE(1092); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(591); END_STATE(); case 145: - if (lookahead == '-') ADVANCE(603); + if (lookahead == '-') ADVANCE(902); END_STATE(); case 146: - if (lookahead == '-') ADVANCE(211); + if (lookahead == '-') ADVANCE(684); END_STATE(); case 147: - if (lookahead == '-') ADVANCE(411); + if (lookahead == '-') ADVANCE(224); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2470); + lookahead == 't') ADVANCE(2481); END_STATE(); case 148: - if (lookahead == '-') ADVANCE(574); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(180); + if (lookahead == '-') ADVANCE(380); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2470); + lookahead == 't') ADVANCE(2481); END_STATE(); case 149: - if (lookahead == '-') ADVANCE(217); + if (lookahead == '-') ADVANCE(227); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2481); END_STATE(); case 150: - if (lookahead == '-') ADVANCE(1078); + if (lookahead == '-') ADVANCE(418); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2481); END_STATE(); case 151: - if (lookahead == '-') ADVANCE(218); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2470); + if (lookahead == '-') ADVANCE(317); END_STATE(); case 152: - if (lookahead == '-') ADVANCE(374); + if (lookahead == '-') ADVANCE(611); END_STATE(); case 153: - if (lookahead == '-') ADVANCE(412); + if (lookahead == '-') ADVANCE(219); END_STATE(); case 154: - if (lookahead == '-') ADVANCE(346); + if (lookahead == '-') ADVANCE(419); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2481); END_STATE(); case 155: - if (lookahead == '-') ADVANCE(646); + if (lookahead == '-') ADVANCE(582); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(187); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2481); END_STATE(); case 156: - if (lookahead == '-') ADVANCE(628); + if (lookahead == '-') ADVANCE(225); END_STATE(); case 157: - if (lookahead == '-') ADVANCE(428); + if (lookahead == '-') ADVANCE(1086); END_STATE(); case 158: - if (lookahead == '-') ADVANCE(680); + if (lookahead == '-') ADVANCE(226); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2481); END_STATE(); case 159: - if (lookahead == '-') ADVANCE(1009); + if (lookahead == '-') ADVANCE(382); END_STATE(); case 160: - if (lookahead == '-') ADVANCE(262); + if (lookahead == '-') ADVANCE(420); END_STATE(); case 161: - if (lookahead == '-') ADVANCE(785); + if (lookahead == '-') ADVANCE(354); END_STATE(); case 162: - if (lookahead == '-') ADVANCE(1236); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2470); + if (lookahead == '-') ADVANCE(654); END_STATE(); case 163: - if (lookahead == '-') ADVANCE(1017); + if (lookahead == '-') ADVANCE(636); END_STATE(); case 164: - if (lookahead == '-') ADVANCE(1013); + if (lookahead == '-') ADVANCE(436); END_STATE(); case 165: - if (lookahead == '-') ADVANCE(1020); + if (lookahead == '-') ADVANCE(688); END_STATE(); case 166: - if (lookahead == '-') ADVANCE(1178); + if (lookahead == '-') ADVANCE(1017); END_STATE(); case 167: - if (lookahead == '-') ADVANCE(1215); + if (lookahead == '-') ADVANCE(270); END_STATE(); case 168: - if (lookahead == '-') ADVANCE(1057); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(972); + if (lookahead == '-') ADVANCE(793); END_STATE(); case 169: - if (lookahead == '-') ADVANCE(747); + if (lookahead == '-') ADVANCE(1244); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2481); END_STATE(); case 170: - if (lookahead == '-') ADVANCE(783); + if (lookahead == '-') ADVANCE(1025); END_STATE(); case 171: - if (lookahead == '-') ADVANCE(783); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2513); + if (lookahead == '-') ADVANCE(1021); END_STATE(); case 172: - if (lookahead == '-') ADVANCE(1128); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2602); + if (lookahead == '-') ADVANCE(1028); END_STATE(); case 173: - if (lookahead == '-') ADVANCE(1133); + if (lookahead == '-') ADVANCE(1186); END_STATE(); case 174: - if (lookahead == '-') ADVANCE(834); + if (lookahead == '-') ADVANCE(1223); END_STATE(); case 175: - if (lookahead == '-') ADVANCE(701); + if (lookahead == '-') ADVANCE(1065); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(980); END_STATE(); case 176: - if (lookahead == '-') ADVANCE(784); + if (lookahead == '-') ADVANCE(755); END_STATE(); case 177: - if (lookahead == '-') ADVANCE(1232); + if (lookahead == '-') ADVANCE(791); END_STATE(); case 178: - if (lookahead == '-') ADVANCE(708); + if (lookahead == '-') ADVANCE(791); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(2524); END_STATE(); case 179: - if (lookahead == '-') ADVANCE(950); + if (lookahead == '-') ADVANCE(1136); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(2613); END_STATE(); case 180: - if (lookahead == '-') ADVANCE(1140); + if (lookahead == '-') ADVANCE(1141); END_STATE(); case 181: - if (lookahead == '-') ADVANCE(573); + if (lookahead == '-') ADVANCE(842); END_STATE(); case 182: - if (lookahead == '-') ADVANCE(408); + if (lookahead == '-') ADVANCE(709); END_STATE(); case 183: - if (lookahead == '-') ADVANCE(1234); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(739); + if (lookahead == '-') ADVANCE(792); END_STATE(); case 184: - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(126); - if (lookahead == 'N') ADVANCE(1414); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + if (lookahead == '-') ADVANCE(1240); + END_STATE(); + case 185: + if (lookahead == '-') ADVANCE(716); + END_STATE(); + case 186: + if (lookahead == '-') ADVANCE(958); + END_STATE(); + case 187: + if (lookahead == '-') ADVANCE(1148); + END_STATE(); + case 188: + if (lookahead == '-') ADVANCE(581); + END_STATE(); + case 189: + if (lookahead == '-') ADVANCE(416); + END_STATE(); + case 190: + if (lookahead == '-') ADVANCE(1242); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(747); + END_STATE(); + case 191: + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(133); + if (lookahead == 'N') ADVANCE(1423); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == 'n') ADVANCE(1715); + if (lookahead == '{') ADVANCE(1351); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(184) + lookahead == 65279) SKIP(191) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(184); + lookahead == ' ') ADVANCE(191); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 185: - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 192: + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2400); + lookahead == 'q') ADVANCE(2411); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(185) + lookahead == 65279) SKIP(192) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(185); + lookahead == ' ') ADVANCE(192); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 186: - if (lookahead == '.') ADVANCE(243); + case 193: + if (lookahead == '.') ADVANCE(251); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(186); + lookahead == '|') ADVANCE(193); END_STATE(); - case 187: - if (lookahead == '/') ADVANCE(126); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 194: + if (lookahead == '/') ADVANCE(133); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1995); + lookahead == 'e') ADVANCE(2006); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1715); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1998); + lookahead == 'o') ADVANCE(2009); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1835); + lookahead == 'w') ADVANCE(1846); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15636,23 +16016,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(187) + lookahead == 65279) SKIP(194) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 188: - if (lookahead == '/') ADVANCE(126); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 195: + if (lookahead == '/') ADVANCE(133); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1995); + lookahead == 'e') ADVANCE(2006); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1998); + lookahead == 'o') ADVANCE(2009); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1845); + lookahead == 'w') ADVANCE(1856); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15660,21 +16040,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(188) + lookahead == 65279) SKIP(195) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 189: - if (lookahead == '/') ADVANCE(126); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 196: + if (lookahead == '/') ADVANCE(133); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1995); + lookahead == 'e') ADVANCE(2006); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1845); + lookahead == 'w') ADVANCE(1856); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15682,25 +16062,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(189) + lookahead == 65279) SKIP(196) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 190: - if (lookahead == '/') ADVANCE(126); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 197: + if (lookahead == '/') ADVANCE(133); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1715); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1998); + lookahead == 'o') ADVANCE(2009); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2358); + lookahead == 's') ADVANCE(2369); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2193); + lookahead == 't') ADVANCE(2204); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1836); + lookahead == 'w') ADVANCE(1847); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15708,34 +16090,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(190) + lookahead == 65279) SKIP(197) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 191: - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 198: + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1524); + lookahead == 'a') ADVANCE(1533); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1934); + lookahead == 'c') ADVANCE(1945); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1875); + lookahead == 'f') ADVANCE(1886); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1922); + lookahead == 'g') ADVANCE(1933); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1704); + lookahead == 'n') ADVANCE(1715); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2407); + lookahead == 'o') ADVANCE(2418); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1462); + lookahead == 'p') ADVANCE(1471); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1837); + lookahead == 's') ADVANCE(1848); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(2079); + lookahead == 'v') ADVANCE(2090); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15743,36 +16125,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(191) + lookahead == 65279) SKIP(198) if (lookahead == '-' || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('b' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 192: - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 199: + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1431); + lookahead == 'c') ADVANCE(1440); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1705); + lookahead == 'd') ADVANCE(1716); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1919); + lookahead == 'e') ADVANCE(1930); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1862); + lookahead == 'f') ADVANCE(1873); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2016); + lookahead == 'i') ADVANCE(2027); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1715); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1997); + lookahead == 'o') ADVANCE(2008); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2212); + lookahead == 'p') ADVANCE(2223); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1688); + lookahead == 'r') ADVANCE(1699); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2043); + lookahead == 'u') ADVANCE(2054); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1473); + lookahead == 'v') ADVANCE(1482); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15780,36 +16164,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(192) + lookahead == 65279) SKIP(199) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 193: - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 200: + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1431); + lookahead == 'c') ADVANCE(1440); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1705); + lookahead == 'd') ADVANCE(1716); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1995); + lookahead == 'e') ADVANCE(2006); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1862); + lookahead == 'f') ADVANCE(1873); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2016); + lookahead == 'i') ADVANCE(2027); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1715); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1997); + lookahead == 'o') ADVANCE(2008); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2212); + lookahead == 'p') ADVANCE(2223); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1688); + lookahead == 'r') ADVANCE(1699); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2043); + lookahead == 'u') ADVANCE(2054); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1473); + lookahead == 'v') ADVANCE(1482); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15817,28 +16203,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(193) + lookahead == 65279) SKIP(200) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 194: - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 201: + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1934); + lookahead == 'c') ADVANCE(1945); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1922); + lookahead == 'g') ADVANCE(1933); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1703); + lookahead == 'n') ADVANCE(1714); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1462); + lookahead == 'p') ADVANCE(1471); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1775); + lookahead == 's') ADVANCE(1786); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(2079); + lookahead == 'v') ADVANCE(2090); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15846,20 +16232,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(194) + lookahead == 65279) SKIP(201) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 195: - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 202: + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1934); + lookahead == 'c') ADVANCE(1945); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(2079); + lookahead == 'v') ADVANCE(2090); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15867,18 +16253,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(195) + lookahead == 65279) SKIP(202) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 196: - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 203: + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1934); + lookahead == 'c') ADVANCE(1945); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15886,22 +16272,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(196) + lookahead == 65279) SKIP(203) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 197: - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 204: + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2069); + lookahead == 'd') ADVANCE(2080); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1890); + lookahead == 'f') ADVANCE(1901); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1996); + lookahead == 'i') ADVANCE(2007); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15909,20 +16295,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(197) + lookahead == 65279) SKIP(204) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 198: - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 205: + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2069); + lookahead == 'd') ADVANCE(2080); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1890); + lookahead == 'f') ADVANCE(1901); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15930,20 +16316,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(198) + lookahead == 65279) SKIP(205) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 199: - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 206: + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2069); + lookahead == 'd') ADVANCE(2080); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15951,18 +16337,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(199) + lookahead == 65279) SKIP(206) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 200: - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 207: + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1500); + lookahead == 'd') ADVANCE(1509); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1715); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15970,22 +16358,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(200) + lookahead == 65279) SKIP(207) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 201: - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 208: + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1509); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(208) + if (lookahead == '-' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); + END_STATE(); + case 209: + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1433); + lookahead == 'e') ADVANCE(1442); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1865); + lookahead == 'f') ADVANCE(1876); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1491); + lookahead == 'l') ADVANCE(1500); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -15993,22 +16400,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(201) + lookahead == 65279) SKIP(209) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 202: - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 210: + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1865); + lookahead == 'f') ADVANCE(1876); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1491); + lookahead == 'l') ADVANCE(1500); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1754); + lookahead == 'n') ADVANCE(1765); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16016,20 +16423,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(202) + lookahead == 65279) SKIP(210) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 203: - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 211: + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1865); + lookahead == 'f') ADVANCE(1876); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1491); + lookahead == 'l') ADVANCE(1500); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16037,18 +16444,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(203) + lookahead == 65279) SKIP(211) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 204: - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 212: + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); + lookahead == 'f') ADVANCE(2240); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16056,24 +16463,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(204) + lookahead == 65279) SKIP(212) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 205: - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 213: + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1922); + lookahead == 'g') ADVANCE(1933); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1704); + lookahead == 'n') ADVANCE(1715); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1462); + lookahead == 'p') ADVANCE(1471); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1837); + lookahead == 's') ADVANCE(1848); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16081,18 +16488,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(205) + lookahead == 65279) SKIP(213) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 206: - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 214: + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1462); + lookahead == 'p') ADVANCE(1471); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16100,18 +16507,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(206) + lookahead == 65279) SKIP(214) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 207: - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 215: + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1685); + lookahead == 't') ADVANCE(1696); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16119,16 +16526,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(207) + lookahead == 65279) SKIP(215) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 208: - if (lookahead == '/') ADVANCE(125); + case 216: + if (lookahead == '/') ADVANCE(132); if (lookahead == '\\') ADVANCE(23); - if (lookahead == '{') ADVANCE(1343); + if (lookahead == '{') ADVANCE(1351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -16136,4663 +16543,4631 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(208) + lookahead == 65279) SKIP(216) if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '|')) ADVANCE(186); + ('A' <= lookahead && lookahead <= '|')) ADVANCE(193); END_STATE(); - case 209: - if (lookahead == '/') ADVANCE(1318); + case 217: + if (lookahead == '/') ADVANCE(1326); END_STATE(); - case 210: - if (lookahead == '/') ADVANCE(1318); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(209); + case 218: + if (lookahead == '/') ADVANCE(1326); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(217); END_STATE(); - case 211: - if (lookahead == '3') ADVANCE(450); + case 219: + if (lookahead == '3') ADVANCE(458); END_STATE(); - case 212: - if (lookahead == 'C') ADVANCE(234); + case 220: + if (lookahead == 'C') ADVANCE(242); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1040); + lookahead == 'e') ADVANCE(1048); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(267); + lookahead == 'h') ADVANCE(275); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(655); + lookahead == 'i') ADVANCE(663); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1238); + lookahead == 'o') ADVANCE(1246); if (lookahead == 'T' || - lookahead == 't') ADVANCE(928); + lookahead == 't') ADVANCE(936); END_STATE(); - case 213: - if (lookahead == 'C') ADVANCE(234); + case 221: + if (lookahead == 'C') ADVANCE(242); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1059); + lookahead == 'e') ADVANCE(1067); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1311); + lookahead == 'i') ADVANCE(1319); if (lookahead == 'T' || - lookahead == 't') ADVANCE(927); + lookahead == 't') ADVANCE(935); END_STATE(); - case 214: - if (lookahead == 'C') ADVANCE(234); + case 222: + if (lookahead == 'C') ADVANCE(242); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1311); + lookahead == 'i') ADVANCE(1319); END_STATE(); - case 215: - if (lookahead == 'E') ADVANCE(236); - if (lookahead == 'e') ADVANCE(397); + case 223: + if (lookahead == 'E') ADVANCE(244); + if (lookahead == 'e') ADVANCE(405); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1004); + lookahead == 'a') ADVANCE(1012); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(939); + lookahead == 'c') ADVANCE(947); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(933); + lookahead == 'l') ADVANCE(941); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(268); + lookahead == 'm') ADVANCE(276); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(884); + lookahead == 'u') ADVANCE(892); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(301); + lookahead == 'w') ADVANCE(309); END_STATE(); - case 216: - if (lookahead == 'E') ADVANCE(241); - if (lookahead == 'e') ADVANCE(396); + case 224: + if (lookahead == 'E') ADVANCE(249); + if (lookahead == 'e') ADVANCE(404); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(939); + lookahead == 'c') ADVANCE(947); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(268); + lookahead == 'm') ADVANCE(276); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(884); + lookahead == 'u') ADVANCE(892); END_STATE(); - case 217: - if (lookahead == 'E') ADVANCE(240); + case 225: + if (lookahead == 'E') ADVANCE(248); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(990); + lookahead == 'c') ADVANCE(998); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(944); + lookahead == 'f') ADVANCE(952); END_STATE(); - case 218: - if (lookahead == 'E') ADVANCE(240); + case 226: + if (lookahead == 'E') ADVANCE(248); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(884); + lookahead == 'u') ADVANCE(892); END_STATE(); - case 219: - if (lookahead == 'E') ADVANCE(235); - if (lookahead == 'e') ADVANCE(1093); + case 227: + if (lookahead == 'E') ADVANCE(243); + if (lookahead == 'e') ADVANCE(1101); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(990); + lookahead == 'c') ADVANCE(998); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(944); + lookahead == 'f') ADVANCE(952); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(933); + lookahead == 'l') ADVANCE(941); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(301); + lookahead == 'w') ADVANCE(309); END_STATE(); - case 220: - if (lookahead == 'G') ADVANCE(2531); + case 228: + if (lookahead == 'G') ADVANCE(2542); END_STATE(); - case 221: - if (lookahead == 'I') ADVANCE(224); + case 229: + if (lookahead == 'I') ADVANCE(232); END_STATE(); - case 222: - if (lookahead == 'L') ADVANCE(221); + case 230: + if (lookahead == 'L') ADVANCE(229); END_STATE(); - case 223: - if (lookahead == 'L') ADVANCE(222); + case 231: + if (lookahead == 'L') ADVANCE(230); END_STATE(); - case 224: - if (lookahead == 'N') ADVANCE(220); + case 232: + if (lookahead == 'N') ADVANCE(228); END_STATE(); - case 225: - if (lookahead == 'O') ADVANCE(132); - if (lookahead == 'o') ADVANCE(133); + case 233: + if (lookahead == 'O') ADVANCE(139); + if (lookahead == 'o') ADVANCE(140); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2489); + lookahead == 'e') ADVANCE(2500); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(823); + lookahead == 'u') ADVANCE(831); END_STATE(); - case 226: - if (lookahead == 'O') ADVANCE(223); + case 234: + if (lookahead == 'O') ADVANCE(231); END_STATE(); - case 227: - if (lookahead == 'O') ADVANCE(238); + case 235: + if (lookahead == 'O') ADVANCE(246); END_STATE(); - case 228: - if (lookahead == 'O') ADVANCE(233); - if (lookahead == 'o') ADVANCE(1034); + case 236: + if (lookahead == 'O') ADVANCE(241); + if (lookahead == 'o') ADVANCE(1042); END_STATE(); - case 229: - if (lookahead == 'O') ADVANCE(140); - if (lookahead == 'o') ADVANCE(141); + case 237: + if (lookahead == 'O') ADVANCE(147); + if (lookahead == 'o') ADVANCE(148); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2489); + lookahead == 'e') ADVANCE(2500); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(823); + lookahead == 'u') ADVANCE(831); END_STATE(); - case 230: - if (lookahead == 'O') ADVANCE(142); - if (lookahead == 'o') ADVANCE(143); + case 238: + if (lookahead == 'O') ADVANCE(149); + if (lookahead == 'o') ADVANCE(150); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2489); + lookahead == 'e') ADVANCE(2500); END_STATE(); - case 231: - if (lookahead == 'O') ADVANCE(151); - if (lookahead == 'o') ADVANCE(162); + case 239: + if (lookahead == 'O') ADVANCE(158); + if (lookahead == 'o') ADVANCE(169); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2489); + lookahead == 'e') ADVANCE(2500); END_STATE(); - case 232: - if (lookahead == 'O') ADVANCE(149); - if (lookahead == 'o') ADVANCE(153); + case 240: + if (lookahead == 'O') ADVANCE(156); + if (lookahead == 'o') ADVANCE(160); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2489); + lookahead == 'e') ADVANCE(2500); END_STATE(); - case 233: - if (lookahead == 'R') ADVANCE(2547); - if (lookahead == 'r') ADVANCE(2547); + case 241: + if (lookahead == 'R') ADVANCE(2558); + if (lookahead == 'r') ADVANCE(2558); END_STATE(); - case 234: - if (lookahead == 'R') ADVANCE(226); + case 242: + if (lookahead == 'R') ADVANCE(234); END_STATE(); - case 235: - if (lookahead == 'R') ADVANCE(237); - if (lookahead == 'r') ADVANCE(1082); + case 243: + if (lookahead == 'R') ADVANCE(245); + if (lookahead == 'r') ADVANCE(1090); END_STATE(); - case 236: - if (lookahead == 'R') ADVANCE(237); - if (lookahead == 'r') ADVANCE(1082); + case 244: + if (lookahead == 'R') ADVANCE(245); + if (lookahead == 'r') ADVANCE(1090); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(668); + lookahead == 'c') ADVANCE(676); END_STATE(); - case 237: - if (lookahead == 'R') ADVANCE(228); - if (lookahead == 'r') ADVANCE(956); + case 245: + if (lookahead == 'R') ADVANCE(236); + if (lookahead == 'r') ADVANCE(964); END_STATE(); - case 238: - if (lookahead == 'R') ADVANCE(2579); + case 246: + if (lookahead == 'R') ADVANCE(2590); END_STATE(); - case 239: - if (lookahead == 'R') ADVANCE(227); + case 247: + if (lookahead == 'R') ADVANCE(235); END_STATE(); - case 240: - if (lookahead == 'R') ADVANCE(239); + case 248: + if (lookahead == 'R') ADVANCE(247); END_STATE(); - case 241: - if (lookahead == 'R') ADVANCE(239); + case 249: + if (lookahead == 'R') ADVANCE(247); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(668); + lookahead == 'c') ADVANCE(676); END_STATE(); - case 242: - if (lookahead == 'Y') ADVANCE(2618); + case 250: + if (lookahead == 'Y') ADVANCE(2629); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(641); + lookahead == 'e') ADVANCE(649); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(906); + lookahead == 'i') ADVANCE(914); END_STATE(); - case 243: - if (lookahead == 'i') ADVANCE(1327); + case 251: + if (lookahead == 'i') ADVANCE(1335); END_STATE(); - case 244: + case 252: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(389); + lookahead == 'a') ADVANCE(397); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(257); + lookahead == 'l') ADVANCE(265); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(763); + lookahead == 'o') ADVANCE(771); END_STATE(); - case 245: + case 253: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1176); + lookahead == 'a') ADVANCE(1184); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(391); + lookahead == 'e') ADVANCE(399); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2620); + lookahead == 'o') ADVANCE(2631); END_STATE(); - case 246: + case 254: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(368); + lookahead == 'a') ADVANCE(376); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(665); + lookahead == 'c') ADVANCE(673); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(693); + lookahead == 'd') ADVANCE(701); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1125); + lookahead == 'l') ADVANCE(1133); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(414); + lookahead == 'n') ADVANCE(422); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2491); + lookahead == 'q') ADVANCE(2502); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1048); + lookahead == 'r') ADVANCE(1056); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(363); + lookahead == 'x') ADVANCE(371); END_STATE(); - case 247: + case 255: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(352); + lookahead == 'a') ADVANCE(360); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2488); + lookahead == 'e') ADVANCE(2499); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(754); + lookahead == 'i') ADVANCE(762); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(343); + lookahead == 'o') ADVANCE(351); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2487); + lookahead == 't') ADVANCE(2498); END_STATE(); - case 248: + case 256: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(991); + lookahead == 'a') ADVANCE(999); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1209); + lookahead == 'e') ADVANCE(1217); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(425); + lookahead == 'o') ADVANCE(433); END_STATE(); - case 249: + case 257: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(991); + lookahead == 'a') ADVANCE(999); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(425); + lookahead == 'o') ADVANCE(433); END_STATE(); - case 250: + case 258: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(643); + lookahead == 'a') ADVANCE(651); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1087); + lookahead == 'o') ADVANCE(1095); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(695); + lookahead == 'r') ADVANCE(703); END_STATE(); - case 251: + case 259: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(351); + lookahead == 'a') ADVANCE(359); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2488); + lookahead == 'e') ADVANCE(2499); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(343); + lookahead == 'o') ADVANCE(351); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2487); + lookahead == 't') ADVANCE(2498); END_STATE(); - case 252: + case 260: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1213); + lookahead == 'a') ADVANCE(1221); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(909); + lookahead == 'i') ADVANCE(917); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(426); + lookahead == 'o') ADVANCE(434); END_STATE(); - case 253: + case 261: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(137); + lookahead == 'a') ADVANCE(144); END_STATE(); - case 254: + case 262: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(353); + lookahead == 'a') ADVANCE(361); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(139); + lookahead == 'e') ADVANCE(146); END_STATE(); - case 255: + case 263: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(644); + lookahead == 'a') ADVANCE(652); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(790); + lookahead == 'p') ADVANCE(798); END_STATE(); - case 256: + case 264: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(880); + lookahead == 'a') ADVANCE(888); END_STATE(); - case 257: + case 265: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1122); + lookahead == 'a') ADVANCE(1130); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1130); + lookahead == 'o') ADVANCE(1138); END_STATE(); - case 258: + case 266: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(354); + lookahead == 'a') ADVANCE(362); END_STATE(); - case 259: + case 267: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(831); + lookahead == 'a') ADVANCE(839); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(817); + lookahead == 'o') ADVANCE(825); END_STATE(); - case 260: + case 268: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1004); + lookahead == 'a') ADVANCE(1012); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(939); + lookahead == 'c') ADVANCE(947); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(397); + lookahead == 'e') ADVANCE(405); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(933); + lookahead == 'l') ADVANCE(941); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(268); + lookahead == 'm') ADVANCE(276); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(884); + lookahead == 'u') ADVANCE(892); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(301); + lookahead == 'w') ADVANCE(309); END_STATE(); - case 261: + case 269: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1081); + lookahead == 'a') ADVANCE(1089); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(519); + lookahead == 'h') ADVANCE(527); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2604); + lookahead == 'o') ADVANCE(2615); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(256); - END_STATE(); - case 262: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(635); - END_STATE(); - case 263: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(757); - END_STATE(); - case 264: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(749); - END_STATE(); - case 265: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1291); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(913); - END_STATE(); - case 266: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(378); - END_STATE(); - case 267: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1060); - END_STATE(); - case 268: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(998); - END_STATE(); - case 269: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(403); + lookahead == 'r') ADVANCE(264); END_STATE(); case 270: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(136); + lookahead == 'a') ADVANCE(643); END_STATE(); case 271: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(825); + lookahead == 'a') ADVANCE(765); END_STATE(); case 272: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1042); + lookahead == 'a') ADVANCE(757); END_STATE(); case 273: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(777); + lookahead == 'a') ADVANCE(1299); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(921); END_STATE(); case 274: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(826); + lookahead == 'a') ADVANCE(386); END_STATE(); case 275: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1211); + lookahead == 'a') ADVANCE(1068); END_STATE(); case 276: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1202); + lookahead == 'a') ADVANCE(1006); END_STATE(); case 277: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(782); + lookahead == 'a') ADVANCE(411); END_STATE(); case 278: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(765); + lookahead == 'a') ADVANCE(143); END_STATE(); case 279: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1168); + lookahead == 'a') ADVANCE(833); END_STATE(); case 280: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(373); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(406); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(689); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(349); + lookahead == 'a') ADVANCE(1050); END_STATE(); case 281: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(373); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(689); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(349); + lookahead == 'a') ADVANCE(785); END_STATE(); case 282: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(373); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(688); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(349); + lookahead == 'a') ADVANCE(834); END_STATE(); case 283: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(166); + lookahead == 'a') ADVANCE(1219); END_STATE(); case 284: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(824); + lookahead == 'a') ADVANCE(1210); END_STATE(); case 285: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1046); + lookahead == 'a') ADVANCE(790); END_STATE(); case 286: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(787); + lookahead == 'a') ADVANCE(773); END_STATE(); case 287: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(805); + lookahead == 'a') ADVANCE(1176); END_STATE(); case 288: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(766); + lookahead == 'a') ADVANCE(381); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(414); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(697); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(357); END_STATE(); case 289: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(760); + lookahead == 'a') ADVANCE(381); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(697); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(357); END_STATE(); case 290: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1195); + lookahead == 'a') ADVANCE(381); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(696); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(357); END_STATE(); case 291: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(759); + lookahead == 'a') ADVANCE(173); END_STATE(); case 292: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(788); + lookahead == 'a') ADVANCE(832); END_STATE(); case 293: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1062); + lookahead == 'a') ADVANCE(1054); END_STATE(); case 294: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(807); + lookahead == 'a') ADVANCE(795); END_STATE(); case 295: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1063); + lookahead == 'a') ADVANCE(813); END_STATE(); case 296: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1041); + lookahead == 'a') ADVANCE(774); END_STATE(); case 297: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1212); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(426); + lookahead == 'a') ADVANCE(768); END_STATE(); case 298: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1212); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(425); + lookahead == 'a') ADVANCE(1203); END_STATE(); case 299: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1157); + lookahead == 'a') ADVANCE(767); END_STATE(); case 300: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1014); + lookahead == 'a') ADVANCE(796); END_STATE(); case 301: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(704); + lookahead == 'a') ADVANCE(1070); END_STATE(); case 302: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1249); + lookahead == 'a') ADVANCE(815); END_STATE(); case 303: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1180); + lookahead == 'a') ADVANCE(1071); END_STATE(); case 304: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(382); + lookahead == 'a') ADVANCE(1049); END_STATE(); case 305: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1181); + lookahead == 'a') ADVANCE(1220); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(434); END_STATE(); case 306: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1199); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(391); + lookahead == 'a') ADVANCE(1220); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(433); END_STATE(); case 307: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(891); + lookahead == 'a') ADVANCE(1165); END_STATE(); case 308: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(710); + lookahead == 'a') ADVANCE(1022); END_STATE(); case 309: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1280); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(947); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(265); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(974); + lookahead == 'a') ADVANCE(712); END_STATE(); case 310: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(648); + lookahead == 'a') ADVANCE(1257); END_STATE(); case 311: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(835); + lookahead == 'a') ADVANCE(1188); END_STATE(); case 312: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1205); + lookahead == 'a') ADVANCE(390); END_STATE(); case 313: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(388); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(804); + lookahead == 'a') ADVANCE(1189); END_STATE(); case 314: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(388); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(808); + lookahead == 'a') ADVANCE(1207); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(399); END_STATE(); case 315: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(642); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1087); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(943); + lookahead == 'a') ADVANCE(899); END_STATE(); case 316: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(836); + lookahead == 'a') ADVANCE(718); END_STATE(); case 317: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1194); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(597); + lookahead == 'a') ADVANCE(1288); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(955); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(273); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(982); END_STATE(); case 318: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1273); + lookahead == 'a') ADVANCE(656); END_STATE(); case 319: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(649); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(790); + lookahead == 'a') ADVANCE(843); END_STATE(); case 320: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1207); + lookahead == 'a') ADVANCE(1213); END_STATE(); case 321: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(650); + lookahead == 'a') ADVANCE(396); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(812); END_STATE(); case 322: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1077); + lookahead == 'a') ADVANCE(396); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(816); END_STATE(); case 323: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1137); + lookahead == 'a') ADVANCE(650); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1095); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(951); END_STATE(); case 324: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(652); + lookahead == 'a') ADVANCE(844); END_STATE(); case 325: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(653); + lookahead == 'a') ADVANCE(1202); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(605); END_STATE(); case 326: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(654); + lookahead == 'a') ADVANCE(1281); END_STATE(); case 327: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1210); + lookahead == 'a') ADVANCE(657); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(798); END_STATE(); case 328: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(355); + lookahead == 'a') ADVANCE(1215); END_STATE(); case 329: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(350); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2488); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(754); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2487); + lookahead == 'a') ADVANCE(658); END_STATE(); case 330: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(350); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2488); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2487); + lookahead == 'a') ADVANCE(1085); END_STATE(); case 331: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(350); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(318); + lookahead == 'a') ADVANCE(1145); END_STATE(); case 332: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(725); + lookahead == 'a') ADVANCE(660); END_STATE(); case 333: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(725); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1290); + lookahead == 'a') ADVANCE(661); END_STATE(); case 334: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1091); + lookahead == 'a') ADVANCE(662); END_STATE(); case 335: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(356); + lookahead == 'a') ADVANCE(1218); END_STATE(); case 336: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1226); + lookahead == 'a') ADVANCE(363); END_STATE(); case 337: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(357); + lookahead == 'a') ADVANCE(358); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2499); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(762); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2498); END_STATE(); case 338: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1229); + lookahead == 'a') ADVANCE(358); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2499); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2498); END_STATE(); case 339: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(359); + lookahead == 'a') ADVANCE(358); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(326); END_STATE(); case 340: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1123); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1302); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1003); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2467); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(733); END_STATE(); case 341: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1123); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(413); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(733); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1298); END_STATE(); case 342: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1123); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(413); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1197); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(594); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1099); END_STATE(); case 343: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(157); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(364); END_STATE(); case 344: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1235); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1234); END_STATE(); case 345: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1235); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(920); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(365); END_STATE(); case 346: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1251); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1237); END_STATE(); case 347: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(144); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(367); END_STATE(); case 348: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(776); + lookahead == 'b') ADVANCE(1131); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1310); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1011); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2478); END_STATE(); case 349: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(786); + lookahead == 'b') ADVANCE(1131); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(421); END_STATE(); case 350: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(536); + lookahead == 'b') ADVANCE(1131); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(421); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1205); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(602); END_STATE(); case 351: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(536); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(427); + lookahead == 'b') ADVANCE(164); END_STATE(); case 352: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(536); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(427); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1149); + lookahead == 'b') ADVANCE(1243); END_STATE(); case 353: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(794); + lookahead == 'b') ADVANCE(1243); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(928); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1033); END_STATE(); case 354: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(553); + lookahead == 'b') ADVANCE(1259); END_STATE(); case 355: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(796); + lookahead == 'b') ADVANCE(151); END_STATE(); case 356: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(798); + lookahead == 'b') ADVANCE(784); END_STATE(); case 357: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(799); + lookahead == 'b') ADVANCE(794); END_STATE(); case 358: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(291); + lookahead == 'b') ADVANCE(544); END_STATE(); case 359: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(800); + lookahead == 'b') ADVANCE(544); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(435); END_STATE(); case 360: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2514); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(544); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(435); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1157); END_STATE(); case 361: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2517); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(802); END_STATE(); case 362: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(665); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1125); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(414); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2491); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1182); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(561); END_STATE(); case 363: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(535); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(538); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(804); END_STATE(); case 364: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(934); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(806); END_STATE(); case 365: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(934); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(630); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(807); END_STATE(); case 366: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(934); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1019); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1282); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(299); END_STATE(); case 367: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(750); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(808); END_STATE(); case 368: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(660); + lookahead == 'c') ADVANCE(2525); END_STATE(); case 369: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(751); + lookahead == 'c') ADVANCE(2528); END_STATE(); case 370: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(752); + lookahead == 'c') ADVANCE(673); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1133); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(422); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2502); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1190); END_STATE(); case 371: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(662); + lookahead == 'c') ADVANCE(543); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(546); END_STATE(); case 372: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(939); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(396); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(268); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(884); + lookahead == 'c') ADVANCE(942); END_STATE(); case 373: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(756); + lookahead == 'c') ADVANCE(942); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(638); END_STATE(); case 374: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(940); + lookahead == 'c') ADVANCE(942); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1027); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1290); END_STATE(); case 375: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(678); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(696); + lookahead == 'c') ADVANCE(758); END_STATE(); case 376: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(675); + lookahead == 'c') ADVANCE(668); END_STATE(); case 377: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(300); + lookahead == 'c') ADVANCE(759); END_STATE(); case 378: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1162); + lookahead == 'c') ADVANCE(760); END_STATE(); case 379: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1214); + lookahead == 'c') ADVANCE(670); END_STATE(); case 380: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(769); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(538); + lookahead == 'c') ADVANCE(947); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(404); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(276); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(892); END_STATE(); case 381: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(463); + lookahead == 'c') ADVANCE(764); END_STATE(); case 382: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(490); + lookahead == 'c') ADVANCE(948); END_STATE(); case 383: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(559); + lookahead == 'c') ADVANCE(686); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(704); END_STATE(); case 384: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(481); + lookahead == 'c') ADVANCE(683); END_STATE(); case 385: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(534); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(538); + lookahead == 'c') ADVANCE(308); END_STATE(); case 386: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(514); + lookahead == 'c') ADVANCE(1170); END_STATE(); case 387: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(571); + lookahead == 'c') ADVANCE(1222); END_STATE(); case 388: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(669); + lookahead == 'c') ADVANCE(777); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(546); END_STATE(); case 389: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(669); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(537); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(371); + lookahead == 'c') ADVANCE(471); END_STATE(); case 390: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(715); + lookahead == 'c') ADVANCE(498); END_STATE(); case 391: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(715); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2523); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1186); + lookahead == 'c') ADVANCE(567); END_STATE(); case 392: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(715); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(302); + lookahead == 'c') ADVANCE(489); END_STATE(); case 393: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1247); + lookahead == 'c') ADVANCE(542); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(546); END_STATE(); case 394: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(957); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(392); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(976); + lookahead == 'c') ADVANCE(522); END_STATE(); case 395: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(957); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(632); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2620); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(976); + lookahead == 'c') ADVANCE(579); END_STATE(); case 396: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(668); + lookahead == 'c') ADVANCE(677); END_STATE(); case 397: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(668); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1082); + lookahead == 'c') ADVANCE(677); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(545); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(379); END_STATE(); case 398: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(671); + lookahead == 'c') ADVANCE(723); END_STATE(); case 399: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1206); + lookahead == 'c') ADVANCE(723); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2534); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1194); END_STATE(); case 400: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1208); + lookahead == 'c') ADVANCE(723); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(310); END_STATE(); case 401: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(679); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(746); + lookahead == 'c') ADVANCE(1255); END_STATE(); case 402: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1216); + lookahead == 'c') ADVANCE(965); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(400); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(984); END_STATE(); case 403: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1223); + lookahead == 'c') ADVANCE(965); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(640); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2631); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(984); END_STATE(); case 404: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(986); + lookahead == 'c') ADVANCE(676); END_STATE(); case 405: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(987); + lookahead == 'c') ADVANCE(676); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1090); END_STATE(); case 406: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(988); + lookahead == 'c') ADVANCE(679); END_STATE(); case 407: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1230); + lookahead == 'c') ADVANCE(1214); END_STATE(); case 408: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(989); + lookahead == 'c') ADVANCE(1216); END_STATE(); case 409: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(621); + lookahead == 'c') ADVANCE(687); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(754); END_STATE(); case 410: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(990); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1093); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(944); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(933); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(301); + lookahead == 'c') ADVANCE(1224); END_STATE(); case 411: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(990); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1093); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(944); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(884); + lookahead == 'c') ADVANCE(1231); END_STATE(); case 412: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(990); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(944); + lookahead == 'c') ADVANCE(994); END_STATE(); case 413: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2635); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(995); END_STATE(); case 414: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2450); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(996); END_STATE(); case 415: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2545); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1238); END_STATE(); case 416: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2499); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(997); END_STATE(); case 417: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2657); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(629); END_STATE(); case 418: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2546); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(998); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1101); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(952); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(941); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(309); END_STATE(); case 419: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2567); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(998); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1101); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(952); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(892); END_STATE(); case 420: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2516); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(998); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(952); END_STATE(); case 421: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2592); + lookahead == 'd') ADVANCE(2646); END_STATE(); case 422: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2694); + lookahead == 'd') ADVANCE(2461); END_STATE(); case 423: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2519); + lookahead == 'd') ADVANCE(2556); END_STATE(); case 424: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(693); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(414); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(607); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(380); + lookahead == 'd') ADVANCE(2510); END_STATE(); case 425: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1239); + lookahead == 'd') ADVANCE(2668); END_STATE(); case 426: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1239); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1136); + lookahead == 'd') ADVANCE(2557); END_STATE(); case 427: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1124); + lookahead == 'd') ADVANCE(2578); END_STATE(); case 428: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(709); + lookahead == 'd') ADVANCE(2527); END_STATE(); case 429: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(169); + lookahead == 'd') ADVANCE(2603); END_STATE(); case 430: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(506); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(545); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1167); + lookahead == 'd') ADVANCE(2705); END_STATE(); case 431: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(506); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(545); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1167); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1255); + lookahead == 'd') ADVANCE(2530); END_STATE(); case 432: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(506); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(545); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1167); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(548); + lookahead == 'd') ADVANCE(701); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(422); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(615); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(388); END_STATE(); case 433: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(506); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1167); + lookahead == 'd') ADVANCE(1247); END_STATE(); case 434: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(924); + lookahead == 'd') ADVANCE(1247); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1144); END_STATE(); case 435: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(327); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(978); + lookahead == 'd') ADVANCE(1132); END_STATE(); case 436: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1112); + lookahead == 'd') ADVANCE(717); END_STATE(); case 437: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(611); + lookahead == 'd') ADVANCE(176); END_STATE(); case 438: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1119); + lookahead == 'd') ADVANCE(514); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(553); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1175); END_STATE(); case 439: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(931); + lookahead == 'd') ADVANCE(514); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(553); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(918); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(730); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(993); + lookahead == 'i') ADVANCE(1175); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1263); END_STATE(); case 440: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(931); + lookahead == 'd') ADVANCE(514); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(553); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(918); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(993); + lookahead == 'i') ADVANCE(1175); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(556); END_STATE(); case 441: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(523); + lookahead == 'd') ADVANCE(514); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1175); END_STATE(); case 442: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(554); + lookahead == 'd') ADVANCE(932); END_STATE(); case 443: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(532); + lookahead == 'd') ADVANCE(335); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(986); END_STATE(); case 444: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(561); + lookahead == 'd') ADVANCE(1120); END_STATE(); case 445: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(470); + lookahead == 'd') ADVANCE(619); END_STATE(); case 446: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(755); + lookahead == 'd') ADVANCE(1127); END_STATE(); case 447: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(647); + lookahead == 'd') ADVANCE(939); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(926); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(738); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1001); END_STATE(); case 448: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(795); + lookahead == 'd') ADVANCE(939); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(926); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1001); END_STATE(); case 449: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(444); + lookahead == 'd') ADVANCE(531); END_STATE(); case 450: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(182); + lookahead == 'd') ADVANCE(562); END_STATE(); case 451: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1266); + lookahead == 'd') ADVANCE(540); END_STATE(); case 452: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1267); + lookahead == 'd') ADVANCE(569); END_STATE(); case 453: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2494); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2492); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(478); END_STATE(); case 454: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2621); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(763); END_STATE(); case 455: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2549); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(655); END_STATE(); case 456: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2674); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(803); END_STATE(); case 457: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2468); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(452); END_STATE(); case 458: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2530); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(189); END_STATE(); case 459: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2585); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1274); END_STATE(); case 460: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2476); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1275); END_STATE(); case 461: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2623); + lookahead == 'e') ADVANCE(2505); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2503); END_STATE(); case 462: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2550); + lookahead == 'e') ADVANCE(2632); END_STATE(); case 463: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2596); + lookahead == 'e') ADVANCE(2560); END_STATE(); case 464: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2522); + lookahead == 'e') ADVANCE(2685); END_STATE(); case 465: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2659); + lookahead == 'e') ADVANCE(2479); END_STATE(); case 466: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2638); + lookahead == 'e') ADVANCE(2541); END_STATE(); case 467: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2598); + lookahead == 'e') ADVANCE(2596); END_STATE(); case 468: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2515); + lookahead == 'e') ADVANCE(2487); END_STATE(); case 469: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2665); + lookahead == 'e') ADVANCE(2634); END_STATE(); case 470: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2560); + lookahead == 'e') ADVANCE(2561); END_STATE(); case 471: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2525); + lookahead == 'e') ADVANCE(2607); END_STATE(); case 472: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2662); + lookahead == 'e') ADVANCE(2533); END_STATE(); case 473: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2565); + lookahead == 'e') ADVANCE(2670); END_STATE(); case 474: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2599); + lookahead == 'e') ADVANCE(2649); END_STATE(); case 475: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2622); + lookahead == 'e') ADVANCE(2609); END_STATE(); case 476: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2603); + lookahead == 'e') ADVANCE(2526); END_STATE(); case 477: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2553); + lookahead == 'e') ADVANCE(2676); END_STATE(); case 478: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2471); + lookahead == 'e') ADVANCE(2571); END_STATE(); case 479: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2663); + lookahead == 'e') ADVANCE(2536); END_STATE(); case 480: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2643); + lookahead == 'e') ADVANCE(2673); END_STATE(); case 481: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2542); + lookahead == 'e') ADVANCE(2576); END_STATE(); case 482: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2520); + lookahead == 'e') ADVANCE(2610); END_STATE(); case 483: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2584); + lookahead == 'e') ADVANCE(2633); END_STATE(); case 484: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2652); + lookahead == 'e') ADVANCE(2614); END_STATE(); case 485: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2654); + lookahead == 'e') ADVANCE(2564); END_STATE(); case 486: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2653); + lookahead == 'e') ADVANCE(2482); END_STATE(); case 487: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2651); + lookahead == 'e') ADVANCE(2674); END_STATE(); case 488: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2518); + lookahead == 'e') ADVANCE(2654); END_STATE(); case 489: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2700); + lookahead == 'e') ADVANCE(2553); END_STATE(); case 490: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2558); + lookahead == 'e') ADVANCE(2531); END_STATE(); case 491: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(641); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(404); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(896); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(150); + lookahead == 'e') ADVANCE(2595); END_STATE(); case 492: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(641); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(404); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(563); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2630); + lookahead == 'e') ADVANCE(2663); END_STATE(); case 493: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(641); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(404); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2630); + lookahead == 'e') ADVANCE(2665); END_STATE(); case 494: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(641); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(906); + lookahead == 'e') ADVANCE(2664); END_STATE(); case 495: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(641); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(896); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(150); + lookahead == 'e') ADVANCE(2662); END_STATE(); case 496: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2489); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(133); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(823); + lookahead == 'e') ADVANCE(2529); END_STATE(); case 497: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2489); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(141); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(823); + lookahead == 'e') ADVANCE(2711); END_STATE(); case 498: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2489); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(143); + lookahead == 'e') ADVANCE(2569); END_STATE(); case 499: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2489); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(147); + lookahead == 'e') ADVANCE(649); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(412); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(904); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(157); END_STATE(); case 500: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2489); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(162); + lookahead == 'e') ADVANCE(649); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(412); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(571); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2641); END_STATE(); case 501: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2489); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(153); + lookahead == 'e') ADVANCE(649); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(412); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2641); END_STATE(); case 502: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1040); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(267); + lookahead == 'e') ADVANCE(649); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(655); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1238); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(928); + lookahead == 'i') ADVANCE(914); END_STATE(); case 503: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2493); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2492); + lookahead == 'e') ADVANCE(649); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(904); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(157); END_STATE(); case 504: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(768); + lookahead == 'e') ADVANCE(2500); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(140); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(831); END_STATE(); case 505: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(854); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(792); + lookahead == 'e') ADVANCE(2500); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(148); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(831); END_STATE(); case 506: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1289); + lookahead == 'e') ADVANCE(2500); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(150); END_STATE(); case 507: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(172); + lookahead == 'e') ADVANCE(2500); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(154); END_STATE(); case 508: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2656); + lookahead == 'e') ADVANCE(2500); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(169); END_STATE(); case 509: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1281); + lookahead == 'e') ADVANCE(2500); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(148); + lookahead == 'o') ADVANCE(160); END_STATE(); case 510: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(772); + lookahead == 'e') ADVANCE(1048); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(275); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(663); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1246); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(936); END_STATE(); case 511: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2608); + lookahead == 'e') ADVANCE(2504); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2503); END_STATE(); case 512: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2521); + lookahead == 'e') ADVANCE(776); END_STATE(); case 513: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2543); + lookahead == 'e') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(800); END_STATE(); case 514: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2544); + lookahead == 'e') ADVANCE(1297); END_STATE(); case 515: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2713); + lookahead == 'e') ADVANCE(179); END_STATE(); case 516: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2687); + lookahead == 'e') ADVANCE(2667); END_STATE(); case 517: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2672); + lookahead == 'e') ADVANCE(1289); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(155); END_STATE(); case 518: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2676); + lookahead == 'e') ADVANCE(780); END_STATE(); case 519: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(852); + lookahead == 'e') ADVANCE(2619); END_STATE(); case 520: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1059); + lookahead == 'e') ADVANCE(2532); END_STATE(); case 521: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1059); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1311); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(927); + lookahead == 'e') ADVANCE(2554); END_STATE(); case 522: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1209); + lookahead == 'e') ADVANCE(2555); END_STATE(); case 523: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1287); + lookahead == 'e') ADVANCE(2724); END_STATE(); case 524: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(171); + lookahead == 'e') ADVANCE(2698); END_STATE(); case 525: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2669); + lookahead == 'e') ADVANCE(2683); END_STATE(); case 526: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(586); + lookahead == 'e') ADVANCE(2687); END_STATE(); case 527: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(775); + lookahead == 'e') ADVANCE(860); END_STATE(); case 528: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(775); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(456); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(263); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1126); + lookahead == 'e') ADVANCE(1067); END_STATE(); case 529: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(775); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(263); + lookahead == 'e') ADVANCE(1067); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1319); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(935); END_STATE(); case 530: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(775); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(286); + lookahead == 'e') ADVANCE(1217); END_STATE(); case 531: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(134); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(876); + lookahead == 'e') ADVANCE(1295); END_STATE(); case 532: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1288); + lookahead == 'e') ADVANCE(178); END_STATE(); case 533: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2670); + lookahead == 'e') ADVANCE(2680); END_STATE(); case 534: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1007); + lookahead == 'e') ADVANCE(594); END_STATE(); case 535: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1007); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1240); + lookahead == 'e') ADVANCE(783); END_STATE(); case 536: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(758); + lookahead == 'e') ADVANCE(783); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(464); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(271); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1134); END_STATE(); case 537: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(173); + lookahead == 'e') ADVANCE(783); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(271); END_STATE(); case 538: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(888); + lookahead == 'e') ADVANCE(783); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(294); END_STATE(); case 539: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1105); + lookahead == 'e') ADVANCE(141); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(884); END_STATE(); case 540: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1299); + lookahead == 'e') ADVANCE(1296); END_STATE(); case 541: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(837); + lookahead == 'e') ADVANCE(2681); END_STATE(); case 542: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(168); + lookahead == 'e') ADVANCE(1015); END_STATE(); case 543: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(390); + lookahead == 'e') ADVANCE(1015); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1248); END_STATE(); case 544: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(170); + lookahead == 'e') ADVANCE(766); END_STATE(); case 545: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1085); + lookahead == 'e') ADVANCE(180); END_STATE(); case 546: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(908); + lookahead == 'e') ADVANCE(896); END_STATE(); case 547: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(421); + lookahead == 'e') ADVANCE(1113); END_STATE(); case 548: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1044); + lookahead == 'e') ADVANCE(1307); END_STATE(); case 549: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(816); + lookahead == 'e') ADVANCE(845); END_STATE(); case 550: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1107); + lookahead == 'e') ADVANCE(175); END_STATE(); case 551: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1158); + lookahead == 'e') ADVANCE(398); END_STATE(); case 552: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1043); + lookahead == 'e') ADVANCE(177); END_STATE(); case 553: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(761); + lookahead == 'e') ADVANCE(1093); END_STATE(); case 554: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(138); + lookahead == 'e') ADVANCE(916); END_STATE(); case 555: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(139); + lookahead == 'e') ADVANCE(429); END_STATE(); case 556: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(845); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1069); + lookahead == 'e') ADVANCE(1052); END_STATE(); case 557: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1111); + lookahead == 'e') ADVANCE(824); END_STATE(); case 558: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(802); + lookahead == 'e') ADVANCE(1115); END_STATE(); case 559: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(179); + lookahead == 'e') ADVANCE(1166); END_STATE(); case 560: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1028); + lookahead == 'e') ADVANCE(1051); END_STATE(); case 561: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(864); + lookahead == 'e') ADVANCE(769); END_STATE(); case 562: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(420); + lookahead == 'e') ADVANCE(145); END_STATE(); case 563: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(264); + lookahead == 'e') ADVANCE(146); END_STATE(); case 564: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(423); + lookahead == 'e') ADVANCE(853); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1077); END_STATE(); case 565: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1035); + lookahead == 'e') ADVANCE(1119); END_STATE(); case 566: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(163); + lookahead == 'e') ADVANCE(810); END_STATE(); case 567: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(853); + lookahead == 'e') ADVANCE(186); END_STATE(); case 568: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(853); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(792); + lookahead == 'e') ADVANCE(1036); END_STATE(); case 569: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1036); + lookahead == 'e') ADVANCE(872); END_STATE(); case 570: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1193); + lookahead == 'e') ADVANCE(428); END_STATE(); case 571: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(451); + lookahead == 'e') ADVANCE(272); END_STATE(); case 572: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1058); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1238); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(927); + lookahead == 'e') ADVANCE(431); END_STATE(); case 573: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1093); + lookahead == 'e') ADVANCE(1043); END_STATE(); case 574: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1093); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(933); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(884); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(301); + lookahead == 'e') ADVANCE(170); END_STATE(); case 575: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(164); + lookahead == 'e') ADVANCE(861); END_STATE(); case 576: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1039); + lookahead == 'e') ADVANCE(861); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(800); END_STATE(); case 577: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1074); + lookahead == 'e') ADVANCE(1044); END_STATE(); case 578: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1166); + lookahead == 'e') ADVANCE(1201); END_STATE(); case 579: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1053); + lookahead == 'e') ADVANCE(459); END_STATE(); case 580: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1147); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(938); + lookahead == 'e') ADVANCE(1066); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1246); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(935); END_STATE(); case 581: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1027); + lookahead == 'e') ADVANCE(1101); END_STATE(); case 582: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1088); + lookahead == 'e') ADVANCE(1101); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(941); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(892); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(309); END_STATE(); case 583: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1161); + lookahead == 'e') ADVANCE(171); END_STATE(); case 584: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1146); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(881); + lookahead == 'e') ADVANCE(1047); END_STATE(); case 585: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(809); + lookahead == 'e') ADVANCE(1082); END_STATE(); case 586: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1005); + lookahead == 'e') ADVANCE(1174); END_STATE(); case 587: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1138); + lookahead == 'e') ADVANCE(1061); END_STATE(); case 588: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1061); + lookahead == 'e') ADVANCE(1155); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(946); END_STATE(); case 589: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(838); + lookahead == 'e') ADVANCE(1035); END_STATE(); case 590: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(886); + lookahead == 'e') ADVANCE(1096); END_STATE(); case 591: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(274); + lookahead == 'e') ADVANCE(1169); END_STATE(); case 592: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1067); + lookahead == 'e') ADVANCE(1154); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(889); END_STATE(); case 593: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(895); + lookahead == 'e') ADVANCE(817); END_STATE(); case 594: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1098); + lookahead == 'e') ADVANCE(1013); END_STATE(); case 595: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(789); + lookahead == 'e') ADVANCE(1146); END_STATE(); case 596: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1064); + lookahead == 'e') ADVANCE(1069); END_STATE(); case 597: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(284); + lookahead == 'e') ADVANCE(846); END_STATE(); case 598: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(399); + lookahead == 'e') ADVANCE(894); END_STATE(); case 599: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1070); + lookahead == 'e') ADVANCE(282); END_STATE(); case 600: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(791); + lookahead == 'e') ADVANCE(1075); END_STATE(); case 601: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(890); + lookahead == 'e') ADVANCE(903); END_STATE(); case 602: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1072); + lookahead == 'e') ADVANCE(1106); END_STATE(); case 603: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(893); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(922); + lookahead == 'e') ADVANCE(797); END_STATE(); case 604: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1076); + lookahead == 'e') ADVANCE(1072); END_STATE(); case 605: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1075); + lookahead == 'e') ADVANCE(292); END_STATE(); case 606: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1066); + lookahead == 'e') ADVANCE(407); END_STATE(); case 607: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(903); + lookahead == 'e') ADVANCE(1078); END_STATE(); case 608: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(904); + lookahead == 'e') ADVANCE(799); END_STATE(); case 609: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(299); + lookahead == 'e') ADVANCE(898); END_STATE(); case 610: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(905); + lookahead == 'e') ADVANCE(1080); END_STATE(); case 611: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(175); + lookahead == 'e') ADVANCE(901); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(930); END_STATE(); case 612: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(176); + lookahead == 'e') ADVANCE(1084); END_STATE(); case 613: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(911); + lookahead == 'e') ADVANCE(1083); END_STATE(); case 614: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(806); + lookahead == 'e') ADVANCE(1074); END_STATE(); case 615: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1096); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(267); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1311); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(948); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(347); + lookahead == 'e') ADVANCE(911); END_STATE(); case 616: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1099); + lookahead == 'e') ADVANCE(912); END_STATE(); case 617: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(400); + lookahead == 'e') ADVANCE(307); END_STATE(); case 618: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1100); + lookahead == 'e') ADVANCE(913); END_STATE(); case 619: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1097); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(322); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(317); + lookahead == 'e') ADVANCE(182); END_STATE(); case 620: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(637); + lookahead == 'e') ADVANCE(183); END_STATE(); case 621: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(452); + lookahead == 'e') ADVANCE(919); END_STATE(); case 622: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1101); + lookahead == 'e') ADVANCE(814); END_STATE(); case 623: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(917); + lookahead == 'e') ADVANCE(1104); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(275); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1319); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(956); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(355); END_STATE(); case 624: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2634); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2605); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1107); END_STATE(); case 625: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2634); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2605); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(677); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(408); END_STATE(); case 626: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2634); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2605); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1192); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(577); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1108); END_STATE(); case 627: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(636); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1105); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(330); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(325); END_STATE(); case 628: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(732); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(645); END_STATE(); case 629: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(985); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(460); END_STATE(); case 630: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(592); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(305); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1246); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1109); END_STATE(); case 631: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(304); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(925); END_STATE(); case 632: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(302); + lookahead == 'f') ADVANCE(2645); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2616); END_STATE(); case 633: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(634); + lookahead == 'f') ADVANCE(2645); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2616); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1222); + lookahead == 't') ADVANCE(685); END_STATE(); case 634: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(581); + lookahead == 'f') ADVANCE(2645); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2616); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1200); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(585); END_STATE(); case 635: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1218); + lookahead == 'f') ADVANCE(644); END_STATE(); case 636: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(605); + lookahead == 'f') ADVANCE(740); END_STATE(); case 637: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(616); + lookahead == 'f') ADVANCE(993); END_STATE(); case 638: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(406); + lookahead == 'f') ADVANCE(600); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(313); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1254); END_STATE(); case 639: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2570); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(312); END_STATE(); case 640: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2666); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(310); END_STATE(); case 641: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(716); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(642); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1230); END_STATE(); case 642: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(507); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(589); END_STATE(); case 643: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(507); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(271); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1226); END_STATE(); case 644: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(517); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(613); END_STATE(); case 645: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(551); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(624); END_STATE(); case 646: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(922); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(414); END_STATE(); case 647: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(570); + lookahead == 'g') ADVANCE(2581); END_STATE(); case 648: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(557); + lookahead == 'g') ADVANCE(2677); END_STATE(); case 649: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(525); + lookahead == 'g') ADVANCE(724); END_STATE(); case 650: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(466); + lookahead == 'g') ADVANCE(515); END_STATE(); case 651: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(578); + lookahead == 'g') ADVANCE(515); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(279); END_STATE(); case 652: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(480); + lookahead == 'g') ADVANCE(525); END_STATE(); case 653: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(533); + lookahead == 'g') ADVANCE(559); END_STATE(); case 654: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(575); + lookahead == 'g') ADVANCE(930); END_STATE(); case 655: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(883); + lookahead == 'g') ADVANCE(578); END_STATE(); case 656: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(801); + lookahead == 'g') ADVANCE(565); END_STATE(); case 657: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(405); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(527); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(899); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(936); + lookahead == 'g') ADVANCE(533); END_STATE(); case 658: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(405); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(529); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(290); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(899); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(936); + lookahead == 'g') ADVANCE(474); END_STATE(); case 659: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(405); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(614); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(898); + lookahead == 'g') ADVANCE(586); END_STATE(); case 660: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2631); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(488); END_STATE(); case 661: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2551); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(541); END_STATE(); case 662: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2636); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(583); END_STATE(); case 663: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2573); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(891); END_STATE(); case 664: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(505); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1177); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1051); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(809); END_STATE(); case 665: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(919); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(413); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(535); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(907); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(944); END_STATE(); case 666: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(568); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(413); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1177); + lookahead == 'i') ADVANCE(537); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(298); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(907); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(944); END_STATE(); case 667: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(519); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(413); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(622); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2604); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(256); + lookahead == 'o') ADVANCE(906); END_STATE(); case 668: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(923); + lookahead == 'h') ADVANCE(2642); END_STATE(); case 669: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(458); + lookahead == 'h') ADVANCE(2562); END_STATE(); case 670: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(719); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1177); + lookahead == 'h') ADVANCE(2647); END_STATE(); case 671: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(539); + lookahead == 'h') ADVANCE(2584); END_STATE(); case 672: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(567); + lookahead == 'h') ADVANCE(513); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1185); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1059); END_STATE(); case 673: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(945); + lookahead == 'h') ADVANCE(927); END_STATE(); case 674: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(307); + lookahead == 'h') ADVANCE(576); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1185); END_STATE(); case 675: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1092); + lookahead == 'h') ADVANCE(527); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2615); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(264); END_STATE(); case 676: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(706); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(316); + lookahead == 'h') ADVANCE(931); END_STATE(); case 677: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(552); + lookahead == 'h') ADVANCE(466); END_STATE(); case 678: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(293); + lookahead == 'h') ADVANCE(727); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1185); END_STATE(); case 679: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(295); + lookahead == 'h') ADVANCE(547); END_STATE(); case 680: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(585); + lookahead == 'h') ADVANCE(575); END_STATE(); case 681: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(599); + lookahead == 'h') ADVANCE(953); END_STATE(); case 682: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(606); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1177); + lookahead == 'h') ADVANCE(315); END_STATE(); case 683: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(606); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1052); + lookahead == 'h') ADVANCE(1100); END_STATE(); case 684: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(528); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1045); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(259); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(714); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(324); END_STATE(); case 685: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(754); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(560); END_STATE(); case 686: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1308); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(301); END_STATE(); case 687: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(530); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1045); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(303); END_STATE(); case 688: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1274); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1023); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(593); END_STATE(); case 689: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1274); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1204); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(607); END_STATE(); case 690: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(614); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1274); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(409); + lookahead == 'i') ADVANCE(1185); END_STATE(); case 691: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1309); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(614); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1060); END_STATE(); case 692: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1313); + lookahead == 'i') ADVANCE(536); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1053); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(267); END_STATE(); case 693: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1179); + lookahead == 'i') ADVANCE(762); END_STATE(); case 694: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(416); + lookahead == 'i') ADVANCE(1316); END_STATE(); case 695: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(840); + lookahead == 'i') ADVANCE(538); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1053); END_STATE(); case 696: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1292); + lookahead == 'i') ADVANCE(1282); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1031); END_STATE(); case 697: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(878); + lookahead == 'i') ADVANCE(1282); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1212); END_STATE(); case 698: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(829); + lookahead == 'i') ADVANCE(1282); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(417); END_STATE(); case 699: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(907); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(700); + lookahead == 'i') ADVANCE(1317); END_STATE(); case 700: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(447); + lookahead == 'i') ADVANCE(1321); END_STATE(); case 701: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(879); + lookahead == 'i') ADVANCE(1187); END_STATE(); case 702: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1000); + lookahead == 'i') ADVANCE(424); END_STATE(); case 703: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(361); + lookahead == 'i') ADVANCE(848); END_STATE(); case 704: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1159); + lookahead == 'i') ADVANCE(1300); END_STATE(); case 705: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(360); + lookahead == 'i') ADVANCE(886); END_STATE(); case 706: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(449); + lookahead == 'i') ADVANCE(837); END_STATE(); case 707: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1187); + lookahead == 'i') ADVANCE(915); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(708); END_STATE(); case 708: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(422); + lookahead == 'i') ADVANCE(455); END_STATE(); case 709: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1032); + lookahead == 'i') ADVANCE(887); END_STATE(); case 710: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1163); + lookahead == 'i') ADVANCE(1008); END_STATE(); case 711: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1150); + lookahead == 'i') ADVANCE(369); END_STATE(); case 712: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(550); + lookahead == 'i') ADVANCE(1167); END_STATE(); case 713: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1276); + lookahead == 'i') ADVANCE(368); END_STATE(); case 714: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1310); + lookahead == 'i') ADVANCE(457); END_STATE(); case 715: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(841); + lookahead == 'i') ADVANCE(1195); END_STATE(); case 716: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(882); + lookahead == 'i') ADVANCE(430); END_STATE(); case 717: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(273); + lookahead == 'i') ADVANCE(1040); END_STATE(); case 718: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(273); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(560); + lookahead == 'i') ADVANCE(1171); END_STATE(); case 719: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(792); + lookahead == 'i') ADVANCE(1158); END_STATE(); case 720: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(975); + lookahead == 'i') ADVANCE(558); END_STATE(); case 721: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(839); + lookahead == 'i') ADVANCE(1284); END_STATE(); case 722: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1139); + lookahead == 'i') ADVANCE(1318); END_STATE(); case 723: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1271); + lookahead == 'i') ADVANCE(849); END_STATE(); case 724: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1311); + lookahead == 'i') ADVANCE(890); END_STATE(); case 725: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(885); + lookahead == 'i') ADVANCE(281); END_STATE(); case 726: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1224); + lookahead == 'i') ADVANCE(281); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(568); END_STATE(); case 727: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(949); + lookahead == 'i') ADVANCE(800); END_STATE(); case 728: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(843); + lookahead == 'i') ADVANCE(983); END_STATE(); case 729: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1134); + lookahead == 'i') ADVANCE(847); END_STATE(); case 730: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1312); + lookahead == 'i') ADVANCE(1147); END_STATE(); case 731: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(844); + lookahead == 'i') ADVANCE(1279); END_STATE(); case 732: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(558); + lookahead == 'i') ADVANCE(1319); END_STATE(); case 733: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1272); + lookahead == 'i') ADVANCE(893); END_STATE(); case 734: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(896); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(150); + lookahead == 'i') ADVANCE(1232); END_STATE(); case 735: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(952); + lookahead == 'i') ADVANCE(957); END_STATE(); case 736: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(914); + lookahead == 'i') ADVANCE(851); END_STATE(); case 737: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(287); + lookahead == 'i') ADVANCE(1142); END_STATE(); case 738: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(445); + lookahead == 'i') ADVANCE(1320); END_STATE(); case 739: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(797); + lookahead == 'i') ADVANCE(852); END_STATE(); case 740: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(954); + lookahead == 'i') ADVANCE(566); END_STATE(); case 741: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(527); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1045); + lookahead == 'i') ADVANCE(1280); END_STATE(); case 742: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(292); + lookahead == 'i') ADVANCE(904); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(157); END_STATE(); case 743: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(973); + lookahead == 'i') ADVANCE(960); END_STATE(); case 744: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(529); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1045); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(259); + lookahead == 'i') ADVANCE(922); END_STATE(); case 745: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1275); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1233); + lookahead == 'i') ADVANCE(295); END_STATE(); case 746: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1293); + lookahead == 'i') ADVANCE(453); END_STATE(); case 747: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(910); + lookahead == 'i') ADVANCE(805); END_STATE(); case 748: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1227); + lookahead == 'i') ADVANCE(962); END_STATE(); case 749: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(2629); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(535); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1053); END_STATE(); case 750: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(2624); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(300); END_STATE(); case 751: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(2625); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(981); END_STATE(); case 752: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(2626); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(537); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1053); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(267); END_STATE(); case 753: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(183); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1283); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1241); END_STATE(); case 754: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(457); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1301); END_STATE(); case 755: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(540); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(918); END_STATE(); case 756: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(326); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1235); END_STATE(); case 757: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2566); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(2640); END_STATE(); case 758: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2506); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(2635); END_STATE(); case 759: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2512); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(2636); END_STATE(); case 760: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2647); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(2637); END_STATE(); case 761: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2507); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(190); END_STATE(); case 762: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2578); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(465); END_STATE(); case 763: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(803); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1143); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(548); END_STATE(); case 764: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(803); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1185); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(334); END_STATE(); case 765: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2502); + lookahead == 'l') ADVANCE(2577); END_STATE(); case 766: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2642); + lookahead == 'l') ADVANCE(2517); END_STATE(); case 767: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1125); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(414); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2491); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(385); + lookahead == 'l') ADVANCE(2523); END_STATE(); case 768: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(992); + lookahead == 'l') ADVANCE(2658); END_STATE(); case 769: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1240); + lookahead == 'l') ADVANCE(2518); END_STATE(); case 770: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1303); + lookahead == 'l') ADVANCE(2589); END_STATE(); case 771: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(135); + lookahead == 'l') ADVANCE(811); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1151); END_STATE(); case 772: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(305); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1055); + lookahead == 'l') ADVANCE(811); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1193); END_STATE(); case 773: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1300); + lookahead == 'l') ADVANCE(2513); END_STATE(); case 774: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1301); + lookahead == 'l') ADVANCE(2653); END_STATE(); case 775: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(417); + lookahead == 'l') ADVANCE(1133); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(422); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2502); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(393); END_STATE(); case 776: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1304); + lookahead == 'l') ADVANCE(1000); END_STATE(); case 777: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(686); + lookahead == 'l') ADVANCE(1248); END_STATE(); case 778: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(921); + lookahead == 'l') ADVANCE(1311); END_STATE(); case 779: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1237); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1174); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(900); + lookahead == 'l') ADVANCE(142); END_STATE(); case 780: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1237); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1184); + lookahead == 'l') ADVANCE(313); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1063); END_STATE(); case 781: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1237); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1142); + lookahead == 'l') ADVANCE(1308); END_STATE(); case 782: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1115); + lookahead == 'l') ADVANCE(1309); END_STATE(); case 783: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(941); + lookahead == 'l') ADVANCE(425); END_STATE(); case 784: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(942); + lookahead == 'l') ADVANCE(1312); END_STATE(); case 785: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(258); + lookahead == 'l') ADVANCE(694); END_STATE(); case 786: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(703); + lookahead == 'l') ADVANCE(929); END_STATE(); case 787: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(774); + lookahead == 'l') ADVANCE(1245); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1182); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(908); END_STATE(); case 788: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(692); + lookahead == 'l') ADVANCE(1245); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1192); END_STATE(); case 789: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1110); + lookahead == 'l') ADVANCE(1245); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1150); END_STATE(); case 790: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(589); + lookahead == 'l') ADVANCE(1123); END_STATE(); case 791: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1114); + lookahead == 'l') ADVANCE(949); END_STATE(); case 792: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(462); + lookahead == 'l') ADVANCE(950); END_STATE(); case 793: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1171); + lookahead == 'l') ADVANCE(266); END_STATE(); case 794: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(482); + lookahead == 'l') ADVANCE(711); END_STATE(); case 795: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(483); + lookahead == 'l') ADVANCE(782); END_STATE(); case 796: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(471); + lookahead == 'l') ADVANCE(700); END_STATE(); case 797: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(472); + lookahead == 'l') ADVANCE(1118); END_STATE(); case 798: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(478); + lookahead == 'l') ADVANCE(597); END_STATE(); case 799: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(479); + lookahead == 'l') ADVANCE(1122); END_STATE(); case 800: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(512); + lookahead == 'l') ADVANCE(470); END_STATE(); case 801: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(542); + lookahead == 'l') ADVANCE(1179); END_STATE(); case 802: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(436); + lookahead == 'l') ADVANCE(490); END_STATE(); case 803: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(276); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(828); + lookahead == 'l') ADVANCE(491); END_STATE(); case 804: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1260); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1174); + lookahead == 'l') ADVANCE(479); END_STATE(); case 805: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(714); + lookahead == 'l') ADVANCE(480); END_STATE(); case 806: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(438); + lookahead == 'l') ADVANCE(486); END_STATE(); case 807: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1258); + lookahead == 'l') ADVANCE(487); END_STATE(); case 808: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1262); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1174); + lookahead == 'l') ADVANCE(520); END_STATE(); case 809: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1011); + lookahead == 'l') ADVANCE(550); END_STATE(); case 810: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1190); + lookahead == 'l') ADVANCE(444); END_STATE(); case 811: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(964); + lookahead == 'l') ADVANCE(284); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(836); END_STATE(); case 812: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(965); + lookahead == 'l') ADVANCE(1268); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1182); END_STATE(); case 813: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(967); + lookahead == 'l') ADVANCE(722); END_STATE(); case 814: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(968); + lookahead == 'l') ADVANCE(446); END_STATE(); case 815: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(970); + lookahead == 'l') ADVANCE(1266); END_STATE(); case 816: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(336); + lookahead == 'l') ADVANCE(1270); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1182); END_STATE(); case 817: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2571); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1019); END_STATE(); case 818: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2640); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1198); END_STATE(); case 819: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2641); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(972); END_STATE(); case 820: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2645); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(973); END_STATE(); case 821: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2646); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(975); END_STATE(); case 822: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(255); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(432); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(976); END_STATE(); case 823: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(152); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(978); END_STATE(); case 824: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2581); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(344); END_STATE(); case 825: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2556); + lookahead == 'm') ADVANCE(2582); END_STATE(); case 826: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2582); + lookahead == 'm') ADVANCE(2651); END_STATE(); case 827: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(771); + lookahead == 'm') ADVANCE(2652); END_STATE(); case 828: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(887); + lookahead == 'm') ADVANCE(2656); END_STATE(); case 829: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1242); + lookahead == 'm') ADVANCE(2657); END_STATE(); case 830: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1001); + lookahead == 'm') ADVANCE(263); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(431); + lookahead == 'n') ADVANCE(440); END_STATE(); case 831: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(460); + lookahead == 'm') ADVANCE(159); END_STATE(); case 832: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(875); + lookahead == 'm') ADVANCE(2592); END_STATE(); case 833: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(874); + lookahead == 'm') ADVANCE(2567); END_STATE(); case 834: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(587); + lookahead == 'm') ADVANCE(2593); END_STATE(); case 835: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(485); + lookahead == 'm') ADVANCE(779); END_STATE(); case 836: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(487); + lookahead == 'm') ADVANCE(895); END_STATE(); case 837: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(348); + lookahead == 'm') ADVANCE(1250); END_STATE(); case 838: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(593); + lookahead == 'm') ADVANCE(1009); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(439); END_STATE(); case 839: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1243); + lookahead == 'm') ADVANCE(468); END_STATE(); case 840: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(285); + lookahead == 'm') ADVANCE(883); END_STATE(); case 841: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(277); + lookahead == 'm') ADVANCE(882); END_STATE(); case 842: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(279); + lookahead == 'm') ADVANCE(595); END_STATE(); case 843: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1244); + lookahead == 'm') ADVANCE(493); END_STATE(); case 844: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1245); + lookahead == 'm') ADVANCE(495); END_STATE(); case 845: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1012); + lookahead == 'm') ADVANCE(356); END_STATE(); case 846: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(319); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(430); + lookahead == 'm') ADVANCE(601); END_STATE(); case 847: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(325); + lookahead == 'm') ADVANCE(1251); END_STATE(); case 848: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(325); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(433); + lookahead == 'm') ADVANCE(293); END_STATE(); case 849: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(338); + lookahead == 'm') ADVANCE(285); END_STATE(); case 850: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2664); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(287); END_STATE(); case 851: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2605); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1252); END_STATE(); case 852: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2548); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1253); END_STATE(); case 853: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2501); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1020); END_STATE(); case 854: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(327); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2501); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(461); + lookahead == 'n') ADVANCE(438); END_STATE(); case 855: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2707); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(333); END_STATE(); case 856: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(333); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2539); + lookahead == 'n') ADVANCE(441); END_STATE(); case 857: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2557); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(346); END_STATE(); case 858: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2710); + lookahead == 'n') ADVANCE(2675); END_STATE(); case 859: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2709); + lookahead == 'n') ADVANCE(2616); END_STATE(); case 860: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2699); + lookahead == 'n') ADVANCE(2559); END_STATE(); case 861: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2704); + lookahead == 'n') ADVANCE(2512); END_STATE(); case 862: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2617); + lookahead == 'n') ADVANCE(2512); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(469); END_STATE(); case 863: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2568); + lookahead == 'n') ADVANCE(2718); END_STATE(); case 864: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2650); + lookahead == 'n') ADVANCE(2550); END_STATE(); case 865: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2533); + lookahead == 'n') ADVANCE(2568); END_STATE(); case 866: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2538); + lookahead == 'n') ADVANCE(2721); END_STATE(); case 867: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1302); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1003); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1135); + lookahead == 'n') ADVANCE(2720); END_STATE(); case 868: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(414); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2491); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1048); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(380); + lookahead == 'n') ADVANCE(2710); END_STATE(); case 869: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(414); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2491); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1182); + lookahead == 'n') ADVANCE(2715); END_STATE(); case 870: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(414); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1182); + lookahead == 'n') ADVANCE(2628); END_STATE(); case 871: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(345); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(531); + lookahead == 'n') ADVANCE(2579); END_STATE(); case 872: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1277); + lookahead == 'n') ADVANCE(2661); END_STATE(); case 873: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(433); + lookahead == 'n') ADVANCE(2544); END_STATE(); case 874: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2683); + lookahead == 'n') ADVANCE(2549); END_STATE(); case 875: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2685); + lookahead == 'n') ADVANCE(1310); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1011); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1143); END_STATE(); case 876: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(639); + lookahead == 'n') ADVANCE(422); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2502); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1056); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(388); END_STATE(); case 877: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(344); + lookahead == 'n') ADVANCE(422); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2502); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1190); END_STATE(); case 878: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(640); + lookahead == 'n') ADVANCE(422); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1190); END_STATE(); case 879: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(629); + lookahead == 'n') ADVANCE(353); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(539); END_STATE(); case 880: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1129); + lookahead == 'n') ADVANCE(1285); END_STATE(); case 881: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(656); + lookahead == 'n') ADVANCE(441); END_STATE(); case 882: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1104); + lookahead == 'n') ADVANCE(2694); END_STATE(); case 883: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(275); + lookahead == 'n') ADVANCE(2696); END_STATE(); case 884: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(434); + lookahead == 'n') ADVANCE(647); END_STATE(); case 885: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1106); + lookahead == 'n') ADVANCE(352); END_STATE(); case 886: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(418); + lookahead == 'n') ADVANCE(648); END_STATE(); case 887: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(161); + lookahead == 'n') ADVANCE(637); END_STATE(); case 888: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1155); + lookahead == 'n') ADVANCE(1137); END_STATE(); case 889: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(156); + lookahead == 'n') ADVANCE(664); END_STATE(); case 890: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1141); + lookahead == 'n') ADVANCE(1112); END_STATE(); case 891: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(448); + lookahead == 'n') ADVANCE(283); END_STATE(); case 892: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(773); + lookahead == 'n') ADVANCE(442); END_STATE(); case 893: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(446); + lookahead == 'n') ADVANCE(1114); END_STATE(); case 894: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(311); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1307); + lookahead == 'n') ADVANCE(426); END_STATE(); case 895: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1189); + lookahead == 'n') ADVANCE(168); END_STATE(); case 896: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(415); + lookahead == 'n') ADVANCE(1163); END_STATE(); case 897: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(464); + lookahead == 'n') ADVANCE(163); END_STATE(); case 898: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1148); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2529); + lookahead == 'n') ADVANCE(1149); END_STATE(); case 899: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1148); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(842); + lookahead == 'n') ADVANCE(456); END_STATE(); case 900: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1151); + lookahead == 'n') ADVANCE(781); END_STATE(); case 901: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(977); + lookahead == 'n') ADVANCE(454); END_STATE(); case 902: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1164); + lookahead == 'n') ADVANCE(319); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1315); END_STATE(); case 903: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1152); + lookahead == 'n') ADVANCE(1197); END_STATE(); case 904: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1201); + lookahead == 'n') ADVANCE(423); END_STATE(); case 905: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1165); + lookahead == 'n') ADVANCE(472); END_STATE(); case 906: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(272); + lookahead == 'n') ADVANCE(1156); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2540); END_STATE(); case 907: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(441); + lookahead == 'n') ADVANCE(1156); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(850); END_STATE(); case 908: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(383); + lookahead == 'n') ADVANCE(1159); END_STATE(); case 909: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(721); + lookahead == 'n') ADVANCE(985); END_STATE(); case 910: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(443); + lookahead == 'n') ADVANCE(1172); END_STATE(); case 911: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(386); + lookahead == 'n') ADVANCE(1160); END_STATE(); case 912: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(376); + lookahead == 'n') ADVANCE(1209); END_STATE(); case 913: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(731); + lookahead == 'n') ADVANCE(1173); END_STATE(); case 914: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1220); + lookahead == 'n') ADVANCE(280); END_STATE(); case 915: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1279); + lookahead == 'n') ADVANCE(449); END_STATE(); case 916: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(407); + lookahead == 'n') ADVANCE(391); END_STATE(); case 917: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1144); + lookahead == 'n') ADVANCE(729); END_STATE(); case 918: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1145); + lookahead == 'n') ADVANCE(451); END_STATE(); case 919: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2588); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(394); END_STATE(); case 920: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2607); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(384); END_STATE(); case 921: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2480); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(739); END_STATE(); case 922: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2690); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1228); END_STATE(); case 923: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2589); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1287); END_STATE(); case 924: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2510); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(415); END_STATE(); case 925: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(779); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1152); END_STATE(); case 926: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(961); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1153); END_STATE(); case 927: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1002); + lookahead == 'o') ADVANCE(2599); END_STATE(); case 928: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1002); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(591); + lookahead == 'o') ADVANCE(2618); END_STATE(); case 929: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(764); + lookahead == 'o') ADVANCE(2491); END_STATE(); case 930: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(694); + lookahead == 'o') ADVANCE(2701); END_STATE(); case 931: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1285); + lookahead == 'o') ADVANCE(2600); END_STATE(); case 932: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(781); + lookahead == 'o') ADVANCE(2521); END_STATE(); case 933: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(367); + lookahead == 'o') ADVANCE(787); END_STATE(); case 934: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(437); + lookahead == 'o') ADVANCE(969); END_STATE(); case 935: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1283); + lookahead == 'o') ADVANCE(1010); END_STATE(); case 936: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(817); + lookahead == 'o') ADVANCE(1010); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(599); END_STATE(); case 937: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(780); + lookahead == 'o') ADVANCE(772); END_STATE(); case 938: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(358); + lookahead == 'o') ADVANCE(702); END_STATE(); case 939: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(872); + lookahead == 'o') ADVANCE(1293); END_STATE(); case 940: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1008); + lookahead == 'o') ADVANCE(789); END_STATE(); case 941: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(369); + lookahead == 'o') ADVANCE(375); END_STATE(); case 942: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(370); + lookahead == 'o') ADVANCE(445); END_STATE(); case 943: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1010); + lookahead == 'o') ADVANCE(1291); END_STATE(); case 944: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(393); + lookahead == 'o') ADVANCE(825); END_STATE(); case 945: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(419); + lookahead == 'o') ADVANCE(788); END_STATE(); case 946: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1026); + lookahead == 'o') ADVANCE(366); END_STATE(); case 947: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1264); + lookahead == 'o') ADVANCE(880); END_STATE(); case 948: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(999); + lookahead == 'o') ADVANCE(1016); END_STATE(); case 949: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(862); + lookahead == 'o') ADVANCE(377); END_STATE(); case 950: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(892); + lookahead == 'o') ADVANCE(378); END_STATE(); case 951: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(953); + lookahead == 'o') ADVANCE(1018); END_STATE(); case 952: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(863); + lookahead == 'o') ADVANCE(401); END_STATE(); case 953: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(762); + lookahead == 'o') ADVANCE(427); END_STATE(); case 954: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(865); + lookahead == 'o') ADVANCE(1034); END_STATE(); case 955: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(145); + lookahead == 'o') ADVANCE(1272); END_STATE(); case 956: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1034); + lookahead == 'o') ADVANCE(1007); END_STATE(); case 957: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(811); + lookahead == 'o') ADVANCE(870); END_STATE(); case 958: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1037); + lookahead == 'o') ADVANCE(900); END_STATE(); case 959: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1038); + lookahead == 'o') ADVANCE(961); END_STATE(); case 960: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(810); + lookahead == 'o') ADVANCE(871); END_STATE(); case 961: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(810); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(288); + lookahead == 'o') ADVANCE(770); END_STATE(); case 962: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(155); + lookahead == 'o') ADVANCE(873); END_STATE(); case 963: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(861); + lookahead == 'o') ADVANCE(152); END_STATE(); case 964: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1029); + lookahead == 'o') ADVANCE(1042); END_STATE(); case 965: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1030); + lookahead == 'o') ADVANCE(819); END_STATE(); case 966: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(855); + lookahead == 'o') ADVANCE(1045); END_STATE(); case 967: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1031); + lookahead == 'o') ADVANCE(1046); END_STATE(); case 968: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1033); + lookahead == 'o') ADVANCE(818); END_STATE(); case 969: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(181); + lookahead == 'o') ADVANCE(818); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(296); END_STATE(); case 970: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1065); + lookahead == 'o') ADVANCE(162); END_STATE(); case 971: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(901); + lookahead == 'o') ADVANCE(869); END_STATE(); case 972: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(858); + lookahead == 'o') ADVANCE(1037); END_STATE(); case 973: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(857); + lookahead == 'o') ADVANCE(1038); END_STATE(); case 974: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1221); + lookahead == 'o') ADVANCE(863); END_STATE(); case 975: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(889); + lookahead == 'o') ADVANCE(1039); END_STATE(); case 976: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1018); + lookahead == 'o') ADVANCE(1041); END_STATE(); case 977: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1248); + lookahead == 'o') ADVANCE(188); END_STATE(); case 978: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(442); + lookahead == 'o') ADVANCE(1073); END_STATE(); case 979: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(960); + lookahead == 'o') ADVANCE(909); END_STATE(); case 980: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(960); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(256); + lookahead == 'o') ADVANCE(866); END_STATE(); case 981: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(736); + lookahead == 'o') ADVANCE(865); END_STATE(); case 982: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1269); + lookahead == 'o') ADVANCE(1229); END_STATE(); case 983: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(387); + lookahead == 'o') ADVANCE(897); END_STATE(); case 984: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1261); + lookahead == 'o') ADVANCE(1026); END_STATE(); case 985: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1086); + lookahead == 'o') ADVANCE(1256); END_STATE(); case 986: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(812); + lookahead == 'o') ADVANCE(450); END_STATE(); case 987: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(813); + lookahead == 'o') ADVANCE(968); END_STATE(); case 988: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(814); + lookahead == 'o') ADVANCE(968); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(264); END_STATE(); case 989: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(815); + lookahead == 'o') ADVANCE(744); END_STATE(); case 990: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(915); + lookahead == 'o') ADVANCE(1277); END_STATE(); case 991: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2590); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(398); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(395); END_STATE(); case 992: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2655); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1269); END_STATE(); case 993: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2673); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1094); END_STATE(); case 994: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1003); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(820); END_STATE(); case 995: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1003); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2467); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(821); END_STATE(); case 996: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1003); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2467); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1200); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(822); END_STATE(); case 997: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1003); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1305); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(823); END_STATE(); case 998: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2591); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(923); END_STATE(); case 999: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2613); + lookahead == 'p') ADVANCE(2601); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(406); END_STATE(); case 1000: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2706); + lookahead == 'p') ADVANCE(2666); END_STATE(); case 1001: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(790); + lookahead == 'p') ADVANCE(2684); END_STATE(); case 1002: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(160); + lookahead == 'p') ADVANCE(1011); END_STATE(); case 1003: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(590); + lookahead == 'p') ADVANCE(1011); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2478); END_STATE(); case 1004: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1006); + lookahead == 'p') ADVANCE(1011); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2478); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1208); END_STATE(); case 1005: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(174); + lookahead == 'p') ADVANCE(1011); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1313); END_STATE(); case 1006: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(770); + lookahead == 'p') ADVANCE(2602); END_STATE(); case 1007: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1154); + lookahead == 'p') ADVANCE(2624); END_STATE(); case 1008: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(712); + lookahead == 'p') ADVANCE(2717); END_STATE(); case 1009: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(951); + lookahead == 'p') ADVANCE(798); END_STATE(); case 1010: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(303); + lookahead == 'p') ADVANCE(167); END_STATE(); case 1011: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(178); + lookahead == 'p') ADVANCE(598); END_STATE(); case 1012: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(177); + lookahead == 'p') ADVANCE(1014); END_STATE(); case 1013: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1094); + lookahead == 'p') ADVANCE(181); END_STATE(); case 1014: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(474); + lookahead == 'p') ADVANCE(778); END_STATE(); case 1015: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(484); + lookahead == 'p') ADVANCE(1162); END_STATE(); case 1016: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(486); + lookahead == 'p') ADVANCE(720); END_STATE(); case 1017: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(981); + lookahead == 'p') ADVANCE(959); END_STATE(); case 1018: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(167); + lookahead == 'p') ADVANCE(311); END_STATE(); case 1019: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(609); + lookahead == 'p') ADVANCE(185); END_STATE(); case 1020: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1071); + lookahead == 'p') ADVANCE(184); END_STATE(); case 1021: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1256); + lookahead == 'p') ADVANCE(1102); END_STATE(); case 1022: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1257); + lookahead == 'p') ADVANCE(482); END_STATE(); case 1023: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(604); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(598); + lookahead == 'p') ADVANCE(492); END_STATE(); case 1024: - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2491); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1182); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(494); END_STATE(); case 1025: - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1250); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(989); END_STATE(); case 1026: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2606); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(174); END_STATE(); case 1027: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2528); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(617); END_STATE(); case 1028: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2712); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1079); END_STATE(); case 1029: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2695); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1264); END_STATE(); case 1030: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2693); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1265); END_STATE(); case 1031: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2697); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(612); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(606); END_STATE(); case 1032: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2586); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2502); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1190); END_STATE(); case 1033: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2702); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1258); END_STATE(); case 1034: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2547); + lookahead == 'r') ADVANCE(2617); END_STATE(); case 1035: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2554); + lookahead == 'r') ADVANCE(2539); END_STATE(); case 1036: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2616); + lookahead == 'r') ADVANCE(2723); END_STATE(); case 1037: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2575); + lookahead == 'r') ADVANCE(2706); END_STATE(); case 1038: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2574); + lookahead == 'r') ADVANCE(2704); END_STATE(); case 1039: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2701); + lookahead == 'r') ADVANCE(2708); END_STATE(); case 1040: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(718); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2562); + lookahead == 'r') ADVANCE(2597); END_STATE(); case 1041: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2527); + lookahead == 'r') ADVANCE(2713); END_STATE(); case 1042: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1296); + lookahead == 'r') ADVANCE(2558); END_STATE(); case 1043: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1284); + lookahead == 'r') ADVANCE(2565); END_STATE(); case 1044: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(631); + lookahead == 'r') ADVANCE(2627); END_STATE(); case 1045: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(842); + lookahead == 'r') ADVANCE(2586); END_STATE(); case 1046: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1297); + lookahead == 'r') ADVANCE(2585); END_STATE(); case 1047: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(381); + lookahead == 'r') ADVANCE(2712); END_STATE(); case 1048: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(946); + lookahead == 'r') ADVANCE(726); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2573); END_STATE(); case 1049: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(690); + lookahead == 'r') ADVANCE(2538); END_STATE(); case 1050: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1259); + lookahead == 'r') ADVANCE(1304); END_STATE(); case 1051: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(429); + lookahead == 'r') ADVANCE(1292); END_STATE(); case 1052: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(753); + lookahead == 'r') ADVANCE(639); END_STATE(); case 1053: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1294); + lookahead == 'r') ADVANCE(850); END_STATE(); case 1054: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(856); + lookahead == 'r') ADVANCE(1305); END_STATE(); case 1055: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1295); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1068); + lookahead == 'r') ADVANCE(389); END_STATE(); case 1056: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(266); + lookahead == 'r') ADVANCE(954); END_STATE(); case 1057: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1252); + lookahead == 'r') ADVANCE(698); END_STATE(); case 1058: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(737); + lookahead == 'r') ADVANCE(1267); END_STATE(); case 1059: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(737); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2562); + lookahead == 'r') ADVANCE(437); END_STATE(); case 1060: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(544); + lookahead == 'r') ADVANCE(761); END_STATE(); case 1061: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1160); + lookahead == 'r') ADVANCE(1302); END_STATE(); case 1062: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1108); + lookahead == 'r') ADVANCE(864); END_STATE(); case 1063: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1113); + lookahead == 'r') ADVANCE(1303); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1076); END_STATE(); case 1064: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1169); + lookahead == 'r') ADVANCE(274); END_STATE(); case 1065: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1118); + lookahead == 'r') ADVANCE(1260); END_STATE(); case 1066: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(461); + lookahead == 'r') ADVANCE(745); END_STATE(); case 1067: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(546); + lookahead == 'r') ADVANCE(745); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2573); END_STATE(); case 1068: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(866); + lookahead == 'r') ADVANCE(552); END_STATE(); case 1069: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(935); + lookahead == 'r') ADVANCE(1168); END_STATE(); case 1070: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(469); + lookahead == 'r') ADVANCE(1116); END_STATE(); case 1071: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(983); + lookahead == 'r') ADVANCE(1121); END_STATE(); case 1072: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1198); + lookahead == 'r') ADVANCE(1177); END_STATE(); case 1073: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(473); + lookahead == 'r') ADVANCE(1126); END_STATE(); case 1074: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1090); + lookahead == 'r') ADVANCE(469); END_STATE(); case 1075: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(547); + lookahead == 'r') ADVANCE(554); END_STATE(); case 1076: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1188); + lookahead == 'r') ADVANCE(874); END_STATE(); case 1077: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(524); + lookahead == 'r') ADVANCE(943); END_STATE(); case 1078: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(620); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(294); + lookahead == 'r') ADVANCE(477); END_STATE(); case 1079: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(515); + lookahead == 'r') ADVANCE(991); END_STATE(); case 1080: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(477); + lookahead == 'r') ADVANCE(1206); END_STATE(); case 1081: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(645); + lookahead == 'r') ADVANCE(481); END_STATE(); case 1082: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(956); + lookahead == 'r') ADVANCE(1098); END_STATE(); case 1083: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(563); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(633); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2630); + lookahead == 'r') ADVANCE(555); END_STATE(); case 1084: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(549); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(984); + lookahead == 'r') ADVANCE(1196); END_STATE(); case 1085: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(707); + lookahead == 'r') ADVANCE(532); END_STATE(); case 1086: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(849); + lookahead == 'r') ADVANCE(628); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(302); END_STATE(); case 1087: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1191); + lookahead == 'r') ADVANCE(523); END_STATE(); case 1088: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1132); + lookahead == 'r') ADVANCE(485); END_STATE(); case 1089: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(384); + lookahead == 'r') ADVANCE(653); END_STATE(); case 1090: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(738); + lookahead == 'r') ADVANCE(964); END_STATE(); case 1091: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(651); + lookahead == 'r') ADVANCE(571); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(641); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2641); END_STATE(); case 1092: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(971); + lookahead == 'r') ADVANCE(557); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(992); END_STATE(); case 1093: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1082); + lookahead == 'r') ADVANCE(715); END_STATE(); case 1094: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(745); + lookahead == 'r') ADVANCE(857); END_STATE(); case 1095: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(308); + lookahead == 'r') ADVANCE(1199); END_STATE(); case 1096: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(717); + lookahead == 'r') ADVANCE(1140); END_STATE(); case 1097: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(717); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2562); + lookahead == 'r') ADVANCE(392); END_STATE(); case 1098: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(321); + lookahead == 'r') ADVANCE(746); END_STATE(); case 1099: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(613); + lookahead == 'r') ADVANCE(659); END_STATE(); case 1100: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(742); + lookahead == 'r') ADVANCE(979); END_STATE(); case 1101: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(324); + lookahead == 'r') ADVANCE(1090); END_STATE(); case 1102: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1270); + lookahead == 'r') ADVANCE(753); END_STATE(); case 1103: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2500); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(316); END_STATE(); case 1104: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2495); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(725); END_STATE(); case 1105: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2496); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(725); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2573); END_STATE(); case 1106: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2497); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(329); END_STATE(); case 1107: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2597); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(621); END_STATE(); case 1108: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2688); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(750); END_STATE(); case 1109: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2577); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(332); END_STATE(); case 1110: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2689); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1278); END_STATE(); case 1111: if (lookahead == 'S' || - lookahead == 's') ADVANCE(2601); + lookahead == 's') ADVANCE(2511); END_STATE(); case 1112: if (lookahead == 'S' || - lookahead == 's') ADVANCE(2569); + lookahead == 's') ADVANCE(2506); END_STATE(); case 1113: if (lookahead == 'S' || - lookahead == 's') ADVANCE(2677); + lookahead == 's') ADVANCE(2507); END_STATE(); case 1114: if (lookahead == 'S' || - lookahead == 's') ADVANCE(2678); + lookahead == 's') ADVANCE(2508); END_STATE(); case 1115: if (lookahead == 'S' || - lookahead == 's') ADVANCE(2508); + lookahead == 's') ADVANCE(2608); END_STATE(); case 1116: if (lookahead == 'S' || - lookahead == 's') ADVANCE(2576); + lookahead == 's') ADVANCE(2699); END_STATE(); case 1117: if (lookahead == 'S' || - lookahead == 's') ADVANCE(2703); + lookahead == 's') ADVANCE(2588); END_STATE(); case 1118: if (lookahead == 'S' || - lookahead == 's') ADVANCE(2705); + lookahead == 's') ADVANCE(2700); END_STATE(); case 1119: if (lookahead == 'S' || - lookahead == 's') ADVANCE(2535); + lookahead == 's') ADVANCE(2612); END_STATE(); case 1120: if (lookahead == 'S' || - lookahead == 's') ADVANCE(2711); + lookahead == 's') ADVANCE(2580); END_STATE(); case 1121: if (lookahead == 'S' || - lookahead == 's') ADVANCE(531); + lookahead == 's') ADVANCE(2688); END_STATE(); case 1122: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1103); + lookahead == 's') ADVANCE(2689); END_STATE(); case 1123: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1183); + lookahead == 's') ADVANCE(2519); END_STATE(); case 1124: if (lookahead == 'S' || - lookahead == 's') ADVANCE(377); + lookahead == 's') ADVANCE(2587); END_STATE(); case 1125: if (lookahead == 'S' || - lookahead == 's') ADVANCE(455); + lookahead == 's') ADVANCE(2714); END_STATE(); case 1126: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1153); + lookahead == 's') ADVANCE(2716); END_STATE(); case 1127: if (lookahead == 'S' || - lookahead == 's') ADVANCE(713); + lookahead == 's') ADVANCE(2546); END_STATE(); case 1128: if (lookahead == 'S' || - lookahead == 's') ADVANCE(691); + lookahead == 's') ADVANCE(2722); END_STATE(); case 1129: if (lookahead == 'S' || - lookahead == 's') ADVANCE(269); + lookahead == 's') ADVANCE(539); END_STATE(); case 1130: if (lookahead == 'S' || - lookahead == 's') ADVANCE(459); + lookahead == 's') ADVANCE(1111); END_STATE(); case 1131: if (lookahead == 'S' || - lookahead == 's') ADVANCE(310); + lookahead == 's') ADVANCE(1191); END_STATE(); case 1132: if (lookahead == 'S' || - lookahead == 's') ADVANCE(722); + lookahead == 's') ADVANCE(385); END_STATE(); case 1133: if (lookahead == 'S' || - lookahead == 's') ADVANCE(601); + lookahead == 's') ADVANCE(463); END_STATE(); case 1134: if (lookahead == 'S' || - lookahead == 's') ADVANCE(475); + lookahead == 's') ADVANCE(1161); END_STATE(); case 1135: if (lookahead == 'S' || - lookahead == 's') ADVANCE(541); + lookahead == 's') ADVANCE(721); END_STATE(); case 1136: if (lookahead == 'S' || - lookahead == 's') ADVANCE(566); + lookahead == 's') ADVANCE(699); END_STATE(); case 1137: if (lookahead == 'S' || - lookahead == 's') ADVANCE(454); + lookahead == 's') ADVANCE(277); END_STATE(); case 1138: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1131); + lookahead == 's') ADVANCE(467); END_STATE(); case 1139: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1228); + lookahead == 's') ADVANCE(318); END_STATE(); case 1140: if (lookahead == 'S' || - lookahead == 's') ADVANCE(618); + lookahead == 's') ADVANCE(730); END_STATE(); case 1141: if (lookahead == 'S' || - lookahead == 's') ADVANCE(726); + lookahead == 's') ADVANCE(609); END_STATE(); case 1142: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1231); + lookahead == 's') ADVANCE(483); END_STATE(); case 1143: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1231); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(332); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(588); + lookahead == 's') ADVANCE(549); END_STATE(); case 1144: if (lookahead == 'S' || - lookahead == 's') ADVANCE(748); + lookahead == 's') ADVANCE(574); END_STATE(); case 1145: if (lookahead == 'S' || - lookahead == 's') ADVANCE(623); + lookahead == 's') ADVANCE(462); END_STATE(); case 1146: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2562); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1139); END_STATE(); case 1147: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2561); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1236); END_STATE(); case 1148: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2698); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(626); END_STATE(); case 1149: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2633); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(734); END_STATE(); case 1150: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2615); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1239); END_STATE(); case 1151: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1239); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2639); + lookahead == 't') ADVANCE(340); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(596); END_STATE(); case 1152: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2564); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(756); END_STATE(); case 1153: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2632); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(631); END_STATE(); case 1154: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2536); + lookahead == 't') ADVANCE(2573); END_STATE(); case 1155: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2509); + lookahead == 't') ADVANCE(2572); END_STATE(); case 1156: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2540); + lookahead == 't') ADVANCE(2709); END_STATE(); case 1157: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2552); + lookahead == 't') ADVANCE(2644); END_STATE(); case 1158: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2595); + lookahead == 't') ADVANCE(2626); END_STATE(); case 1159: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2627); + lookahead == 't') ADVANCE(2650); END_STATE(); case 1160: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2594); + lookahead == 't') ADVANCE(2575); END_STATE(); case 1161: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2472); + lookahead == 't') ADVANCE(2643); END_STATE(); case 1162: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2559); + lookahead == 't') ADVANCE(2547); END_STATE(); case 1163: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2600); + lookahead == 't') ADVANCE(2520); END_STATE(); case 1164: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2644); + lookahead == 't') ADVANCE(2551); END_STATE(); case 1165: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2708); + lookahead == 't') ADVANCE(2563); END_STATE(); case 1166: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2696); + lookahead == 't') ADVANCE(2606); END_STATE(); case 1167: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2503); + lookahead == 't') ADVANCE(2638); END_STATE(); case 1168: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2505); + lookahead == 't') ADVANCE(2605); END_STATE(); case 1169: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2593); + lookahead == 't') ADVANCE(2483); END_STATE(); case 1170: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2541); + lookahead == 't') ADVANCE(2570); END_STATE(); case 1171: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2692); + lookahead == 't') ADVANCE(2611); END_STATE(); case 1172: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2609); + lookahead == 't') ADVANCE(2655); END_STATE(); case 1173: if (lookahead == 'T' || - lookahead == 't') ADVANCE(677); + lookahead == 't') ADVANCE(2719); END_STATE(); case 1174: if (lookahead == 'T' || - lookahead == 't') ADVANCE(333); + lookahead == 't') ADVANCE(2707); END_STATE(); case 1175: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2475); + lookahead == 't') ADVANCE(2514); END_STATE(); case 1176: if (lookahead == 'T' || - lookahead == 't') ADVANCE(270); + lookahead == 't') ADVANCE(2516); END_STATE(); case 1177: if (lookahead == 'T' || - lookahead == 't') ADVANCE(661); + lookahead == 't') ADVANCE(2604); END_STATE(); case 1178: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1306); + lookahead == 't') ADVANCE(2552); END_STATE(); case 1179: if (lookahead == 'T' || - lookahead == 't') ADVANCE(697); + lookahead == 't') ADVANCE(2703); END_STATE(); case 1180: if (lookahead == 'T' || - lookahead == 't') ADVANCE(663); + lookahead == 't') ADVANCE(2620); END_STATE(); case 1181: if (lookahead == 'T' || - lookahead == 't') ADVANCE(720); + lookahead == 't') ADVANCE(685); END_STATE(); case 1182: if (lookahead == 'T' || - lookahead == 't') ADVANCE(538); + lookahead == 't') ADVANCE(341); END_STATE(); case 1183: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1056); + lookahead == 't') ADVANCE(2486); END_STATE(); case 1184: if (lookahead == 'T' || - lookahead == 't') ADVANCE(332); + lookahead == 't') ADVANCE(278); END_STATE(); case 1185: if (lookahead == 'T' || - lookahead == 't') ADVANCE(332); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(588); + lookahead == 't') ADVANCE(669); END_STATE(); case 1186: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1050); + lookahead == 't') ADVANCE(1314); END_STATE(); case 1187: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1116); + lookahead == 't') ADVANCE(705); END_STATE(); case 1188: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1298); + lookahead == 't') ADVANCE(671); END_STATE(); case 1189: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1109); + lookahead == 't') ADVANCE(728); END_STATE(); case 1190: if (lookahead == 'T' || - lookahead == 't') ADVANCE(702); + lookahead == 't') ADVANCE(546); END_STATE(); case 1191: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1095); + lookahead == 't') ADVANCE(1064); END_STATE(); case 1192: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1021); + lookahead == 't') ADVANCE(340); END_STATE(); case 1193: if (lookahead == 'T' || - lookahead == 't') ADVANCE(159); + lookahead == 't') ADVANCE(340); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(596); END_STATE(); case 1194: if (lookahead == 'T' || - lookahead == 't') ADVANCE(705); + lookahead == 't') ADVANCE(1058); END_STATE(); case 1195: if (lookahead == 'T' || - lookahead == 't') ADVANCE(154); + lookahead == 't') ADVANCE(1124); END_STATE(); case 1196: if (lookahead == 'T' || - lookahead == 't') ADVANCE(158); + lookahead == 't') ADVANCE(1306); END_STATE(); case 1197: if (lookahead == 'T' || - lookahead == 't') ADVANCE(955); + lookahead == 't') ADVANCE(1117); END_STATE(); case 1198: if (lookahead == 'T' || - lookahead == 't') ADVANCE(146); + lookahead == 't') ADVANCE(710); END_STATE(); case 1199: if (lookahead == 'T' || - lookahead == 't') ADVANCE(253); + lookahead == 't') ADVANCE(1103); END_STATE(); case 1200: if (lookahead == 'T' || - lookahead == 't') ADVANCE(962); + lookahead == 't') ADVANCE(1029); END_STATE(); case 1201: if (lookahead == 'T' || - lookahead == 't') ADVANCE(165); + lookahead == 't') ADVANCE(166); END_STATE(); case 1202: if (lookahead == 'T' || - lookahead == 't') ADVANCE(467); + lookahead == 't') ADVANCE(713); END_STATE(); case 1203: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1219); + lookahead == 't') ADVANCE(161); END_STATE(); case 1204: if (lookahead == 'T' || - lookahead == 't') ADVANCE(598); + lookahead == 't') ADVANCE(165); END_STATE(); case 1205: if (lookahead == 'T' || - lookahead == 't') ADVANCE(468); + lookahead == 't') ADVANCE(963); END_STATE(); case 1206: if (lookahead == 'T' || - lookahead == 't') ADVANCE(562); + lookahead == 't') ADVANCE(153); END_STATE(); case 1207: if (lookahead == 'T' || - lookahead == 't') ADVANCE(488); + lookahead == 't') ADVANCE(261); END_STATE(); case 1208: if (lookahead == 'T' || - lookahead == 't') ADVANCE(564); + lookahead == 't') ADVANCE(970); END_STATE(); case 1209: if (lookahead == 'T' || - lookahead == 't') ADVANCE(673); + lookahead == 't') ADVANCE(172); END_STATE(); case 1210: if (lookahead == 'T' || - lookahead == 't') ADVANCE(283); + lookahead == 't') ADVANCE(475); END_STATE(); case 1211: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1263); + lookahead == 't') ADVANCE(1227); END_STATE(); case 1212: if (lookahead == 'T' || - lookahead == 't') ADVANCE(398); + lookahead == 't') ADVANCE(606); END_STATE(); case 1213: if (lookahead == 'T' || - lookahead == 't') ADVANCE(398); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(698); + lookahead == 't') ADVANCE(476); END_STATE(); case 1214: if (lookahead == 'T' || - lookahead == 't') ADVANCE(958); + lookahead == 't') ADVANCE(570); END_STATE(); case 1215: if (lookahead == 'T' || - lookahead == 't') ADVANCE(334); + lookahead == 't') ADVANCE(496); END_STATE(); case 1216: if (lookahead == 'T' || - lookahead == 't') ADVANCE(959); + lookahead == 't') ADVANCE(572); END_STATE(); case 1217: if (lookahead == 'T' || - lookahead == 't') ADVANCE(565); + lookahead == 't') ADVANCE(681); END_STATE(); case 1218: if (lookahead == 'T' || - lookahead == 't') ADVANCE(569); + lookahead == 't') ADVANCE(291); END_STATE(); case 1219: if (lookahead == 'T' || - lookahead == 't') ADVANCE(963); + lookahead == 't') ADVANCE(1271); END_STATE(); case 1220: if (lookahead == 'T' || - lookahead == 't') ADVANCE(576); + lookahead == 't') ADVANCE(406); END_STATE(); case 1221: if (lookahead == 'T' || - lookahead == 't') ADVANCE(289); + lookahead == 't') ADVANCE(406); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(706); END_STATE(); case 1222: if (lookahead == 'T' || @@ -20800,496 +21175,530 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1223: if (lookahead == 'T' || - lookahead == 't') ADVANCE(727); + lookahead == 't') ADVANCE(342); END_STATE(); case 1224: if (lookahead == 'T' || - lookahead == 't') ADVANCE(723); + lookahead == 't') ADVANCE(967); END_STATE(); case 1225: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1022); + lookahead == 't') ADVANCE(573); END_STATE(); case 1226: if (lookahead == 'T' || - lookahead == 't') ADVANCE(735); + lookahead == 't') ADVANCE(577); END_STATE(); case 1227: if (lookahead == 'T' || - lookahead == 't') ADVANCE(733); + lookahead == 't') ADVANCE(971); END_STATE(); case 1228: if (lookahead == 'T' || - lookahead == 't') ADVANCE(610); + lookahead == 't') ADVANCE(584); END_STATE(); case 1229: if (lookahead == 'T' || - lookahead == 't') ADVANCE(740); + lookahead == 't') ADVANCE(297); END_STATE(); case 1230: if (lookahead == 'T' || - lookahead == 't') ADVANCE(743); + lookahead == 't') ADVANCE(974); END_STATE(); case 1231: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1102); + lookahead == 't') ADVANCE(735); END_STATE(); case 1232: if (lookahead == 'T' || - lookahead == 't') ADVANCE(335); + lookahead == 't') ADVANCE(731); END_STATE(); case 1233: if (lookahead == 'T' || - lookahead == 't') ADVANCE(617); + lookahead == 't') ADVANCE(1030); END_STATE(); case 1234: if (lookahead == 'T' || - lookahead == 't') ADVANCE(337); + lookahead == 't') ADVANCE(743); END_STATE(); case 1235: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(627); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(741); END_STATE(); case 1236: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(884); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(618); END_STATE(); case 1237: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(828); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(748); END_STATE(); case 1238: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1047); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(751); END_STATE(); case 1239: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(778); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1110); END_STATE(); case 1240: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1127); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(343); END_STATE(); case 1241: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(993); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(625); END_STATE(); case 1242: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(818); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(345); END_STATE(); case 1243: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(819); + lookahead == 'u') ADVANCE(635); END_STATE(); case 1244: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(820); + lookahead == 'u') ADVANCE(892); END_STATE(); case 1245: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(821); + lookahead == 'u') ADVANCE(836); END_STATE(); case 1246: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1054); + lookahead == 'u') ADVANCE(1055); END_STATE(); case 1247: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1117); + lookahead == 'u') ADVANCE(786); END_STATE(); case 1248: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1120); + lookahead == 'u') ADVANCE(1135); END_STATE(); case 1249: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(793); + lookahead == 'u') ADVANCE(1001); END_STATE(); case 1250: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(465); + lookahead == 'u') ADVANCE(826); END_STATE(); case 1251: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1203); + lookahead == 'u') ADVANCE(827); END_STATE(); case 1252: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(859); + lookahead == 'u') ADVANCE(828); END_STATE(); case 1253: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(916); + lookahead == 'u') ADVANCE(829); END_STATE(); case 1254: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1200); + lookahead == 'u') ADVANCE(1062); END_STATE(); case 1255: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1175); + lookahead == 'u') ADVANCE(1125); END_STATE(); case 1256: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1156); + lookahead == 'u') ADVANCE(1128); END_STATE(); case 1257: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1170); + lookahead == 'u') ADVANCE(801); END_STATE(); case 1258: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(513); + lookahead == 'u') ADVANCE(473); END_STATE(); case 1259: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(379); + lookahead == 'u') ADVANCE(1211); END_STATE(); case 1260: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(832); + lookahead == 'u') ADVANCE(867); END_STATE(); case 1261: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1089); + lookahead == 'u') ADVANCE(924); END_STATE(); case 1262: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(833); + lookahead == 'u') ADVANCE(1208); END_STATE(); case 1263: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1073); + lookahead == 'u') ADVANCE(1183); END_STATE(); case 1264: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(902); + lookahead == 'u') ADVANCE(1164); END_STATE(); case 1265: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(711); + lookahead == 'u') ADVANCE(1178); END_STATE(); case 1266: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1079); + lookahead == 'u') ADVANCE(521); END_STATE(); case 1267: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1080); + lookahead == 'u') ADVANCE(387); END_STATE(); case 1268: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(579); + lookahead == 'u') ADVANCE(840); END_STATE(); case 1269: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1225); + lookahead == 'u') ADVANCE(1097); END_STATE(); case 1270: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(402); + lookahead == 'u') ADVANCE(841); END_STATE(); case 1271: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(508); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1081); END_STATE(); case 1272: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(489); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(910); END_STATE(); case 1273: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(511); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(719); END_STATE(); case 1274: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(312); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1087); END_STATE(); case 1275: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(320); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1088); END_STATE(); case 1276: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(612); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(587); END_STATE(); case 1277: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(596); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1233); END_STATE(); case 1278: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(608); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1182); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(410); END_STATE(); case 1279: if (lookahead == 'V' || - lookahead == 'v') ADVANCE(602); + lookahead == 'v') ADVANCE(516); END_STATE(); case 1280: if (lookahead == 'V' || - lookahead == 'v') ADVANCE(622); + lookahead == 'v') ADVANCE(497); END_STATE(); case 1281: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2511); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1172); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(519); END_STATE(); case 1282: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2682); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(320); END_STATE(); case 1283: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2612); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(328); END_STATE(); case 1284: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(729); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(620); END_STATE(); case 1285: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(860); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(604); END_STATE(); case 1286: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(681); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(616); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1190); END_STATE(); case 1287: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2628); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(610); END_STATE(); case 1288: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2660); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(630); END_STATE(); case 1289: + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(2522); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2661); + lookahead == 'x') ADVANCE(1180); END_STATE(); case 1290: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1196); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(2693); END_STATE(); case 1291: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(728); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(2623); END_STATE(); case 1292: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(595); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(737); END_STATE(); case 1293: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(600); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(868); END_STATE(); case 1294: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2534); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(689); END_STATE(); case 1295: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2610); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2639); END_STATE(); case 1296: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2587); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2671); END_STATE(); case 1297: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2658); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2672); END_STATE(); case 1298: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2563); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1204); END_STATE(); case 1299: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2691); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(736); END_STATE(); case 1300: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2649); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(603); END_STATE(); case 1301: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2637); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(608); END_STATE(); case 1302: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1286); + lookahead == 'y') ADVANCE(2545); END_STATE(); case 1303: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2611); + lookahead == 'y') ADVANCE(2621); END_STATE(); case 1304: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2572); + lookahead == 'y') ADVANCE(2598); END_STATE(); case 1305: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(912); + lookahead == 'y') ADVANCE(2669); END_STATE(); case 1306: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1015); + lookahead == 'y') ADVANCE(2574); END_STATE(); case 1307: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1016); + lookahead == 'y') ADVANCE(2702); END_STATE(); case 1308: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(254); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2660); END_STATE(); case 1309: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(476); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2648); END_STATE(); case 1310: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(555); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1294); END_STATE(); case 1311: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(516); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2622); END_STATE(); case 1312: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(518); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2583); END_STATE(); case 1313: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(339); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(920); END_STATE(); case 1314: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(210); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1023); END_STATE(); case 1315: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2455); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1024); END_STATE(); case 1316: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1315); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(262); END_STATE(); case 1317: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1316); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(484); END_STATE(); case 1318: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1317); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(563); END_STATE(); case 1319: - if (eof) ADVANCE(1324); - if (lookahead == '\n') SKIP(1321) + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(524); END_STATE(); case 1320: - if (eof) ADVANCE(1324); - if (lookahead == '\n') SKIP(1321) - if (lookahead == '\r') SKIP(1319) + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(526); END_STATE(); case 1321: - if (eof) ADVANCE(1324); - if (lookahead == '(') ADVANCE(2465); - if (lookahead == ')') ADVANCE(2466); - if (lookahead == '*') ADVANCE(2448); - if (lookahead == '+') ADVANCE(2477); - if (lookahead == ',') ADVANCE(2457); - if (lookahead == '-') ADVANCE(2478); - if (lookahead == '.') ADVANCE(2449); - if (lookahead == '/') ADVANCE(1342); - if (lookahead == ':') ADVANCE(1325); - if (lookahead == '<') ADVANCE(2481); - if (lookahead == '=') ADVANCE(2484); - if (lookahead == '>') ADVANCE(2485); - if (lookahead == 'B') ADVANCE(242); - if (lookahead == 'N') ADVANCE(225); - if (lookahead == 'S') ADVANCE(212); - if (lookahead == '[') ADVANCE(2456); - if (lookahead == '\\') SKIP(1320) - if (lookahead == ']') ADVANCE(2458); - if (lookahead == 'b') ADVANCE(494); - if (lookahead == 'n') ADVANCE(496); - if (lookahead == 's') ADVANCE(502); - if (lookahead == '{') ADVANCE(1343); - if (lookahead == '}') ADVANCE(1348); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(347); + END_STATE(); + case 1322: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(218); + END_STATE(); + case 1323: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2466); + END_STATE(); + case 1324: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1323); + END_STATE(); + case 1325: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1324); + END_STATE(); + case 1326: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1325); + END_STATE(); + case 1327: + if (eof) ADVANCE(1332); + if (lookahead == '\n') SKIP(1329) + END_STATE(); + case 1328: + if (eof) ADVANCE(1332); + if (lookahead == '\n') SKIP(1329) + if (lookahead == '\r') SKIP(1327) + END_STATE(); + case 1329: + if (eof) ADVANCE(1332); + if (lookahead == '(') ADVANCE(2476); + if (lookahead == ')') ADVANCE(2477); + if (lookahead == '*') ADVANCE(2459); + if (lookahead == '+') ADVANCE(2488); + if (lookahead == ',') ADVANCE(2468); + if (lookahead == '-') ADVANCE(2489); + if (lookahead == '.') ADVANCE(2460); + if (lookahead == '/') ADVANCE(1350); + if (lookahead == ':') ADVANCE(1333); + if (lookahead == '<') ADVANCE(2492); + if (lookahead == '=') ADVANCE(2495); + if (lookahead == '>') ADVANCE(2496); + if (lookahead == 'B') ADVANCE(250); + if (lookahead == 'N') ADVANCE(233); + if (lookahead == 'S') ADVANCE(220); + if (lookahead == '[') ADVANCE(2467); + if (lookahead == '\\') SKIP(1328) + if (lookahead == ']') ADVANCE(2469); + if (lookahead == 'b') ADVANCE(502); + if (lookahead == 'n') ADVANCE(504); + if (lookahead == 's') ADVANCE(510); + if (lookahead == '{') ADVANCE(1351); + if (lookahead == '}') ADVANCE(1356); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(340); + lookahead == 'a') ADVANCE(348); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(244); + lookahead == 'c') ADVANCE(252); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(245); + lookahead == 'd') ADVANCE(253); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(246); + lookahead == 'e') ADVANCE(254); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(684); + lookahead == 'f') ADVANCE(692); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(503); + lookahead == 'g') ADVANCE(511); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(504); + lookahead == 'h') ADVANCE(512); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(822); + lookahead == 'i') ADVANCE(830); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(526); + lookahead == 'k') ADVANCE(534); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(247); + lookahead == 'l') ADVANCE(255); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(248); + lookahead == 'm') ADVANCE(256); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(625); + lookahead == 'o') ADVANCE(633); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(250); + lookahead == 'p') ADVANCE(258); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(365); + lookahead == 'r') ADVANCE(373); if (lookahead == 'T' || - lookahead == 't') ADVANCE(261); + lookahead == 't') ADVANCE(269); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(871); + lookahead == 'u') ADVANCE(879); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(930); + lookahead == 'v') ADVANCE(938); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(664); + lookahead == 'w') ADVANCE(672); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(827); + lookahead == 'x') ADVANCE(835); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2681); + lookahead == 'y') ADVANCE(2692); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(1321) + lookahead == 65279) SKIP(1329) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(35); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2454); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2465); END_STATE(); - case 1322: - if (eof) ADVANCE(1324); - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 1330: + if (eof) ADVANCE(1332); + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1431); + lookahead == 'c') ADVANCE(1440); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1705); + lookahead == 'd') ADVANCE(1716); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1921); + lookahead == 'e') ADVANCE(1932); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1862); + lookahead == 'f') ADVANCE(1873); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2016); + lookahead == 'i') ADVANCE(2027); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1715); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1997); + lookahead == 'o') ADVANCE(2008); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2212); + lookahead == 'p') ADVANCE(2223); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1688); + lookahead == 'r') ADVANCE(1699); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2043); + lookahead == 'u') ADVANCE(2054); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1473); + lookahead == 'v') ADVANCE(1482); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -21297,35 +21706,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(1322) + lookahead == 65279) SKIP(1330) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 1323: - if (eof) ADVANCE(1324); - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(2447); - if (lookahead == '{') ADVANCE(1343); + case 1331: + if (eof) ADVANCE(1332); + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(2458); + if (lookahead == '{') ADVANCE(1351); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1431); + lookahead == 'c') ADVANCE(1440); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1705); + lookahead == 'd') ADVANCE(1716); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1862); + lookahead == 'f') ADVANCE(1873); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2016); + lookahead == 'i') ADVANCE(2027); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1715); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1997); + lookahead == 'o') ADVANCE(2008); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2212); + lookahead == 'p') ADVANCE(2223); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1688); + lookahead == 'r') ADVANCE(1699); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2043); + lookahead == 'u') ADVANCE(2054); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1473); + lookahead == 'v') ADVANCE(1482); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -21333,1564 +21744,1465 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(1323) + lookahead == 65279) SKIP(1331) if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= '|')) ADVANCE(2447); + ('a' <= lookahead && lookahead <= '|')) ADVANCE(2458); END_STATE(); - case 1324: + case 1332: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 1325: + case 1333: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 1326: + case 1334: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 1327: + case 1335: ACCEPT_TOKEN(sym_file_name); END_STATE(); - case 1328: + case 1336: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); - case 1329: + case 1337: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '*') ADVANCE(1341); - if (lookahead != 0) ADVANCE(128); + if (lookahead == '*') ADVANCE(1349); + if (lookahead != 0) ADVANCE(135); END_STATE(); - case 1330: + case 1338: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '.') ADVANCE(243); + if (lookahead == '.') ADVANCE(251); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(186); + lookahead == '|') ADVANCE(193); END_STATE(); - case 1331: + case 1339: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(2462); + lookahead != '\\') ADVANCE(2473); END_STATE(); - case 1332: + case 1340: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1336); + lookahead != '\n') ADVANCE(1344); END_STATE(); - case 1333: + case 1341: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '\r') ADVANCE(1336); + if (lookahead == '\r') ADVANCE(1344); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1336); + lookahead != '\n') ADVANCE(1344); END_STATE(); - case 1334: + case 1342: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '*') ADVANCE(1340); - if (lookahead == '/') ADVANCE(1332); + if (lookahead == '*') ADVANCE(1348); + if (lookahead == '/') ADVANCE(1340); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1336); + lookahead != '\n') ADVANCE(1344); END_STATE(); - case 1335: + case 1343: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '/') ADVANCE(1334); - if (lookahead == '\\') ADVANCE(1333); - if (lookahead == '{') ADVANCE(1346); + if (lookahead == '/') ADVANCE(1342); + if (lookahead == '\\') ADVANCE(1341); + if (lookahead == '{') ADVANCE(1354); if (lookahead == '\t' || lookahead == '\f' || lookahead == '\r' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(1335); + lookahead == 65279) ADVANCE(1343); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1336); + lookahead != '\n') ADVANCE(1344); END_STATE(); - case 1336: + case 1344: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1336); + lookahead != '\n') ADVANCE(1344); END_STATE(); - case 1337: + case 1345: ACCEPT_TOKEN(anon_sym_SLASH_STAR); END_STATE(); - case 1338: + case 1346: ACCEPT_TOKEN(anon_sym_SLASH_STAR); - if (lookahead == '*') ADVANCE(1341); + if (lookahead == '*') ADVANCE(1349); if (lookahead != 0 && - lookahead != '/') ADVANCE(128); + lookahead != '/') ADVANCE(135); END_STATE(); - case 1339: + case 1347: ACCEPT_TOKEN(anon_sym_SLASH_STAR); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(2462); + lookahead != '\\') ADVANCE(2473); END_STATE(); - case 1340: + case 1348: ACCEPT_TOKEN(anon_sym_SLASH_STAR); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1336); + lookahead != '\n') ADVANCE(1344); END_STATE(); - case 1341: + case 1349: ACCEPT_TOKEN(aux_sym_comment_token2); - if (lookahead == '*') ADVANCE(1341); + if (lookahead == '*') ADVANCE(1349); if (lookahead != 0 && - lookahead != '/') ADVANCE(128); + lookahead != '/') ADVANCE(135); END_STATE(); - case 1342: + case 1350: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(1337); - if (lookahead == '/') ADVANCE(1328); + if (lookahead == '*') ADVANCE(1345); + if (lookahead == '/') ADVANCE(1336); END_STATE(); - case 1343: + case 1351: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 1344: + case 1352: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '*') ADVANCE(1341); - if (lookahead != 0) ADVANCE(128); + if (lookahead == '*') ADVANCE(1349); + if (lookahead != 0) ADVANCE(135); END_STATE(); - case 1345: + case 1353: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(2462); + lookahead != '\\') ADVANCE(2473); END_STATE(); - case 1346: + case 1354: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1336); + lookahead != '\n') ADVANCE(1344); END_STATE(); - case 1347: + case 1355: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 1348: + case 1356: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 1349: + case 1357: ACCEPT_TOKEN(sym_identifier); - if (lookahead == ' ') ADVANCE(2667); + if (lookahead == ' ') ADVANCE(2678); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); - END_STATE(); - case 1350: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1400); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2470); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); - END_STATE(); - case 1351: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1722); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2470); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); - END_STATE(); - case 1352: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1722); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); - END_STATE(); - case 1353: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1430); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); - END_STATE(); - case 1354: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1854); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); - END_STATE(); - case 1355: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1615); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); - END_STATE(); - case 1356: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1728); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); - END_STATE(); - case 1357: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2230); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1743); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1358: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2042); + if (lookahead == '-') ADVANCE(1408); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2481); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1359: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1827); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2481); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1360: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1402); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2470); + if (lookahead == '-') ADVANCE(1733); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1361: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1402); + if (lookahead == '-') ADVANCE(1439); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1362: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1573); + if (lookahead == '-') ADVANCE(1865); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1363: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1398); + if (lookahead == '-') ADVANCE(1624); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1364: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1581); + if (lookahead == '-') ADVANCE(1739); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1365: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1401); + if (lookahead == '-') ADVANCE(2241); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1754); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1366: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1532); + if (lookahead == '-') ADVANCE(2053); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1367: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1785); + if (lookahead == '-') ADVANCE(1838); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1368: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1800); + if (lookahead == '-') ADVANCE(1410); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2481); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1369: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1596); + if (lookahead == '-') ADVANCE(1410); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1370: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2153); + if (lookahead == '-') ADVANCE(1582); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1371: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1833); + if (lookahead == '-') ADVANCE(1406); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1372: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2157); + if (lookahead == '-') ADVANCE(1590); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1373: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1933); + if (lookahead == '-') ADVANCE(1409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1374: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1443); + if (lookahead == '-') ADVANCE(1541); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1375: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2347); + if (lookahead == '-') ADVANCE(1796); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1376: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2270); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1743); + if (lookahead == '-') ADVANCE(1811); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1377: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2203); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2100); + if (lookahead == '-') ADVANCE(1605); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1378: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2321); + if (lookahead == '-') ADVANCE(2164); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1379: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1565); + if (lookahead == '-') ADVANCE(1844); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1380: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2367); + if (lookahead == '-') ADVANCE(2168); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1381: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2155); + if (lookahead == '-') ADVANCE(1944); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1382: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2391); + if (lookahead == '-') ADVANCE(1452); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1383: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1980); + if (lookahead == '-') ADVANCE(2358); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1384: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1898); + if (lookahead == '-') ADVANCE(2281); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1754); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1385: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1935); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2513); + if (lookahead == '-') ADVANCE(2214); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2111); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1386: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1935); + if (lookahead == '-') ADVANCE(2332); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1387: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2267); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2602); + if (lookahead == '-') ADVANCE(1574); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1388: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1859); + if (lookahead == '-') ADVANCE(2378); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1389: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1939); + if (lookahead == '-') ADVANCE(2166); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1390: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1858); + if (lookahead == '-') ADVANCE(2402); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1391: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2280); + if (lookahead == '-') ADVANCE(1991); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1392: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2108); + if (lookahead == '-') ADVANCE(1909); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1393: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1723); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2470); + if (lookahead == '-') ADVANCE(1946); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(2524); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1394: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1723); + if (lookahead == '-') ADVANCE(1946); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1395: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1855); + if (lookahead == '-') ADVANCE(2278); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(2613); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1396: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1574); + if (lookahead == '-') ADVANCE(1870); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1397: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(2369); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1883); + if (lookahead == '-') ADVANCE(1950); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1398: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '3') ADVANCE(1611); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(1869); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1399: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(1416); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2170); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1452); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1798); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2376); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1448); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1525); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(2291); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1400: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(1421); - if (lookahead == 'e') ADVANCE(2235); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2086); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1479); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(2119); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1401: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(1421); - if (lookahead == 'e') ADVANCE(2235); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(1734); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2481); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1402: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(1422); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(1734); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1403: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G') ADVANCE(2532); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(1866); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1404: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1407); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(1583); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1405: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(1404); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(2380); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1894); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1406: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(1405); + if (lookahead == '3') ADVANCE(1620); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1407: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(1403); + if (lookahead == 'C') ADVANCE(1425); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2181); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1461); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1809); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2387); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1457); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1534); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1408: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(1350); - if (lookahead == 'o') ADVANCE(1351); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2490); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1968); + if (lookahead == 'E') ADVANCE(1430); + if (lookahead == 'e') ADVANCE(2246); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2097); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1488); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1409: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(1406); + if (lookahead == 'E') ADVANCE(1430); + if (lookahead == 'e') ADVANCE(2246); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1410: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(1419); + if (lookahead == 'E') ADVANCE(1431); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1411: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(1418); - if (lookahead == 'o') ADVANCE(2183); + if (lookahead == 'G') ADVANCE(2543); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1412: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(1360); - if (lookahead == 'o') ADVANCE(2283); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2490); + if (lookahead == 'I') ADVANCE(1415); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1413: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(1361); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2489); + if (lookahead == 'L') ADVANCE(1412); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1414: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(1361); + if (lookahead == 'L') ADVANCE(1413); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1415: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(1365); - if (lookahead == 'o') ADVANCE(1394); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2489); + if (lookahead == 'N') ADVANCE(1411); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1416: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(1409); + if (lookahead == 'O') ADVANCE(1358); + if (lookahead == 'o') ADVANCE(1359); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2501); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1979); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1417: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(1411); - if (lookahead == 'r') ADVANCE(2111); + if (lookahead == 'O') ADVANCE(1414); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1418: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(2547); - if (lookahead == 'r') ADVANCE(2547); + if (lookahead == 'O') ADVANCE(1428); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1419: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(2580); + if (lookahead == 'O') ADVANCE(1427); + if (lookahead == 'o') ADVANCE(2194); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1420: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(1410); + if (lookahead == 'O') ADVANCE(1368); + if (lookahead == 'o') ADVANCE(2294); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2501); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1421: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(1417); - if (lookahead == 'r') ADVANCE(2234); + if (lookahead == 'O') ADVANCE(1369); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2501); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1422: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(1420); + if (lookahead == 'O') ADVANCE(1369); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2500); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1423: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y') ADVANCE(2630); - if (lookahead == 'y') ADVANCE(2630); + if (lookahead == 'O') ADVANCE(1369); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1797); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1578); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2000); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1690); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1782); + lookahead == 'e') ADVANCE(2424); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1424: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y') ADVANCE(2619); + if (lookahead == 'O') ADVANCE(1373); + if (lookahead == 'o') ADVANCE(1402); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1797); + lookahead == 'e') ADVANCE(2501); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1425: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1566); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1440); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1910); + if (lookahead == 'R') ADVANCE(1417); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); END_STATE(); case 1426: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1530); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2488); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1907); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1526); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2487); + if (lookahead == 'R') ADVANCE(1419); + if (lookahead == 'r') ADVANCE(2122); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); END_STATE(); case 1427: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2139); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2341); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2066); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1593); + if (lookahead == 'R') ADVANCE(2558); + if (lookahead == 'r') ADVANCE(2558); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); END_STATE(); case 1428: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1545); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2196); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1580); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2232); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1838); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1529); + if (lookahead == 'R') ADVANCE(2591); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); END_STATE(); case 1429: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1357); + if (lookahead == 'R') ADVANCE(1418); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); END_STATE(); case 1430: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2412); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2091); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1436); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2122); + if (lookahead == 'R') ADVANCE(1426); + if (lookahead == 'r') ADVANCE(2245); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); END_STATE(); case 1431: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2263); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1441); + if (lookahead == 'R') ADVANCE(1429); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); END_STATE(); case 1432: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1547); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1819); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1850); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2264); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1583); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2491); + if (lookahead == 'Y') ADVANCE(2641); + if (lookahead == 'y') ADVANCE(2641); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1808); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1587); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2011); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2199); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1761); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1542); + lookahead == 'r') ADVANCE(1701); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1793); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); END_STATE(); case 1433: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1547); + if (lookahead == 'Y') ADVANCE(2630); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1808); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); END_STATE(); case 1434: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2314); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2084); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1783); + lookahead == 'a') ADVANCE(1575); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1449); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2620); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2082); + lookahead == 'o') ADVANCE(1921); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1435: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1376); + lookahead == 'a') ADVANCE(1539); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2499); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1918); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1535); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2498); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1436: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2428); + lookahead == 'a') ADVANCE(2150); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2352); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2068); + lookahead == 'i') ADVANCE(2077); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1602); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1437: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1801); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1938); + lookahead == 'a') ADVANCE(1554); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2207); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1589); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2243); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1849); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1538); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1438: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1979); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1969); + lookahead == 'a') ADVANCE(1365); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1439: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1979); + lookahead == 'a') ADVANCE(2423); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2102); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1445); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2133); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1440: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2259); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2269); + lookahead == 'a') ADVANCE(2274); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1450); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1441: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2259); + lookahead == 'a') ADVANCE(1556); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1830); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1861); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2275); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1592); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2502); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2210); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1772); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1551); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1442: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1903); + lookahead == 'a') ADVANCE(1556); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1443: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1793); + lookahead == 'a') ADVANCE(2325); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2095); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1794); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2631); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2093); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1444: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2140); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1594); + lookahead == 'a') ADVANCE(1384); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1445: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2228); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1986); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1698); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2604); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1450); + lookahead == 'a') ADVANCE(2439); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2079); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1446: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1535); + lookahead == 'a') ADVANCE(1812); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1949); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1447: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2172); + lookahead == 'a') ADVANCE(1990); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1844); + lookahead == 'o') ADVANCE(1980); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1448: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2317); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2141); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1710); + lookahead == 'a') ADVANCE(1990); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1449: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2317); + lookahead == 'a') ADVANCE(2270); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2280); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1450: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2028); + lookahead == 'a') ADVANCE(2270); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1451: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1970); + lookahead == 'a') ADVANCE(1914); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1452: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2207); + lookahead == 'a') ADVANCE(1804); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1453: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1911); + lookahead == 'a') ADVANCE(2151); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1603); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1454: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1971); + lookahead == 'a') ADVANCE(2239); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1997); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1709); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2615); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1459); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1455: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2322); + lookahead == 'a') ADVANCE(1544); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1456: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1929); + lookahead == 'a') ADVANCE(2183); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1855); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1457: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1913); + lookahead == 'a') ADVANCE(2328); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2152); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1721); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1458: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2194); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2545); + lookahead == 'a') ADVANCE(2328); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1459: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2194); + lookahead == 'a') ADVANCE(2039); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1460: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2144); + lookahead == 'a') ADVANCE(1981); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1461: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1914); + lookahead == 'a') ADVANCE(2218); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1462: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1546); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1895); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1529); + lookahead == 'a') ADVANCE(1922); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1463: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2342); + lookahead == 'a') ADVANCE(1982); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1464: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2336); + lookahead == 'a') ADVANCE(2333); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1465: ACCEPT_TOKEN(sym_identifier); @@ -22902,12125 +23214,12265 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1466: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1918); + lookahead == 'a') ADVANCE(1924); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1467: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2038); + lookahead == 'a') ADVANCE(2205); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(2556); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1468: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2319); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2217); + lookahead == 'a') ADVANCE(2205); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1469: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2198); + lookahead == 'a') ADVANCE(2155); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1470: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2295); + lookahead == 'a') ADVANCE(1925); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1471: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1941); + lookahead == 'a') ADVANCE(1555); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1906); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1538); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1472: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1917); + lookahead == 'a') ADVANCE(2353); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1473: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2189); + lookahead == 'a') ADVANCE(2347); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1474: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2021); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2488); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1526); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2487); + lookahead == 'a') ADVANCE(1951); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1475: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2348); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1593); + lookahead == 'a') ADVANCE(1929); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1476: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2348); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1594); + lookahead == 'a') ADVANCE(2049); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1477: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2306); + lookahead == 'a') ADVANCE(2330); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2228); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1478: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2158); + lookahead == 'a') ADVANCE(2209); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1479: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1860); + lookahead == 'a') ADVANCE(2306); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1480: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1534); + lookahead == 'a') ADVANCE(1952); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1481: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2204); + lookahead == 'a') ADVANCE(1928); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1482: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2396); + lookahead == 'a') ADVANCE(2200); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1483: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1378); + lookahead == 'a') ADVANCE(2032); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2499); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1535); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2498); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1484: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1962); + lookahead == 'a') ADVANCE(2359); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1602); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1485: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2337); + lookahead == 'a') ADVANCE(2359); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1603); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1486: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1863); + lookahead == 'a') ADVANCE(2317); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1487: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2210); + lookahead == 'a') ADVANCE(2169); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1488: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1803); + lookahead == 'a') ADVANCE(1871); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1489: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1561); + lookahead == 'a') ADVANCE(1543); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1490: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1937); + lookahead == 'a') ADVANCE(2215); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1491: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2265); + lookahead == 'a') ADVANCE(2407); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1492: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2327); + lookahead == 'a') ADVANCE(1386); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1493: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1804); + lookahead == 'a') ADVANCE(1973); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1494: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1982); + lookahead == 'a') ADVANCE(2348); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1495: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2330); + lookahead == 'a') ADVANCE(1874); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1496: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1983); + lookahead == 'a') ADVANCE(2221); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1497: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1564); + lookahead == 'a') ADVANCE(1814); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1498: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2339); + lookahead == 'a') ADVANCE(1570); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1499: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2277); + lookahead == 'a') ADVANCE(1948); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1500: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2331); + lookahead == 'a') ADVANCE(2276); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1501: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1805); + lookahead == 'a') ADVANCE(2338); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1502: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2239); + lookahead == 'a') ADVANCE(1815); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1503: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1806); + lookahead == 'a') ADVANCE(1993); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1504: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1807); + lookahead == 'a') ADVANCE(2341); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1505: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2225); + lookahead == 'a') ADVANCE(1994); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1506: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1799); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2232); + lookahead == 'a') ADVANCE(1573); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1507: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1879); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2424); + lookahead == 'a') ADVANCE(2350); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1508: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1879); + lookahead == 'a') ADVANCE(2288); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1509: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2233); + lookahead == 'a') ADVANCE(2342); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1510: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1531); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2488); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1907); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2487); + lookahead == 'a') ADVANCE(1816); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1511: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1531); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2488); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2487); + lookahead == 'a') ADVANCE(2250); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1512: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2360); + lookahead == 'a') ADVANCE(1817); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1513: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1536); + lookahead == 'a') ADVANCE(1818); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1514: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1537); + lookahead == 'a') ADVANCE(2236); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1515: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2365); + lookahead == 'a') ADVANCE(1810); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2243); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1516: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1538); + lookahead == 'a') ADVANCE(1890); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1359); + lookahead == 'e') ADVANCE(2435); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1517: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1538); + lookahead == 'a') ADVANCE(1890); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1518: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2366); + lookahead == 'a') ADVANCE(2244); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1519: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1539); + lookahead == 'a') ADVANCE(1540); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2499); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1918); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2498); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1520: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1577); + lookahead == 'a') ADVANCE(1540); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2499); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2498); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1521: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2422); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2066); + lookahead == 'a') ADVANCE(2371); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1522: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1966); + lookahead == 'a') ADVANCE(1545); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1523: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2262); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1582); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2161); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2467); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2316); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1713); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1546); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); END_STATE(); case 1524: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2262); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2376); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); END_STATE(); case 1525: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1353); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1547); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1367); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); END_STATE(); case 1526: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1369); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1547); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); END_STATE(); case 1527: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2373); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2072); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2169); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2377); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); END_STATE(); case 1528: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2373); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1548); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); END_STATE(); case 1529: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1955); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1586); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); END_STATE(); case 1530: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1708); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1595); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2287); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2433); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2077); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); END_STATE(); case 1531: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1708); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1977); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + ('b' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); END_STATE(); case 1532: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2386); + lookahead == 'b') ADVANCE(2273); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1591); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(2172); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2478); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2327); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1724); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1533: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1457); + lookahead == 'b') ADVANCE(2273); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1534: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1945); + lookahead == 'b') ADVANCE(1361); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1535: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1727); + lookahead == 'b') ADVANCE(1377); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1536: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1949); + lookahead == 'b') ADVANCE(2384); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(2083); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2180); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1537: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1950); + lookahead == 'b') ADVANCE(2384); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1538: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1951); + lookahead == 'b') ADVANCE(1966); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1539: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1953); + lookahead == 'b') ADVANCE(1719); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1604); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2298); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1540: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2084); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1787); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2082); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1719); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1541: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1819); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2491); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2397); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1542: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1700); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1763); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1466); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1543: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2514); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1956); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1544: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2517); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1738); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1545: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1909); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1637); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1451); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1960); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1546: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1909); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1961); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1547: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1814); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1962); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1548: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2083); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1788); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2414); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1964); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1549: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1904); + lookahead == 'c') ADVANCE(2095); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1798); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2093); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1550: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1816); + lookahead == 'c') ADVANCE(1830); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2502); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1551: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1905); + lookahead == 'c') ADVANCE(1711); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1774); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1552: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1826); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1842); + lookahead == 'c') ADVANCE(2525); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1553: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1906); + lookahead == 'c') ADVANCE(2528); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1554: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1478); + lookahead == 'c') ADVANCE(1920); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1648); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1460); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1555: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2384); + lookahead == 'c') ADVANCE(1920); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1556: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2320); + lookahead == 'c') ADVANCE(1825); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1557: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1712); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1468); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1756); + lookahead == 'c') ADVANCE(2094); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1799); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2425); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1558: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1712); + lookahead == 'c') ADVANCE(1915); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1559: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1924); + lookahead == 'c') ADVANCE(1827); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1560: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1644); + lookahead == 'c') ADVANCE(1916); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1561: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2300); + lookahead == 'c') ADVANCE(1837); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1853); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1562: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1737); + lookahead == 'c') ADVANCE(1917); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1563: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1663); + lookahead == 'c') ADVANCE(1487); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1564: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1672); + lookahead == 'c') ADVANCE(2395); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1565: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2089); + lookahead == 'c') ADVANCE(2331); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1566: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1821); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1633); + lookahead == 'c') ADVANCE(1723); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1477); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1550); + lookahead == 't') ADVANCE(1767); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1567: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1857); + lookahead == 'c') ADVANCE(1723); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1568: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2353); + lookahead == 'c') ADVANCE(1935); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1569: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1822); + lookahead == 'c') ADVANCE(1655); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1570: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1823); + lookahead == 'c') ADVANCE(2311); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1571: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2338); + lookahead == 'c') ADVANCE(1748); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1572: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2340); + lookahead == 'c') ADVANCE(1674); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1573: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2117); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2095); + lookahead == 'c') ADVANCE(1683); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1574: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2128); + lookahead == 'c') ADVANCE(2100); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1575: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1828); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1896); + lookahead == 'c') ADVANCE(1832); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1644); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1559); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1576: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2354); + lookahead == 'c') ADVANCE(1868); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1577: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2363); + lookahead == 'c') ADVANCE(2364); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1578: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2131); + lookahead == 'c') ADVANCE(1833); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1579: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2134); + lookahead == 'c') ADVANCE(1834); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1580: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2135); + lookahead == 'c') ADVANCE(2349); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1581: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(2137); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1569); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1460); + lookahead == 'c') ADVANCE(2351); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1582: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2635); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2418); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2128); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2106); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1583: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2450); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2139); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1584: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2499); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1839); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1907); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1585: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2657); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2365); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1586: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2513); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2374); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1587: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2546); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2142); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1588: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2567); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2145); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1589: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2516); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2146); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1590: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2592); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(2148); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1578); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1469); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1591: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2694); + lookahead == 'd') ADVANCE(2646); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2429); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1592: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2519); + lookahead == 'd') ADVANCE(2461); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1593: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2392); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2271); + lookahead == 'd') ADVANCE(2510); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1594: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2392); + lookahead == 'd') ADVANCE(2668); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1595: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2261); + lookahead == 'd') ADVANCE(2524); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1596: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1861); + lookahead == 'd') ADVANCE(2557); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1597: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2072); + lookahead == 'd') ADVANCE(2578); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1598: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1384); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1397); + lookahead == 'd') ADVANCE(2527); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1599: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2253); + lookahead == 'd') ADVANCE(2603); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1600: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2087); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2058); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1869); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2143); + lookahead == 'd') ADVANCE(2705); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1601: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2087); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2058); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2143); + lookahead == 'd') ADVANCE(2530); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1602: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1773); + lookahead == 'd') ADVANCE(2403); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2282); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1603: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2076); + lookahead == 'd') ADVANCE(2403); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1604: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1651); + lookahead == 'd') ADVANCE(2272); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1605: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1694); + lookahead == 'd') ADVANCE(1872); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1606: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1731); + lookahead == 'd') ADVANCE(2083); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1607: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1695); + lookahead == 'd') ADVANCE(1392); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1405); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1608: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1707); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2312); + lookahead == 'd') ADVANCE(2264); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1609: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1707); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2388); + lookahead == 'd') ADVANCE(2098); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2069); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1880); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2154); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1610: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1908); + lookahead == 'd') ADVANCE(2098); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2069); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2154); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1611: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1396); + lookahead == 'd') ADVANCE(1784); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1612: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1742); + lookahead == 'd') ADVANCE(2087); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1613: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1809); + lookahead == 'd') ADVANCE(1662); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1614: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1612); + lookahead == 'd') ADVANCE(1705); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1615: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1492); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2124); + lookahead == 'd') ADVANCE(1742); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1616: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1952); + lookahead == 'd') ADVANCE(1706); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1617: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(2399); + lookahead == 'd') ADVANCE(1718); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2323); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1618: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1797); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1578); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2000); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1690); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1782); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2630); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1718); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(2399); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1619: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1797); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1578); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1919); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1620: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1797); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2061); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1404); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1621: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1797); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1690); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2630); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1753); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1622: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1797); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1820); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1623: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2490); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1351); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1968); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1621); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1624: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2490); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1393); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1501); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2135); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1625: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2490); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2283); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1963); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1626: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2170); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1452); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1798); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2376); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1448); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1525); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(2410); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1627: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2494); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2081); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2492); + lookahead == 'e') ADVANCE(1808); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1587); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2011); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1701); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1793); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2641); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1628: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2494); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2492); + lookahead == 'e') ADVANCE(1808); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1587); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1629: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1923); + lookahead == 'e') ADVANCE(1808); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2072); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1630: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2488); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1526); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2487); + lookahead == 'e') ADVANCE(1808); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1701); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2641); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1631: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2488); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2487); + lookahead == 'e') ADVANCE(1808); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1632: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2686); + lookahead == 'e') ADVANCE(2501); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1359); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1979); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1633: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2621); + lookahead == 'e') ADVANCE(2501); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1401); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1634: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2549); + lookahead == 'e') ADVANCE(2501); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1402); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1635: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2674); + lookahead == 'e') ADVANCE(2501); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2294); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1636: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2468); + lookahead == 'e') ADVANCE(2501); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1637: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1387); + lookahead == 'e') ADVANCE(2181); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1461); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1809); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2387); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1457); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1534); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1638: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2530); + lookahead == 'e') ADVANCE(2505); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2092); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2503); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1639: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2585); + lookahead == 'e') ADVANCE(2505); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2503); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1640: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2476); + lookahead == 'e') ADVANCE(1934); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1641: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2668); + lookahead == 'e') ADVANCE(2499); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1535); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2498); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1642: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2623); + lookahead == 'e') ADVANCE(2499); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2498); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1643: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2550); + lookahead == 'e') ADVANCE(2697); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1644: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2596); + lookahead == 'e') ADVANCE(2632); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1645: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2522); + lookahead == 'e') ADVANCE(2560); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1646: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2659); + lookahead == 'e') ADVANCE(2685); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1647: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2638); + lookahead == 'e') ADVANCE(2479); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1648: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2598); + lookahead == 'e') ADVANCE(1395); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1649: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2515); + lookahead == 'e') ADVANCE(2541); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1650: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2665); + lookahead == 'e') ADVANCE(2596); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1651: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2560); + lookahead == 'e') ADVANCE(2487); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1652: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2525); + lookahead == 'e') ADVANCE(2679); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1653: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2662); + lookahead == 'e') ADVANCE(2634); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1654: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2565); + lookahead == 'e') ADVANCE(2561); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1655: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2599); + lookahead == 'e') ADVANCE(2607); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1656: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2622); + lookahead == 'e') ADVANCE(2533); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1657: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2603); + lookahead == 'e') ADVANCE(2670); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1658: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2553); + lookahead == 'e') ADVANCE(2649); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1659: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2675); + lookahead == 'e') ADVANCE(2609); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1660: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2471); + lookahead == 'e') ADVANCE(2526); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1661: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2663); + lookahead == 'e') ADVANCE(2676); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1662: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2643); + lookahead == 'e') ADVANCE(2571); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1663: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2542); + lookahead == 'e') ADVANCE(2536); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1664: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2520); + lookahead == 'e') ADVANCE(2673); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1665: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2584); + lookahead == 'e') ADVANCE(2576); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1666: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2652); + lookahead == 'e') ADVANCE(2610); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1667: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2654); + lookahead == 'e') ADVANCE(2633); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1668: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2653); + lookahead == 'e') ADVANCE(2614); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1669: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2651); + lookahead == 'e') ADVANCE(2564); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1670: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2518); + lookahead == 'e') ADVANCE(2686); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1671: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2700); + lookahead == 'e') ADVANCE(2482); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1672: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2558); + lookahead == 'e') ADVANCE(2674); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1673: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2489); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1362); + lookahead == 'e') ADVANCE(2654); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1674: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2489); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1364); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1968); + lookahead == 'e') ADVANCE(2553); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1675: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2489); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1364); + lookahead == 'e') ADVANCE(2531); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1676: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2489); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1382); + lookahead == 'e') ADVANCE(2595); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1677: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2489); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1352); + lookahead == 'e') ADVANCE(2663); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1678: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2489); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1394); + lookahead == 'e') ADVANCE(2665); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1679: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2489); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2283); + lookahead == 'e') ADVANCE(2664); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1680: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2489); + lookahead == 'e') ADVANCE(2662); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1681: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2493); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2492); + lookahead == 'e') ADVANCE(2529); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1682: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2521); + lookahead == 'e') ADVANCE(2711); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1683: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1986); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1699); + lookahead == 'e') ADVANCE(2569); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1684: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1986); + lookahead == 'e') ADVANCE(2500); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2352); + lookahead == 'o') ADVANCE(1370); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1685: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1986); + lookahead == 'e') ADVANCE(2500); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1372); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1979); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1686: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2002); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1942); + lookahead == 'e') ADVANCE(2500); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1372); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1687: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1385); + lookahead == 'e') ADVANCE(2500); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1390); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1688: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2150); + lookahead == 'e') ADVANCE(2500); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1360); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1689: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1377); + lookahead == 'e') ADVANCE(2500); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1402); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1690: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1442); + lookahead == 'e') ADVANCE(2500); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2294); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1691: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1925); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1635); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1453); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2268); + lookahead == 'e') ADVANCE(2500); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1692: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1925); + lookahead == 'e') ADVANCE(2504); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2503); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1693: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1354); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2023); + lookahead == 'e') ADVANCE(2532); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1694: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2419); + lookahead == 'e') ADVANCE(1997); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1710); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1695: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2420); + lookahead == 'e') ADVANCE(1997); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2363); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1696: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2671); + lookahead == 'e') ADVANCE(1997); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1697: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1759); + lookahead == 'e') ADVANCE(2013); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1953); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1698: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2001); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2085); + lookahead == 'e') ADVANCE(1393); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1699: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2001); + lookahead == 'e') ADVANCE(2161); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1700: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2152); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2393); + lookahead == 'e') ADVANCE(1385); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1701: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2413); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1351); + lookahead == 'e') ADVANCE(1451); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1702: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2413); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2283); + lookahead == 'e') ADVANCE(1936); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1646); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1462); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2279); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1703: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2413); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2047); + lookahead == 'e') ADVANCE(1936); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1704: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2413); + lookahead == 'e') ADVANCE(1362); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2034); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1705: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1784); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2620); + lookahead == 'e') ADVANCE(2430); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1706: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2434); + lookahead == 'e') ADVANCE(2431); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1707: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2421); + lookahead == 'e') ADVANCE(2682); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1708: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1912); + lookahead == 'e') ADVANCE(1770); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1709: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2029); + lookahead == 'e') ADVANCE(2012); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2096); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1710: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1454); + lookahead == 'e') ADVANCE(2012); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1711: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2246); + lookahead == 'e') ADVANCE(2163); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2404); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1712: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1617); + lookahead == 'e') ADVANCE(2424); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1359); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1713: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2202); + lookahead == 'e') ADVANCE(2424); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2294); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1714: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2209); + lookahead == 'e') ADVANCE(2424); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2058); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1715: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2248); + lookahead == 'e') ADVANCE(2424); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1716: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2174); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2288); + lookahead == 'e') ADVANCE(1795); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2631); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1717: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2174); + lookahead == 'e') ADVANCE(2445); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1718: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1589); + lookahead == 'e') ADVANCE(2432); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1719: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1965); + lookahead == 'e') ADVANCE(1923); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1720: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1370); + lookahead == 'e') ADVANCE(2040); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1721: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1590); + lookahead == 'e') ADVANCE(1463); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1722: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2235); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2086); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1479); + lookahead == 'e') ADVANCE(2257); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1723: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2235); + lookahead == 'e') ADVANCE(1626); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1724: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1930); + lookahead == 'e') ADVANCE(2213); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1725: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1372); + lookahead == 'e') ADVANCE(2220); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1726: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1567); + lookahead == 'e') ADVANCE(2259); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1727: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1915); + lookahead == 'e') ADVANCE(2185); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2299); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1728: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2035); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2074); + lookahead == 'e') ADVANCE(2185); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1729: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2252); + lookahead == 'e') ADVANCE(1598); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1730: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2197); + lookahead == 'e') ADVANCE(1976); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1731: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1358); + lookahead == 'e') ADVANCE(1378); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1732: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1592); + lookahead == 'e') ADVANCE(1599); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1733: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1954); + lookahead == 'e') ADVANCE(2246); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2097); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1488); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1734: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1359); + lookahead == 'e') ADVANCE(2246); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1735: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1389); + lookahead == 'e') ADVANCE(1941); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1736: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1936); + lookahead == 'e') ADVANCE(1380); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1737: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1392); + lookahead == 'e') ADVANCE(1576); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1738: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2176); + lookahead == 'e') ADVANCE(1926); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1739: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1586); + lookahead == 'e') ADVANCE(2046); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(2085); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1740: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2177); + lookahead == 'e') ADVANCE(2263); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1741: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2296); + lookahead == 'e') ADVANCE(2208); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1742: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2014); + lookahead == 'e') ADVANCE(1366); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1743: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2299); + lookahead == 'e') ADVANCE(1601); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1744: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2184); + lookahead == 'e') ADVANCE(1965); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1745: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2185); + lookahead == 'e') ADVANCE(1367); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1746: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2188); + lookahead == 'e') ADVANCE(1397); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1747: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2346); + lookahead == 'e') ADVANCE(1947); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1748: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2200); + lookahead == 'e') ADVANCE(1400); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1749: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2304); + lookahead == 'e') ADVANCE(2187); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1750: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2211); + lookahead == 'e') ADVANCE(1595); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1751: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2003); + lookahead == 'e') ADVANCE(2188); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1752: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2284); + lookahead == 'e') ADVANCE(2307); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1753: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1960); + lookahead == 'e') ADVANCE(2025); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1754: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2425); + lookahead == 'e') ADVANCE(2310); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1755: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2053); + lookahead == 'e') ADVANCE(2195); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1756: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1571); + lookahead == 'e') ADVANCE(2196); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1757: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1991); + lookahead == 'e') ADVANCE(2199); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1758: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2275); + lookahead == 'e') ADVANCE(2357); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1759: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2148); + lookahead == 'e') ADVANCE(2211); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1760: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2215); + lookahead == 'e') ADVANCE(2315); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1761: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2037); + lookahead == 'e') ADVANCE(2222); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1762: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2216); + lookahead == 'e') ADVANCE(2014); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1763: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2044); + lookahead == 'e') ADVANCE(2295); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1764: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2219); + lookahead == 'e') ADVANCE(1971); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1765: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2221); + lookahead == 'e') ADVANCE(2436); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1766: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2039); + lookahead == 'e') ADVANCE(2064); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1767: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2223); + lookahead == 'e') ADVANCE(1580); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1768: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2050); + lookahead == 'e') ADVANCE(2002); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1769: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1470); + lookahead == 'e') ADVANCE(2286); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1770: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2051); + lookahead == 'e') ADVANCE(2159); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1771: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2224); + lookahead == 'e') ADVANCE(2226); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1772: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2214); + lookahead == 'e') ADVANCE(2048); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1773: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1388); + lookahead == 'e') ADVANCE(2227); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1774: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1386); + lookahead == 'e') ADVANCE(2055); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1775: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2238); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1505); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1449); + lookahead == 'e') ADVANCE(2230); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1776: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1572); + lookahead == 'e') ADVANCE(2232); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1777: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2240); + lookahead == 'e') ADVANCE(2050); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1778: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1395); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2023); + lookahead == 'e') ADVANCE(2234); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1779: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2242); + lookahead == 'e') ADVANCE(2061); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1780: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2634); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2605); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1825); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2315); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1714); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1479); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1781: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2634); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2062); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1782: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1789); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2323); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2235); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1783: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2524); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2326); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2225); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1784: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2524); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1396); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1785: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1884); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1394); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1786: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1497); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2249); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1514); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1458); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1787: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1482); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1581); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1788: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1762); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1512); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1769); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2191); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2251); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1789: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1738); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1403); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2034); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1790: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1771); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2253); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1791: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2115); + lookahead == 'f') ADVANCE(2645); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2616); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1836); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2326); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1725); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1792: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1790); + lookahead == 'f') ADVANCE(2645); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1793: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2356); + lookahead == 'f') ADVANCE(1800); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2334); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1794: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1580); + lookahead == 'f') ADVANCE(2535); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2337); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1795: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2570); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2535); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1796: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2666); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1895); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1797: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1873); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1506); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1798: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2054); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1808); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1632); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1491); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Y') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y') || - lookahead == '|') ADVANCE(2447); + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); END_STATE(); case 1799: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1637); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1773); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1521); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1780); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2202); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1800: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(2074); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1749); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1801: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1641); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1782); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1802: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1741); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2126); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1803: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1647); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1801); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1804: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1725); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2367); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1805: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1662); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1589); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1806: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1729); + lookahead == 'g') ADVANCE(2581); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1807: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1696); + lookahead == 'g') ADVANCE(2677); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1808: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1944); + lookahead == 'g') ADVANCE(1884); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1809: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1747); + lookahead == 'g') ADVANCE(2065); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1819); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1643); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Y') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + ('a' <= lookahead && lookahead <= 'y') || + lookahead == '|') ADVANCE(2458); END_STATE(); case 1810: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1749); + lookahead == 'g') ADVANCE(1648); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1811: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1579); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1691); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2032); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1438); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2022); + lookahead == 'g') ADVANCE(2085); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1812: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1579); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2033); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1439); + lookahead == 'g') ADVANCE(1652); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1813: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1579); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2033); + lookahead == 'g') ADVANCE(1752); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1814: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2631); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1658); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1815: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2551); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1736); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1816: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2636); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1673); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1817: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2573); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1740); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1818: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1686); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2313); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2173); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1707); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1819: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2071); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1955); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1820: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2090); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1758); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1821: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1638); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1760); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1822: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(2075); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1588); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1702); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1464); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2043); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1447); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2033); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1823: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1711); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1588); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2044); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1448); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1824: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1467); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1588); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2044); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1825: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1730); + lookahead == 'h') ADVANCE(2642); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1826: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1481); + lookahead == 'h') ADVANCE(2562); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1827: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1856); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1496); + lookahead == 'h') ADVANCE(2647); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1828: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1487); + lookahead == 'h') ADVANCE(2584); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1829: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1699); + lookahead == 'h') ADVANCE(1697); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2324); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2184); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1830: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1751); + lookahead == 'h') ADVANCE(2082); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1831: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1764); + lookahead == 'h') ADVANCE(2101); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1832: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1772); + lookahead == 'h') ADVANCE(1649); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1833: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1753); + lookahead == 'h') ADVANCE(2086); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1834: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1502); + lookahead == 'h') ADVANCE(1722); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1835: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1871); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2313); + lookahead == 'h') ADVANCE(1476); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1836: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1871); + lookahead == 'h') ADVANCE(1741); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1837: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1505); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1449); + lookahead == 'h') ADVANCE(1490); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1838: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1984); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1557); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1867); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1505); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1839: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2440); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1496); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1840: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2409); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2368); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1710); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1841: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2442); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1762); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1842: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2426); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1775); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1843: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2445); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1783); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1844: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1584); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1764); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1845: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2313); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1511); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1846: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1882); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1543); + lookahead == 'i') ADVANCE(2324); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1847: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1977); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1882); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1848: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1544); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1514); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1458); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1849: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2023); + lookahead == 'i') ADVANCE(1995); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1566); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1850: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2343); + lookahead == 'i') ADVANCE(2451); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1851: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1613); + lookahead == 'i') ADVANCE(2420); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2379); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1852: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2145); + lookahead == 'i') ADVANCE(2453); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1853: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2025); + lookahead == 'i') ADVANCE(2437); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1854: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2055); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1851); + lookahead == 'i') ADVANCE(2456); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1855: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2055); + lookahead == 'i') ADVANCE(1593); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1856: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1614); + lookahead == 'i') ADVANCE(2324); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1857: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1989); + lookahead == 'i') ADVANCE(1552); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1858: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1591); + lookahead == 'i') ADVANCE(1988); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1859: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2024); + lookahead == 'i') ADVANCE(1553); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1860: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2297); + lookahead == 'i') ADVANCE(2034); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1861: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2181); + lookahead == 'i') ADVANCE(2354); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1862: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2060); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2171); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2022); + lookahead == 'i') ADVANCE(1622); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1863: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2301); + lookahead == 'i') ADVANCE(2156); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1864: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2361); + lookahead == 'i') ADVANCE(2036); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1865: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2226); + lookahead == 'i') ADVANCE(2066); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1862); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1866: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1715); + lookahead == 'i') ADVANCE(2066); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1867: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2312); + lookahead == 'i') ADVANCE(1623); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1868: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2405); + lookahead == 'i') ADVANCE(2000); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1869: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2443); + lookahead == 'i') ADVANCE(1600); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1870: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1604); + lookahead == 'i') ADVANCE(2035); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1871: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1942); + lookahead == 'i') ADVANCE(2308); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1872: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1456); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1740); + lookahead == 'i') ADVANCE(2192); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1873: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2030); + lookahead == 'i') ADVANCE(2071); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2182); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2033); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1874: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2097); + lookahead == 'i') ADVANCE(2312); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1875: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2026); + lookahead == 'i') ADVANCE(2372); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1876: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2272); + lookahead == 'i') ADVANCE(2237); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1877: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2406); + lookahead == 'i') ADVANCE(1726); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1878: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2441); + lookahead == 'i') ADVANCE(2323); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1879: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2031); + lookahead == 'i') ADVANCE(2416); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1880: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2099); + lookahead == 'i') ADVANCE(2454); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1881: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2273); + lookahead == 'i') ADVANCE(1613); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1882: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2444); + lookahead == 'i') ADVANCE(1953); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1883: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1946); + lookahead == 'i') ADVANCE(1465); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1751); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1884: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1733); + lookahead == 'i') ADVANCE(2041); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1885: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2107); + lookahead == 'i') ADVANCE(2108); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1886: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2064); + lookahead == 'i') ADVANCE(2037); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1887: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1484); + lookahead == 'i') ADVANCE(2283); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1888: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1692); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2237); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1439); + lookahead == 'i') ADVANCE(2417); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1889: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1692); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2237); + lookahead == 'i') ADVANCE(2452); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1890: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1692); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1439); + lookahead == 'i') ADVANCE(2042); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1891: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1692); + lookahead == 'i') ADVANCE(2110); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1892: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2110); + lookahead == 'i') ADVANCE(2284); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1893: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2112); + lookahead == 'i') ADVANCE(2455); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1894: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1490); + lookahead == 'i') ADVANCE(1957); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1895: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2408); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2334); + lookahead == 'i') ADVANCE(1744); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1896: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2427); + lookahead == 'i') ADVANCE(2118); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1897: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1985); + lookahead == 'i') ADVANCE(2075); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1898: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2059); + lookahead == 'i') ADVANCE(1493); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1899: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1987); + lookahead == 'i') ADVANCE(1703); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2248); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1448); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1900: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1988); + lookahead == 'i') ADVANCE(1703); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2248); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1901: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2446); + lookahead == 'i') ADVANCE(1703); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1448); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1902: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1522); + lookahead == 'i') ADVANCE(1703); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1903: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(2629); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2121); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1904: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(2624); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2123); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1905: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(2625); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1499); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1906: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(2626); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2419); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2345); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1907: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1636); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2438); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1908: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1706); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1996); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1909: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1493); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2070); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1910: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1958); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2282); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2036); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1998); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1911: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2566); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1999); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1912: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2506); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2457); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1913: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2512); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1531); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1914: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2647); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(2640); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1915: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2507); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(2635); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1916: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2578); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(2636); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1917: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2502); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(2637); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1918: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2642); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1647); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1919: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2264); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1583); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1717); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1920: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2264); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2491); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1502); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1921: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2264); + lookahead == 'l') ADVANCE(1969); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2293); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2047); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1922: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2081); + lookahead == 'l') ADVANCE(2577); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1923: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2142); + lookahead == 'l') ADVANCE(2517); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1924: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2393); + lookahead == 'l') ADVANCE(2523); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1925: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1585); + lookahead == 'l') ADVANCE(2658); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1926: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1355); + lookahead == 'l') ADVANCE(2518); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1927: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2435); + lookahead == 'l') ADVANCE(2589); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1928: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2436); + lookahead == 'l') ADVANCE(2513); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1929: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1839); + lookahead == 'l') ADVANCE(2653); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1930: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2251); + lookahead == 'l') ADVANCE(2275); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1592); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1931: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2073); + lookahead == 'l') ADVANCE(2275); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2502); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1932: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2394); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2333); + lookahead == 'l') ADVANCE(2275); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1933: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1446); + lookahead == 'l') ADVANCE(2092); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1934: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1441); + lookahead == 'l') ADVANCE(2153); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1935: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2092); + lookahead == 'l') ADVANCE(2404); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1936: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2255); + lookahead == 'l') ADVANCE(1594); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1937: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1843); + lookahead == 'l') ADVANCE(1363); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1938: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1757); + lookahead == 'l') ADVANCE(2446); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1939: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2093); + lookahead == 'l') ADVANCE(2447); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1940: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1928); + lookahead == 'l') ADVANCE(1850); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1941: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2256); + lookahead == 'l') ADVANCE(2262); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1942: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1643); + lookahead == 'l') ADVANCE(2084); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1943: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2123); + lookahead == 'l') ADVANCE(2405); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2344); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1944: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1689); + lookahead == 'l') ADVANCE(1455); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1945: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1652); + lookahead == 'l') ADVANCE(1450); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1946: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1653); + lookahead == 'l') ADVANCE(2103); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1947: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2328); + lookahead == 'l') ADVANCE(2266); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1948: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2310); + lookahead == 'l') ADVANCE(1854); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1949: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1660); + lookahead == 'l') ADVANCE(1768); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1950: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1661); + lookahead == 'l') ADVANCE(2104); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1951: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1664); + lookahead == 'l') ADVANCE(1939); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1952: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1665); + lookahead == 'l') ADVANCE(2267); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1953: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1682); + lookahead == 'l') ADVANCE(1654); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1954: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1599); + lookahead == 'l') ADVANCE(2134); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1955: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1848); + lookahead == 'l') ADVANCE(1700); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1956: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2101); + lookahead == 'l') ADVANCE(1663); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1957: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2103); + lookahead == 'l') ADVANCE(1664); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1958: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1464); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1978); + lookahead == 'l') ADVANCE(2339); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1959: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1464); + lookahead == 'l') ADVANCE(2321); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1960: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2154); + lookahead == 'l') ADVANCE(1671); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1961: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2106); + lookahead == 'l') ADVANCE(1672); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1962: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1882); + lookahead == 'l') ADVANCE(1675); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1963: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(2109); + lookahead == 'l') ADVANCE(1676); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1964: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1959); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2332); + lookahead == 'l') ADVANCE(1693); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1965: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1515); + lookahead == 'l') ADVANCE(1608); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1966: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1901); + lookahead == 'l') ADVANCE(1859); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1967: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1437); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2664); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2112); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1968: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1379); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2114); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1969: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2571); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1473); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1989); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1970: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2555); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1473); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1971: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2583); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2165); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1972: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2640); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2117); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1973: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2641); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1893); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1974: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2645); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(2120); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1975: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2646); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1970); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2343); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1976: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1926); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1524); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1977: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2378); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1912); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1978: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2005); + lookahead == 'm') ADVANCE(1446); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2675); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1979: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1640); + lookahead == 'm') ADVANCE(1387); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1980: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1758); + lookahead == 'm') ADVANCE(2582); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1981: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2046); + lookahead == 'm') ADVANCE(2566); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1982: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1667); + lookahead == 'm') ADVANCE(2594); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1983: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1669); + lookahead == 'm') ADVANCE(2651); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1984: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1469); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1485); + lookahead == 'm') ADVANCE(2652); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1985: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2379); + lookahead == 'm') ADVANCE(2656); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1986: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2149); + lookahead == 'm') ADVANCE(2657); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1987: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2380); + lookahead == 'm') ADVANCE(1937); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1988: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(2381); + lookahead == 'm') ADVANCE(2389); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1989: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1471); + lookahead == 'm') ADVANCE(2016); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1990: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1477); + lookahead == 'm') ADVANCE(1651); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1991: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1768); + lookahead == 'm') ADVANCE(1769); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1992: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1504); + lookahead == 'm') ADVANCE(2057); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1993: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1518); + lookahead == 'm') ADVANCE(1678); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1994: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1583); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2491); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1680); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1995: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1583); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1478); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1494); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1996: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2664); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(2390); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1997: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2605); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2315); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(2160); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1998: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2605); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(2391); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 1999: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1527); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1693); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(2392); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2000: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1458); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1480); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2001: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2548); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1486); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2002: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2501); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1642); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1779); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2003: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2501); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1513); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2004: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2707); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1527); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2005: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2684); + lookahead == 'n') ADVANCE(1592); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2502); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2006: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2539); + lookahead == 'n') ADVANCE(1592); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2007: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2557); + lookahead == 'n') ADVANCE(2675); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2008: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2710); + lookahead == 'n') ADVANCE(2616); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2326); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2009: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2709); + lookahead == 'n') ADVANCE(2616); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2010: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2699); + lookahead == 'n') ADVANCE(1536); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1704); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2011: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2704); + lookahead == 'n') ADVANCE(1467); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2012: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2617); + lookahead == 'n') ADVANCE(2559); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2013: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2568); + lookahead == 'n') ADVANCE(2512); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1653); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2014: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2650); + lookahead == 'n') ADVANCE(2512); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2015: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2533); + lookahead == 'n') ADVANCE(2718); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2016: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2162); + lookahead == 'n') ADVANCE(2695); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2017: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2538); + lookahead == 'n') ADVANCE(2550); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2018: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1609); + lookahead == 'n') ADVANCE(2568); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2019: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2332); + lookahead == 'n') ADVANCE(2721); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2020: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1608); + lookahead == 'n') ADVANCE(2720); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2021: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1595); + lookahead == 'n') ADVANCE(2710); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2022: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1556); + lookahead == 'n') ADVANCE(2715); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2023: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1795); + lookahead == 'n') ADVANCE(2628); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2024: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1791); + lookahead == 'n') ADVANCE(2579); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2025: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1796); + lookahead == 'n') ADVANCE(2661); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2026: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1453); + lookahead == 'n') ADVANCE(2544); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2027: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1528); + lookahead == 'n') ADVANCE(2173); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2028: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2276); + lookahead == 'n') ADVANCE(2549); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2029: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1587); + lookahead == 'n') ADVANCE(1618); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2030: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2245); + lookahead == 'n') ADVANCE(2343); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2031: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2247); + lookahead == 'n') ADVANCE(1617); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2032: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2286); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2529); + lookahead == 'n') ADVANCE(1604); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2033: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2286); + lookahead == 'n') ADVANCE(1565); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2034: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2437); + lookahead == 'n') ADVANCE(1806); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2035: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1610); + lookahead == 'n') ADVANCE(1802); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2036: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2289); + lookahead == 'n') ADVANCE(1807); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2037: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2290); + lookahead == 'n') ADVANCE(1462); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2038: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1616); + lookahead == 'n') ADVANCE(1537); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2039: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2279); + lookahead == 'n') ADVANCE(2287); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2040: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1367); + lookahead == 'n') ADVANCE(1596); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2041: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1927); + lookahead == 'n') ADVANCE(2256); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2042: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1494); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2439); + lookahead == 'n') ADVANCE(2258); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2043: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1597); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1849); + lookahead == 'n') ADVANCE(2297); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2540); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2044: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2293); + lookahead == 'n') ADVANCE(2297); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2045: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1603); + lookahead == 'n') ADVANCE(2448); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2046: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1373); + lookahead == 'n') ADVANCE(1619); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2047: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1391); + lookahead == 'n') ADVANCE(2300); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2048: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1645); + lookahead == 'n') ADVANCE(2301); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2049: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2302); + lookahead == 'n') ADVANCE(1625); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2050: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2324); + lookahead == 'n') ADVANCE(2290); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2051: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2303); + lookahead == 'n') ADVANCE(1375); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2052: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2285); + lookahead == 'n') ADVANCE(1938); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2053: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1562); + lookahead == 'n') ADVANCE(1503); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2450); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2054: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1463); + lookahead == 'n') ADVANCE(1606); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1860); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2055: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1605); + lookahead == 'n') ADVANCE(2304); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2056: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2410); + lookahead == 'n') ADVANCE(1612); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2057: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1867); + lookahead == 'n') ADVANCE(1381); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2058: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2278); + lookahead == 'n') ADVANCE(1399); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2059: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1607); + lookahead == 'n') ADVANCE(1656); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2060: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1465); + lookahead == 'n') ADVANCE(2313); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2061: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1459); + lookahead == 'n') ADVANCE(2335); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2062: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2333); + lookahead == 'n') ADVANCE(2314); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2063: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2164); + lookahead == 'n') ADVANCE(2296); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2064: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2357); + lookahead == 'n') ADVANCE(1571); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2065: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2163); + lookahead == 'n') ADVANCE(1472); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2066: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1897); + lookahead == 'n') ADVANCE(1614); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2067: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2411); + lookahead == 'n') ADVANCE(2421); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2068: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1900); + lookahead == 'n') ADVANCE(1878); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2069: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2620); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2289); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2070: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2604); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1616); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2071: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2588); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1474); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2072: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2607); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1468); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2073: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2480); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2344); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2074: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2690); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2175); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2075: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2589); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2368); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2076: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2510); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2174); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2077: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1964); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1908); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2078: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2376); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2422); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2079: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1844); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1911); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2080: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1932); + lookahead == 'o') ADVANCE(2631); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2081: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1533); + lookahead == 'o') ADVANCE(2615); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2082: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2147); + lookahead == 'o') ADVANCE(2599); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2083: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1602); + lookahead == 'o') ADVANCE(2618); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2084: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1956); + lookahead == 'o') ADVANCE(2491); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2085: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2415); + lookahead == 'o') ADVANCE(2701); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2086: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1549); + lookahead == 'o') ADVANCE(2600); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2087: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2417); + lookahead == 'o') ADVANCE(2521); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2088: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1356); + lookahead == 'o') ADVANCE(1975); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2089: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2151); + lookahead == 'o') ADVANCE(2387); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2090: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1588); + lookahead == 'o') ADVANCE(1855); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2091: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2397); + lookahead == 'o') ADVANCE(1943); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2092: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1551); + lookahead == 'o') ADVANCE(1542); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2093: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1553); + lookahead == 'o') ADVANCE(2158); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2094: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2004); + lookahead == 'o') ADVANCE(1611); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2095: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1555); + lookahead == 'o') ADVANCE(1967); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2096: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2175); + lookahead == 'o') ADVANCE(2426); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2097: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2007); + lookahead == 'o') ADVANCE(1558); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2098: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1916); + lookahead == 'o') ADVANCE(2428); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2099: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2040); + lookahead == 'o') ADVANCE(1364); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2100: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2008); + lookahead == 'o') ADVANCE(2162); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2101: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2178); + lookahead == 'o') ADVANCE(1597); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2102: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1368); + lookahead == 'o') ADVANCE(2408); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2103: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2179); + lookahead == 'o') ADVANCE(1560); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2104: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1947); + lookahead == 'o') ADVANCE(1562); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2105: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2011); + lookahead == 'o') ADVANCE(2015); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2106: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2180); + lookahead == 'o') ADVANCE(1564); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2107: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2012); + lookahead == 'o') ADVANCE(2186); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2108: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2041); + lookahead == 'o') ADVANCE(2018); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2109: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2182); + lookahead == 'o') ADVANCE(1927); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2110: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2013); + lookahead == 'o') ADVANCE(2051); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2111: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2183); + lookahead == 'o') ADVANCE(2019); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2112: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2015); + lookahead == 'o') ADVANCE(2189); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2113: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2186); + lookahead == 'o') ADVANCE(1376); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2114: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2187); + lookahead == 'o') ADVANCE(2190); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2115: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2205); + lookahead == 'o') ADVANCE(1958); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2116: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2062); + lookahead == 'o') ADVANCE(2022); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2117: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2056); + lookahead == 'o') ADVANCE(2191); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2118: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2019); + lookahead == 'o') ADVANCE(2023); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2119: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2098); + lookahead == 'o') ADVANCE(2052); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2120: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2375); + lookahead == 'o') ADVANCE(2193); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2121: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2104); + lookahead == 'o') ADVANCE(2024); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2122: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2350); + lookahead == 'o') ADVANCE(2194); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2123: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2213); + lookahead == 'o') ADVANCE(2026); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2124: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1606); + lookahead == 'o') ADVANCE(2197); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2125: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1558); + lookahead == 'o') ADVANCE(2198); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2126: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2156); + lookahead == 'o') ADVANCE(2216); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2127: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1886); + lookahead == 'o') ADVANCE(2073); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2128: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1943); + lookahead == 'o') ADVANCE(2067); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2129: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2052); + lookahead == 'o') ADVANCE(2030); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2130: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2395); + lookahead == 'o') ADVANCE(2109); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2131: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1957); + lookahead == 'o') ADVANCE(2386); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2132: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2237); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1439); + lookahead == 'o') ADVANCE(2115); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2133: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2237); + lookahead == 'o') ADVANCE(2361); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2134: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1961); + lookahead == 'o') ADVANCE(2224); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2135: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1963); + lookahead == 'o') ADVANCE(1615); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2136: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2402); + lookahead == 'o') ADVANCE(1567); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2137: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(2067); + lookahead == 'o') ADVANCE(2167); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2138: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2161); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1897); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2139: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2590); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1570); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1847); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1954); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2140: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2590); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1570); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2063); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2141: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2614); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2406); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2142: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2655); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1968); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2143: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2673); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2248); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1448); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2144: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2591); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2248); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2145: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2706); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1972); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2146: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2383); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1974); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2147: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1375); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2413); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2148: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1383); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(2078); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2149: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1380); + lookahead == 'p') ADVANCE(2172); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2150: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1769); + lookahead == 'p') ADVANCE(2601); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2387); + lookahead == 't') ADVANCE(1579); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1858); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2151: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1866); + lookahead == 'p') ADVANCE(2601); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1579); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2152: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2292); + lookahead == 'p') ADVANCE(2625); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2153: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2127); + lookahead == 'p') ADVANCE(2666); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2154: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1390); + lookahead == 'p') ADVANCE(2684); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2155: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2119); + lookahead == 'p') ADVANCE(2602); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2156: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1374); + lookahead == 'p') ADVANCE(2717); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2157: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2190); + lookahead == 'p') ADVANCE(2394); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2158: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1655); + lookahead == 'p') ADVANCE(1383); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2159: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1666); + lookahead == 'p') ADVANCE(1391); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2160: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1668); + lookahead == 'p') ADVANCE(1388); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2161: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1709); + lookahead == 'p') ADVANCE(1780); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2398); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2162: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2388); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1748); + lookahead == 'p') ADVANCE(1877); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2163: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2388); + lookahead == 'p') ADVANCE(2303); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2164: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2389); + lookahead == 'p') ADVANCE(2138); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2165: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(2390); + lookahead == 'p') ADVANCE(1398); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2166: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2491); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1559); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(2130); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2167: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2491); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2359); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1382); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2168: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2491); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(2201); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2169: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(2385); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1666); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2170: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1872); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2562); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1677); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2171: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2529); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1679); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2172: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2526); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1720); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2173: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1598); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(2399); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1759); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2174: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2429); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(2399); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2175: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2606); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(2400); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2176: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2528); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(2401); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2177: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2712); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2502); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1568); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2178: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2695); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2502); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2370); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2179: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2693); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2502); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2180: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2697); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(2396); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2181: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2586); + lookahead == 'r') ADVANCE(1883); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2573); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2182: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2702); + lookahead == 'r') ADVANCE(2540); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2183: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2547); + lookahead == 'r') ADVANCE(2537); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2184: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2554); + lookahead == 'r') ADVANCE(1607); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2185: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2616); + lookahead == 'r') ADVANCE(2440); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2186: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2575); + lookahead == 'r') ADVANCE(2617); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2187: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2574); + lookahead == 'r') ADVANCE(2539); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2188: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2701); + lookahead == 'r') ADVANCE(2723); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2189: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1349); + lookahead == 'r') ADVANCE(2706); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2190: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1840); + lookahead == 'r') ADVANCE(2704); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2191: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2430); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2208); + lookahead == 'r') ADVANCE(2708); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2192: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1690); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2630); + lookahead == 'r') ADVANCE(2597); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2193: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1450); + lookahead == 'r') ADVANCE(2713); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2194: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2431); + lookahead == 'r') ADVANCE(2558); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2195: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1560); + lookahead == 'r') ADVANCE(2565); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2196: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2260); + lookahead == 'r') ADVANCE(2627); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2197: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2416); + lookahead == 'r') ADVANCE(2586); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2198: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2432); + lookahead == 'r') ADVANCE(2585); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2199: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2096); + lookahead == 'r') ADVANCE(2712); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2200: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1786); + lookahead == 'r') ADVANCE(1357); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2201: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2377); + lookahead == 'r') ADVANCE(1851); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2202: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1488); + lookahead == 'r') ADVANCE(2441); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2219); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2203: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2382); + lookahead == 'r') ADVANCE(1701); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2641); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2204: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2249); + lookahead == 'r') ADVANCE(1459); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2205: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1993); + lookahead == 'r') ADVANCE(2442); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2206: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1489); + lookahead == 'r') ADVANCE(1569); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2207: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1687); + lookahead == 'r') ADVANCE(2271); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2208: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2006); + lookahead == 'r') ADVANCE(2427); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2209: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2227); + lookahead == 'r') ADVANCE(2443); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2210: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2254); + lookahead == 'r') ADVANCE(2107); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2211: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1887); + lookahead == 'r') ADVANCE(1797); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2212: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2125); + lookahead == 'r') ADVANCE(2388); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2213: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2258); + lookahead == 'r') ADVANCE(1497); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2214: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1642); + lookahead == 'r') ADVANCE(2393); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2215: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2298); + lookahead == 'r') ADVANCE(2260); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2216: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1755); + lookahead == 'r') ADVANCE(2004); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2217: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2318); + lookahead == 'r') ADVANCE(1498); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2218: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2017); + lookahead == 'r') ADVANCE(1698); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2219: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1650); + lookahead == 'r') ADVANCE(2017); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2220: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1654); + lookahead == 'r') ADVANCE(2238); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2221: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2335); + lookahead == 'r') ADVANCE(2265); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2222: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1658); + lookahead == 'r') ADVANCE(1898); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2223: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2307); + lookahead == 'r') ADVANCE(2136); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2224: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1721); + lookahead == 'r') ADVANCE(2269); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2225: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1739); + lookahead == 'r') ADVANCE(1653); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2226: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2268); + lookahead == 'r') ADVANCE(2309); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2227: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1870); + lookahead == 'r') ADVANCE(1766); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2228: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1802); + lookahead == 'r') ADVANCE(2329); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2229: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1439); + lookahead == 'r') ADVANCE(2028); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2230: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1719); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2130); + lookahead == 'r') ADVANCE(1661); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2231: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1563); + lookahead == 'r') ADVANCE(1665); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2232: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2329); + lookahead == 'r') ADVANCE(2346); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2233: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1810); + lookahead == 'r') ADVANCE(1669); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2234: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2111); + lookahead == 'r') ADVANCE(2318); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2235: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2234); + lookahead == 'r') ADVANCE(1732); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2236: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1486); + lookahead == 'r') ADVANCE(1750); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2237: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1990); + lookahead == 'r') ADVANCE(2279); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2238: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1894); + lookahead == 'r') ADVANCE(1881); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2239: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1774); + lookahead == 'r') ADVANCE(1813); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2240: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1501); + lookahead == 'r') ADVANCE(1448); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2241: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(2403); + lookahead == 'r') ADVANCE(1730); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2141); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2242: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1902); + lookahead == 'r') ADVANCE(1572); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2243: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2467); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2340); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2244: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2500); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1821); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2245: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2495); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2122); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2246: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2496); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2245); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2247: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2497); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1495); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2248: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2597); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2001); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2249: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2688); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1905); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2250: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2577); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1785); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2251: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2689); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1510); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2252: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2601); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(2414); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2253: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(2569); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1913); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2254: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2677); + lookahead == 's') ADVANCE(2478); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2255: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2678); + lookahead == 's') ADVANCE(2511); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2256: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2508); + lookahead == 's') ADVANCE(2506); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2257: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2703); + lookahead == 's') ADVANCE(2507); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2258: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2705); + lookahead == 's') ADVANCE(2508); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2259: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2244); + lookahead == 's') ADVANCE(2608); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2260: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1876); + lookahead == 's') ADVANCE(2699); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2261: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1554); + lookahead == 's') ADVANCE(2588); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2262: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2345); + lookahead == 's') ADVANCE(2700); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2263: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1633); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1550); + lookahead == 's') ADVANCE(2612); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2264: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1634); + lookahead == 's') ADVANCE(2580); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2265: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2287); + lookahead == 's') ADVANCE(2688); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2266: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1868); + lookahead == 's') ADVANCE(2689); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2267: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1841); + lookahead == 's') ADVANCE(2519); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2268: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2291); + lookahead == 's') ADVANCE(2714); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2269: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1639); + lookahead == 's') ADVANCE(2716); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2270: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2130); + lookahead == 's') ADVANCE(2255); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2271: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1720); + lookahead == 's') ADVANCE(1887); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2272: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2364); + lookahead == 's') ADVANCE(1563); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2273: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1656); + lookahead == 's') ADVANCE(2356); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2274: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1778); + lookahead == 's') ADVANCE(1644); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1559); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2275: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2281); + lookahead == 's') ADVANCE(1645); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2276: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1520); + lookahead == 's') ADVANCE(2298); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2277: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1743); + lookahead == 's') ADVANCE(1879); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2278: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1766); + lookahead == 's') ADVANCE(1852); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2279: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1864); + lookahead == 's') ADVANCE(2302); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2280: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1779); + lookahead == 's') ADVANCE(1650); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2281: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1503); + lookahead == 's') ADVANCE(2141); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2282: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2370); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1507); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1760); + lookahead == 's') ADVANCE(1731); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2283: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2470); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2375); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2284: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2562); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1667); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2285: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1507); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1789); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2286: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2698); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2292); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2287: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2633); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1529); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2288: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2615); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1754); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2289: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2639); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1777); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2290: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2564); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1875); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2291: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2632); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1790); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2292: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2536); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1512); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2293: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(2381); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2509); + lookahead == 't') ADVANCE(1516); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1771); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2294: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2540); + lookahead == 't') ADVANCE(2481); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2295: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2552); + lookahead == 't') ADVANCE(2573); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2296: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2595); + lookahead == 't') ADVANCE(1516); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2297: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2627); + lookahead == 't') ADVANCE(2709); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2298: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2594); + lookahead == 't') ADVANCE(2644); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2299: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2472); + lookahead == 't') ADVANCE(2626); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2300: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2559); + lookahead == 't') ADVANCE(2650); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2301: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2600); + lookahead == 't') ADVANCE(2575); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2302: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2644); + lookahead == 't') ADVANCE(2643); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2303: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2708); + lookahead == 't') ADVANCE(2547); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2304: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2696); + lookahead == 't') ADVANCE(2520); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2305: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2473); + lookahead == 't') ADVANCE(2551); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2306: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2505); + lookahead == 't') ADVANCE(2563); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2307: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2593); + lookahead == 't') ADVANCE(2606); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2308: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2474); + lookahead == 't') ADVANCE(2638); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2309: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2541); + lookahead == 't') ADVANCE(2605); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2310: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2692); + lookahead == 't') ADVANCE(2483); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2311: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2609); + lookahead == 't') ADVANCE(2570); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2312: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2504); + lookahead == 't') ADVANCE(2611); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2313: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1815); + lookahead == 't') ADVANCE(2655); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2314: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1429); + lookahead == 't') ADVANCE(2719); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2315: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2146); + lookahead == 't') ADVANCE(2707); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2316: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2088); + lookahead == 't') ADVANCE(2484); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2317: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1846); + lookahead == 't') ADVANCE(2516); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2318: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2433); + lookahead == 't') ADVANCE(2604); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2319: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1817); + lookahead == 't') ADVANCE(2485); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2320: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1874); + lookahead == 't') ADVANCE(2552); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2321: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2438); + lookahead == 't') ADVANCE(2703); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2322: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1366); + lookahead == 't') ADVANCE(2620); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2323: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2094); + lookahead == 't') ADVANCE(2515); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2324: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2250); + lookahead == 't') ADVANCE(1826); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2325: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1371); + lookahead == 't') ADVANCE(1438); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2326: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2201); + lookahead == 't') ADVANCE(2157); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2327: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1483); + lookahead == 't') ADVANCE(2099); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2328: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1852); + lookahead == 't') ADVANCE(1857); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2329: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2236); + lookahead == 't') ADVANCE(2444); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2330: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1435); + lookahead == 't') ADVANCE(1828); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2331: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1499); + lookahead == 't') ADVANCE(1885); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2332: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1508); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1760); + lookahead == 't') ADVANCE(2449); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2333: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1508); + lookahead == 't') ADVANCE(1374); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2334: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1756); + lookahead == 't') ADVANCE(2105); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2335: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1363); + lookahead == 't') ADVANCE(2261); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2336: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1648); + lookahead == 't') ADVANCE(1379); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2337: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1649); + lookahead == 't') ADVANCE(2212); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2338: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1718); + lookahead == 't') ADVANCE(1492); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2339: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1670); + lookahead == 't') ADVANCE(1863); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2340: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1732); + lookahead == 't') ADVANCE(2247); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2341: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1820); + lookahead == 't') ADVANCE(1444); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2342: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2398); + lookahead == 't') ADVANCE(1508); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2343: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1853); + lookahead == 't') ADVANCE(1517); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1771); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2344: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2102); + lookahead == 't') ADVANCE(1517); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2345: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2206); + lookahead == 't') ADVANCE(1767); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2346: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1381); + lookahead == 't') ADVANCE(1371); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2347: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1509); + lookahead == 't') ADVANCE(1659); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2348: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1570); + lookahead == 't') ADVANCE(1660); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2349: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2351); + lookahead == 't') ADVANCE(1729); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2350: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1461); + lookahead == 't') ADVANCE(1681); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2351: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2105); + lookahead == 't') ADVANCE(1743); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2352: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1466); + lookahead == 't') ADVANCE(1831); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2353: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2113); + lookahead == 't') ADVANCE(2409); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2354: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2114); + lookahead == 't') ADVANCE(1864); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2355: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1744); + lookahead == 't') ADVANCE(2113); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2356: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1745); + lookahead == 't') ADVANCE(2217); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2357: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1746); + lookahead == 't') ADVANCE(1389); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2358: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2126); + lookahead == 't') ADVANCE(1518); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2359: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1763); + lookahead == 't') ADVANCE(1579); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2360: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1880); + lookahead == 't') ADVANCE(2362); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2361: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1877); + lookahead == 't') ADVANCE(1470); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2362: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2165); + lookahead == 't') ADVANCE(2116); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2363: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1885); + lookahead == 't') ADVANCE(1475); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2364: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1770); + lookahead == 't') ADVANCE(2124); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2365: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1892); + lookahead == 't') ADVANCE(2125); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2366: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1893); + lookahead == 't') ADVANCE(1755); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2367: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1513); + lookahead == 't') ADVANCE(1756); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2368: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1776); + lookahead == 't') ADVANCE(1757); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2369: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1514); + lookahead == 't') ADVANCE(2137); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2370: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2241); + lookahead == 't') ADVANCE(1774); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2371: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1525); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1891); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2372: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1716); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1888); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2373: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1792); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2176); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2374: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2315); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1896); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2375: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2036); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1781); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2376: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2195); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1903); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2377: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1568); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1904); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2378: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1972); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1522); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2379: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1973); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1787); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2380: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1974); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1523); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2381: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1975); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2252); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2382: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2009); + lookahead == 'u') ADVANCE(1534); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2383: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2294); + lookahead == 'u') ADVANCE(1727); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2384: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2257); + lookahead == 'u') ADVANCE(1803); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2385: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1646); + lookahead == 'u') ADVANCE(2326); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2386: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2349); + lookahead == 'u') ADVANCE(2047); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2387: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2218); + lookahead == 'u') ADVANCE(2206); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2388: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2305); + lookahead == 'u') ADVANCE(1577); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2389: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2308); + lookahead == 'u') ADVANCE(1983); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2390: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2309); + lookahead == 'u') ADVANCE(1984); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2391: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2045); + lookahead == 'u') ADVANCE(1985); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2392: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1931); + lookahead == 'u') ADVANCE(1986); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2393: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2266); + lookahead == 'u') ADVANCE(2020); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2394: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1981); + lookahead == 'u') ADVANCE(2305); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2395: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2231); + lookahead == 'u') ADVANCE(2268); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2396: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1948); + lookahead == 'u') ADVANCE(1657); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2397: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2049); + lookahead == 'u') ADVANCE(2360); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2398: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2220); + lookahead == 'u') ADVANCE(2229); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2399: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2222); + lookahead == 'u') ADVANCE(2316); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2400: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1717); + lookahead == 'u') ADVANCE(2319); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2401: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2344); + lookahead == 'u') ADVANCE(2320); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2402: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(2362); + lookahead == 'u') ADVANCE(2056); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2403: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1576); + lookahead == 'u') ADVANCE(1942); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2404: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1713); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2277); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2405: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1735); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1992); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2406: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1671); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2242); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2407: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1714); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1959); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2408: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1485); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2060); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2409: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1498); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2231); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2410: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1765); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2233); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2411: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1767); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1728); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2412: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1777); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2355); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2413: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2511); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(2373); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2414: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2682); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1585); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2415: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2612); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1724); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2416: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1881); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1746); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2417: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2010); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1682); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2418: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1831); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1725); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2419: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2628); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1494); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2420: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2660); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1507); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2421: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2661); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1776); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2422: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1847); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1778); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2423: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1559); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1788); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2424: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2325); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(2522); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2425: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(2311); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(2693); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2426: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1724); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(2623); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2427: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1736); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1892); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2428: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1899); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(2021); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2429: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2534); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1842); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2430: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2610); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2639); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2431: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2587); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2671); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2432: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2658); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2672); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2433: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2563); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1858); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2434: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2691); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1568); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2435: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2649); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2336); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2436: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2637); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2322); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2437: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2418); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1735); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2438: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2159); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1747); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2439: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2160); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1910); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); case 2440: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2545); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); + END_STATE(); + case 2441: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2621); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); + END_STATE(); + case 2442: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2598); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); + END_STATE(); + case 2443: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2669); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); + END_STATE(); + case 2444: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2574); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); + END_STATE(); + case 2445: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2702); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); + END_STATE(); + case 2446: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2660); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); + END_STATE(); + case 2447: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2648); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); + END_STATE(); + case 2448: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2429); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); + END_STATE(); + case 2449: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2170); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); + END_STATE(); + case 2450: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2171); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(2458); + END_STATE(); + case 2451: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1516); + lookahead == 'z') ADVANCE(1525); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Y') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'y') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); - case 2441: + case 2452: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1632); + lookahead == 'z') ADVANCE(1643); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Y') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'y') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); - case 2442: + case 2453: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1657); + lookahead == 'z') ADVANCE(1668); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Y') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'y') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); - case 2443: + case 2454: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1659); + lookahead == 'z') ADVANCE(1670); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Y') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'y') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); - case 2444: + case 2455: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1734); + lookahead == 'z') ADVANCE(1745); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Y') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'y') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); - case 2445: + case 2456: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1517); + lookahead == 'z') ADVANCE(1526); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Y') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'y') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); - case 2446: + case 2457: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1519); + lookahead == 'z') ADVANCE(1528); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Y') || lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'y') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); - case 2447: + case 2458: ACCEPT_TOKEN(sym_identifier); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || @@ -35028,62 +35480,62 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); - case 2448: + case 2459: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 2449: + case 2460: ACCEPT_TOKEN(sym__terminator); END_STATE(); - case 2450: + case 2461: ACCEPT_TOKEN(aux_sym__block_terminator_token1); END_STATE(); - case 2451: + case 2462: ACCEPT_TOKEN(sym_null_expression); END_STATE(); - case 2452: + case 2463: ACCEPT_TOKEN(sym__integer_literal); - if (lookahead == '/') ADVANCE(1314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2454); + if (lookahead == '/') ADVANCE(1322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2465); END_STATE(); - case 2453: + case 2464: ACCEPT_TOKEN(sym__integer_literal); - if (lookahead == '/') ADVANCE(1314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2452); + if (lookahead == '/') ADVANCE(1322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2463); END_STATE(); - case 2454: + case 2465: ACCEPT_TOKEN(sym__integer_literal); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2454); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2465); END_STATE(); - case 2455: + case 2466: ACCEPT_TOKEN(sym_date_literal); END_STATE(); - case 2456: + case 2467: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 2457: + case 2468: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 2458: + case 2469: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 2459: + case 2470: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 2460: + case 2471: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); - if (lookahead == '*') ADVANCE(1339); - if (lookahead == '/') ADVANCE(1331); + if (lookahead == '*') ADVANCE(1347); + if (lookahead == '/') ADVANCE(1339); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(2462); + lookahead != '\\') ADVANCE(2473); END_STATE(); - case 2461: + case 2472: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); - if (lookahead == '/') ADVANCE(2460); + if (lookahead == '/') ADVANCE(2471); if (lookahead == '\\') ADVANCE(19); - if (lookahead == '{') ADVANCE(1345); + if (lookahead == '{') ADVANCE(1353); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -35091,67 +35543,67 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(2461); + lookahead == 65279) ADVANCE(2472); if (lookahead != 0 && - lookahead != '"') ADVANCE(2462); + lookahead != '"') ADVANCE(2473); END_STATE(); - case 2462: + case 2473: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(2462); + lookahead != '\\') ADVANCE(2473); END_STATE(); - case 2463: + case 2474: ACCEPT_TOKEN(aux_sym_double_quoted_string_token2); END_STATE(); - case 2464: + case 2475: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 2465: + case 2476: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 2466: + case 2477: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 2467: + case 2478: ACCEPT_TOKEN(aux_sym_type_tuning_token1); END_STATE(); - case 2468: + case 2479: ACCEPT_TOKEN(aux_sym_type_tuning_token2); END_STATE(); - case 2469: + case 2480: ACCEPT_TOKEN(aux_sym_unary_expression_token1); END_STATE(); - case 2470: + case 2481: ACCEPT_TOKEN(aux_sym_unary_expression_token2); END_STATE(); - case 2471: + case 2482: ACCEPT_TOKEN(aux_sym_temp_table_expression_token1); END_STATE(); - case 2472: + case 2483: ACCEPT_TOKEN(aux_sym_dataset_expression_token1); END_STATE(); - case 2473: + case 2484: ACCEPT_TOKEN(aux_sym_input_expression_token1); END_STATE(); - case 2474: + case 2485: ACCEPT_TOKEN(aux_sym_input_expression_token1); - if (lookahead == '-') ADVANCE(2136); + if (lookahead == '-') ADVANCE(2147); END_STATE(); - case 2475: + case 2486: ACCEPT_TOKEN(aux_sym_input_expression_token1); - if (lookahead == '-') ADVANCE(982); + if (lookahead == '-') ADVANCE(990); END_STATE(); - case 2476: + case 2487: ACCEPT_TOKEN(aux_sym_input_expression_token2); END_STATE(); - case 2477: + case 2488: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 2478: + case 2489: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 2479: + case 2490: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || @@ -35159,184 +35611,184 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); - case 2480: + case 2491: ACCEPT_TOKEN(aux_sym__multiplicative_operator_token1); END_STATE(); - case 2481: + case 2492: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(2482); - if (lookahead == '>') ADVANCE(2483); + if (lookahead == '=') ADVANCE(2493); + if (lookahead == '>') ADVANCE(2494); END_STATE(); - case 2482: + case 2493: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 2483: + case 2494: ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); - case 2484: + case 2495: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 2485: + case 2496: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(2486); + if (lookahead == '=') ADVANCE(2497); END_STATE(); - case 2486: + case 2497: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 2487: + case 2498: ACCEPT_TOKEN(aux_sym__comparison_operator_token1); END_STATE(); - case 2488: + case 2499: ACCEPT_TOKEN(aux_sym__comparison_operator_token2); END_STATE(); - case 2489: + case 2500: ACCEPT_TOKEN(aux_sym__comparison_operator_token3); END_STATE(); - case 2490: + case 2501: ACCEPT_TOKEN(aux_sym__comparison_operator_token3); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(2511); + lookahead == 'w') ADVANCE(2522); END_STATE(); - case 2491: + case 2502: ACCEPT_TOKEN(aux_sym__comparison_operator_token4); END_STATE(); - case 2492: + case 2503: ACCEPT_TOKEN(aux_sym__comparison_operator_token5); END_STATE(); - case 2493: + case 2504: ACCEPT_TOKEN(aux_sym__comparison_operator_token6); END_STATE(); - case 2494: + case 2505: ACCEPT_TOKEN(aux_sym__comparison_operator_token6); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2561); + lookahead == 't') ADVANCE(2572); END_STATE(); - case 2495: + case 2506: ACCEPT_TOKEN(aux_sym__comparison_operator_token7); END_STATE(); - case 2496: + case 2507: ACCEPT_TOKEN(aux_sym__comparison_operator_token8); END_STATE(); - case 2497: + case 2508: ACCEPT_TOKEN(aux_sym__comparison_operator_token9); END_STATE(); - case 2498: + case 2509: ACCEPT_TOKEN(aux_sym_include_argument_token1); END_STATE(); - case 2499: + case 2510: ACCEPT_TOKEN(aux_sym_primitive_type_token1); END_STATE(); - case 2500: + case 2511: ACCEPT_TOKEN(aux_sym_class_type_token1); END_STATE(); - case 2501: + case 2512: ACCEPT_TOKEN(aux_sym_when_expression_token1); END_STATE(); - case 2502: + case 2513: ACCEPT_TOKEN(aux_sym_variable_tuning_token1); END_STATE(); - case 2503: + case 2514: ACCEPT_TOKEN(aux_sym_variable_tuning_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(278); + lookahead == 'i') ADVANCE(286); END_STATE(); - case 2504: + case 2515: ACCEPT_TOKEN(aux_sym_variable_tuning_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1472); + lookahead == 'i') ADVANCE(1481); END_STATE(); - case 2505: + case 2516: ACCEPT_TOKEN(aux_sym_variable_tuning_token3); END_STATE(); - case 2506: + case 2517: ACCEPT_TOKEN(aux_sym_variable_tuning_token4); END_STATE(); - case 2507: + case 2518: ACCEPT_TOKEN(aux_sym_variable_tuning_token5); END_STATE(); - case 2508: + case 2519: ACCEPT_TOKEN(aux_sym_variable_tuning_token6); END_STATE(); - case 2509: + case 2520: ACCEPT_TOKEN(aux_sym_variable_tuning_token7); END_STATE(); - case 2510: + case 2521: ACCEPT_TOKEN(aux_sym_variable_tuning_token8); END_STATE(); - case 2511: + case 2522: ACCEPT_TOKEN(aux_sym_scope_tuning_token1); END_STATE(); - case 2512: + case 2523: ACCEPT_TOKEN(aux_sym_scope_tuning_token2); END_STATE(); - case 2513: + case 2524: ACCEPT_TOKEN(aux_sym_scope_tuning_token3); END_STATE(); - case 2514: + case 2525: ACCEPT_TOKEN(aux_sym_scope_tuning_token4); END_STATE(); - case 2515: + case 2526: ACCEPT_TOKEN(aux_sym_access_tuning_token1); END_STATE(); - case 2516: + case 2527: ACCEPT_TOKEN(aux_sym_access_tuning_token2); END_STATE(); - case 2517: + case 2528: ACCEPT_TOKEN(aux_sym_access_tuning_token3); END_STATE(); - case 2518: + case 2529: ACCEPT_TOKEN(aux_sym_access_tuning_token4); END_STATE(); - case 2519: + case 2530: ACCEPT_TOKEN(aux_sym_access_tuning_token5); END_STATE(); - case 2520: + case 2531: ACCEPT_TOKEN(aux_sym_serialization_tuning_token1); END_STATE(); - case 2521: + case 2532: ACCEPT_TOKEN(aux_sym_serialization_tuning_token2); END_STATE(); - case 2522: + case 2533: ACCEPT_TOKEN(aux_sym_variable_definition_token1); END_STATE(); - case 2523: + case 2534: ACCEPT_TOKEN(aux_sym_variable_definition_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(897); + lookahead == 'i') ADVANCE(905); END_STATE(); - case 2524: + case 2535: ACCEPT_TOKEN(aux_sym_variable_definition_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2048); + lookahead == 'i') ADVANCE(2059); END_STATE(); - case 2525: + case 2536: ACCEPT_TOKEN(aux_sym_variable_definition_token3); END_STATE(); - case 2526: + case 2537: ACCEPT_TOKEN(aux_sym_variable_definition_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1480); + lookahead == 'i') ADVANCE(1489); END_STATE(); - case 2527: + case 2538: ACCEPT_TOKEN(aux_sym_variable_definition_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(328); + lookahead == 'i') ADVANCE(336); END_STATE(); - case 2528: + case 2539: ACCEPT_TOKEN(aux_sym_buffer_definition_token1); END_STATE(); - case 2529: + case 2540: ACCEPT_TOKEN(aux_sym_buffer_definition_token2); END_STATE(); - case 2530: + case 2541: ACCEPT_TOKEN(aux_sym_query_definition_tuning_token1); END_STATE(); - case 2531: + case 2542: ACCEPT_TOKEN(anon_sym_SCROLLING); END_STATE(); - case 2532: + case 2543: ACCEPT_TOKEN(anon_sym_SCROLLING); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || @@ -35344,156 +35796,156 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); - case 2533: + case 2544: ACCEPT_TOKEN(aux_sym_query_definition_tuning_token2); END_STATE(); - case 2534: + case 2545: ACCEPT_TOKEN(aux_sym_query_definition_token1); END_STATE(); - case 2535: + case 2546: ACCEPT_TOKEN(aux_sym_query_definition_token2); END_STATE(); - case 2536: + case 2547: ACCEPT_TOKEN(aux_sym_query_definition_token3); END_STATE(); - case 2537: + case 2548: ACCEPT_TOKEN(aux_sym_return_type_token1); END_STATE(); - case 2538: + case 2549: ACCEPT_TOKEN(aux_sym_return_type_token2); END_STATE(); - case 2539: + case 2550: ACCEPT_TOKEN(aux_sym_return_type_token2); if (lookahead == 'S' || - lookahead == 's') ADVANCE(2537); + lookahead == 's') ADVANCE(2548); END_STATE(); - case 2540: + case 2551: ACCEPT_TOKEN(aux_sym_argument_mode_token1); END_STATE(); - case 2541: + case 2552: ACCEPT_TOKEN(aux_sym_argument_mode_token2); END_STATE(); - case 2542: + case 2553: ACCEPT_TOKEN(aux_sym_argument_mode_token3); END_STATE(); - case 2543: + case 2554: ACCEPT_TOKEN(aux_sym_argument_pass_type_token1); END_STATE(); - case 2544: + case 2555: ACCEPT_TOKEN(aux_sym_argument_pass_type_token2); END_STATE(); - case 2545: + case 2556: ACCEPT_TOKEN(aux_sym_argument_pass_type_token3); END_STATE(); - case 2546: + case 2557: ACCEPT_TOKEN(aux_sym__function_argument_with_mode_token4); END_STATE(); - case 2547: + case 2558: ACCEPT_TOKEN(aux_sym_function_call_token1); END_STATE(); - case 2548: + case 2559: ACCEPT_TOKEN(aux_sym_if_statement_token2); END_STATE(); - case 2549: + case 2560: ACCEPT_TOKEN(aux_sym_else_statement_token1); END_STATE(); - case 2550: + case 2561: ACCEPT_TOKEN(aux_sym_while_phrase_token1); END_STATE(); - case 2551: + case 2562: ACCEPT_TOKEN(aux_sym_repeat_tuning_token1); END_STATE(); - case 2552: + case 2563: ACCEPT_TOKEN(aux_sym_repeat_statement_token1); END_STATE(); - case 2553: + case 2564: ACCEPT_TOKEN(aux_sym__procedure_terminator_token1); END_STATE(); - case 2554: + case 2565: ACCEPT_TOKEN(aux_sym_procedure_parameter_definition_token1); END_STATE(); - case 2555: + case 2566: ACCEPT_TOKEN(aux_sym_procedure_parameter_definition_token2); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2355); + lookahead == 'e') ADVANCE(2366); END_STATE(); - case 2556: + case 2567: ACCEPT_TOKEN(aux_sym_procedure_parameter_definition_token2); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1217); + lookahead == 'e') ADVANCE(1225); END_STATE(); - case 2557: + case 2568: ACCEPT_TOKEN(aux_sym__function_terminator_token1); END_STATE(); - case 2558: + case 2569: ACCEPT_TOKEN(aux_sym_interface_statement_token1); END_STATE(); - case 2559: + case 2570: ACCEPT_TOKEN(aux_sym_property_type_token1); END_STATE(); - case 2560: + case 2571: ACCEPT_TOKEN(aux_sym_property_type_token2); END_STATE(); - case 2561: + case 2572: ACCEPT_TOKEN(aux_sym_getter_token1); END_STATE(); - case 2562: + case 2573: ACCEPT_TOKEN(aux_sym_setter_token1); END_STATE(); - case 2563: + case 2574: ACCEPT_TOKEN(aux_sym_property_definition_token1); END_STATE(); - case 2564: + case 2575: ACCEPT_TOKEN(aux_sym_event_definition_token1); END_STATE(); - case 2565: + case 2576: ACCEPT_TOKEN(aux_sym_event_definition_token2); END_STATE(); - case 2566: + case 2577: ACCEPT_TOKEN(aux_sym_method_tuning_token1); END_STATE(); - case 2567: + case 2578: ACCEPT_TOKEN(aux_sym_method_definition_token1); END_STATE(); - case 2568: + case 2579: ACCEPT_TOKEN(aux_sym_data_relation_token1); END_STATE(); - case 2569: + case 2580: ACCEPT_TOKEN(aux_sym_data_relation_token2); END_STATE(); - case 2570: + case 2581: ACCEPT_TOKEN(aux_sym_using_statement_token1); END_STATE(); - case 2571: + case 2582: ACCEPT_TOKEN(aux_sym_using_statement_token2); END_STATE(); - case 2572: + case 2583: ACCEPT_TOKEN(aux_sym_using_statement_token3); END_STATE(); - case 2573: + case 2584: ACCEPT_TOKEN(aux_sym_using_statement_token4); END_STATE(); - case 2574: + case 2585: ACCEPT_TOKEN(aux_sym_constructor_definition_token1); END_STATE(); - case 2575: + case 2586: ACCEPT_TOKEN(aux_sym_destructor_definition_token1); END_STATE(); - case 2576: + case 2587: ACCEPT_TOKEN(aux_sym_inherits_token1); END_STATE(); - case 2577: + case 2588: ACCEPT_TOKEN(aux_sym_implements_token1); END_STATE(); - case 2578: + case 2589: ACCEPT_TOKEN(aux_sym_use_widget_pool_token1); END_STATE(); - case 2579: + case 2590: ACCEPT_TOKEN(anon_sym_NO_DASHERROR); END_STATE(); - case 2580: + case 2591: ACCEPT_TOKEN(anon_sym_NO_DASHERROR); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || @@ -35501,126 +35953,126 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); - case 2581: + case 2592: ACCEPT_TOKEN(aux_sym_stream_definition_token1); END_STATE(); - case 2582: + case 2593: ACCEPT_TOKEN(aux_sym_stream_definition_token1); - if (lookahead == '-') ADVANCE(674); + if (lookahead == '-') ADVANCE(682); END_STATE(); - case 2583: + case 2594: ACCEPT_TOKEN(aux_sym_stream_definition_token1); - if (lookahead == '-') ADVANCE(1824); + if (lookahead == '-') ADVANCE(1835); END_STATE(); - case 2584: + case 2595: ACCEPT_TOKEN(aux_sym_input_close_statement_token1); END_STATE(); - case 2585: + case 2596: ACCEPT_TOKEN(aux_sym_input_close_statement_token2); END_STATE(); - case 2586: + case 2597: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token1); END_STATE(); - case 2587: + case 2598: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token2); END_STATE(); - case 2588: + case 2599: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token3); END_STATE(); - case 2589: + case 2600: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token4); END_STATE(); - case 2590: + case 2601: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token5); END_STATE(); - case 2591: + case 2602: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token6); END_STATE(); - case 2592: + case 2603: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token7); END_STATE(); - case 2593: + case 2604: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token8); END_STATE(); - case 2594: + case 2605: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token9); END_STATE(); - case 2595: + case 2606: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token10); END_STATE(); - case 2596: + case 2607: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token11); END_STATE(); - case 2597: + case 2608: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token1); END_STATE(); - case 2598: + case 2609: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token2); END_STATE(); - case 2599: + case 2610: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token3); END_STATE(); - case 2600: + case 2611: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token4); END_STATE(); - case 2601: + case 2612: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token5); END_STATE(); - case 2602: + case 2613: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token6); END_STATE(); - case 2603: + case 2614: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token7); END_STATE(); - case 2604: + case 2615: ACCEPT_TOKEN(aux_sym_output_stream_statement_token1); END_STATE(); - case 2605: + case 2616: ACCEPT_TOKEN(aux_sym_on_error_phrase_token1); END_STATE(); - case 2606: + case 2617: ACCEPT_TOKEN(aux_sym_on_error_phrase_token2); END_STATE(); - case 2607: + case 2618: ACCEPT_TOKEN(aux_sym_on_error_phrase_token3); END_STATE(); - case 2608: + case 2619: ACCEPT_TOKEN(aux_sym_on_error_phrase_token4); END_STATE(); - case 2609: + case 2620: ACCEPT_TOKEN(aux_sym_on_error_phrase_token5); END_STATE(); - case 2610: + case 2621: ACCEPT_TOKEN(aux_sym_on_error_phrase_token6); END_STATE(); - case 2611: + case 2622: ACCEPT_TOKEN(aux_sym_on_error_phrase_token7); END_STATE(); - case 2612: + case 2623: ACCEPT_TOKEN(aux_sym_on_error_phrase_token8); END_STATE(); - case 2613: + case 2624: ACCEPT_TOKEN(aux_sym_on_stop_phrase_token1); END_STATE(); - case 2614: + case 2625: ACCEPT_TOKEN(aux_sym_on_stop_phrase_token1); - if (lookahead == '-') ADVANCE(1443); + if (lookahead == '-') ADVANCE(1452); END_STATE(); - case 2615: + case 2626: ACCEPT_TOKEN(aux_sym_on_quit_phrase_token1); END_STATE(); - case 2616: + case 2627: ACCEPT_TOKEN(aux_sym_stop_after_phrase_token1); END_STATE(); - case 2617: + case 2628: ACCEPT_TOKEN(aux_sym_do_tuning_token1); END_STATE(); - case 2618: + case 2629: ACCEPT_TOKEN(anon_sym_BY); END_STATE(); - case 2619: + case 2630: ACCEPT_TOKEN(anon_sym_BY); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || @@ -35628,302 +36080,302 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\\' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(2447); + lookahead == '|') ADVANCE(2458); END_STATE(); - case 2620: + case 2631: ACCEPT_TOKEN(aux_sym_do_block_token1); END_STATE(); - case 2621: + case 2632: ACCEPT_TOKEN(aux_sym__case_terminator_token1); END_STATE(); - case 2622: + case 2633: ACCEPT_TOKEN(aux_sym_case_otherwise_branch_token1); END_STATE(); - case 2623: + case 2634: ACCEPT_TOKEN(aux_sym_where_clause_token1); END_STATE(); - case 2624: + case 2635: ACCEPT_TOKEN(aux_sym_query_tuning_token1); END_STATE(); - case 2625: + case 2636: ACCEPT_TOKEN(aux_sym_query_tuning_token2); END_STATE(); - case 2626: + case 2637: ACCEPT_TOKEN(aux_sym_query_tuning_token3); END_STATE(); - case 2627: + case 2638: ACCEPT_TOKEN(aux_sym_query_tuning_token4); END_STATE(); - case 2628: + case 2639: ACCEPT_TOKEN(aux_sym_query_tuning_token5); END_STATE(); - case 2629: + case 2640: ACCEPT_TOKEN(aux_sym_sort_clause_token1); END_STATE(); - case 2630: + case 2641: ACCEPT_TOKEN(aux_sym_sort_clause_token2); END_STATE(); - case 2631: + case 2642: ACCEPT_TOKEN(aux_sym_for_phrase_token1); END_STATE(); - case 2632: + case 2643: ACCEPT_TOKEN(aux_sym_for_phrase_token2); END_STATE(); - case 2633: + case 2644: ACCEPT_TOKEN(aux_sym_for_phrase_token3); END_STATE(); - case 2634: + case 2645: ACCEPT_TOKEN(aux_sym_of_token1); END_STATE(); - case 2635: + case 2646: ACCEPT_TOKEN(aux_sym_using_token1); END_STATE(); - case 2636: + case 2647: ACCEPT_TOKEN(aux_sym_catch_statement_token1); END_STATE(); - case 2637: + case 2648: ACCEPT_TOKEN(aux_sym_finally_statement_token1); END_STATE(); - case 2638: + case 2649: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token1); END_STATE(); - case 2639: + case 2650: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token2); END_STATE(); - case 2640: + case 2651: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token3); END_STATE(); - case 2641: + case 2652: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token4); END_STATE(); - case 2642: + case 2653: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token5); END_STATE(); - case 2643: + case 2654: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token6); END_STATE(); - case 2644: + case 2655: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token7); END_STATE(); - case 2645: + case 2656: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token8); END_STATE(); - case 2646: + case 2657: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token9); END_STATE(); - case 2647: + case 2658: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token10); END_STATE(); - case 2648: + case 2659: ACCEPT_TOKEN(anon_sym_); - if (lookahead == ' ') ADVANCE(2648); + if (lookahead == ' ') ADVANCE(2659); END_STATE(); - case 2649: + case 2660: ACCEPT_TOKEN(aux_sym_temp_table_tuning_token1); END_STATE(); - case 2650: + case 2661: ACCEPT_TOKEN(aux_sym_field_option_token1); END_STATE(); - case 2651: + case 2662: ACCEPT_TOKEN(aux_sym_field_option_token2); END_STATE(); - case 2652: + case 2663: ACCEPT_TOKEN(aux_sym_field_option_token3); END_STATE(); - case 2653: + case 2664: ACCEPT_TOKEN(aux_sym_field_option_token4); END_STATE(); - case 2654: + case 2665: ACCEPT_TOKEN(aux_sym_field_option_token5); END_STATE(); - case 2655: + case 2666: ACCEPT_TOKEN(aux_sym_field_option_token6); END_STATE(); - case 2656: + case 2667: ACCEPT_TOKEN(aux_sym_field_option_token7); END_STATE(); - case 2657: + case 2668: ACCEPT_TOKEN(aux_sym_field_definition_token1); END_STATE(); - case 2658: + case 2669: ACCEPT_TOKEN(aux_sym_index_tuning_token2); END_STATE(); - case 2659: + case 2670: ACCEPT_TOKEN(aux_sym_index_tuning_token3); END_STATE(); - case 2660: + case 2671: ACCEPT_TOKEN(aux_sym_index_tuning_token4); END_STATE(); - case 2661: + case 2672: ACCEPT_TOKEN(aux_sym_index_definition_token1); END_STATE(); - case 2662: + case 2673: ACCEPT_TOKEN(aux_sym_workfile_definition_token1); END_STATE(); - case 2663: + case 2674: ACCEPT_TOKEN(aux_sym_workfile_definition_token2); END_STATE(); - case 2664: + case 2675: ACCEPT_TOKEN(aux_sym_widget_field_token1); END_STATE(); - case 2665: + case 2676: ACCEPT_TOKEN(aux_sym_on_statement_token1); END_STATE(); - case 2666: + case 2677: ACCEPT_TOKEN(aux_sym_prompt_for_statement_token2); END_STATE(); - case 2667: + case 2678: ACCEPT_TOKEN(aux_sym_var_statement_token1); END_STATE(); - case 2668: + case 2679: ACCEPT_TOKEN(aux_sym_image_phrase_token1); - if (lookahead == '-') ADVANCE(1600); + if (lookahead == '-') ADVANCE(1609); END_STATE(); - case 2669: + case 2680: ACCEPT_TOKEN(aux_sym_image_phrase_token1); - if (lookahead == '-') ADVANCE(439); + if (lookahead == '-') ADVANCE(447); END_STATE(); - case 2670: + case 2681: ACCEPT_TOKEN(aux_sym_image_phrase_token1); - if (lookahead == '-') ADVANCE(440); + if (lookahead == '-') ADVANCE(448); END_STATE(); - case 2671: + case 2682: ACCEPT_TOKEN(aux_sym_image_phrase_token1); - if (lookahead == '-') ADVANCE(1601); + if (lookahead == '-') ADVANCE(1610); END_STATE(); - case 2672: + case 2683: ACCEPT_TOKEN(aux_sym_image_phrase_token1); - if (lookahead == '-') ADVANCE(1241); + if (lookahead == '-') ADVANCE(1249); END_STATE(); - case 2673: + case 2684: ACCEPT_TOKEN(aux_sym_image_phrase_token2); END_STATE(); - case 2674: + case 2685: ACCEPT_TOKEN(aux_sym_image_phrase_token3); END_STATE(); - case 2675: + case 2686: ACCEPT_TOKEN(aux_sym_image_phrase_token4); - if (lookahead == '-') ADVANCE(1575); + if (lookahead == '-') ADVANCE(1584); END_STATE(); - case 2676: + case 2687: ACCEPT_TOKEN(aux_sym_image_phrase_token4); - if (lookahead == '-') ADVANCE(401); + if (lookahead == '-') ADVANCE(409); END_STATE(); - case 2677: + case 2688: ACCEPT_TOKEN(aux_sym_image_phrase_token5); END_STATE(); - case 2678: + case 2689: ACCEPT_TOKEN(aux_sym_image_phrase_token6); END_STATE(); - case 2679: + case 2690: ACCEPT_TOKEN(aux_sym_image_phrase_token7); END_STATE(); - case 2680: + case 2691: ACCEPT_TOKEN(aux_sym_image_phrase_token7); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1926); + lookahead == 'm') ADVANCE(1937); END_STATE(); - case 2681: + case 2692: ACCEPT_TOKEN(aux_sym_image_phrase_token8); END_STATE(); - case 2682: + case 2693: ACCEPT_TOKEN(aux_sym_image_phrase_token9); END_STATE(); - case 2683: + case 2694: ACCEPT_TOKEN(aux_sym_image_phrase_token10); END_STATE(); - case 2684: + case 2695: ACCEPT_TOKEN(aux_sym_image_phrase_token10); - if (lookahead == '-') ADVANCE(1933); + if (lookahead == '-') ADVANCE(1944); END_STATE(); - case 2685: + case 2696: ACCEPT_TOKEN(aux_sym_image_phrase_token10); - if (lookahead == '-') ADVANCE(785); + if (lookahead == '-') ADVANCE(793); END_STATE(); - case 2686: + case 2697: ACCEPT_TOKEN(aux_sym_size_phrase_token1); - if (lookahead == '-') ADVANCE(1552); + if (lookahead == '-') ADVANCE(1561); END_STATE(); - case 2687: + case 2698: ACCEPT_TOKEN(aux_sym_size_phrase_token1); - if (lookahead == '-') ADVANCE(375); + if (lookahead == '-') ADVANCE(383); END_STATE(); - case 2688: + case 2699: ACCEPT_TOKEN(aux_sym_size_phrase_token2); END_STATE(); - case 2689: + case 2700: ACCEPT_TOKEN(aux_sym_size_phrase_token3); END_STATE(); - case 2690: + case 2701: ACCEPT_TOKEN(aux_sym_button_tuning_token1); END_STATE(); - case 2691: + case 2702: ACCEPT_TOKEN(aux_sym_button_tuning_token2); END_STATE(); - case 2692: + case 2703: ACCEPT_TOKEN(aux_sym_button_tuning_token3); END_STATE(); - case 2693: + case 2704: ACCEPT_TOKEN(aux_sym_button_tuning_token4); END_STATE(); - case 2694: + case 2705: ACCEPT_TOKEN(aux_sym_button_tuning_token5); END_STATE(); - case 2695: + case 2706: ACCEPT_TOKEN(aux_sym_button_tuning_token6); END_STATE(); - case 2696: + case 2707: ACCEPT_TOKEN(aux_sym_button_tuning_token7); END_STATE(); - case 2697: + case 2708: ACCEPT_TOKEN(aux_sym_button_tuning_token8); END_STATE(); - case 2698: + case 2709: ACCEPT_TOKEN(aux_sym_button_tuning_token9); END_STATE(); - case 2699: + case 2710: ACCEPT_TOKEN(aux_sym_button_tuning_token10); END_STATE(); - case 2700: + case 2711: ACCEPT_TOKEN(aux_sym_button_tuning_token11); END_STATE(); - case 2701: + case 2712: ACCEPT_TOKEN(aux_sym_button_tuning_token12); END_STATE(); - case 2702: + case 2713: ACCEPT_TOKEN(aux_sym_button_tuning_token13); END_STATE(); - case 2703: + case 2714: ACCEPT_TOKEN(aux_sym_button_tuning_token14); END_STATE(); - case 2704: + case 2715: ACCEPT_TOKEN(aux_sym_button_tuning_token15); END_STATE(); - case 2705: + case 2716: ACCEPT_TOKEN(aux_sym_button_tuning_token16); END_STATE(); - case 2706: + case 2717: ACCEPT_TOKEN(aux_sym_button_tuning_token17); END_STATE(); - case 2707: + case 2718: ACCEPT_TOKEN(aux_sym_button_definition_token1); END_STATE(); - case 2708: + case 2719: ACCEPT_TOKEN(aux_sym_run_tuning_token1); END_STATE(); - case 2709: + case 2720: ACCEPT_TOKEN(aux_sym_run_tuning_token2); END_STATE(); - case 2710: + case 2721: ACCEPT_TOKEN(aux_sym_run_tuning_token3); END_STATE(); - case 2711: + case 2722: ACCEPT_TOKEN(aux_sym_run_tuning_token4); END_STATE(); - case 2712: + case 2723: ACCEPT_TOKEN(aux_sym_run_tuning_token5); END_STATE(); - case 2713: + case 2724: ACCEPT_TOKEN(aux_sym_run_tuning_token7); END_STATE(); default: @@ -36968,89 +37420,89 @@ 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 = 1323}, - [2] = {.lex_state = 1321, .external_lex_state = 2}, - [3] = {.lex_state = 1321, .external_lex_state = 2}, - [4] = {.lex_state = 1321, .external_lex_state = 3}, - [5] = {.lex_state = 1321, .external_lex_state = 3}, - [6] = {.lex_state = 1321, .external_lex_state = 4}, - [7] = {.lex_state = 1321, .external_lex_state = 4}, - [8] = {.lex_state = 1321, .external_lex_state = 4}, - [9] = {.lex_state = 1321, .external_lex_state = 5}, - [10] = {.lex_state = 1321, .external_lex_state = 6}, - [11] = {.lex_state = 1321, .external_lex_state = 4}, - [12] = {.lex_state = 1321, .external_lex_state = 3}, - [13] = {.lex_state = 1321, .external_lex_state = 6}, - [14] = {.lex_state = 1321, .external_lex_state = 4}, - [15] = {.lex_state = 1321, .external_lex_state = 4}, - [16] = {.lex_state = 1321, .external_lex_state = 5}, - [17] = {.lex_state = 1321, .external_lex_state = 6}, - [18] = {.lex_state = 1321, .external_lex_state = 5}, - [19] = {.lex_state = 1321, .external_lex_state = 5}, - [20] = {.lex_state = 1321, .external_lex_state = 5}, - [21] = {.lex_state = 1321, .external_lex_state = 5}, - [22] = {.lex_state = 1321, .external_lex_state = 5}, - [23] = {.lex_state = 1321, .external_lex_state = 5}, - [24] = {.lex_state = 1321, .external_lex_state = 5}, - [25] = {.lex_state = 1321, .external_lex_state = 5}, - [26] = {.lex_state = 1321, .external_lex_state = 5}, - [27] = {.lex_state = 1321, .external_lex_state = 5}, - [28] = {.lex_state = 1321, .external_lex_state = 5}, - [29] = {.lex_state = 1321, .external_lex_state = 5}, - [30] = {.lex_state = 1321, .external_lex_state = 5}, - [31] = {.lex_state = 1321, .external_lex_state = 5}, - [32] = {.lex_state = 1321, .external_lex_state = 5}, - [33] = {.lex_state = 1321, .external_lex_state = 5}, - [34] = {.lex_state = 1321, .external_lex_state = 5}, - [35] = {.lex_state = 1321, .external_lex_state = 5}, - [36] = {.lex_state = 1321, .external_lex_state = 5}, - [37] = {.lex_state = 1321, .external_lex_state = 5}, - [38] = {.lex_state = 1321, .external_lex_state = 5}, - [39] = {.lex_state = 1321, .external_lex_state = 5}, - [40] = {.lex_state = 1321, .external_lex_state = 5}, - [41] = {.lex_state = 1321, .external_lex_state = 5}, - [42] = {.lex_state = 1321, .external_lex_state = 5}, - [43] = {.lex_state = 1321, .external_lex_state = 5}, - [44] = {.lex_state = 1321, .external_lex_state = 5}, - [45] = {.lex_state = 1321, .external_lex_state = 5}, - [46] = {.lex_state = 1321, .external_lex_state = 5}, - [47] = {.lex_state = 1321, .external_lex_state = 5}, - [48] = {.lex_state = 1321, .external_lex_state = 5}, - [49] = {.lex_state = 36, .external_lex_state = 5}, - [50] = {.lex_state = 36, .external_lex_state = 5}, - [51] = {.lex_state = 36, .external_lex_state = 5}, - [52] = {.lex_state = 36, .external_lex_state = 5}, - [53] = {.lex_state = 193}, - [54] = {.lex_state = 1323}, - [55] = {.lex_state = 1323}, - [56] = {.lex_state = 193}, - [57] = {.lex_state = 193}, - [58] = {.lex_state = 193}, - [59] = {.lex_state = 193}, - [60] = {.lex_state = 1323}, - [61] = {.lex_state = 1323}, - [62] = {.lex_state = 1323}, - [63] = {.lex_state = 1323}, - [64] = {.lex_state = 1323}, - [65] = {.lex_state = 1323}, - [66] = {.lex_state = 1323}, - [67] = {.lex_state = 1323}, - [68] = {.lex_state = 1323}, - [69] = {.lex_state = 1323}, - [70] = {.lex_state = 1323}, - [71] = {.lex_state = 1323}, - [72] = {.lex_state = 1323}, - [73] = {.lex_state = 1323}, - [74] = {.lex_state = 1323}, - [75] = {.lex_state = 42, .external_lex_state = 7}, - [76] = {.lex_state = 42, .external_lex_state = 7}, - [77] = {.lex_state = 42, .external_lex_state = 7}, - [78] = {.lex_state = 42, .external_lex_state = 7}, + [1] = {.lex_state = 1331}, + [2] = {.lex_state = 1329, .external_lex_state = 2}, + [3] = {.lex_state = 1329, .external_lex_state = 2}, + [4] = {.lex_state = 1329, .external_lex_state = 3}, + [5] = {.lex_state = 1329, .external_lex_state = 3}, + [6] = {.lex_state = 1329, .external_lex_state = 3}, + [7] = {.lex_state = 1329, .external_lex_state = 3}, + [8] = {.lex_state = 1329, .external_lex_state = 4}, + [9] = {.lex_state = 1329, .external_lex_state = 4}, + [10] = {.lex_state = 1329, .external_lex_state = 3}, + [11] = {.lex_state = 1329, .external_lex_state = 3}, + [12] = {.lex_state = 1329, .external_lex_state = 5}, + [13] = {.lex_state = 1329, .external_lex_state = 3}, + [14] = {.lex_state = 1329, .external_lex_state = 4}, + [15] = {.lex_state = 1329, .external_lex_state = 6}, + [16] = {.lex_state = 1329, .external_lex_state = 5}, + [17] = {.lex_state = 1329, .external_lex_state = 3}, + [18] = {.lex_state = 1329, .external_lex_state = 4}, + [19] = {.lex_state = 1329, .external_lex_state = 3}, + [20] = {.lex_state = 1329, .external_lex_state = 3}, + [21] = {.lex_state = 1329, .external_lex_state = 3}, + [22] = {.lex_state = 1329, .external_lex_state = 6}, + [23] = {.lex_state = 1329, .external_lex_state = 4}, + [24] = {.lex_state = 1329, .external_lex_state = 3}, + [25] = {.lex_state = 1329, .external_lex_state = 5}, + [26] = {.lex_state = 1329, .external_lex_state = 3}, + [27] = {.lex_state = 1329, .external_lex_state = 4}, + [28] = {.lex_state = 1329, .external_lex_state = 6}, + [29] = {.lex_state = 1329, .external_lex_state = 6}, + [30] = {.lex_state = 1329, .external_lex_state = 6}, + [31] = {.lex_state = 1329, .external_lex_state = 6}, + [32] = {.lex_state = 1329, .external_lex_state = 6}, + [33] = {.lex_state = 1329, .external_lex_state = 6}, + [34] = {.lex_state = 1329, .external_lex_state = 6}, + [35] = {.lex_state = 1329, .external_lex_state = 6}, + [36] = {.lex_state = 1329, .external_lex_state = 6}, + [37] = {.lex_state = 1329, .external_lex_state = 6}, + [38] = {.lex_state = 1329, .external_lex_state = 6}, + [39] = {.lex_state = 1329, .external_lex_state = 6}, + [40] = {.lex_state = 1329, .external_lex_state = 6}, + [41] = {.lex_state = 1329, .external_lex_state = 6}, + [42] = {.lex_state = 1329, .external_lex_state = 6}, + [43] = {.lex_state = 1329, .external_lex_state = 6}, + [44] = {.lex_state = 1329, .external_lex_state = 6}, + [45] = {.lex_state = 1329, .external_lex_state = 6}, + [46] = {.lex_state = 1329, .external_lex_state = 6}, + [47] = {.lex_state = 1329, .external_lex_state = 6}, + [48] = {.lex_state = 1329, .external_lex_state = 6}, + [49] = {.lex_state = 1329, .external_lex_state = 6}, + [50] = {.lex_state = 1329, .external_lex_state = 6}, + [51] = {.lex_state = 1329, .external_lex_state = 6}, + [52] = {.lex_state = 1329, .external_lex_state = 6}, + [53] = {.lex_state = 1331}, + [54] = {.lex_state = 200}, + [55] = {.lex_state = 1331}, + [56] = {.lex_state = 36, .external_lex_state = 3}, + [57] = {.lex_state = 200}, + [58] = {.lex_state = 36, .external_lex_state = 3}, + [59] = {.lex_state = 36, .external_lex_state = 3}, + [60] = {.lex_state = 36, .external_lex_state = 3}, + [61] = {.lex_state = 200}, + [62] = {.lex_state = 200}, + [63] = {.lex_state = 200}, + [64] = {.lex_state = 1331}, + [65] = {.lex_state = 1331}, + [66] = {.lex_state = 1331}, + [67] = {.lex_state = 1331}, + [68] = {.lex_state = 1331}, + [69] = {.lex_state = 1331}, + [70] = {.lex_state = 1331}, + [71] = {.lex_state = 1331}, + [72] = {.lex_state = 1331}, + [73] = {.lex_state = 1331}, + [74] = {.lex_state = 1331}, + [75] = {.lex_state = 1331}, + [76] = {.lex_state = 1331}, + [77] = {.lex_state = 1331}, + [78] = {.lex_state = 1331}, [79] = {.lex_state = 42, .external_lex_state = 7}, - [80] = {.lex_state = 44, .external_lex_state = 8}, - [81] = {.lex_state = 44, .external_lex_state = 8}, - [82] = {.lex_state = 44, .external_lex_state = 8}, - [83] = {.lex_state = 44, .external_lex_state = 8}, + [80] = {.lex_state = 42, .external_lex_state = 7}, + [81] = {.lex_state = 42, .external_lex_state = 7}, + [82] = {.lex_state = 42, .external_lex_state = 7}, + [83] = {.lex_state = 42, .external_lex_state = 7}, [84] = {.lex_state = 44, .external_lex_state = 8}, [85] = {.lex_state = 44, .external_lex_state = 8}, [86] = {.lex_state = 44, .external_lex_state = 8}, @@ -37073,10 +37525,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [103] = {.lex_state = 44, .external_lex_state = 8}, [104] = {.lex_state = 44, .external_lex_state = 8}, [105] = {.lex_state = 44, .external_lex_state = 8}, - [106] = {.lex_state = 44, .external_lex_state = 7}, - [107] = {.lex_state = 44, .external_lex_state = 7}, - [108] = {.lex_state = 44, .external_lex_state = 7}, - [109] = {.lex_state = 44, .external_lex_state = 7}, + [106] = {.lex_state = 44, .external_lex_state = 8}, + [107] = {.lex_state = 44, .external_lex_state = 8}, + [108] = {.lex_state = 44, .external_lex_state = 8}, + [109] = {.lex_state = 44, .external_lex_state = 8}, [110] = {.lex_state = 44, .external_lex_state = 7}, [111] = {.lex_state = 44, .external_lex_state = 7}, [112] = {.lex_state = 44, .external_lex_state = 7}, @@ -37099,21 +37551,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [129] = {.lex_state = 44, .external_lex_state = 7}, [130] = {.lex_state = 44, .external_lex_state = 7}, [131] = {.lex_state = 44, .external_lex_state = 7}, - [132] = {.lex_state = 66, .external_lex_state = 9}, - [133] = {.lex_state = 66, .external_lex_state = 9}, - [134] = {.lex_state = 66, .external_lex_state = 9}, - [135] = {.lex_state = 66, .external_lex_state = 9}, - [136] = {.lex_state = 37, .external_lex_state = 2}, - [137] = {.lex_state = 66, .external_lex_state = 9}, - [138] = {.lex_state = 37, .external_lex_state = 2}, - [139] = {.lex_state = 67, .external_lex_state = 7}, - [140] = {.lex_state = 67, .external_lex_state = 7}, - [141] = {.lex_state = 51, .external_lex_state = 10}, - [142] = {.lex_state = 51, .external_lex_state = 10}, - [143] = {.lex_state = 43, .external_lex_state = 7}, - [144] = {.lex_state = 43, .external_lex_state = 7}, - [145] = {.lex_state = 65, .external_lex_state = 7}, - [146] = {.lex_state = 43, .external_lex_state = 7}, + [132] = {.lex_state = 44, .external_lex_state = 7}, + [133] = {.lex_state = 44, .external_lex_state = 7}, + [134] = {.lex_state = 44, .external_lex_state = 7}, + [135] = {.lex_state = 44, .external_lex_state = 7}, + [136] = {.lex_state = 69, .external_lex_state = 9}, + [137] = {.lex_state = 69, .external_lex_state = 9}, + [138] = {.lex_state = 69, .external_lex_state = 9}, + [139] = {.lex_state = 69, .external_lex_state = 9}, + [140] = {.lex_state = 69, .external_lex_state = 9}, + [141] = {.lex_state = 37, .external_lex_state = 2}, + [142] = {.lex_state = 37, .external_lex_state = 2}, + [143] = {.lex_state = 70, .external_lex_state = 7}, + [144] = {.lex_state = 70, .external_lex_state = 7}, + [145] = {.lex_state = 51, .external_lex_state = 10}, + [146] = {.lex_state = 51, .external_lex_state = 10}, [147] = {.lex_state = 43, .external_lex_state = 7}, [148] = {.lex_state = 43, .external_lex_state = 7}, [149] = {.lex_state = 43, .external_lex_state = 7}, @@ -37124,11 +37576,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [154] = {.lex_state = 43, .external_lex_state = 7}, [155] = {.lex_state = 43, .external_lex_state = 7}, [156] = {.lex_state = 43, .external_lex_state = 7}, - [157] = {.lex_state = 65, .external_lex_state = 7}, - [158] = {.lex_state = 65, .external_lex_state = 7}, - [159] = {.lex_state = 43, .external_lex_state = 7}, + [157] = {.lex_state = 43, .external_lex_state = 7}, + [158] = {.lex_state = 67, .external_lex_state = 7}, + [159] = {.lex_state = 67, .external_lex_state = 7}, [160] = {.lex_state = 43, .external_lex_state = 7}, - [161] = {.lex_state = 64, .external_lex_state = 11}, + [161] = {.lex_state = 67, .external_lex_state = 7}, [162] = {.lex_state = 43, .external_lex_state = 7}, [163] = {.lex_state = 43, .external_lex_state = 7}, [164] = {.lex_state = 43, .external_lex_state = 7}, @@ -37136,2875 +37588,2875 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [166] = {.lex_state = 43, .external_lex_state = 7}, [167] = {.lex_state = 43, .external_lex_state = 7}, [168] = {.lex_state = 43, .external_lex_state = 7}, - [169] = {.lex_state = 43, .external_lex_state = 7}, + [169] = {.lex_state = 66, .external_lex_state = 11}, [170] = {.lex_state = 43, .external_lex_state = 7}, [171] = {.lex_state = 43, .external_lex_state = 7}, [172] = {.lex_state = 43, .external_lex_state = 7}, [173] = {.lex_state = 43, .external_lex_state = 7}, - [174] = {.lex_state = 37, .external_lex_state = 3}, - [175] = {.lex_state = 51, .external_lex_state = 12}, - [176] = {.lex_state = 64}, - [177] = {.lex_state = 64}, + [174] = {.lex_state = 43, .external_lex_state = 7}, + [175] = {.lex_state = 43, .external_lex_state = 7}, + [176] = {.lex_state = 43, .external_lex_state = 7}, + [177] = {.lex_state = 43, .external_lex_state = 7}, [178] = {.lex_state = 43, .external_lex_state = 7}, - [179] = {.lex_state = 37, .external_lex_state = 3}, - [180] = {.lex_state = 58, .external_lex_state = 10}, - [181] = {.lex_state = 58, .external_lex_state = 10}, - [182] = {.lex_state = 51, .external_lex_state = 12}, - [183] = {.lex_state = 51, .external_lex_state = 12}, + [179] = {.lex_state = 43, .external_lex_state = 7}, + [180] = {.lex_state = 51, .external_lex_state = 12}, + [181] = {.lex_state = 43, .external_lex_state = 7}, + [182] = {.lex_state = 60, .external_lex_state = 10}, + [183] = {.lex_state = 66}, [184] = {.lex_state = 37, .external_lex_state = 3}, - [185] = {.lex_state = 37, .external_lex_state = 5}, - [186] = {.lex_state = 68, .external_lex_state = 7}, - [187] = {.lex_state = 68, .external_lex_state = 7}, - [188] = {.lex_state = 51, .external_lex_state = 12}, - [189] = {.lex_state = 68, .external_lex_state = 7}, - [190] = {.lex_state = 51, .external_lex_state = 12}, + [185] = {.lex_state = 66}, + [186] = {.lex_state = 37, .external_lex_state = 3}, + [187] = {.lex_state = 60, .external_lex_state = 10}, + [188] = {.lex_state = 37, .external_lex_state = 3}, + [189] = {.lex_state = 37, .external_lex_state = 3}, + [190] = {.lex_state = 37, .external_lex_state = 3}, [191] = {.lex_state = 51, .external_lex_state = 12}, [192] = {.lex_state = 51, .external_lex_state = 12}, - [193] = {.lex_state = 51, .external_lex_state = 12}, + [193] = {.lex_state = 37, .external_lex_state = 6}, [194] = {.lex_state = 51, .external_lex_state = 12}, [195] = {.lex_state = 51, .external_lex_state = 12}, [196] = {.lex_state = 51, .external_lex_state = 12}, - [197] = {.lex_state = 51, .external_lex_state = 12}, + [197] = {.lex_state = 71, .external_lex_state = 7}, [198] = {.lex_state = 51, .external_lex_state = 12}, - [199] = {.lex_state = 69, .external_lex_state = 7}, - [200] = {.lex_state = 58, .external_lex_state = 12}, - [201] = {.lex_state = 37, .external_lex_state = 6}, - [202] = {.lex_state = 69, .external_lex_state = 7}, - [203] = {.lex_state = 37, .external_lex_state = 4}, - [204] = {.lex_state = 37, .external_lex_state = 4}, - [205] = {.lex_state = 37, .external_lex_state = 4}, - [206] = {.lex_state = 37, .external_lex_state = 5}, - [207] = {.lex_state = 37, .external_lex_state = 4}, - [208] = {.lex_state = 37, .external_lex_state = 6}, - [209] = {.lex_state = 69, .external_lex_state = 7}, - [210] = {.lex_state = 58, .external_lex_state = 12}, - [211] = {.lex_state = 58, .external_lex_state = 12}, - [212] = {.lex_state = 37, .external_lex_state = 6}, - [213] = {.lex_state = 51, .external_lex_state = 13}, - [214] = {.lex_state = 51, .external_lex_state = 13}, + [199] = {.lex_state = 51, .external_lex_state = 12}, + [200] = {.lex_state = 51, .external_lex_state = 12}, + [201] = {.lex_state = 51, .external_lex_state = 12}, + [202] = {.lex_state = 51, .external_lex_state = 12}, + [203] = {.lex_state = 71, .external_lex_state = 7}, + [204] = {.lex_state = 51, .external_lex_state = 12}, + [205] = {.lex_state = 51, .external_lex_state = 12}, + [206] = {.lex_state = 71, .external_lex_state = 7}, + [207] = {.lex_state = 37, .external_lex_state = 5}, + [208] = {.lex_state = 72, .external_lex_state = 7}, + [209] = {.lex_state = 37, .external_lex_state = 3}, + [210] = {.lex_state = 72, .external_lex_state = 7}, + [211] = {.lex_state = 72, .external_lex_state = 7}, + [212] = {.lex_state = 37, .external_lex_state = 4}, + [213] = {.lex_state = 37, .external_lex_state = 3}, + [214] = {.lex_state = 37, .external_lex_state = 3}, [215] = {.lex_state = 37, .external_lex_state = 4}, - [216] = {.lex_state = 51, .external_lex_state = 14}, - [217] = {.lex_state = 51, .external_lex_state = 15}, - [218] = {.lex_state = 51, .external_lex_state = 14}, - [219] = {.lex_state = 51, .external_lex_state = 15}, - [220] = {.lex_state = 51, .external_lex_state = 13}, - [221] = {.lex_state = 51, .external_lex_state = 13}, - [222] = {.lex_state = 58, .external_lex_state = 12}, - [223] = {.lex_state = 58, .external_lex_state = 12}, - [224] = {.lex_state = 58, .external_lex_state = 12}, - [225] = {.lex_state = 58, .external_lex_state = 12}, - [226] = {.lex_state = 37, .external_lex_state = 4}, - [227] = {.lex_state = 50, .external_lex_state = 12}, - [228] = {.lex_state = 58, .external_lex_state = 12}, - [229] = {.lex_state = 37, .external_lex_state = 5}, - [230] = {.lex_state = 37, .external_lex_state = 5}, - [231] = {.lex_state = 37, .external_lex_state = 5}, - [232] = {.lex_state = 58, .external_lex_state = 12}, - [233] = {.lex_state = 58, .external_lex_state = 12}, - [234] = {.lex_state = 58, .external_lex_state = 12}, - [235] = {.lex_state = 58, .external_lex_state = 12}, - [236] = {.lex_state = 58, .external_lex_state = 12}, - [237] = {.lex_state = 37, .external_lex_state = 5}, - [238] = {.lex_state = 52, .external_lex_state = 12}, - [239] = {.lex_state = 49, .external_lex_state = 12}, - [240] = {.lex_state = 47, .external_lex_state = 10}, - [241] = {.lex_state = 49, .external_lex_state = 12}, - [242] = {.lex_state = 51, .external_lex_state = 12}, - [243] = {.lex_state = 37, .external_lex_state = 5}, - [244] = {.lex_state = 37, .external_lex_state = 5}, - [245] = {.lex_state = 66, .external_lex_state = 7}, - [246] = {.lex_state = 66, .external_lex_state = 7}, - [247] = {.lex_state = 66, .external_lex_state = 7}, - [248] = {.lex_state = 37, .external_lex_state = 5}, - [249] = {.lex_state = 37, .external_lex_state = 5}, - [250] = {.lex_state = 37, .external_lex_state = 5}, - [251] = {.lex_state = 37, .external_lex_state = 5}, - [252] = {.lex_state = 37, .external_lex_state = 5}, - [253] = {.lex_state = 47, .external_lex_state = 10}, - [254] = {.lex_state = 37, .external_lex_state = 5}, - [255] = {.lex_state = 66, .external_lex_state = 7}, - [256] = {.lex_state = 66, .external_lex_state = 7}, - [257] = {.lex_state = 66, .external_lex_state = 7}, - [258] = {.lex_state = 66, .external_lex_state = 7}, - [259] = {.lex_state = 66, .external_lex_state = 7}, - [260] = {.lex_state = 66, .external_lex_state = 7}, - [261] = {.lex_state = 66, .external_lex_state = 7}, - [262] = {.lex_state = 66, .external_lex_state = 7}, - [263] = {.lex_state = 51, .external_lex_state = 12}, - [264] = {.lex_state = 51, .external_lex_state = 12}, - [265] = {.lex_state = 37, .external_lex_state = 5}, - [266] = {.lex_state = 37, .external_lex_state = 5}, - [267] = {.lex_state = 66, .external_lex_state = 7}, - [268] = {.lex_state = 49, .external_lex_state = 12}, - [269] = {.lex_state = 66, .external_lex_state = 7}, - [270] = {.lex_state = 66, .external_lex_state = 7}, - [271] = {.lex_state = 66, .external_lex_state = 7}, - [272] = {.lex_state = 66, .external_lex_state = 7}, - [273] = {.lex_state = 37, .external_lex_state = 5}, - [274] = {.lex_state = 52, .external_lex_state = 12}, - [275] = {.lex_state = 49, .external_lex_state = 12}, - [276] = {.lex_state = 66, .external_lex_state = 7}, - [277] = {.lex_state = 37, .external_lex_state = 5}, - [278] = {.lex_state = 66, .external_lex_state = 7}, - [279] = {.lex_state = 66, .external_lex_state = 7}, - [280] = {.lex_state = 66, .external_lex_state = 7}, - [281] = {.lex_state = 52, .external_lex_state = 12}, - [282] = {.lex_state = 66, .external_lex_state = 7}, - [283] = {.lex_state = 51, .external_lex_state = 13}, - [284] = {.lex_state = 37, .external_lex_state = 5}, - [285] = {.lex_state = 37, .external_lex_state = 5}, - [286] = {.lex_state = 37, .external_lex_state = 5}, - [287] = {.lex_state = 37, .external_lex_state = 5}, - [288] = {.lex_state = 66, .external_lex_state = 7}, - [289] = {.lex_state = 66, .external_lex_state = 7}, - [290] = {.lex_state = 66, .external_lex_state = 7}, - [291] = {.lex_state = 37, .external_lex_state = 5}, - [292] = {.lex_state = 66, .external_lex_state = 7}, - [293] = {.lex_state = 37, .external_lex_state = 5}, - [294] = {.lex_state = 66, .external_lex_state = 7}, - [295] = {.lex_state = 66, .external_lex_state = 7}, - [296] = {.lex_state = 51, .external_lex_state = 15}, + [216] = {.lex_state = 37, .external_lex_state = 3}, + [217] = {.lex_state = 37, .external_lex_state = 3}, + [218] = {.lex_state = 60, .external_lex_state = 12}, + [219] = {.lex_state = 37, .external_lex_state = 6}, + [220] = {.lex_state = 37, .external_lex_state = 4}, + [221] = {.lex_state = 37, .external_lex_state = 4}, + [222] = {.lex_state = 37, .external_lex_state = 5}, + [223] = {.lex_state = 51, .external_lex_state = 13}, + [224] = {.lex_state = 60, .external_lex_state = 12}, + [225] = {.lex_state = 37, .external_lex_state = 3}, + [226] = {.lex_state = 37, .external_lex_state = 3}, + [227] = {.lex_state = 37, .external_lex_state = 4}, + [228] = {.lex_state = 37, .external_lex_state = 4}, + [229] = {.lex_state = 37, .external_lex_state = 3}, + [230] = {.lex_state = 49, .external_lex_state = 14}, + [231] = {.lex_state = 49, .external_lex_state = 14}, + [232] = {.lex_state = 49, .external_lex_state = 14}, + [233] = {.lex_state = 51, .external_lex_state = 13}, + [234] = {.lex_state = 50, .external_lex_state = 12}, + [235] = {.lex_state = 52, .external_lex_state = 14}, + [236] = {.lex_state = 52, .external_lex_state = 14}, + [237] = {.lex_state = 52, .external_lex_state = 14}, + [238] = {.lex_state = 60, .external_lex_state = 12}, + [239] = {.lex_state = 60, .external_lex_state = 12}, + [240] = {.lex_state = 60, .external_lex_state = 12}, + [241] = {.lex_state = 60, .external_lex_state = 12}, + [242] = {.lex_state = 37, .external_lex_state = 5}, + [243] = {.lex_state = 60, .external_lex_state = 12}, + [244] = {.lex_state = 49, .external_lex_state = 14}, + [245] = {.lex_state = 60, .external_lex_state = 12}, + [246] = {.lex_state = 60, .external_lex_state = 12}, + [247] = {.lex_state = 60, .external_lex_state = 12}, + [248] = {.lex_state = 60, .external_lex_state = 12}, + [249] = {.lex_state = 60, .external_lex_state = 12}, + [250] = {.lex_state = 60, .external_lex_state = 12}, + [251] = {.lex_state = 51, .external_lex_state = 14}, + [252] = {.lex_state = 51, .external_lex_state = 14}, + [253] = {.lex_state = 51, .external_lex_state = 14}, + [254] = {.lex_state = 51, .external_lex_state = 14}, + [255] = {.lex_state = 51, .external_lex_state = 15}, + [256] = {.lex_state = 51, .external_lex_state = 15}, + [257] = {.lex_state = 52, .external_lex_state = 14}, + [258] = {.lex_state = 51, .external_lex_state = 13}, + [259] = {.lex_state = 51, .external_lex_state = 13}, + [260] = {.lex_state = 51, .external_lex_state = 14}, + [261] = {.lex_state = 51, .external_lex_state = 14}, + [262] = {.lex_state = 37, .external_lex_state = 6}, + [263] = {.lex_state = 69, .external_lex_state = 7}, + [264] = {.lex_state = 69, .external_lex_state = 7}, + [265] = {.lex_state = 47, .external_lex_state = 10}, + [266] = {.lex_state = 69, .external_lex_state = 7}, + [267] = {.lex_state = 69, .external_lex_state = 7}, + [268] = {.lex_state = 69, .external_lex_state = 7}, + [269] = {.lex_state = 69, .external_lex_state = 7}, + [270] = {.lex_state = 51, .external_lex_state = 12}, + [271] = {.lex_state = 69, .external_lex_state = 7}, + [272] = {.lex_state = 69, .external_lex_state = 7}, + [273] = {.lex_state = 69, .external_lex_state = 7}, + [274] = {.lex_state = 51, .external_lex_state = 12}, + [275] = {.lex_state = 69, .external_lex_state = 7}, + [276] = {.lex_state = 69, .external_lex_state = 7}, + [277] = {.lex_state = 69, .external_lex_state = 7}, + [278] = {.lex_state = 69, .external_lex_state = 7}, + [279] = {.lex_state = 69, .external_lex_state = 7}, + [280] = {.lex_state = 69, .external_lex_state = 7}, + [281] = {.lex_state = 69, .external_lex_state = 7}, + [282] = {.lex_state = 47, .external_lex_state = 10}, + [283] = {.lex_state = 69, .external_lex_state = 7}, + [284] = {.lex_state = 69, .external_lex_state = 7}, + [285] = {.lex_state = 69, .external_lex_state = 7}, + [286] = {.lex_state = 69, .external_lex_state = 7}, + [287] = {.lex_state = 69, .external_lex_state = 7}, + [288] = {.lex_state = 69, .external_lex_state = 7}, + [289] = {.lex_state = 69, .external_lex_state = 7}, + [290] = {.lex_state = 69, .external_lex_state = 7}, + [291] = {.lex_state = 51, .external_lex_state = 13}, + [292] = {.lex_state = 69, .external_lex_state = 7}, + [293] = {.lex_state = 51, .external_lex_state = 15}, + [294] = {.lex_state = 69, .external_lex_state = 7}, + [295] = {.lex_state = 51, .external_lex_state = 14}, + [296] = {.lex_state = 69, .external_lex_state = 7}, [297] = {.lex_state = 51, .external_lex_state = 14}, - [298] = {.lex_state = 37, .external_lex_state = 5}, - [299] = {.lex_state = 37, .external_lex_state = 5}, - [300] = {.lex_state = 52, .external_lex_state = 12}, - [301] = {.lex_state = 66, .external_lex_state = 7}, - [302] = {.lex_state = 66, .external_lex_state = 7}, - [303] = {.lex_state = 51, .external_lex_state = 13}, - [304] = {.lex_state = 37, .external_lex_state = 5}, - [305] = {.lex_state = 66, .external_lex_state = 7}, - [306] = {.lex_state = 66, .external_lex_state = 7}, - [307] = {.lex_state = 37, .external_lex_state = 5}, - [308] = {.lex_state = 66, .external_lex_state = 7}, - [309] = {.lex_state = 37, .external_lex_state = 5}, - [310] = {.lex_state = 66, .external_lex_state = 7}, - [311] = {.lex_state = 37, .external_lex_state = 5}, - [312] = {.lex_state = 37, .external_lex_state = 5}, - [313] = {.lex_state = 37, .external_lex_state = 5}, - [314] = {.lex_state = 66, .external_lex_state = 7}, - [315] = {.lex_state = 66, .external_lex_state = 7}, - [316] = {.lex_state = 37, .external_lex_state = 5}, - [317] = {.lex_state = 58, .external_lex_state = 13}, - [318] = {.lex_state = 51, .external_lex_state = 12}, - [319] = {.lex_state = 51, .external_lex_state = 12}, - [320] = {.lex_state = 62, .external_lex_state = 10}, - [321] = {.lex_state = 51, .external_lex_state = 12}, - [322] = {.lex_state = 51, .external_lex_state = 12}, - [323] = {.lex_state = 51, .external_lex_state = 12}, - [324] = {.lex_state = 51, .external_lex_state = 12}, - [325] = {.lex_state = 51, .external_lex_state = 12}, - [326] = {.lex_state = 51, .external_lex_state = 12}, - [327] = {.lex_state = 51, .external_lex_state = 12}, - [328] = {.lex_state = 51, .external_lex_state = 12}, - [329] = {.lex_state = 51, .external_lex_state = 12}, - [330] = {.lex_state = 51, .external_lex_state = 12}, - [331] = {.lex_state = 51, .external_lex_state = 12}, - [332] = {.lex_state = 51, .external_lex_state = 12}, - [333] = {.lex_state = 51, .external_lex_state = 12}, - [334] = {.lex_state = 57, .external_lex_state = 12}, - [335] = {.lex_state = 62, .external_lex_state = 10}, - [336] = {.lex_state = 51, .external_lex_state = 12}, - [337] = {.lex_state = 51, .external_lex_state = 12}, - [338] = {.lex_state = 51, .external_lex_state = 12}, - [339] = {.lex_state = 51, .external_lex_state = 12}, - [340] = {.lex_state = 40, .external_lex_state = 11}, - [341] = {.lex_state = 51, .external_lex_state = 12}, - [342] = {.lex_state = 51, .external_lex_state = 12}, - [343] = {.lex_state = 66, .external_lex_state = 7}, - [344] = {.lex_state = 66, .external_lex_state = 7}, - [345] = {.lex_state = 66, .external_lex_state = 7}, - [346] = {.lex_state = 58, .external_lex_state = 13}, + [298] = {.lex_state = 69, .external_lex_state = 7}, + [299] = {.lex_state = 51, .external_lex_state = 14}, + [300] = {.lex_state = 69, .external_lex_state = 7}, + [301] = {.lex_state = 69, .external_lex_state = 7}, + [302] = {.lex_state = 69, .external_lex_state = 7}, + [303] = {.lex_state = 69, .external_lex_state = 7}, + [304] = {.lex_state = 69, .external_lex_state = 7}, + [305] = {.lex_state = 69, .external_lex_state = 7}, + [306] = {.lex_state = 69, .external_lex_state = 7}, + [307] = {.lex_state = 51, .external_lex_state = 12}, + [308] = {.lex_state = 37, .external_lex_state = 6}, + [309] = {.lex_state = 37, .external_lex_state = 6}, + [310] = {.lex_state = 37, .external_lex_state = 6}, + [311] = {.lex_state = 37, .external_lex_state = 6}, + [312] = {.lex_state = 51, .external_lex_state = 13}, + [313] = {.lex_state = 37, .external_lex_state = 6}, + [314] = {.lex_state = 37, .external_lex_state = 6}, + [315] = {.lex_state = 37, .external_lex_state = 6}, + [316] = {.lex_state = 37, .external_lex_state = 6}, + [317] = {.lex_state = 37, .external_lex_state = 6}, + [318] = {.lex_state = 37, .external_lex_state = 6}, + [319] = {.lex_state = 37, .external_lex_state = 6}, + [320] = {.lex_state = 37, .external_lex_state = 6}, + [321] = {.lex_state = 37, .external_lex_state = 6}, + [322] = {.lex_state = 37, .external_lex_state = 6}, + [323] = {.lex_state = 37, .external_lex_state = 6}, + [324] = {.lex_state = 37, .external_lex_state = 6}, + [325] = {.lex_state = 37, .external_lex_state = 6}, + [326] = {.lex_state = 37, .external_lex_state = 6}, + [327] = {.lex_state = 37, .external_lex_state = 6}, + [328] = {.lex_state = 37, .external_lex_state = 6}, + [329] = {.lex_state = 37, .external_lex_state = 6}, + [330] = {.lex_state = 37, .external_lex_state = 6}, + [331] = {.lex_state = 37, .external_lex_state = 6}, + [332] = {.lex_state = 37, .external_lex_state = 6}, + [333] = {.lex_state = 58, .external_lex_state = 14}, + [334] = {.lex_state = 60, .external_lex_state = 14}, + [335] = {.lex_state = 60, .external_lex_state = 14}, + [336] = {.lex_state = 60, .external_lex_state = 14}, + [337] = {.lex_state = 60, .external_lex_state = 13}, + [338] = {.lex_state = 60, .external_lex_state = 13}, + [339] = {.lex_state = 60, .external_lex_state = 14}, + [340] = {.lex_state = 60, .external_lex_state = 15}, + [341] = {.lex_state = 61, .external_lex_state = 14}, + [342] = {.lex_state = 61, .external_lex_state = 14}, + [343] = {.lex_state = 61, .external_lex_state = 14}, + [344] = {.lex_state = 60, .external_lex_state = 15}, + [345] = {.lex_state = 58, .external_lex_state = 14}, + [346] = {.lex_state = 58, .external_lex_state = 14}, [347] = {.lex_state = 58, .external_lex_state = 14}, - [348] = {.lex_state = 51, .external_lex_state = 12}, - [349] = {.lex_state = 51, .external_lex_state = 12}, - [350] = {.lex_state = 51, .external_lex_state = 12}, - [351] = {.lex_state = 58, .external_lex_state = 15}, - [352] = {.lex_state = 58, .external_lex_state = 14}, - [353] = {.lex_state = 58, .external_lex_state = 15}, - [354] = {.lex_state = 51, .external_lex_state = 12}, - [355] = {.lex_state = 66, .external_lex_state = 7}, + [348] = {.lex_state = 59, .external_lex_state = 12}, + [349] = {.lex_state = 69, .external_lex_state = 7}, + [350] = {.lex_state = 61, .external_lex_state = 14}, + [351] = {.lex_state = 60, .external_lex_state = 13}, + [352] = {.lex_state = 60, .external_lex_state = 13}, + [353] = {.lex_state = 60, .external_lex_state = 14}, + [354] = {.lex_state = 69, .external_lex_state = 7}, + [355] = {.lex_state = 60, .external_lex_state = 14}, [356] = {.lex_state = 51, .external_lex_state = 12}, [357] = {.lex_state = 51, .external_lex_state = 12}, - [358] = {.lex_state = 58, .external_lex_state = 13}, - [359] = {.lex_state = 58, .external_lex_state = 13}, - [360] = {.lex_state = 40, .external_lex_state = 11}, - [361] = {.lex_state = 66, .external_lex_state = 7}, - [362] = {.lex_state = 66, .external_lex_state = 7}, - [363] = {.lex_state = 66, .external_lex_state = 7}, - [364] = {.lex_state = 66, .external_lex_state = 7}, - [365] = {.lex_state = 66, .external_lex_state = 7}, - [366] = {.lex_state = 66, .external_lex_state = 7}, - [367] = {.lex_state = 66, .external_lex_state = 7}, - [368] = {.lex_state = 66, .external_lex_state = 7}, - [369] = {.lex_state = 66, .external_lex_state = 7}, - [370] = {.lex_state = 66, .external_lex_state = 7}, - [371] = {.lex_state = 66, .external_lex_state = 7}, - [372] = {.lex_state = 66, .external_lex_state = 7}, - [373] = {.lex_state = 66, .external_lex_state = 7}, - [374] = {.lex_state = 66, .external_lex_state = 7}, - [375] = {.lex_state = 66, .external_lex_state = 7}, - [376] = {.lex_state = 66, .external_lex_state = 7}, - [377] = {.lex_state = 66, .external_lex_state = 7}, - [378] = {.lex_state = 66, .external_lex_state = 7}, - [379] = {.lex_state = 66, .external_lex_state = 7}, - [380] = {.lex_state = 66, .external_lex_state = 7}, - [381] = {.lex_state = 66, .external_lex_state = 7}, - [382] = {.lex_state = 66, .external_lex_state = 7}, - [383] = {.lex_state = 66, .external_lex_state = 7}, - [384] = {.lex_state = 66, .external_lex_state = 7}, - [385] = {.lex_state = 66, .external_lex_state = 7}, - [386] = {.lex_state = 66, .external_lex_state = 7}, - [387] = {.lex_state = 66, .external_lex_state = 7}, - [388] = {.lex_state = 66, .external_lex_state = 7}, - [389] = {.lex_state = 66, .external_lex_state = 7}, - [390] = {.lex_state = 66, .external_lex_state = 7}, - [391] = {.lex_state = 66, .external_lex_state = 7}, - [392] = {.lex_state = 66, .external_lex_state = 7}, - [393] = {.lex_state = 66, .external_lex_state = 7}, - [394] = {.lex_state = 66, .external_lex_state = 7}, - [395] = {.lex_state = 66, .external_lex_state = 7}, - [396] = {.lex_state = 66, .external_lex_state = 7}, - [397] = {.lex_state = 66, .external_lex_state = 7}, - [398] = {.lex_state = 66, .external_lex_state = 7}, - [399] = {.lex_state = 66, .external_lex_state = 7}, - [400] = {.lex_state = 66, .external_lex_state = 7}, - [401] = {.lex_state = 66, .external_lex_state = 7}, - [402] = {.lex_state = 66, .external_lex_state = 7}, - [403] = {.lex_state = 66, .external_lex_state = 7}, - [404] = {.lex_state = 66, .external_lex_state = 7}, - [405] = {.lex_state = 66, .external_lex_state = 7}, - [406] = {.lex_state = 66, .external_lex_state = 7}, - [407] = {.lex_state = 66, .external_lex_state = 7}, - [408] = {.lex_state = 66, .external_lex_state = 7}, - [409] = {.lex_state = 66, .external_lex_state = 7}, - [410] = {.lex_state = 66, .external_lex_state = 7}, - [411] = {.lex_state = 66, .external_lex_state = 7}, - [412] = {.lex_state = 66, .external_lex_state = 7}, - [413] = {.lex_state = 66, .external_lex_state = 7}, - [414] = {.lex_state = 66, .external_lex_state = 7}, - [415] = {.lex_state = 66, .external_lex_state = 7}, - [416] = {.lex_state = 66, .external_lex_state = 7}, - [417] = {.lex_state = 66, .external_lex_state = 7}, - [418] = {.lex_state = 66, .external_lex_state = 7}, - [419] = {.lex_state = 66, .external_lex_state = 7}, - [420] = {.lex_state = 66, .external_lex_state = 7}, - [421] = {.lex_state = 66, .external_lex_state = 7}, - [422] = {.lex_state = 66, .external_lex_state = 7}, - [423] = {.lex_state = 66, .external_lex_state = 7}, - [424] = {.lex_state = 66, .external_lex_state = 7}, - [425] = {.lex_state = 66, .external_lex_state = 7}, - [426] = {.lex_state = 66, .external_lex_state = 7}, - [427] = {.lex_state = 66, .external_lex_state = 7}, - [428] = {.lex_state = 66, .external_lex_state = 7}, - [429] = {.lex_state = 66, .external_lex_state = 7}, - [430] = {.lex_state = 66, .external_lex_state = 7}, - [431] = {.lex_state = 66, .external_lex_state = 7}, - [432] = {.lex_state = 66, .external_lex_state = 7}, - [433] = {.lex_state = 66, .external_lex_state = 7}, - [434] = {.lex_state = 66, .external_lex_state = 7}, - [435] = {.lex_state = 66, .external_lex_state = 7}, - [436] = {.lex_state = 66, .external_lex_state = 7}, - [437] = {.lex_state = 66, .external_lex_state = 7}, - [438] = {.lex_state = 66, .external_lex_state = 7}, - [439] = {.lex_state = 66, .external_lex_state = 7}, - [440] = {.lex_state = 66, .external_lex_state = 7}, - [441] = {.lex_state = 66, .external_lex_state = 7}, - [442] = {.lex_state = 66, .external_lex_state = 7}, - [443] = {.lex_state = 66, .external_lex_state = 7}, - [444] = {.lex_state = 66, .external_lex_state = 7}, - [445] = {.lex_state = 66, .external_lex_state = 7}, - [446] = {.lex_state = 66, .external_lex_state = 7}, - [447] = {.lex_state = 66, .external_lex_state = 7}, - [448] = {.lex_state = 66, .external_lex_state = 7}, - [449] = {.lex_state = 66, .external_lex_state = 7}, - [450] = {.lex_state = 66, .external_lex_state = 7}, - [451] = {.lex_state = 66, .external_lex_state = 7}, - [452] = {.lex_state = 66, .external_lex_state = 7}, - [453] = {.lex_state = 66, .external_lex_state = 7}, - [454] = {.lex_state = 66, .external_lex_state = 7}, - [455] = {.lex_state = 66, .external_lex_state = 7}, - [456] = {.lex_state = 66, .external_lex_state = 7}, - [457] = {.lex_state = 66, .external_lex_state = 7}, - [458] = {.lex_state = 66, .external_lex_state = 7}, - [459] = {.lex_state = 66, .external_lex_state = 7}, - [460] = {.lex_state = 66, .external_lex_state = 7}, - [461] = {.lex_state = 66, .external_lex_state = 7}, - [462] = {.lex_state = 66, .external_lex_state = 7}, - [463] = {.lex_state = 66, .external_lex_state = 7}, - [464] = {.lex_state = 66, .external_lex_state = 7}, - [465] = {.lex_state = 66, .external_lex_state = 7}, - [466] = {.lex_state = 66, .external_lex_state = 7}, - [467] = {.lex_state = 66, .external_lex_state = 7}, - [468] = {.lex_state = 66, .external_lex_state = 7}, - [469] = {.lex_state = 66, .external_lex_state = 7}, - [470] = {.lex_state = 66, .external_lex_state = 7}, - [471] = {.lex_state = 66, .external_lex_state = 7}, - [472] = {.lex_state = 66, .external_lex_state = 7}, - [473] = {.lex_state = 66, .external_lex_state = 7}, - [474] = {.lex_state = 66, .external_lex_state = 7}, - [475] = {.lex_state = 66, .external_lex_state = 7}, - [476] = {.lex_state = 66, .external_lex_state = 7}, - [477] = {.lex_state = 66, .external_lex_state = 7}, - [478] = {.lex_state = 66, .external_lex_state = 7}, - [479] = {.lex_state = 66, .external_lex_state = 7}, - [480] = {.lex_state = 66, .external_lex_state = 7}, - [481] = {.lex_state = 66, .external_lex_state = 7}, - [482] = {.lex_state = 66, .external_lex_state = 7}, - [483] = {.lex_state = 66, .external_lex_state = 7}, - [484] = {.lex_state = 66, .external_lex_state = 7}, - [485] = {.lex_state = 66, .external_lex_state = 7}, - [486] = {.lex_state = 66, .external_lex_state = 7}, - [487] = {.lex_state = 66, .external_lex_state = 7}, - [488] = {.lex_state = 66, .external_lex_state = 7}, - [489] = {.lex_state = 66, .external_lex_state = 7}, - [490] = {.lex_state = 66, .external_lex_state = 7}, - [491] = {.lex_state = 66, .external_lex_state = 7}, - [492] = {.lex_state = 66, .external_lex_state = 7}, - [493] = {.lex_state = 66, .external_lex_state = 7}, - [494] = {.lex_state = 66, .external_lex_state = 7}, - [495] = {.lex_state = 66, .external_lex_state = 7}, - [496] = {.lex_state = 66, .external_lex_state = 7}, - [497] = {.lex_state = 66, .external_lex_state = 7}, - [498] = {.lex_state = 66, .external_lex_state = 7}, - [499] = {.lex_state = 66, .external_lex_state = 7}, - [500] = {.lex_state = 66, .external_lex_state = 7}, - [501] = {.lex_state = 66, .external_lex_state = 7}, - [502] = {.lex_state = 66, .external_lex_state = 7}, - [503] = {.lex_state = 66, .external_lex_state = 7}, - [504] = {.lex_state = 66, .external_lex_state = 7}, - [505] = {.lex_state = 66, .external_lex_state = 7}, - [506] = {.lex_state = 66, .external_lex_state = 7}, - [507] = {.lex_state = 66, .external_lex_state = 7}, - [508] = {.lex_state = 66, .external_lex_state = 7}, - [509] = {.lex_state = 66, .external_lex_state = 7}, - [510] = {.lex_state = 66, .external_lex_state = 7}, - [511] = {.lex_state = 66, .external_lex_state = 7}, - [512] = {.lex_state = 66, .external_lex_state = 7}, - [513] = {.lex_state = 40, .external_lex_state = 11}, - [514] = {.lex_state = 66, .external_lex_state = 7}, - [515] = {.lex_state = 66, .external_lex_state = 7}, - [516] = {.lex_state = 59, .external_lex_state = 12}, - [517] = {.lex_state = 66, .external_lex_state = 7}, - [518] = {.lex_state = 66, .external_lex_state = 7}, - [519] = {.lex_state = 66, .external_lex_state = 7}, - [520] = {.lex_state = 66, .external_lex_state = 7}, - [521] = {.lex_state = 66, .external_lex_state = 7}, - [522] = {.lex_state = 66, .external_lex_state = 7}, - [523] = {.lex_state = 66, .external_lex_state = 7}, - [524] = {.lex_state = 66, .external_lex_state = 7}, - [525] = {.lex_state = 66, .external_lex_state = 7}, - [526] = {.lex_state = 66, .external_lex_state = 7}, - [527] = {.lex_state = 66, .external_lex_state = 7}, - [528] = {.lex_state = 66, .external_lex_state = 7}, - [529] = {.lex_state = 66, .external_lex_state = 7}, - [530] = {.lex_state = 66, .external_lex_state = 7}, - [531] = {.lex_state = 66, .external_lex_state = 7}, - [532] = {.lex_state = 66, .external_lex_state = 7}, - [533] = {.lex_state = 66, .external_lex_state = 7}, - [534] = {.lex_state = 66, .external_lex_state = 7}, - [535] = {.lex_state = 66, .external_lex_state = 7}, - [536] = {.lex_state = 66, .external_lex_state = 7}, - [537] = {.lex_state = 66, .external_lex_state = 7}, - [538] = {.lex_state = 66, .external_lex_state = 7}, - [539] = {.lex_state = 66, .external_lex_state = 7}, - [540] = {.lex_state = 66, .external_lex_state = 7}, - [541] = {.lex_state = 66, .external_lex_state = 7}, - [542] = {.lex_state = 66, .external_lex_state = 7}, - [543] = {.lex_state = 66, .external_lex_state = 7}, - [544] = {.lex_state = 66, .external_lex_state = 7}, - [545] = {.lex_state = 66, .external_lex_state = 7}, - [546] = {.lex_state = 66, .external_lex_state = 7}, - [547] = {.lex_state = 66, .external_lex_state = 7}, - [548] = {.lex_state = 66, .external_lex_state = 7}, - [549] = {.lex_state = 66, .external_lex_state = 7}, - [550] = {.lex_state = 66, .external_lex_state = 7}, - [551] = {.lex_state = 66, .external_lex_state = 7}, - [552] = {.lex_state = 66, .external_lex_state = 7}, - [553] = {.lex_state = 66, .external_lex_state = 7}, - [554] = {.lex_state = 66, .external_lex_state = 7}, - [555] = {.lex_state = 66, .external_lex_state = 7}, - [556] = {.lex_state = 66, .external_lex_state = 7}, - [557] = {.lex_state = 66, .external_lex_state = 7}, - [558] = {.lex_state = 66, .external_lex_state = 7}, - [559] = {.lex_state = 66, .external_lex_state = 7}, - [560] = {.lex_state = 66, .external_lex_state = 7}, - [561] = {.lex_state = 66, .external_lex_state = 7}, - [562] = {.lex_state = 66, .external_lex_state = 7}, - [563] = {.lex_state = 66, .external_lex_state = 7}, - [564] = {.lex_state = 66, .external_lex_state = 7}, - [565] = {.lex_state = 66, .external_lex_state = 7}, - [566] = {.lex_state = 66, .external_lex_state = 7}, - [567] = {.lex_state = 66, .external_lex_state = 7}, - [568] = {.lex_state = 66, .external_lex_state = 7}, - [569] = {.lex_state = 66, .external_lex_state = 7}, - [570] = {.lex_state = 66, .external_lex_state = 7}, - [571] = {.lex_state = 66, .external_lex_state = 7}, - [572] = {.lex_state = 66, .external_lex_state = 7}, - [573] = {.lex_state = 66, .external_lex_state = 7}, - [574] = {.lex_state = 66, .external_lex_state = 7}, - [575] = {.lex_state = 66, .external_lex_state = 7}, - [576] = {.lex_state = 66, .external_lex_state = 7}, - [577] = {.lex_state = 66, .external_lex_state = 7}, - [578] = {.lex_state = 66, .external_lex_state = 7}, - [579] = {.lex_state = 66, .external_lex_state = 7}, - [580] = {.lex_state = 66, .external_lex_state = 7}, - [581] = {.lex_state = 66, .external_lex_state = 7}, - [582] = {.lex_state = 66, .external_lex_state = 7}, - [583] = {.lex_state = 66, .external_lex_state = 7}, - [584] = {.lex_state = 66, .external_lex_state = 7}, - [585] = {.lex_state = 66, .external_lex_state = 7}, - [586] = {.lex_state = 66, .external_lex_state = 7}, - [587] = {.lex_state = 66, .external_lex_state = 7}, - [588] = {.lex_state = 66, .external_lex_state = 7}, - [589] = {.lex_state = 66, .external_lex_state = 7}, - [590] = {.lex_state = 66, .external_lex_state = 7}, - [591] = {.lex_state = 66, .external_lex_state = 7}, - [592] = {.lex_state = 66, .external_lex_state = 7}, - [593] = {.lex_state = 66, .external_lex_state = 7}, - [594] = {.lex_state = 66, .external_lex_state = 7}, - [595] = {.lex_state = 66, .external_lex_state = 7}, - [596] = {.lex_state = 66, .external_lex_state = 7}, - [597] = {.lex_state = 66, .external_lex_state = 7}, - [598] = {.lex_state = 66, .external_lex_state = 7}, - [599] = {.lex_state = 66, .external_lex_state = 7}, - [600] = {.lex_state = 66, .external_lex_state = 7}, - [601] = {.lex_state = 66, .external_lex_state = 7}, - [602] = {.lex_state = 66, .external_lex_state = 7}, - [603] = {.lex_state = 66, .external_lex_state = 7}, - [604] = {.lex_state = 66, .external_lex_state = 7}, - [605] = {.lex_state = 66, .external_lex_state = 7}, - [606] = {.lex_state = 66, .external_lex_state = 7}, - [607] = {.lex_state = 66, .external_lex_state = 7}, - [608] = {.lex_state = 66, .external_lex_state = 7}, - [609] = {.lex_state = 66, .external_lex_state = 7}, - [610] = {.lex_state = 66, .external_lex_state = 7}, - [611] = {.lex_state = 66, .external_lex_state = 7}, - [612] = {.lex_state = 66, .external_lex_state = 7}, - [613] = {.lex_state = 66, .external_lex_state = 7}, - [614] = {.lex_state = 66, .external_lex_state = 7}, - [615] = {.lex_state = 66, .external_lex_state = 7}, - [616] = {.lex_state = 66, .external_lex_state = 7}, - [617] = {.lex_state = 66, .external_lex_state = 7}, - [618] = {.lex_state = 66, .external_lex_state = 7}, - [619] = {.lex_state = 66, .external_lex_state = 7}, - [620] = {.lex_state = 66, .external_lex_state = 7}, - [621] = {.lex_state = 66, .external_lex_state = 7}, - [622] = {.lex_state = 66, .external_lex_state = 7}, - [623] = {.lex_state = 66, .external_lex_state = 7}, - [624] = {.lex_state = 66, .external_lex_state = 7}, - [625] = {.lex_state = 66, .external_lex_state = 7}, - [626] = {.lex_state = 59, .external_lex_state = 12}, - [627] = {.lex_state = 59, .external_lex_state = 12}, - [628] = {.lex_state = 66, .external_lex_state = 7}, - [629] = {.lex_state = 66, .external_lex_state = 7}, - [630] = {.lex_state = 66, .external_lex_state = 7}, - [631] = {.lex_state = 66, .external_lex_state = 7}, - [632] = {.lex_state = 66, .external_lex_state = 7}, - [633] = {.lex_state = 66, .external_lex_state = 7}, - [634] = {.lex_state = 66, .external_lex_state = 7}, - [635] = {.lex_state = 66, .external_lex_state = 7}, - [636] = {.lex_state = 66, .external_lex_state = 7}, - [637] = {.lex_state = 66, .external_lex_state = 7}, - [638] = {.lex_state = 66, .external_lex_state = 7}, - [639] = {.lex_state = 66, .external_lex_state = 7}, - [640] = {.lex_state = 66, .external_lex_state = 7}, - [641] = {.lex_state = 66, .external_lex_state = 7}, - [642] = {.lex_state = 66, .external_lex_state = 7}, - [643] = {.lex_state = 66, .external_lex_state = 7}, - [644] = {.lex_state = 66, .external_lex_state = 7}, - [645] = {.lex_state = 66, .external_lex_state = 7}, - [646] = {.lex_state = 66, .external_lex_state = 7}, - [647] = {.lex_state = 66, .external_lex_state = 7}, - [648] = {.lex_state = 66, .external_lex_state = 7}, - [649] = {.lex_state = 66, .external_lex_state = 7}, - [650] = {.lex_state = 66, .external_lex_state = 7}, - [651] = {.lex_state = 66, .external_lex_state = 7}, - [652] = {.lex_state = 66, .external_lex_state = 7}, - [653] = {.lex_state = 66, .external_lex_state = 7}, - [654] = {.lex_state = 66, .external_lex_state = 7}, - [655] = {.lex_state = 66, .external_lex_state = 7}, - [656] = {.lex_state = 66, .external_lex_state = 7}, - [657] = {.lex_state = 66, .external_lex_state = 7}, - [658] = {.lex_state = 66, .external_lex_state = 7}, - [659] = {.lex_state = 66, .external_lex_state = 7}, - [660] = {.lex_state = 66, .external_lex_state = 7}, - [661] = {.lex_state = 66, .external_lex_state = 7}, - [662] = {.lex_state = 66, .external_lex_state = 7}, - [663] = {.lex_state = 66, .external_lex_state = 7}, - [664] = {.lex_state = 66, .external_lex_state = 7}, - [665] = {.lex_state = 66, .external_lex_state = 7}, - [666] = {.lex_state = 66, .external_lex_state = 7}, - [667] = {.lex_state = 66, .external_lex_state = 7}, - [668] = {.lex_state = 66, .external_lex_state = 7}, - [669] = {.lex_state = 66, .external_lex_state = 7}, - [670] = {.lex_state = 66, .external_lex_state = 7}, - [671] = {.lex_state = 66, .external_lex_state = 7}, - [672] = {.lex_state = 66, .external_lex_state = 7}, - [673] = {.lex_state = 66, .external_lex_state = 7}, - [674] = {.lex_state = 66, .external_lex_state = 7}, - [675] = {.lex_state = 66, .external_lex_state = 7}, - [676] = {.lex_state = 66, .external_lex_state = 7}, - [677] = {.lex_state = 66, .external_lex_state = 7}, - [678] = {.lex_state = 66, .external_lex_state = 7}, - [679] = {.lex_state = 66, .external_lex_state = 7}, - [680] = {.lex_state = 66, .external_lex_state = 7}, - [681] = {.lex_state = 66, .external_lex_state = 7}, - [682] = {.lex_state = 66, .external_lex_state = 7}, - [683] = {.lex_state = 66, .external_lex_state = 7}, - [684] = {.lex_state = 66, .external_lex_state = 7}, - [685] = {.lex_state = 66, .external_lex_state = 7}, - [686] = {.lex_state = 66, .external_lex_state = 7}, - [687] = {.lex_state = 66, .external_lex_state = 7}, - [688] = {.lex_state = 66, .external_lex_state = 7}, - [689] = {.lex_state = 66, .external_lex_state = 7}, - [690] = {.lex_state = 66, .external_lex_state = 7}, - [691] = {.lex_state = 66, .external_lex_state = 7}, - [692] = {.lex_state = 66, .external_lex_state = 7}, - [693] = {.lex_state = 66, .external_lex_state = 7}, - [694] = {.lex_state = 66, .external_lex_state = 7}, - [695] = {.lex_state = 66, .external_lex_state = 7}, - [696] = {.lex_state = 66, .external_lex_state = 7}, - [697] = {.lex_state = 66, .external_lex_state = 7}, - [698] = {.lex_state = 58, .external_lex_state = 12}, - [699] = {.lex_state = 66, .external_lex_state = 7}, - [700] = {.lex_state = 66, .external_lex_state = 7}, - [701] = {.lex_state = 66, .external_lex_state = 7}, - [702] = {.lex_state = 66, .external_lex_state = 7}, - [703] = {.lex_state = 66, .external_lex_state = 7}, - [704] = {.lex_state = 66, .external_lex_state = 7}, - [705] = {.lex_state = 58, .external_lex_state = 12}, - [706] = {.lex_state = 66, .external_lex_state = 7}, - [707] = {.lex_state = 66, .external_lex_state = 7}, - [708] = {.lex_state = 66, .external_lex_state = 7}, - [709] = {.lex_state = 66, .external_lex_state = 7}, - [710] = {.lex_state = 66, .external_lex_state = 7}, - [711] = {.lex_state = 66, .external_lex_state = 7}, - [712] = {.lex_state = 66, .external_lex_state = 7}, - [713] = {.lex_state = 66, .external_lex_state = 7}, - [714] = {.lex_state = 66, .external_lex_state = 7}, - [715] = {.lex_state = 66, .external_lex_state = 7}, - [716] = {.lex_state = 66, .external_lex_state = 7}, - [717] = {.lex_state = 66, .external_lex_state = 7}, - [718] = {.lex_state = 66, .external_lex_state = 7}, - [719] = {.lex_state = 66, .external_lex_state = 7}, - [720] = {.lex_state = 66, .external_lex_state = 7}, - [721] = {.lex_state = 66, .external_lex_state = 7}, - [722] = {.lex_state = 66, .external_lex_state = 7}, - [723] = {.lex_state = 66, .external_lex_state = 7}, - [724] = {.lex_state = 66, .external_lex_state = 7}, - [725] = {.lex_state = 66, .external_lex_state = 7}, - [726] = {.lex_state = 66, .external_lex_state = 7}, - [727] = {.lex_state = 66, .external_lex_state = 7}, - [728] = {.lex_state = 66, .external_lex_state = 7}, - [729] = {.lex_state = 66, .external_lex_state = 7}, - [730] = {.lex_state = 66, .external_lex_state = 7}, - [731] = {.lex_state = 66, .external_lex_state = 7}, - [732] = {.lex_state = 66, .external_lex_state = 7}, - [733] = {.lex_state = 66, .external_lex_state = 7}, - [734] = {.lex_state = 66, .external_lex_state = 7}, - [735] = {.lex_state = 66, .external_lex_state = 7}, - [736] = {.lex_state = 66, .external_lex_state = 7}, - [737] = {.lex_state = 66, .external_lex_state = 7}, - [738] = {.lex_state = 66, .external_lex_state = 7}, - [739] = {.lex_state = 66, .external_lex_state = 7}, - [740] = {.lex_state = 66, .external_lex_state = 7}, - [741] = {.lex_state = 66, .external_lex_state = 7}, - [742] = {.lex_state = 66, .external_lex_state = 7}, - [743] = {.lex_state = 66, .external_lex_state = 7}, - [744] = {.lex_state = 66, .external_lex_state = 7}, - [745] = {.lex_state = 66, .external_lex_state = 7}, - [746] = {.lex_state = 66, .external_lex_state = 7}, - [747] = {.lex_state = 66, .external_lex_state = 7}, - [748] = {.lex_state = 66, .external_lex_state = 7}, - [749] = {.lex_state = 66, .external_lex_state = 7}, - [750] = {.lex_state = 66, .external_lex_state = 7}, - [751] = {.lex_state = 66, .external_lex_state = 7}, - [752] = {.lex_state = 66, .external_lex_state = 7}, - [753] = {.lex_state = 66, .external_lex_state = 7}, - [754] = {.lex_state = 66, .external_lex_state = 7}, - [755] = {.lex_state = 66, .external_lex_state = 7}, - [756] = {.lex_state = 66, .external_lex_state = 7}, - [757] = {.lex_state = 66, .external_lex_state = 7}, - [758] = {.lex_state = 66, .external_lex_state = 7}, - [759] = {.lex_state = 66, .external_lex_state = 7}, - [760] = {.lex_state = 66, .external_lex_state = 7}, - [761] = {.lex_state = 66, .external_lex_state = 7}, - [762] = {.lex_state = 66, .external_lex_state = 7}, - [763] = {.lex_state = 66, .external_lex_state = 7}, - [764] = {.lex_state = 66, .external_lex_state = 7}, - [765] = {.lex_state = 66, .external_lex_state = 7}, - [766] = {.lex_state = 66, .external_lex_state = 7}, - [767] = {.lex_state = 66, .external_lex_state = 7}, - [768] = {.lex_state = 66, .external_lex_state = 7}, - [769] = {.lex_state = 66, .external_lex_state = 7}, - [770] = {.lex_state = 66, .external_lex_state = 7}, - [771] = {.lex_state = 58, .external_lex_state = 13}, - [772] = {.lex_state = 66, .external_lex_state = 7}, - [773] = {.lex_state = 59, .external_lex_state = 12}, - [774] = {.lex_state = 66, .external_lex_state = 7}, - [775] = {.lex_state = 66, .external_lex_state = 7}, - [776] = {.lex_state = 66, .external_lex_state = 7}, - [777] = {.lex_state = 66, .external_lex_state = 7}, - [778] = {.lex_state = 66, .external_lex_state = 7}, - [779] = {.lex_state = 66, .external_lex_state = 7}, - [780] = {.lex_state = 66, .external_lex_state = 7}, - [781] = {.lex_state = 66, .external_lex_state = 7}, - [782] = {.lex_state = 66, .external_lex_state = 7}, - [783] = {.lex_state = 66, .external_lex_state = 7}, - [784] = {.lex_state = 66, .external_lex_state = 7}, - [785] = {.lex_state = 66, .external_lex_state = 7}, - [786] = {.lex_state = 66, .external_lex_state = 7}, - [787] = {.lex_state = 66, .external_lex_state = 7}, - [788] = {.lex_state = 58, .external_lex_state = 14}, - [789] = {.lex_state = 58, .external_lex_state = 15}, - [790] = {.lex_state = 66, .external_lex_state = 7}, - [791] = {.lex_state = 66, .external_lex_state = 7}, - [792] = {.lex_state = 66, .external_lex_state = 7}, - [793] = {.lex_state = 66, .external_lex_state = 7}, - [794] = {.lex_state = 66, .external_lex_state = 7}, - [795] = {.lex_state = 66, .external_lex_state = 7}, - [796] = {.lex_state = 66, .external_lex_state = 7}, - [797] = {.lex_state = 66, .external_lex_state = 7}, - [798] = {.lex_state = 66, .external_lex_state = 7}, - [799] = {.lex_state = 66, .external_lex_state = 7}, - [800] = {.lex_state = 66, .external_lex_state = 7}, - [801] = {.lex_state = 66, .external_lex_state = 7}, - [802] = {.lex_state = 66, .external_lex_state = 7}, - [803] = {.lex_state = 66, .external_lex_state = 7}, - [804] = {.lex_state = 66, .external_lex_state = 7}, - [805] = {.lex_state = 66, .external_lex_state = 7}, - [806] = {.lex_state = 66, .external_lex_state = 7}, - [807] = {.lex_state = 66, .external_lex_state = 7}, - [808] = {.lex_state = 66, .external_lex_state = 7}, - [809] = {.lex_state = 66, .external_lex_state = 7}, - [810] = {.lex_state = 66, .external_lex_state = 7}, - [811] = {.lex_state = 66, .external_lex_state = 7}, - [812] = {.lex_state = 66, .external_lex_state = 7}, - [813] = {.lex_state = 66, .external_lex_state = 7}, - [814] = {.lex_state = 66, .external_lex_state = 7}, - [815] = {.lex_state = 66, .external_lex_state = 7}, - [816] = {.lex_state = 66, .external_lex_state = 7}, - [817] = {.lex_state = 66, .external_lex_state = 7}, - [818] = {.lex_state = 66, .external_lex_state = 7}, - [819] = {.lex_state = 66, .external_lex_state = 7}, - [820] = {.lex_state = 66, .external_lex_state = 7}, - [821] = {.lex_state = 66, .external_lex_state = 7}, - [822] = {.lex_state = 66, .external_lex_state = 7}, - [823] = {.lex_state = 66, .external_lex_state = 7}, - [824] = {.lex_state = 66, .external_lex_state = 7}, - [825] = {.lex_state = 66, .external_lex_state = 7}, - [826] = {.lex_state = 66, .external_lex_state = 7}, - [827] = {.lex_state = 66, .external_lex_state = 7}, - [828] = {.lex_state = 66, .external_lex_state = 7}, - [829] = {.lex_state = 66, .external_lex_state = 7}, - [830] = {.lex_state = 66, .external_lex_state = 7}, - [831] = {.lex_state = 66, .external_lex_state = 7}, - [832] = {.lex_state = 66, .external_lex_state = 7}, - [833] = {.lex_state = 66, .external_lex_state = 7}, - [834] = {.lex_state = 66, .external_lex_state = 7}, - [835] = {.lex_state = 66, .external_lex_state = 7}, - [836] = {.lex_state = 66, .external_lex_state = 7}, - [837] = {.lex_state = 66, .external_lex_state = 7}, - [838] = {.lex_state = 66, .external_lex_state = 7}, - [839] = {.lex_state = 66, .external_lex_state = 7}, - [840] = {.lex_state = 66, .external_lex_state = 7}, - [841] = {.lex_state = 66, .external_lex_state = 7}, - [842] = {.lex_state = 66, .external_lex_state = 7}, - [843] = {.lex_state = 66, .external_lex_state = 7}, - [844] = {.lex_state = 66, .external_lex_state = 7}, - [845] = {.lex_state = 66, .external_lex_state = 7}, - [846] = {.lex_state = 66, .external_lex_state = 7}, - [847] = {.lex_state = 66, .external_lex_state = 7}, - [848] = {.lex_state = 66, .external_lex_state = 7}, - [849] = {.lex_state = 66, .external_lex_state = 7}, - [850] = {.lex_state = 58, .external_lex_state = 13}, - [851] = {.lex_state = 66, .external_lex_state = 7}, - [852] = {.lex_state = 66, .external_lex_state = 7}, - [853] = {.lex_state = 66, .external_lex_state = 7}, - [854] = {.lex_state = 66, .external_lex_state = 7}, - [855] = {.lex_state = 66, .external_lex_state = 7}, - [856] = {.lex_state = 66, .external_lex_state = 7}, - [857] = {.lex_state = 66, .external_lex_state = 7}, - [858] = {.lex_state = 66, .external_lex_state = 7}, - [859] = {.lex_state = 66, .external_lex_state = 7}, - [860] = {.lex_state = 66, .external_lex_state = 7}, - [861] = {.lex_state = 56, .external_lex_state = 12}, - [862] = {.lex_state = 66, .external_lex_state = 7}, - [863] = {.lex_state = 66, .external_lex_state = 7}, - [864] = {.lex_state = 66, .external_lex_state = 7}, - [865] = {.lex_state = 66, .external_lex_state = 7}, - [866] = {.lex_state = 66, .external_lex_state = 7}, - [867] = {.lex_state = 66, .external_lex_state = 7}, - [868] = {.lex_state = 66, .external_lex_state = 7}, - [869] = {.lex_state = 66, .external_lex_state = 7}, - [870] = {.lex_state = 66, .external_lex_state = 7}, - [871] = {.lex_state = 66, .external_lex_state = 7}, - [872] = {.lex_state = 66, .external_lex_state = 7}, - [873] = {.lex_state = 66, .external_lex_state = 7}, - [874] = {.lex_state = 66, .external_lex_state = 7}, - [875] = {.lex_state = 66, .external_lex_state = 7}, - [876] = {.lex_state = 66, .external_lex_state = 7}, - [877] = {.lex_state = 66, .external_lex_state = 7}, - [878] = {.lex_state = 66, .external_lex_state = 7}, - [879] = {.lex_state = 66, .external_lex_state = 7}, - [880] = {.lex_state = 66, .external_lex_state = 7}, - [881] = {.lex_state = 66, .external_lex_state = 7}, - [882] = {.lex_state = 66, .external_lex_state = 7}, - [883] = {.lex_state = 66, .external_lex_state = 7}, - [884] = {.lex_state = 66, .external_lex_state = 7}, - [885] = {.lex_state = 66, .external_lex_state = 7}, - [886] = {.lex_state = 66, .external_lex_state = 7}, - [887] = {.lex_state = 66, .external_lex_state = 7}, - [888] = {.lex_state = 66, .external_lex_state = 7}, - [889] = {.lex_state = 66, .external_lex_state = 7}, - [890] = {.lex_state = 66, .external_lex_state = 7}, - [891] = {.lex_state = 66, .external_lex_state = 7}, - [892] = {.lex_state = 66, .external_lex_state = 7}, - [893] = {.lex_state = 66, .external_lex_state = 7}, - [894] = {.lex_state = 66, .external_lex_state = 7}, - [895] = {.lex_state = 66, .external_lex_state = 7}, - [896] = {.lex_state = 66, .external_lex_state = 7}, - [897] = {.lex_state = 66, .external_lex_state = 7}, - [898] = {.lex_state = 66, .external_lex_state = 7}, - [899] = {.lex_state = 66, .external_lex_state = 7}, - [900] = {.lex_state = 58, .external_lex_state = 12}, - [901] = {.lex_state = 66, .external_lex_state = 7}, - [902] = {.lex_state = 66, .external_lex_state = 7}, - [903] = {.lex_state = 66, .external_lex_state = 7}, - [904] = {.lex_state = 66, .external_lex_state = 7}, - [905] = {.lex_state = 66, .external_lex_state = 7}, - [906] = {.lex_state = 66, .external_lex_state = 7}, - [907] = {.lex_state = 66, .external_lex_state = 7}, - [908] = {.lex_state = 66, .external_lex_state = 7}, - [909] = {.lex_state = 66, .external_lex_state = 7}, - [910] = {.lex_state = 66, .external_lex_state = 7}, - [911] = {.lex_state = 66, .external_lex_state = 7}, - [912] = {.lex_state = 66, .external_lex_state = 7}, - [913] = {.lex_state = 66, .external_lex_state = 7}, - [914] = {.lex_state = 66, .external_lex_state = 7}, - [915] = {.lex_state = 66, .external_lex_state = 7}, - [916] = {.lex_state = 66, .external_lex_state = 7}, - [917] = {.lex_state = 66, .external_lex_state = 7}, - [918] = {.lex_state = 66, .external_lex_state = 7}, - [919] = {.lex_state = 66, .external_lex_state = 7}, - [920] = {.lex_state = 66, .external_lex_state = 7}, - [921] = {.lex_state = 66, .external_lex_state = 7}, - [922] = {.lex_state = 66, .external_lex_state = 7}, - [923] = {.lex_state = 66, .external_lex_state = 7}, - [924] = {.lex_state = 66, .external_lex_state = 7}, - [925] = {.lex_state = 66, .external_lex_state = 7}, - [926] = {.lex_state = 66, .external_lex_state = 7}, - [927] = {.lex_state = 66, .external_lex_state = 7}, - [928] = {.lex_state = 66, .external_lex_state = 7}, - [929] = {.lex_state = 66, .external_lex_state = 7}, - [930] = {.lex_state = 66, .external_lex_state = 7}, - [931] = {.lex_state = 66, .external_lex_state = 7}, - [932] = {.lex_state = 66, .external_lex_state = 7}, - [933] = {.lex_state = 66, .external_lex_state = 7}, - [934] = {.lex_state = 66, .external_lex_state = 7}, - [935] = {.lex_state = 66, .external_lex_state = 7}, - [936] = {.lex_state = 66, .external_lex_state = 7}, - [937] = {.lex_state = 66, .external_lex_state = 7}, - [938] = {.lex_state = 66, .external_lex_state = 7}, - [939] = {.lex_state = 66, .external_lex_state = 7}, - [940] = {.lex_state = 66, .external_lex_state = 7}, - [941] = {.lex_state = 66, .external_lex_state = 7}, - [942] = {.lex_state = 66, .external_lex_state = 7}, - [943] = {.lex_state = 66, .external_lex_state = 7}, - [944] = {.lex_state = 56, .external_lex_state = 12}, - [945] = {.lex_state = 66, .external_lex_state = 7}, - [946] = {.lex_state = 66, .external_lex_state = 7}, - [947] = {.lex_state = 66, .external_lex_state = 7}, - [948] = {.lex_state = 66, .external_lex_state = 7}, - [949] = {.lex_state = 66, .external_lex_state = 7}, - [950] = {.lex_state = 66, .external_lex_state = 7}, - [951] = {.lex_state = 66, .external_lex_state = 7}, - [952] = {.lex_state = 66, .external_lex_state = 7}, - [953] = {.lex_state = 66, .external_lex_state = 7}, - [954] = {.lex_state = 66, .external_lex_state = 7}, - [955] = {.lex_state = 66, .external_lex_state = 7}, - [956] = {.lex_state = 66, .external_lex_state = 7}, - [957] = {.lex_state = 66, .external_lex_state = 7}, - [958] = {.lex_state = 66, .external_lex_state = 7}, - [959] = {.lex_state = 66, .external_lex_state = 7}, - [960] = {.lex_state = 66, .external_lex_state = 7}, - [961] = {.lex_state = 66, .external_lex_state = 7}, - [962] = {.lex_state = 66, .external_lex_state = 7}, - [963] = {.lex_state = 66, .external_lex_state = 7}, - [964] = {.lex_state = 66, .external_lex_state = 7}, - [965] = {.lex_state = 66, .external_lex_state = 7}, - [966] = {.lex_state = 56, .external_lex_state = 12}, - [967] = {.lex_state = 66, .external_lex_state = 7}, - [968] = {.lex_state = 56, .external_lex_state = 12}, - [969] = {.lex_state = 66, .external_lex_state = 7}, - [970] = {.lex_state = 66, .external_lex_state = 7}, - [971] = {.lex_state = 58, .external_lex_state = 12}, - [972] = {.lex_state = 47, .external_lex_state = 12}, - [973] = {.lex_state = 47, .external_lex_state = 12}, - [974] = {.lex_state = 47, .external_lex_state = 12}, - [975] = {.lex_state = 47, .external_lex_state = 12}, - [976] = {.lex_state = 58, .external_lex_state = 12}, - [977] = {.lex_state = 58, .external_lex_state = 12}, - [978] = {.lex_state = 58, .external_lex_state = 12}, - [979] = {.lex_state = 58, .external_lex_state = 12}, - [980] = {.lex_state = 58, .external_lex_state = 12}, - [981] = {.lex_state = 58, .external_lex_state = 12}, - [982] = {.lex_state = 58, .external_lex_state = 12}, - [983] = {.lex_state = 58, .external_lex_state = 12}, - [984] = {.lex_state = 58, .external_lex_state = 12}, - [985] = {.lex_state = 58, .external_lex_state = 12}, - [986] = {.lex_state = 58, .external_lex_state = 12}, - [987] = {.lex_state = 58, .external_lex_state = 12}, - [988] = {.lex_state = 58, .external_lex_state = 12}, - [989] = {.lex_state = 58, .external_lex_state = 12}, - [990] = {.lex_state = 58, .external_lex_state = 12}, - [991] = {.lex_state = 58, .external_lex_state = 12}, + [358] = {.lex_state = 69, .external_lex_state = 7}, + [359] = {.lex_state = 51, .external_lex_state = 12}, + [360] = {.lex_state = 51, .external_lex_state = 12}, + [361] = {.lex_state = 64, .external_lex_state = 10}, + [362] = {.lex_state = 69, .external_lex_state = 7}, + [363] = {.lex_state = 51, .external_lex_state = 12}, + [364] = {.lex_state = 64, .external_lex_state = 10}, + [365] = {.lex_state = 51, .external_lex_state = 12}, + [366] = {.lex_state = 51, .external_lex_state = 12}, + [367] = {.lex_state = 51, .external_lex_state = 12}, + [368] = {.lex_state = 51, .external_lex_state = 12}, + [369] = {.lex_state = 51, .external_lex_state = 12}, + [370] = {.lex_state = 51, .external_lex_state = 12}, + [371] = {.lex_state = 51, .external_lex_state = 12}, + [372] = {.lex_state = 51, .external_lex_state = 12}, + [373] = {.lex_state = 51, .external_lex_state = 12}, + [374] = {.lex_state = 51, .external_lex_state = 12}, + [375] = {.lex_state = 51, .external_lex_state = 12}, + [376] = {.lex_state = 51, .external_lex_state = 12}, + [377] = {.lex_state = 51, .external_lex_state = 12}, + [378] = {.lex_state = 51, .external_lex_state = 12}, + [379] = {.lex_state = 51, .external_lex_state = 12}, + [380] = {.lex_state = 51, .external_lex_state = 12}, + [381] = {.lex_state = 51, .external_lex_state = 12}, + [382] = {.lex_state = 51, .external_lex_state = 12}, + [383] = {.lex_state = 51, .external_lex_state = 12}, + [384] = {.lex_state = 51, .external_lex_state = 12}, + [385] = {.lex_state = 69, .external_lex_state = 7}, + [386] = {.lex_state = 69, .external_lex_state = 7}, + [387] = {.lex_state = 69, .external_lex_state = 7}, + [388] = {.lex_state = 69, .external_lex_state = 7}, + [389] = {.lex_state = 69, .external_lex_state = 7}, + [390] = {.lex_state = 69, .external_lex_state = 7}, + [391] = {.lex_state = 69, .external_lex_state = 7}, + [392] = {.lex_state = 40, .external_lex_state = 11}, + [393] = {.lex_state = 69, .external_lex_state = 7}, + [394] = {.lex_state = 69, .external_lex_state = 7}, + [395] = {.lex_state = 69, .external_lex_state = 7}, + [396] = {.lex_state = 69, .external_lex_state = 7}, + [397] = {.lex_state = 69, .external_lex_state = 7}, + [398] = {.lex_state = 69, .external_lex_state = 7}, + [399] = {.lex_state = 69, .external_lex_state = 7}, + [400] = {.lex_state = 69, .external_lex_state = 7}, + [401] = {.lex_state = 69, .external_lex_state = 7}, + [402] = {.lex_state = 69, .external_lex_state = 7}, + [403] = {.lex_state = 69, .external_lex_state = 7}, + [404] = {.lex_state = 69, .external_lex_state = 7}, + [405] = {.lex_state = 69, .external_lex_state = 7}, + [406] = {.lex_state = 69, .external_lex_state = 7}, + [407] = {.lex_state = 69, .external_lex_state = 7}, + [408] = {.lex_state = 69, .external_lex_state = 7}, + [409] = {.lex_state = 69, .external_lex_state = 7}, + [410] = {.lex_state = 69, .external_lex_state = 7}, + [411] = {.lex_state = 69, .external_lex_state = 7}, + [412] = {.lex_state = 69, .external_lex_state = 7}, + [413] = {.lex_state = 69, .external_lex_state = 7}, + [414] = {.lex_state = 69, .external_lex_state = 7}, + [415] = {.lex_state = 69, .external_lex_state = 7}, + [416] = {.lex_state = 40, .external_lex_state = 11}, + [417] = {.lex_state = 69, .external_lex_state = 7}, + [418] = {.lex_state = 69, .external_lex_state = 7}, + [419] = {.lex_state = 69, .external_lex_state = 7}, + [420] = {.lex_state = 69, .external_lex_state = 7}, + [421] = {.lex_state = 69, .external_lex_state = 7}, + [422] = {.lex_state = 69, .external_lex_state = 7}, + [423] = {.lex_state = 69, .external_lex_state = 7}, + [424] = {.lex_state = 69, .external_lex_state = 7}, + [425] = {.lex_state = 69, .external_lex_state = 7}, + [426] = {.lex_state = 69, .external_lex_state = 7}, + [427] = {.lex_state = 69, .external_lex_state = 7}, + [428] = {.lex_state = 69, .external_lex_state = 7}, + [429] = {.lex_state = 69, .external_lex_state = 7}, + [430] = {.lex_state = 69, .external_lex_state = 7}, + [431] = {.lex_state = 69, .external_lex_state = 7}, + [432] = {.lex_state = 69, .external_lex_state = 7}, + [433] = {.lex_state = 69, .external_lex_state = 7}, + [434] = {.lex_state = 69, .external_lex_state = 7}, + [435] = {.lex_state = 69, .external_lex_state = 7}, + [436] = {.lex_state = 69, .external_lex_state = 7}, + [437] = {.lex_state = 69, .external_lex_state = 7}, + [438] = {.lex_state = 69, .external_lex_state = 7}, + [439] = {.lex_state = 69, .external_lex_state = 7}, + [440] = {.lex_state = 69, .external_lex_state = 7}, + [441] = {.lex_state = 69, .external_lex_state = 7}, + [442] = {.lex_state = 69, .external_lex_state = 7}, + [443] = {.lex_state = 69, .external_lex_state = 7}, + [444] = {.lex_state = 69, .external_lex_state = 7}, + [445] = {.lex_state = 69, .external_lex_state = 7}, + [446] = {.lex_state = 69, .external_lex_state = 7}, + [447] = {.lex_state = 69, .external_lex_state = 7}, + [448] = {.lex_state = 69, .external_lex_state = 7}, + [449] = {.lex_state = 69, .external_lex_state = 7}, + [450] = {.lex_state = 69, .external_lex_state = 7}, + [451] = {.lex_state = 69, .external_lex_state = 7}, + [452] = {.lex_state = 69, .external_lex_state = 7}, + [453] = {.lex_state = 69, .external_lex_state = 7}, + [454] = {.lex_state = 69, .external_lex_state = 7}, + [455] = {.lex_state = 69, .external_lex_state = 7}, + [456] = {.lex_state = 69, .external_lex_state = 7}, + [457] = {.lex_state = 69, .external_lex_state = 7}, + [458] = {.lex_state = 69, .external_lex_state = 7}, + [459] = {.lex_state = 69, .external_lex_state = 7}, + [460] = {.lex_state = 69, .external_lex_state = 7}, + [461] = {.lex_state = 69, .external_lex_state = 7}, + [462] = {.lex_state = 69, .external_lex_state = 7}, + [463] = {.lex_state = 69, .external_lex_state = 7}, + [464] = {.lex_state = 69, .external_lex_state = 7}, + [465] = {.lex_state = 69, .external_lex_state = 7}, + [466] = {.lex_state = 69, .external_lex_state = 7}, + [467] = {.lex_state = 69, .external_lex_state = 7}, + [468] = {.lex_state = 69, .external_lex_state = 7}, + [469] = {.lex_state = 69, .external_lex_state = 7}, + [470] = {.lex_state = 69, .external_lex_state = 7}, + [471] = {.lex_state = 69, .external_lex_state = 7}, + [472] = {.lex_state = 69, .external_lex_state = 7}, + [473] = {.lex_state = 69, .external_lex_state = 7}, + [474] = {.lex_state = 69, .external_lex_state = 7}, + [475] = {.lex_state = 69, .external_lex_state = 7}, + [476] = {.lex_state = 69, .external_lex_state = 7}, + [477] = {.lex_state = 69, .external_lex_state = 7}, + [478] = {.lex_state = 69, .external_lex_state = 7}, + [479] = {.lex_state = 69, .external_lex_state = 7}, + [480] = {.lex_state = 69, .external_lex_state = 7}, + [481] = {.lex_state = 69, .external_lex_state = 7}, + [482] = {.lex_state = 69, .external_lex_state = 7}, + [483] = {.lex_state = 69, .external_lex_state = 7}, + [484] = {.lex_state = 69, .external_lex_state = 7}, + [485] = {.lex_state = 69, .external_lex_state = 7}, + [486] = {.lex_state = 69, .external_lex_state = 7}, + [487] = {.lex_state = 69, .external_lex_state = 7}, + [488] = {.lex_state = 69, .external_lex_state = 7}, + [489] = {.lex_state = 69, .external_lex_state = 7}, + [490] = {.lex_state = 69, .external_lex_state = 7}, + [491] = {.lex_state = 69, .external_lex_state = 7}, + [492] = {.lex_state = 69, .external_lex_state = 7}, + [493] = {.lex_state = 69, .external_lex_state = 7}, + [494] = {.lex_state = 69, .external_lex_state = 7}, + [495] = {.lex_state = 69, .external_lex_state = 7}, + [496] = {.lex_state = 69, .external_lex_state = 7}, + [497] = {.lex_state = 69, .external_lex_state = 7}, + [498] = {.lex_state = 69, .external_lex_state = 7}, + [499] = {.lex_state = 69, .external_lex_state = 7}, + [500] = {.lex_state = 69, .external_lex_state = 7}, + [501] = {.lex_state = 69, .external_lex_state = 7}, + [502] = {.lex_state = 69, .external_lex_state = 7}, + [503] = {.lex_state = 69, .external_lex_state = 7}, + [504] = {.lex_state = 69, .external_lex_state = 7}, + [505] = {.lex_state = 69, .external_lex_state = 7}, + [506] = {.lex_state = 69, .external_lex_state = 7}, + [507] = {.lex_state = 69, .external_lex_state = 7}, + [508] = {.lex_state = 69, .external_lex_state = 7}, + [509] = {.lex_state = 69, .external_lex_state = 7}, + [510] = {.lex_state = 69, .external_lex_state = 7}, + [511] = {.lex_state = 69, .external_lex_state = 7}, + [512] = {.lex_state = 69, .external_lex_state = 7}, + [513] = {.lex_state = 69, .external_lex_state = 7}, + [514] = {.lex_state = 69, .external_lex_state = 7}, + [515] = {.lex_state = 69, .external_lex_state = 7}, + [516] = {.lex_state = 69, .external_lex_state = 7}, + [517] = {.lex_state = 69, .external_lex_state = 7}, + [518] = {.lex_state = 69, .external_lex_state = 7}, + [519] = {.lex_state = 69, .external_lex_state = 7}, + [520] = {.lex_state = 69, .external_lex_state = 7}, + [521] = {.lex_state = 69, .external_lex_state = 7}, + [522] = {.lex_state = 69, .external_lex_state = 7}, + [523] = {.lex_state = 69, .external_lex_state = 7}, + [524] = {.lex_state = 69, .external_lex_state = 7}, + [525] = {.lex_state = 69, .external_lex_state = 7}, + [526] = {.lex_state = 69, .external_lex_state = 7}, + [527] = {.lex_state = 69, .external_lex_state = 7}, + [528] = {.lex_state = 69, .external_lex_state = 7}, + [529] = {.lex_state = 69, .external_lex_state = 7}, + [530] = {.lex_state = 69, .external_lex_state = 7}, + [531] = {.lex_state = 69, .external_lex_state = 7}, + [532] = {.lex_state = 69, .external_lex_state = 7}, + [533] = {.lex_state = 69, .external_lex_state = 7}, + [534] = {.lex_state = 69, .external_lex_state = 7}, + [535] = {.lex_state = 69, .external_lex_state = 7}, + [536] = {.lex_state = 69, .external_lex_state = 7}, + [537] = {.lex_state = 69, .external_lex_state = 7}, + [538] = {.lex_state = 69, .external_lex_state = 7}, + [539] = {.lex_state = 69, .external_lex_state = 7}, + [540] = {.lex_state = 69, .external_lex_state = 7}, + [541] = {.lex_state = 69, .external_lex_state = 7}, + [542] = {.lex_state = 69, .external_lex_state = 7}, + [543] = {.lex_state = 69, .external_lex_state = 7}, + [544] = {.lex_state = 69, .external_lex_state = 7}, + [545] = {.lex_state = 69, .external_lex_state = 7}, + [546] = {.lex_state = 69, .external_lex_state = 7}, + [547] = {.lex_state = 69, .external_lex_state = 7}, + [548] = {.lex_state = 69, .external_lex_state = 7}, + [549] = {.lex_state = 69, .external_lex_state = 7}, + [550] = {.lex_state = 69, .external_lex_state = 7}, + [551] = {.lex_state = 69, .external_lex_state = 7}, + [552] = {.lex_state = 69, .external_lex_state = 7}, + [553] = {.lex_state = 69, .external_lex_state = 7}, + [554] = {.lex_state = 69, .external_lex_state = 7}, + [555] = {.lex_state = 69, .external_lex_state = 7}, + [556] = {.lex_state = 69, .external_lex_state = 7}, + [557] = {.lex_state = 69, .external_lex_state = 7}, + [558] = {.lex_state = 69, .external_lex_state = 7}, + [559] = {.lex_state = 69, .external_lex_state = 7}, + [560] = {.lex_state = 69, .external_lex_state = 7}, + [561] = {.lex_state = 69, .external_lex_state = 7}, + [562] = {.lex_state = 69, .external_lex_state = 7}, + [563] = {.lex_state = 69, .external_lex_state = 7}, + [564] = {.lex_state = 69, .external_lex_state = 7}, + [565] = {.lex_state = 69, .external_lex_state = 7}, + [566] = {.lex_state = 69, .external_lex_state = 7}, + [567] = {.lex_state = 69, .external_lex_state = 7}, + [568] = {.lex_state = 69, .external_lex_state = 7}, + [569] = {.lex_state = 69, .external_lex_state = 7}, + [570] = {.lex_state = 69, .external_lex_state = 7}, + [571] = {.lex_state = 69, .external_lex_state = 7}, + [572] = {.lex_state = 69, .external_lex_state = 7}, + [573] = {.lex_state = 69, .external_lex_state = 7}, + [574] = {.lex_state = 69, .external_lex_state = 7}, + [575] = {.lex_state = 69, .external_lex_state = 7}, + [576] = {.lex_state = 69, .external_lex_state = 7}, + [577] = {.lex_state = 69, .external_lex_state = 7}, + [578] = {.lex_state = 69, .external_lex_state = 7}, + [579] = {.lex_state = 69, .external_lex_state = 7}, + [580] = {.lex_state = 69, .external_lex_state = 7}, + [581] = {.lex_state = 69, .external_lex_state = 7}, + [582] = {.lex_state = 69, .external_lex_state = 7}, + [583] = {.lex_state = 69, .external_lex_state = 7}, + [584] = {.lex_state = 69, .external_lex_state = 7}, + [585] = {.lex_state = 69, .external_lex_state = 7}, + [586] = {.lex_state = 69, .external_lex_state = 7}, + [587] = {.lex_state = 69, .external_lex_state = 7}, + [588] = {.lex_state = 69, .external_lex_state = 7}, + [589] = {.lex_state = 69, .external_lex_state = 7}, + [590] = {.lex_state = 69, .external_lex_state = 7}, + [591] = {.lex_state = 69, .external_lex_state = 7}, + [592] = {.lex_state = 69, .external_lex_state = 7}, + [593] = {.lex_state = 69, .external_lex_state = 7}, + [594] = {.lex_state = 69, .external_lex_state = 7}, + [595] = {.lex_state = 69, .external_lex_state = 7}, + [596] = {.lex_state = 69, .external_lex_state = 7}, + [597] = {.lex_state = 69, .external_lex_state = 7}, + [598] = {.lex_state = 69, .external_lex_state = 7}, + [599] = {.lex_state = 69, .external_lex_state = 7}, + [600] = {.lex_state = 69, .external_lex_state = 7}, + [601] = {.lex_state = 69, .external_lex_state = 7}, + [602] = {.lex_state = 69, .external_lex_state = 7}, + [603] = {.lex_state = 69, .external_lex_state = 7}, + [604] = {.lex_state = 69, .external_lex_state = 7}, + [605] = {.lex_state = 69, .external_lex_state = 7}, + [606] = {.lex_state = 69, .external_lex_state = 7}, + [607] = {.lex_state = 69, .external_lex_state = 7}, + [608] = {.lex_state = 69, .external_lex_state = 7}, + [609] = {.lex_state = 69, .external_lex_state = 7}, + [610] = {.lex_state = 69, .external_lex_state = 7}, + [611] = {.lex_state = 69, .external_lex_state = 7}, + [612] = {.lex_state = 69, .external_lex_state = 7}, + [613] = {.lex_state = 69, .external_lex_state = 7}, + [614] = {.lex_state = 69, .external_lex_state = 7}, + [615] = {.lex_state = 69, .external_lex_state = 7}, + [616] = {.lex_state = 69, .external_lex_state = 7}, + [617] = {.lex_state = 69, .external_lex_state = 7}, + [618] = {.lex_state = 69, .external_lex_state = 7}, + [619] = {.lex_state = 69, .external_lex_state = 7}, + [620] = {.lex_state = 69, .external_lex_state = 7}, + [621] = {.lex_state = 69, .external_lex_state = 7}, + [622] = {.lex_state = 69, .external_lex_state = 7}, + [623] = {.lex_state = 69, .external_lex_state = 7}, + [624] = {.lex_state = 69, .external_lex_state = 7}, + [625] = {.lex_state = 69, .external_lex_state = 7}, + [626] = {.lex_state = 69, .external_lex_state = 7}, + [627] = {.lex_state = 69, .external_lex_state = 7}, + [628] = {.lex_state = 69, .external_lex_state = 7}, + [629] = {.lex_state = 69, .external_lex_state = 7}, + [630] = {.lex_state = 69, .external_lex_state = 7}, + [631] = {.lex_state = 69, .external_lex_state = 7}, + [632] = {.lex_state = 69, .external_lex_state = 7}, + [633] = {.lex_state = 69, .external_lex_state = 7}, + [634] = {.lex_state = 69, .external_lex_state = 7}, + [635] = {.lex_state = 69, .external_lex_state = 7}, + [636] = {.lex_state = 69, .external_lex_state = 7}, + [637] = {.lex_state = 69, .external_lex_state = 7}, + [638] = {.lex_state = 69, .external_lex_state = 7}, + [639] = {.lex_state = 69, .external_lex_state = 7}, + [640] = {.lex_state = 69, .external_lex_state = 7}, + [641] = {.lex_state = 69, .external_lex_state = 7}, + [642] = {.lex_state = 69, .external_lex_state = 7}, + [643] = {.lex_state = 69, .external_lex_state = 7}, + [644] = {.lex_state = 69, .external_lex_state = 7}, + [645] = {.lex_state = 69, .external_lex_state = 7}, + [646] = {.lex_state = 69, .external_lex_state = 7}, + [647] = {.lex_state = 69, .external_lex_state = 7}, + [648] = {.lex_state = 69, .external_lex_state = 7}, + [649] = {.lex_state = 69, .external_lex_state = 7}, + [650] = {.lex_state = 69, .external_lex_state = 7}, + [651] = {.lex_state = 69, .external_lex_state = 7}, + [652] = {.lex_state = 69, .external_lex_state = 7}, + [653] = {.lex_state = 69, .external_lex_state = 7}, + [654] = {.lex_state = 69, .external_lex_state = 7}, + [655] = {.lex_state = 69, .external_lex_state = 7}, + [656] = {.lex_state = 69, .external_lex_state = 7}, + [657] = {.lex_state = 69, .external_lex_state = 7}, + [658] = {.lex_state = 69, .external_lex_state = 7}, + [659] = {.lex_state = 69, .external_lex_state = 7}, + [660] = {.lex_state = 69, .external_lex_state = 7}, + [661] = {.lex_state = 69, .external_lex_state = 7}, + [662] = {.lex_state = 69, .external_lex_state = 7}, + [663] = {.lex_state = 69, .external_lex_state = 7}, + [664] = {.lex_state = 69, .external_lex_state = 7}, + [665] = {.lex_state = 69, .external_lex_state = 7}, + [666] = {.lex_state = 69, .external_lex_state = 7}, + [667] = {.lex_state = 69, .external_lex_state = 7}, + [668] = {.lex_state = 60, .external_lex_state = 12}, + [669] = {.lex_state = 69, .external_lex_state = 7}, + [670] = {.lex_state = 69, .external_lex_state = 7}, + [671] = {.lex_state = 69, .external_lex_state = 7}, + [672] = {.lex_state = 69, .external_lex_state = 7}, + [673] = {.lex_state = 69, .external_lex_state = 7}, + [674] = {.lex_state = 60, .external_lex_state = 12}, + [675] = {.lex_state = 69, .external_lex_state = 7}, + [676] = {.lex_state = 69, .external_lex_state = 7}, + [677] = {.lex_state = 69, .external_lex_state = 7}, + [678] = {.lex_state = 69, .external_lex_state = 7}, + [679] = {.lex_state = 69, .external_lex_state = 7}, + [680] = {.lex_state = 69, .external_lex_state = 7}, + [681] = {.lex_state = 69, .external_lex_state = 7}, + [682] = {.lex_state = 69, .external_lex_state = 7}, + [683] = {.lex_state = 69, .external_lex_state = 7}, + [684] = {.lex_state = 69, .external_lex_state = 7}, + [685] = {.lex_state = 69, .external_lex_state = 7}, + [686] = {.lex_state = 69, .external_lex_state = 7}, + [687] = {.lex_state = 69, .external_lex_state = 7}, + [688] = {.lex_state = 69, .external_lex_state = 7}, + [689] = {.lex_state = 69, .external_lex_state = 7}, + [690] = {.lex_state = 69, .external_lex_state = 7}, + [691] = {.lex_state = 69, .external_lex_state = 7}, + [692] = {.lex_state = 69, .external_lex_state = 7}, + [693] = {.lex_state = 69, .external_lex_state = 7}, + [694] = {.lex_state = 69, .external_lex_state = 7}, + [695] = {.lex_state = 69, .external_lex_state = 7}, + [696] = {.lex_state = 69, .external_lex_state = 7}, + [697] = {.lex_state = 69, .external_lex_state = 7}, + [698] = {.lex_state = 69, .external_lex_state = 7}, + [699] = {.lex_state = 69, .external_lex_state = 7}, + [700] = {.lex_state = 69, .external_lex_state = 7}, + [701] = {.lex_state = 69, .external_lex_state = 7}, + [702] = {.lex_state = 69, .external_lex_state = 7}, + [703] = {.lex_state = 69, .external_lex_state = 7}, + [704] = {.lex_state = 69, .external_lex_state = 7}, + [705] = {.lex_state = 69, .external_lex_state = 7}, + [706] = {.lex_state = 69, .external_lex_state = 7}, + [707] = {.lex_state = 69, .external_lex_state = 7}, + [708] = {.lex_state = 69, .external_lex_state = 7}, + [709] = {.lex_state = 69, .external_lex_state = 7}, + [710] = {.lex_state = 69, .external_lex_state = 7}, + [711] = {.lex_state = 69, .external_lex_state = 7}, + [712] = {.lex_state = 69, .external_lex_state = 7}, + [713] = {.lex_state = 69, .external_lex_state = 7}, + [714] = {.lex_state = 69, .external_lex_state = 7}, + [715] = {.lex_state = 69, .external_lex_state = 7}, + [716] = {.lex_state = 69, .external_lex_state = 7}, + [717] = {.lex_state = 69, .external_lex_state = 7}, + [718] = {.lex_state = 69, .external_lex_state = 7}, + [719] = {.lex_state = 69, .external_lex_state = 7}, + [720] = {.lex_state = 69, .external_lex_state = 7}, + [721] = {.lex_state = 69, .external_lex_state = 7}, + [722] = {.lex_state = 69, .external_lex_state = 7}, + [723] = {.lex_state = 69, .external_lex_state = 7}, + [724] = {.lex_state = 69, .external_lex_state = 7}, + [725] = {.lex_state = 69, .external_lex_state = 7}, + [726] = {.lex_state = 69, .external_lex_state = 7}, + [727] = {.lex_state = 69, .external_lex_state = 7}, + [728] = {.lex_state = 69, .external_lex_state = 7}, + [729] = {.lex_state = 60, .external_lex_state = 13}, + [730] = {.lex_state = 69, .external_lex_state = 7}, + [731] = {.lex_state = 69, .external_lex_state = 7}, + [732] = {.lex_state = 69, .external_lex_state = 7}, + [733] = {.lex_state = 69, .external_lex_state = 7}, + [734] = {.lex_state = 69, .external_lex_state = 7}, + [735] = {.lex_state = 69, .external_lex_state = 7}, + [736] = {.lex_state = 69, .external_lex_state = 7}, + [737] = {.lex_state = 69, .external_lex_state = 7}, + [738] = {.lex_state = 69, .external_lex_state = 7}, + [739] = {.lex_state = 69, .external_lex_state = 7}, + [740] = {.lex_state = 69, .external_lex_state = 7}, + [741] = {.lex_state = 69, .external_lex_state = 7}, + [742] = {.lex_state = 60, .external_lex_state = 14}, + [743] = {.lex_state = 69, .external_lex_state = 7}, + [744] = {.lex_state = 69, .external_lex_state = 7}, + [745] = {.lex_state = 69, .external_lex_state = 7}, + [746] = {.lex_state = 69, .external_lex_state = 7}, + [747] = {.lex_state = 69, .external_lex_state = 7}, + [748] = {.lex_state = 69, .external_lex_state = 7}, + [749] = {.lex_state = 69, .external_lex_state = 7}, + [750] = {.lex_state = 69, .external_lex_state = 7}, + [751] = {.lex_state = 69, .external_lex_state = 7}, + [752] = {.lex_state = 69, .external_lex_state = 7}, + [753] = {.lex_state = 69, .external_lex_state = 7}, + [754] = {.lex_state = 69, .external_lex_state = 7}, + [755] = {.lex_state = 69, .external_lex_state = 7}, + [756] = {.lex_state = 69, .external_lex_state = 7}, + [757] = {.lex_state = 69, .external_lex_state = 7}, + [758] = {.lex_state = 69, .external_lex_state = 7}, + [759] = {.lex_state = 69, .external_lex_state = 7}, + [760] = {.lex_state = 60, .external_lex_state = 14}, + [761] = {.lex_state = 69, .external_lex_state = 7}, + [762] = {.lex_state = 69, .external_lex_state = 7}, + [763] = {.lex_state = 69, .external_lex_state = 7}, + [764] = {.lex_state = 69, .external_lex_state = 7}, + [765] = {.lex_state = 69, .external_lex_state = 7}, + [766] = {.lex_state = 69, .external_lex_state = 7}, + [767] = {.lex_state = 69, .external_lex_state = 7}, + [768] = {.lex_state = 69, .external_lex_state = 7}, + [769] = {.lex_state = 69, .external_lex_state = 7}, + [770] = {.lex_state = 69, .external_lex_state = 7}, + [771] = {.lex_state = 69, .external_lex_state = 7}, + [772] = {.lex_state = 69, .external_lex_state = 7}, + [773] = {.lex_state = 69, .external_lex_state = 7}, + [774] = {.lex_state = 69, .external_lex_state = 7}, + [775] = {.lex_state = 60, .external_lex_state = 14}, + [776] = {.lex_state = 69, .external_lex_state = 7}, + [777] = {.lex_state = 69, .external_lex_state = 7}, + [778] = {.lex_state = 69, .external_lex_state = 7}, + [779] = {.lex_state = 69, .external_lex_state = 7}, + [780] = {.lex_state = 69, .external_lex_state = 7}, + [781] = {.lex_state = 69, .external_lex_state = 7}, + [782] = {.lex_state = 69, .external_lex_state = 7}, + [783] = {.lex_state = 69, .external_lex_state = 7}, + [784] = {.lex_state = 69, .external_lex_state = 7}, + [785] = {.lex_state = 69, .external_lex_state = 7}, + [786] = {.lex_state = 69, .external_lex_state = 7}, + [787] = {.lex_state = 69, .external_lex_state = 7}, + [788] = {.lex_state = 69, .external_lex_state = 7}, + [789] = {.lex_state = 69, .external_lex_state = 7}, + [790] = {.lex_state = 69, .external_lex_state = 7}, + [791] = {.lex_state = 69, .external_lex_state = 7}, + [792] = {.lex_state = 69, .external_lex_state = 7}, + [793] = {.lex_state = 69, .external_lex_state = 7}, + [794] = {.lex_state = 69, .external_lex_state = 7}, + [795] = {.lex_state = 69, .external_lex_state = 7}, + [796] = {.lex_state = 69, .external_lex_state = 7}, + [797] = {.lex_state = 69, .external_lex_state = 7}, + [798] = {.lex_state = 69, .external_lex_state = 7}, + [799] = {.lex_state = 69, .external_lex_state = 7}, + [800] = {.lex_state = 69, .external_lex_state = 7}, + [801] = {.lex_state = 69, .external_lex_state = 7}, + [802] = {.lex_state = 69, .external_lex_state = 7}, + [803] = {.lex_state = 69, .external_lex_state = 7}, + [804] = {.lex_state = 69, .external_lex_state = 7}, + [805] = {.lex_state = 69, .external_lex_state = 7}, + [806] = {.lex_state = 69, .external_lex_state = 7}, + [807] = {.lex_state = 69, .external_lex_state = 7}, + [808] = {.lex_state = 69, .external_lex_state = 7}, + [809] = {.lex_state = 69, .external_lex_state = 7}, + [810] = {.lex_state = 69, .external_lex_state = 7}, + [811] = {.lex_state = 69, .external_lex_state = 7}, + [812] = {.lex_state = 69, .external_lex_state = 7}, + [813] = {.lex_state = 69, .external_lex_state = 7}, + [814] = {.lex_state = 69, .external_lex_state = 7}, + [815] = {.lex_state = 69, .external_lex_state = 7}, + [816] = {.lex_state = 69, .external_lex_state = 7}, + [817] = {.lex_state = 69, .external_lex_state = 7}, + [818] = {.lex_state = 69, .external_lex_state = 7}, + [819] = {.lex_state = 69, .external_lex_state = 7}, + [820] = {.lex_state = 69, .external_lex_state = 7}, + [821] = {.lex_state = 69, .external_lex_state = 7}, + [822] = {.lex_state = 69, .external_lex_state = 7}, + [823] = {.lex_state = 69, .external_lex_state = 7}, + [824] = {.lex_state = 69, .external_lex_state = 7}, + [825] = {.lex_state = 69, .external_lex_state = 7}, + [826] = {.lex_state = 69, .external_lex_state = 7}, + [827] = {.lex_state = 69, .external_lex_state = 7}, + [828] = {.lex_state = 69, .external_lex_state = 7}, + [829] = {.lex_state = 69, .external_lex_state = 7}, + [830] = {.lex_state = 69, .external_lex_state = 7}, + [831] = {.lex_state = 69, .external_lex_state = 7}, + [832] = {.lex_state = 69, .external_lex_state = 7}, + [833] = {.lex_state = 69, .external_lex_state = 7}, + [834] = {.lex_state = 69, .external_lex_state = 7}, + [835] = {.lex_state = 69, .external_lex_state = 7}, + [836] = {.lex_state = 69, .external_lex_state = 7}, + [837] = {.lex_state = 69, .external_lex_state = 7}, + [838] = {.lex_state = 69, .external_lex_state = 7}, + [839] = {.lex_state = 69, .external_lex_state = 7}, + [840] = {.lex_state = 69, .external_lex_state = 7}, + [841] = {.lex_state = 69, .external_lex_state = 7}, + [842] = {.lex_state = 69, .external_lex_state = 7}, + [843] = {.lex_state = 69, .external_lex_state = 7}, + [844] = {.lex_state = 69, .external_lex_state = 7}, + [845] = {.lex_state = 69, .external_lex_state = 7}, + [846] = {.lex_state = 69, .external_lex_state = 7}, + [847] = {.lex_state = 69, .external_lex_state = 7}, + [848] = {.lex_state = 69, .external_lex_state = 7}, + [849] = {.lex_state = 69, .external_lex_state = 7}, + [850] = {.lex_state = 69, .external_lex_state = 7}, + [851] = {.lex_state = 69, .external_lex_state = 7}, + [852] = {.lex_state = 69, .external_lex_state = 7}, + [853] = {.lex_state = 69, .external_lex_state = 7}, + [854] = {.lex_state = 69, .external_lex_state = 7}, + [855] = {.lex_state = 69, .external_lex_state = 7}, + [856] = {.lex_state = 60, .external_lex_state = 12}, + [857] = {.lex_state = 69, .external_lex_state = 7}, + [858] = {.lex_state = 69, .external_lex_state = 7}, + [859] = {.lex_state = 69, .external_lex_state = 7}, + [860] = {.lex_state = 69, .external_lex_state = 7}, + [861] = {.lex_state = 69, .external_lex_state = 7}, + [862] = {.lex_state = 69, .external_lex_state = 7}, + [863] = {.lex_state = 69, .external_lex_state = 7}, + [864] = {.lex_state = 69, .external_lex_state = 7}, + [865] = {.lex_state = 69, .external_lex_state = 7}, + [866] = {.lex_state = 69, .external_lex_state = 7}, + [867] = {.lex_state = 69, .external_lex_state = 7}, + [868] = {.lex_state = 69, .external_lex_state = 7}, + [869] = {.lex_state = 69, .external_lex_state = 7}, + [870] = {.lex_state = 69, .external_lex_state = 7}, + [871] = {.lex_state = 69, .external_lex_state = 7}, + [872] = {.lex_state = 69, .external_lex_state = 7}, + [873] = {.lex_state = 69, .external_lex_state = 7}, + [874] = {.lex_state = 60, .external_lex_state = 15}, + [875] = {.lex_state = 69, .external_lex_state = 7}, + [876] = {.lex_state = 69, .external_lex_state = 7}, + [877] = {.lex_state = 69, .external_lex_state = 7}, + [878] = {.lex_state = 69, .external_lex_state = 7}, + [879] = {.lex_state = 69, .external_lex_state = 7}, + [880] = {.lex_state = 69, .external_lex_state = 7}, + [881] = {.lex_state = 69, .external_lex_state = 7}, + [882] = {.lex_state = 69, .external_lex_state = 7}, + [883] = {.lex_state = 69, .external_lex_state = 7}, + [884] = {.lex_state = 69, .external_lex_state = 7}, + [885] = {.lex_state = 69, .external_lex_state = 7}, + [886] = {.lex_state = 69, .external_lex_state = 7}, + [887] = {.lex_state = 69, .external_lex_state = 7}, + [888] = {.lex_state = 69, .external_lex_state = 7}, + [889] = {.lex_state = 69, .external_lex_state = 7}, + [890] = {.lex_state = 69, .external_lex_state = 7}, + [891] = {.lex_state = 69, .external_lex_state = 7}, + [892] = {.lex_state = 69, .external_lex_state = 7}, + [893] = {.lex_state = 69, .external_lex_state = 7}, + [894] = {.lex_state = 69, .external_lex_state = 7}, + [895] = {.lex_state = 69, .external_lex_state = 7}, + [896] = {.lex_state = 69, .external_lex_state = 7}, + [897] = {.lex_state = 69, .external_lex_state = 7}, + [898] = {.lex_state = 69, .external_lex_state = 7}, + [899] = {.lex_state = 69, .external_lex_state = 7}, + [900] = {.lex_state = 69, .external_lex_state = 7}, + [901] = {.lex_state = 69, .external_lex_state = 7}, + [902] = {.lex_state = 69, .external_lex_state = 7}, + [903] = {.lex_state = 69, .external_lex_state = 7}, + [904] = {.lex_state = 69, .external_lex_state = 7}, + [905] = {.lex_state = 69, .external_lex_state = 7}, + [906] = {.lex_state = 69, .external_lex_state = 7}, + [907] = {.lex_state = 69, .external_lex_state = 7}, + [908] = {.lex_state = 69, .external_lex_state = 7}, + [909] = {.lex_state = 69, .external_lex_state = 7}, + [910] = {.lex_state = 69, .external_lex_state = 7}, + [911] = {.lex_state = 69, .external_lex_state = 7}, + [912] = {.lex_state = 69, .external_lex_state = 7}, + [913] = {.lex_state = 69, .external_lex_state = 7}, + [914] = {.lex_state = 69, .external_lex_state = 7}, + [915] = {.lex_state = 69, .external_lex_state = 7}, + [916] = {.lex_state = 69, .external_lex_state = 7}, + [917] = {.lex_state = 69, .external_lex_state = 7}, + [918] = {.lex_state = 69, .external_lex_state = 7}, + [919] = {.lex_state = 69, .external_lex_state = 7}, + [920] = {.lex_state = 69, .external_lex_state = 7}, + [921] = {.lex_state = 69, .external_lex_state = 7}, + [922] = {.lex_state = 69, .external_lex_state = 7}, + [923] = {.lex_state = 69, .external_lex_state = 7}, + [924] = {.lex_state = 69, .external_lex_state = 7}, + [925] = {.lex_state = 69, .external_lex_state = 7}, + [926] = {.lex_state = 69, .external_lex_state = 7}, + [927] = {.lex_state = 69, .external_lex_state = 7}, + [928] = {.lex_state = 69, .external_lex_state = 7}, + [929] = {.lex_state = 69, .external_lex_state = 7}, + [930] = {.lex_state = 69, .external_lex_state = 7}, + [931] = {.lex_state = 69, .external_lex_state = 7}, + [932] = {.lex_state = 69, .external_lex_state = 7}, + [933] = {.lex_state = 69, .external_lex_state = 7}, + [934] = {.lex_state = 69, .external_lex_state = 7}, + [935] = {.lex_state = 69, .external_lex_state = 7}, + [936] = {.lex_state = 69, .external_lex_state = 7}, + [937] = {.lex_state = 69, .external_lex_state = 7}, + [938] = {.lex_state = 69, .external_lex_state = 7}, + [939] = {.lex_state = 69, .external_lex_state = 7}, + [940] = {.lex_state = 69, .external_lex_state = 7}, + [941] = {.lex_state = 69, .external_lex_state = 7}, + [942] = {.lex_state = 69, .external_lex_state = 7}, + [943] = {.lex_state = 69, .external_lex_state = 7}, + [944] = {.lex_state = 69, .external_lex_state = 7}, + [945] = {.lex_state = 69, .external_lex_state = 7}, + [946] = {.lex_state = 69, .external_lex_state = 7}, + [947] = {.lex_state = 69, .external_lex_state = 7}, + [948] = {.lex_state = 69, .external_lex_state = 7}, + [949] = {.lex_state = 69, .external_lex_state = 7}, + [950] = {.lex_state = 69, .external_lex_state = 7}, + [951] = {.lex_state = 69, .external_lex_state = 7}, + [952] = {.lex_state = 69, .external_lex_state = 7}, + [953] = {.lex_state = 69, .external_lex_state = 7}, + [954] = {.lex_state = 69, .external_lex_state = 7}, + [955] = {.lex_state = 69, .external_lex_state = 7}, + [956] = {.lex_state = 69, .external_lex_state = 7}, + [957] = {.lex_state = 69, .external_lex_state = 7}, + [958] = {.lex_state = 69, .external_lex_state = 7}, + [959] = {.lex_state = 69, .external_lex_state = 7}, + [960] = {.lex_state = 69, .external_lex_state = 7}, + [961] = {.lex_state = 69, .external_lex_state = 7}, + [962] = {.lex_state = 69, .external_lex_state = 7}, + [963] = {.lex_state = 69, .external_lex_state = 7}, + [964] = {.lex_state = 69, .external_lex_state = 7}, + [965] = {.lex_state = 69, .external_lex_state = 7}, + [966] = {.lex_state = 69, .external_lex_state = 7}, + [967] = {.lex_state = 69, .external_lex_state = 7}, + [968] = {.lex_state = 69, .external_lex_state = 7}, + [969] = {.lex_state = 60, .external_lex_state = 13}, + [970] = {.lex_state = 69, .external_lex_state = 7}, + [971] = {.lex_state = 69, .external_lex_state = 7}, + [972] = {.lex_state = 69, .external_lex_state = 7}, + [973] = {.lex_state = 69, .external_lex_state = 7}, + [974] = {.lex_state = 69, .external_lex_state = 7}, + [975] = {.lex_state = 69, .external_lex_state = 7}, + [976] = {.lex_state = 69, .external_lex_state = 7}, + [977] = {.lex_state = 69, .external_lex_state = 7}, + [978] = {.lex_state = 69, .external_lex_state = 7}, + [979] = {.lex_state = 69, .external_lex_state = 7}, + [980] = {.lex_state = 69, .external_lex_state = 7}, + [981] = {.lex_state = 69, .external_lex_state = 7}, + [982] = {.lex_state = 69, .external_lex_state = 7}, + [983] = {.lex_state = 69, .external_lex_state = 7}, + [984] = {.lex_state = 69, .external_lex_state = 7}, + [985] = {.lex_state = 69, .external_lex_state = 7}, + [986] = {.lex_state = 60, .external_lex_state = 12}, + [987] = {.lex_state = 60, .external_lex_state = 12}, + [988] = {.lex_state = 60, .external_lex_state = 12}, + [989] = {.lex_state = 40, .external_lex_state = 11}, + [990] = {.lex_state = 60, .external_lex_state = 12}, + [991] = {.lex_state = 47, .external_lex_state = 12}, [992] = {.lex_state = 47, .external_lex_state = 12}, - [993] = {.lex_state = 58, .external_lex_state = 12}, - [994] = {.lex_state = 58, .external_lex_state = 12}, - [995] = {.lex_state = 58, .external_lex_state = 12}, - [996] = {.lex_state = 58, .external_lex_state = 12}, - [997] = {.lex_state = 58, .external_lex_state = 12}, - [998] = {.lex_state = 47, .external_lex_state = 12}, - [999] = {.lex_state = 47, .external_lex_state = 12}, - [1000] = {.lex_state = 58, .external_lex_state = 12}, - [1001] = {.lex_state = 58, .external_lex_state = 12}, - [1002] = {.lex_state = 58, .external_lex_state = 12}, - [1003] = {.lex_state = 58, .external_lex_state = 12}, - [1004] = {.lex_state = 58, .external_lex_state = 12}, - [1005] = {.lex_state = 47, .external_lex_state = 12}, - [1006] = {.lex_state = 47, .external_lex_state = 12}, + [993] = {.lex_state = 60, .external_lex_state = 12}, + [994] = {.lex_state = 60, .external_lex_state = 12}, + [995] = {.lex_state = 60, .external_lex_state = 12}, + [996] = {.lex_state = 60, .external_lex_state = 12}, + [997] = {.lex_state = 60, .external_lex_state = 12}, + [998] = {.lex_state = 60, .external_lex_state = 12}, + [999] = {.lex_state = 60, .external_lex_state = 12}, + [1000] = {.lex_state = 60, .external_lex_state = 12}, + [1001] = {.lex_state = 60, .external_lex_state = 12}, + [1002] = {.lex_state = 47, .external_lex_state = 12}, + [1003] = {.lex_state = 47, .external_lex_state = 12}, + [1004] = {.lex_state = 47, .external_lex_state = 12}, + [1005] = {.lex_state = 60, .external_lex_state = 12}, + [1006] = {.lex_state = 60, .external_lex_state = 12}, [1007] = {.lex_state = 47, .external_lex_state = 12}, [1008] = {.lex_state = 47, .external_lex_state = 12}, [1009] = {.lex_state = 47, .external_lex_state = 12}, - [1010] = {.lex_state = 62, .external_lex_state = 12}, - [1011] = {.lex_state = 62, .external_lex_state = 12}, - [1012] = {.lex_state = 62, .external_lex_state = 12}, - [1013] = {.lex_state = 62, .external_lex_state = 12}, - [1014] = {.lex_state = 62, .external_lex_state = 12}, - [1015] = {.lex_state = 62, .external_lex_state = 12}, - [1016] = {.lex_state = 47, .external_lex_state = 12}, - [1017] = {.lex_state = 62, .external_lex_state = 12}, - [1018] = {.lex_state = 62, .external_lex_state = 12}, - [1019] = {.lex_state = 62, .external_lex_state = 12}, - [1020] = {.lex_state = 62, .external_lex_state = 12}, - [1021] = {.lex_state = 62, .external_lex_state = 12}, - [1022] = {.lex_state = 37}, - [1023] = {.lex_state = 62, .external_lex_state = 12}, - [1024] = {.lex_state = 62, .external_lex_state = 12}, - [1025] = {.lex_state = 62, .external_lex_state = 12}, - [1026] = {.lex_state = 47, .external_lex_state = 14}, - [1027] = {.lex_state = 47, .external_lex_state = 13}, - [1028] = {.lex_state = 46, .external_lex_state = 12}, - [1029] = {.lex_state = 47, .external_lex_state = 15}, - [1030] = {.lex_state = 47, .external_lex_state = 14}, - [1031] = {.lex_state = 47, .external_lex_state = 13}, - [1032] = {.lex_state = 47, .external_lex_state = 12}, - [1033] = {.lex_state = 47, .external_lex_state = 13}, - [1034] = {.lex_state = 47, .external_lex_state = 15}, - [1035] = {.lex_state = 47, .external_lex_state = 13}, - [1036] = {.lex_state = 47, .external_lex_state = 12}, - [1037] = {.lex_state = 62, .external_lex_state = 13}, - [1038] = {.lex_state = 47, .external_lex_state = 13}, - [1039] = {.lex_state = 47, .external_lex_state = 12}, - [1040] = {.lex_state = 45, .external_lex_state = 12}, - [1041] = {.lex_state = 45, .external_lex_state = 12}, - [1042] = {.lex_state = 62, .external_lex_state = 13}, - [1043] = {.lex_state = 45, .external_lex_state = 12}, - [1044] = {.lex_state = 45, .external_lex_state = 12}, - [1045] = {.lex_state = 48, .external_lex_state = 12}, - [1046] = {.lex_state = 47, .external_lex_state = 12}, - [1047] = {.lex_state = 48, .external_lex_state = 12}, - [1048] = {.lex_state = 62, .external_lex_state = 15}, - [1049] = {.lex_state = 62, .external_lex_state = 14}, - [1050] = {.lex_state = 62, .external_lex_state = 13}, - [1051] = {.lex_state = 62, .external_lex_state = 15}, - [1052] = {.lex_state = 62, .external_lex_state = 14}, - [1053] = {.lex_state = 47, .external_lex_state = 14}, - [1054] = {.lex_state = 47, .external_lex_state = 15}, - [1055] = {.lex_state = 62, .external_lex_state = 13}, - [1056] = {.lex_state = 48, .external_lex_state = 12}, - [1057] = {.lex_state = 61, .external_lex_state = 12}, - [1058] = {.lex_state = 47, .external_lex_state = 13}, - [1059] = {.lex_state = 48, .external_lex_state = 12}, - [1060] = {.lex_state = 47, .external_lex_state = 12}, + [1010] = {.lex_state = 47, .external_lex_state = 12}, + [1011] = {.lex_state = 60, .external_lex_state = 12}, + [1012] = {.lex_state = 47, .external_lex_state = 12}, + [1013] = {.lex_state = 47, .external_lex_state = 12}, + [1014] = {.lex_state = 60, .external_lex_state = 12}, + [1015] = {.lex_state = 60, .external_lex_state = 12}, + [1016] = {.lex_state = 60, .external_lex_state = 12}, + [1017] = {.lex_state = 60, .external_lex_state = 12}, + [1018] = {.lex_state = 60, .external_lex_state = 12}, + [1019] = {.lex_state = 60, .external_lex_state = 12}, + [1020] = {.lex_state = 60, .external_lex_state = 12}, + [1021] = {.lex_state = 47, .external_lex_state = 12}, + [1022] = {.lex_state = 60, .external_lex_state = 12}, + [1023] = {.lex_state = 60, .external_lex_state = 12}, + [1024] = {.lex_state = 64, .external_lex_state = 12}, + [1025] = {.lex_state = 64, .external_lex_state = 12}, + [1026] = {.lex_state = 64, .external_lex_state = 12}, + [1027] = {.lex_state = 64, .external_lex_state = 12}, + [1028] = {.lex_state = 64, .external_lex_state = 12}, + [1029] = {.lex_state = 64, .external_lex_state = 12}, + [1030] = {.lex_state = 64, .external_lex_state = 12}, + [1031] = {.lex_state = 64, .external_lex_state = 12}, + [1032] = {.lex_state = 64, .external_lex_state = 12}, + [1033] = {.lex_state = 64, .external_lex_state = 12}, + [1034] = {.lex_state = 64, .external_lex_state = 12}, + [1035] = {.lex_state = 64, .external_lex_state = 12}, + [1036] = {.lex_state = 64, .external_lex_state = 12}, + [1037] = {.lex_state = 64, .external_lex_state = 12}, + [1038] = {.lex_state = 47, .external_lex_state = 12}, + [1039] = {.lex_state = 37}, + [1040] = {.lex_state = 45, .external_lex_state = 14}, + [1041] = {.lex_state = 47, .external_lex_state = 14}, + [1042] = {.lex_state = 48, .external_lex_state = 14}, + [1043] = {.lex_state = 47, .external_lex_state = 14}, + [1044] = {.lex_state = 48, .external_lex_state = 14}, + [1045] = {.lex_state = 48, .external_lex_state = 14}, + [1046] = {.lex_state = 47, .external_lex_state = 13}, + [1047] = {.lex_state = 47, .external_lex_state = 13}, + [1048] = {.lex_state = 47, .external_lex_state = 14}, + [1049] = {.lex_state = 47, .external_lex_state = 15}, + [1050] = {.lex_state = 48, .external_lex_state = 14}, + [1051] = {.lex_state = 47, .external_lex_state = 14}, + [1052] = {.lex_state = 47, .external_lex_state = 14}, + [1053] = {.lex_state = 47, .external_lex_state = 13}, + [1054] = {.lex_state = 47, .external_lex_state = 13}, + [1055] = {.lex_state = 45, .external_lex_state = 14}, + [1056] = {.lex_state = 46, .external_lex_state = 12}, + [1057] = {.lex_state = 45, .external_lex_state = 14}, + [1058] = {.lex_state = 45, .external_lex_state = 14}, + [1059] = {.lex_state = 47, .external_lex_state = 14}, + [1060] = {.lex_state = 47, .external_lex_state = 15}, [1061] = {.lex_state = 47, .external_lex_state = 12}, - [1062] = {.lex_state = 60, .external_lex_state = 12}, - [1063] = {.lex_state = 60, .external_lex_state = 12}, - [1064] = {.lex_state = 47, .external_lex_state = 12}, + [1062] = {.lex_state = 64, .external_lex_state = 13}, + [1063] = {.lex_state = 65, .external_lex_state = 14}, + [1064] = {.lex_state = 64, .external_lex_state = 14}, [1065] = {.lex_state = 47, .external_lex_state = 12}, - [1066] = {.lex_state = 63, .external_lex_state = 12}, - [1067] = {.lex_state = 47, .external_lex_state = 12}, - [1068] = {.lex_state = 47, .external_lex_state = 12}, - [1069] = {.lex_state = 63, .external_lex_state = 12}, - [1070] = {.lex_state = 47, .external_lex_state = 12}, - [1071] = {.lex_state = 60, .external_lex_state = 12}, - [1072] = {.lex_state = 47, .external_lex_state = 12}, - [1073] = {.lex_state = 62, .external_lex_state = 12}, + [1066] = {.lex_state = 62, .external_lex_state = 14}, + [1067] = {.lex_state = 64, .external_lex_state = 14}, + [1068] = {.lex_state = 65, .external_lex_state = 14}, + [1069] = {.lex_state = 47, .external_lex_state = 12}, + [1070] = {.lex_state = 64, .external_lex_state = 14}, + [1071] = {.lex_state = 64, .external_lex_state = 13}, + [1072] = {.lex_state = 62, .external_lex_state = 14}, + [1073] = {.lex_state = 64, .external_lex_state = 15}, [1074] = {.lex_state = 47, .external_lex_state = 12}, - [1075] = {.lex_state = 47, .external_lex_state = 12}, - [1076] = {.lex_state = 47, .external_lex_state = 12}, - [1077] = {.lex_state = 62, .external_lex_state = 13}, - [1078] = {.lex_state = 62, .external_lex_state = 12}, - [1079] = {.lex_state = 47, .external_lex_state = 12}, - [1080] = {.lex_state = 47, .external_lex_state = 12}, - [1081] = {.lex_state = 47, .external_lex_state = 12}, - [1082] = {.lex_state = 47, .external_lex_state = 12}, - [1083] = {.lex_state = 47, .external_lex_state = 12}, - [1084] = {.lex_state = 47, .external_lex_state = 12}, - [1085] = {.lex_state = 47, .external_lex_state = 12}, - [1086] = {.lex_state = 62, .external_lex_state = 12}, - [1087] = {.lex_state = 47, .external_lex_state = 12}, - [1088] = {.lex_state = 47, .external_lex_state = 12}, - [1089] = {.lex_state = 47, .external_lex_state = 12}, - [1090] = {.lex_state = 47, .external_lex_state = 12}, - [1091] = {.lex_state = 60, .external_lex_state = 12}, - [1092] = {.lex_state = 62, .external_lex_state = 15}, - [1093] = {.lex_state = 62, .external_lex_state = 14}, - [1094] = {.lex_state = 47, .external_lex_state = 12}, + [1075] = {.lex_state = 62, .external_lex_state = 14}, + [1076] = {.lex_state = 64, .external_lex_state = 13}, + [1077] = {.lex_state = 64, .external_lex_state = 14}, + [1078] = {.lex_state = 64, .external_lex_state = 14}, + [1079] = {.lex_state = 47, .external_lex_state = 14}, + [1080] = {.lex_state = 62, .external_lex_state = 14}, + [1081] = {.lex_state = 63, .external_lex_state = 12}, + [1082] = {.lex_state = 64, .external_lex_state = 14}, + [1083] = {.lex_state = 47, .external_lex_state = 14}, + [1084] = {.lex_state = 64, .external_lex_state = 15}, + [1085] = {.lex_state = 64, .external_lex_state = 13}, + [1086] = {.lex_state = 65, .external_lex_state = 14}, + [1087] = {.lex_state = 47, .external_lex_state = 15}, + [1088] = {.lex_state = 65, .external_lex_state = 14}, + [1089] = {.lex_state = 47, .external_lex_state = 14}, + [1090] = {.lex_state = 47, .external_lex_state = 13}, + [1091] = {.lex_state = 47, .external_lex_state = 13}, + [1092] = {.lex_state = 47, .external_lex_state = 12}, + [1093] = {.lex_state = 47, .external_lex_state = 12}, + [1094] = {.lex_state = 64, .external_lex_state = 13}, [1095] = {.lex_state = 47, .external_lex_state = 12}, [1096] = {.lex_state = 47, .external_lex_state = 12}, [1097] = {.lex_state = 47, .external_lex_state = 12}, - [1098] = {.lex_state = 47, .external_lex_state = 12}, - [1099] = {.lex_state = 63, .external_lex_state = 12}, - [1100] = {.lex_state = 63, .external_lex_state = 12}, - [1101] = {.lex_state = 62, .external_lex_state = 13}, - [1102] = {.lex_state = 62, .external_lex_state = 12}, - [1103] = {.lex_state = 62, .external_lex_state = 12}, - [1104] = {.lex_state = 37, .external_lex_state = 5}, - [1105] = {.lex_state = 37, .external_lex_state = 5}, - [1106] = {.lex_state = 37, .external_lex_state = 5}, - [1107] = {.lex_state = 37, .external_lex_state = 5}, - [1108] = {.lex_state = 62, .external_lex_state = 12}, - [1109] = {.lex_state = 37, .external_lex_state = 5}, - [1110] = {.lex_state = 62, .external_lex_state = 12}, - [1111] = {.lex_state = 62, .external_lex_state = 12}, - [1112] = {.lex_state = 62, .external_lex_state = 12}, - [1113] = {.lex_state = 62, .external_lex_state = 12}, - [1114] = {.lex_state = 62, .external_lex_state = 12}, - [1115] = {.lex_state = 37, .external_lex_state = 5}, - [1116] = {.lex_state = 62, .external_lex_state = 12}, - [1117] = {.lex_state = 37, .external_lex_state = 5}, - [1118] = {.lex_state = 62, .external_lex_state = 12}, - [1119] = {.lex_state = 37, .external_lex_state = 5}, - [1120] = {.lex_state = 62, .external_lex_state = 12}, - [1121] = {.lex_state = 62, .external_lex_state = 12}, - [1122] = {.lex_state = 62, .external_lex_state = 12}, - [1123] = {.lex_state = 62, .external_lex_state = 12}, - [1124] = {.lex_state = 62, .external_lex_state = 12}, - [1125] = {.lex_state = 62, .external_lex_state = 12}, - [1126] = {.lex_state = 62, .external_lex_state = 12}, - [1127] = {.lex_state = 62, .external_lex_state = 12}, - [1128] = {.lex_state = 62, .external_lex_state = 12}, - [1129] = {.lex_state = 37, .external_lex_state = 5}, - [1130] = {.lex_state = 62, .external_lex_state = 12}, - [1131] = {.lex_state = 62, .external_lex_state = 12}, - [1132] = {.lex_state = 62, .external_lex_state = 12}, - [1133] = {.lex_state = 62, .external_lex_state = 12}, - [1134] = {.lex_state = 37, .external_lex_state = 5}, - [1135] = {.lex_state = 62, .external_lex_state = 12}, - [1136] = {.lex_state = 62, .external_lex_state = 12}, - [1137] = {.lex_state = 62, .external_lex_state = 12}, - [1138] = {.lex_state = 62, .external_lex_state = 12}, - [1139] = {.lex_state = 37, .external_lex_state = 5}, - [1140] = {.lex_state = 37, .external_lex_state = 5}, - [1141] = {.lex_state = 37, .external_lex_state = 5}, - [1142] = {.lex_state = 91, .external_lex_state = 5}, - [1143] = {.lex_state = 92, .external_lex_state = 5}, - [1144] = {.lex_state = 1321, .external_lex_state = 5}, - [1145] = {.lex_state = 1321, .external_lex_state = 5}, - [1146] = {.lex_state = 38, .external_lex_state = 5}, - [1147] = {.lex_state = 1321, .external_lex_state = 5}, - [1148] = {.lex_state = 1321, .external_lex_state = 5}, - [1149] = {.lex_state = 1321, .external_lex_state = 5}, - [1150] = {.lex_state = 38, .external_lex_state = 5}, - [1151] = {.lex_state = 1321, .external_lex_state = 5}, - [1152] = {.lex_state = 1321, .external_lex_state = 5}, - [1153] = {.lex_state = 38, .external_lex_state = 5}, - [1154] = {.lex_state = 1321, .external_lex_state = 5}, - [1155] = {.lex_state = 1321, .external_lex_state = 5}, - [1156] = {.lex_state = 38, .external_lex_state = 5}, - [1157] = {.lex_state = 1321, .external_lex_state = 5}, - [1158] = {.lex_state = 1321, .external_lex_state = 5}, - [1159] = {.lex_state = 1321, .external_lex_state = 5}, - [1160] = {.lex_state = 1321, .external_lex_state = 5}, - [1161] = {.lex_state = 1321, .external_lex_state = 5}, - [1162] = {.lex_state = 1321, .external_lex_state = 5}, - [1163] = {.lex_state = 1321, .external_lex_state = 5}, - [1164] = {.lex_state = 1321, .external_lex_state = 5}, - [1165] = {.lex_state = 1321, .external_lex_state = 5}, - [1166] = {.lex_state = 1321, .external_lex_state = 5}, - [1167] = {.lex_state = 1321, .external_lex_state = 5}, - [1168] = {.lex_state = 1321, .external_lex_state = 5}, - [1169] = {.lex_state = 1321, .external_lex_state = 5}, - [1170] = {.lex_state = 1321, .external_lex_state = 5}, - [1171] = {.lex_state = 1321, .external_lex_state = 5}, - [1172] = {.lex_state = 1321, .external_lex_state = 5}, - [1173] = {.lex_state = 1321, .external_lex_state = 5}, - [1174] = {.lex_state = 64, .external_lex_state = 2}, - [1175] = {.lex_state = 1321, .external_lex_state = 5}, - [1176] = {.lex_state = 1321, .external_lex_state = 5}, - [1177] = {.lex_state = 1321, .external_lex_state = 5}, - [1178] = {.lex_state = 1321, .external_lex_state = 5}, - [1179] = {.lex_state = 1321, .external_lex_state = 5}, - [1180] = {.lex_state = 87, .external_lex_state = 5}, - [1181] = {.lex_state = 1321, .external_lex_state = 5}, - [1182] = {.lex_state = 1321, .external_lex_state = 5}, - [1183] = {.lex_state = 1321, .external_lex_state = 5}, - [1184] = {.lex_state = 1321, .external_lex_state = 5}, - [1185] = {.lex_state = 1321, .external_lex_state = 5}, - [1186] = {.lex_state = 1321, .external_lex_state = 5}, - [1187] = {.lex_state = 1321, .external_lex_state = 5}, - [1188] = {.lex_state = 1321, .external_lex_state = 5}, - [1189] = {.lex_state = 89, .external_lex_state = 5}, - [1190] = {.lex_state = 1321, .external_lex_state = 5}, - [1191] = {.lex_state = 1321, .external_lex_state = 5}, - [1192] = {.lex_state = 64, .external_lex_state = 2}, - [1193] = {.lex_state = 1321, .external_lex_state = 5}, - [1194] = {.lex_state = 88, .external_lex_state = 5}, - [1195] = {.lex_state = 1321, .external_lex_state = 5}, - [1196] = {.lex_state = 1321, .external_lex_state = 5}, - [1197] = {.lex_state = 1321, .external_lex_state = 5}, - [1198] = {.lex_state = 1321, .external_lex_state = 5}, - [1199] = {.lex_state = 1321, .external_lex_state = 5}, - [1200] = {.lex_state = 1321, .external_lex_state = 5}, - [1201] = {.lex_state = 1321, .external_lex_state = 5}, - [1202] = {.lex_state = 1321, .external_lex_state = 5}, - [1203] = {.lex_state = 1321, .external_lex_state = 5}, - [1204] = {.lex_state = 1321, .external_lex_state = 5}, - [1205] = {.lex_state = 1321, .external_lex_state = 5}, - [1206] = {.lex_state = 1321, .external_lex_state = 5}, - [1207] = {.lex_state = 97, .external_lex_state = 5}, - [1208] = {.lex_state = 1321, .external_lex_state = 5}, - [1209] = {.lex_state = 1321, .external_lex_state = 5}, - [1210] = {.lex_state = 1321, .external_lex_state = 5}, - [1211] = {.lex_state = 1321, .external_lex_state = 5}, - [1212] = {.lex_state = 1321, .external_lex_state = 5}, - [1213] = {.lex_state = 1321, .external_lex_state = 5}, - [1214] = {.lex_state = 1321, .external_lex_state = 5}, - [1215] = {.lex_state = 1321, .external_lex_state = 5}, - [1216] = {.lex_state = 90, .external_lex_state = 5}, - [1217] = {.lex_state = 1321, .external_lex_state = 5}, - [1218] = {.lex_state = 1321, .external_lex_state = 5}, - [1219] = {.lex_state = 1321, .external_lex_state = 5}, - [1220] = {.lex_state = 1321, .external_lex_state = 5}, - [1221] = {.lex_state = 1321, .external_lex_state = 5}, - [1222] = {.lex_state = 1321, .external_lex_state = 5}, - [1223] = {.lex_state = 1321, .external_lex_state = 5}, - [1224] = {.lex_state = 1321, .external_lex_state = 5}, - [1225] = {.lex_state = 1321, .external_lex_state = 5}, - [1226] = {.lex_state = 1321, .external_lex_state = 5}, - [1227] = {.lex_state = 1321, .external_lex_state = 5}, - [1228] = {.lex_state = 1321, .external_lex_state = 5}, - [1229] = {.lex_state = 1321, .external_lex_state = 5}, - [1230] = {.lex_state = 1321, .external_lex_state = 5}, - [1231] = {.lex_state = 1321, .external_lex_state = 5}, - [1232] = {.lex_state = 1321, .external_lex_state = 5}, - [1233] = {.lex_state = 1321, .external_lex_state = 5}, - [1234] = {.lex_state = 1321, .external_lex_state = 5}, - [1235] = {.lex_state = 1321, .external_lex_state = 5}, - [1236] = {.lex_state = 1321, .external_lex_state = 5}, - [1237] = {.lex_state = 100, .external_lex_state = 5}, - [1238] = {.lex_state = 1321, .external_lex_state = 5}, - [1239] = {.lex_state = 1321, .external_lex_state = 5}, - [1240] = {.lex_state = 1321, .external_lex_state = 5}, - [1241] = {.lex_state = 1321, .external_lex_state = 5}, - [1242] = {.lex_state = 1321, .external_lex_state = 5}, - [1243] = {.lex_state = 1321, .external_lex_state = 5}, - [1244] = {.lex_state = 1321, .external_lex_state = 5}, - [1245] = {.lex_state = 98, .external_lex_state = 5}, - [1246] = {.lex_state = 1321, .external_lex_state = 5}, - [1247] = {.lex_state = 191}, - [1248] = {.lex_state = 194, .external_lex_state = 7}, - [1249] = {.lex_state = 101, .external_lex_state = 5}, - [1250] = {.lex_state = 194, .external_lex_state = 7}, - [1251] = {.lex_state = 194, .external_lex_state = 7}, - [1252] = {.lex_state = 194, .external_lex_state = 7}, - [1253] = {.lex_state = 194, .external_lex_state = 7}, - [1254] = {.lex_state = 191}, - [1255] = {.lex_state = 64, .external_lex_state = 5}, - [1256] = {.lex_state = 64, .external_lex_state = 5}, - [1257] = {.lex_state = 64, .external_lex_state = 5}, - [1258] = {.lex_state = 64, .external_lex_state = 3}, - [1259] = {.lex_state = 64, .external_lex_state = 5}, - [1260] = {.lex_state = 64, .external_lex_state = 5}, - [1261] = {.lex_state = 64, .external_lex_state = 5}, - [1262] = {.lex_state = 64, .external_lex_state = 5}, - [1263] = {.lex_state = 64, .external_lex_state = 5}, - [1264] = {.lex_state = 64, .external_lex_state = 5}, - [1265] = {.lex_state = 64, .external_lex_state = 5}, - [1266] = {.lex_state = 64, .external_lex_state = 5}, - [1267] = {.lex_state = 64, .external_lex_state = 5}, - [1268] = {.lex_state = 64, .external_lex_state = 3}, - [1269] = {.lex_state = 64, .external_lex_state = 5}, - [1270] = {.lex_state = 37, .external_lex_state = 5}, - [1271] = {.lex_state = 37, .external_lex_state = 5}, - [1272] = {.lex_state = 1321, .external_lex_state = 5}, - [1273] = {.lex_state = 37, .external_lex_state = 5}, - [1274] = {.lex_state = 64, .external_lex_state = 3}, - [1275] = {.lex_state = 103, .external_lex_state = 5}, - [1276] = {.lex_state = 1321, .external_lex_state = 5}, - [1277] = {.lex_state = 37, .external_lex_state = 5}, - [1278] = {.lex_state = 1321, .external_lex_state = 5}, - [1279] = {.lex_state = 1321, .external_lex_state = 5}, - [1280] = {.lex_state = 37, .external_lex_state = 5}, - [1281] = {.lex_state = 64, .external_lex_state = 5}, - [1282] = {.lex_state = 1321, .external_lex_state = 5}, - [1283] = {.lex_state = 37, .external_lex_state = 5}, - [1284] = {.lex_state = 37, .external_lex_state = 5}, - [1285] = {.lex_state = 1321, .external_lex_state = 5}, - [1286] = {.lex_state = 37, .external_lex_state = 5}, - [1287] = {.lex_state = 37, .external_lex_state = 5}, - [1288] = {.lex_state = 37, .external_lex_state = 5}, - [1289] = {.lex_state = 1321, .external_lex_state = 5}, - [1290] = {.lex_state = 37, .external_lex_state = 5}, - [1291] = {.lex_state = 1321, .external_lex_state = 5}, - [1292] = {.lex_state = 1321, .external_lex_state = 5}, - [1293] = {.lex_state = 37, .external_lex_state = 5}, - [1294] = {.lex_state = 37, .external_lex_state = 5}, - [1295] = {.lex_state = 1321, .external_lex_state = 5}, - [1296] = {.lex_state = 1321, .external_lex_state = 5}, - [1297] = {.lex_state = 64, .external_lex_state = 4}, - [1298] = {.lex_state = 1321, .external_lex_state = 5}, - [1299] = {.lex_state = 1321, .external_lex_state = 5}, - [1300] = {.lex_state = 1321, .external_lex_state = 5}, - [1301] = {.lex_state = 1321, .external_lex_state = 5}, - [1302] = {.lex_state = 1321, .external_lex_state = 5}, - [1303] = {.lex_state = 1321, .external_lex_state = 5}, - [1304] = {.lex_state = 64, .external_lex_state = 4}, - [1305] = {.lex_state = 1321, .external_lex_state = 5}, - [1306] = {.lex_state = 1321, .external_lex_state = 5}, - [1307] = {.lex_state = 1321, .external_lex_state = 5}, - [1308] = {.lex_state = 1321, .external_lex_state = 5}, - [1309] = {.lex_state = 64, .external_lex_state = 4}, - [1310] = {.lex_state = 64, .external_lex_state = 5}, - [1311] = {.lex_state = 64, .external_lex_state = 6}, - [1312] = {.lex_state = 44, .external_lex_state = 8}, - [1313] = {.lex_state = 1321, .external_lex_state = 5}, - [1314] = {.lex_state = 64, .external_lex_state = 4}, - [1315] = {.lex_state = 44, .external_lex_state = 8}, - [1316] = {.lex_state = 1321, .external_lex_state = 5}, - [1317] = {.lex_state = 77, .external_lex_state = 5}, - [1318] = {.lex_state = 104, .external_lex_state = 5}, - [1319] = {.lex_state = 64, .external_lex_state = 6}, - [1320] = {.lex_state = 55, .external_lex_state = 5}, - [1321] = {.lex_state = 64, .external_lex_state = 6}, - [1322] = {.lex_state = 64, .external_lex_state = 4}, - [1323] = {.lex_state = 55, .external_lex_state = 5}, - [1324] = {.lex_state = 1321, .external_lex_state = 5}, - [1325] = {.lex_state = 64, .external_lex_state = 5}, - [1326] = {.lex_state = 93, .external_lex_state = 5}, - [1327] = {.lex_state = 55, .external_lex_state = 5}, - [1328] = {.lex_state = 70, .external_lex_state = 5}, - [1329] = {.lex_state = 1321, .external_lex_state = 5}, - [1330] = {.lex_state = 70, .external_lex_state = 5}, - [1331] = {.lex_state = 1321, .external_lex_state = 5}, - [1332] = {.lex_state = 1321, .external_lex_state = 5}, - [1333] = {.lex_state = 55, .external_lex_state = 5}, - [1334] = {.lex_state = 1321, .external_lex_state = 5}, - [1335] = {.lex_state = 1321, .external_lex_state = 5}, - [1336] = {.lex_state = 1321, .external_lex_state = 5}, - [1337] = {.lex_state = 1321, .external_lex_state = 5}, - [1338] = {.lex_state = 55, .external_lex_state = 5}, - [1339] = {.lex_state = 70, .external_lex_state = 5}, - [1340] = {.lex_state = 1321, .external_lex_state = 5}, - [1341] = {.lex_state = 64, .external_lex_state = 5}, - [1342] = {.lex_state = 1321, .external_lex_state = 5}, - [1343] = {.lex_state = 191}, - [1344] = {.lex_state = 1321, .external_lex_state = 5}, - [1345] = {.lex_state = 1321, .external_lex_state = 5}, - [1346] = {.lex_state = 1321, .external_lex_state = 5}, - [1347] = {.lex_state = 64, .external_lex_state = 5}, - [1348] = {.lex_state = 1321, .external_lex_state = 5}, - [1349] = {.lex_state = 1321, .external_lex_state = 5}, - [1350] = {.lex_state = 64, .external_lex_state = 5}, - [1351] = {.lex_state = 1321, .external_lex_state = 5}, - [1352] = {.lex_state = 1321, .external_lex_state = 5}, - [1353] = {.lex_state = 55, .external_lex_state = 5}, - [1354] = {.lex_state = 1321, .external_lex_state = 5}, - [1355] = {.lex_state = 1321, .external_lex_state = 5}, - [1356] = {.lex_state = 1321, .external_lex_state = 5}, - [1357] = {.lex_state = 1321, .external_lex_state = 5}, - [1358] = {.lex_state = 78, .external_lex_state = 5}, - [1359] = {.lex_state = 55, .external_lex_state = 5}, - [1360] = {.lex_state = 1321, .external_lex_state = 5}, - [1361] = {.lex_state = 44, .external_lex_state = 8}, - [1362] = {.lex_state = 55, .external_lex_state = 5}, - [1363] = {.lex_state = 55, .external_lex_state = 5}, - [1364] = {.lex_state = 55, .external_lex_state = 5}, - [1365] = {.lex_state = 1321, .external_lex_state = 5}, - [1366] = {.lex_state = 55, .external_lex_state = 5}, - [1367] = {.lex_state = 1321, .external_lex_state = 5}, - [1368] = {.lex_state = 1321, .external_lex_state = 5}, - [1369] = {.lex_state = 1321, .external_lex_state = 5}, - [1370] = {.lex_state = 55, .external_lex_state = 5}, - [1371] = {.lex_state = 70, .external_lex_state = 5}, - [1372] = {.lex_state = 1321, .external_lex_state = 5}, - [1373] = {.lex_state = 64, .external_lex_state = 4}, - [1374] = {.lex_state = 1321, .external_lex_state = 5}, - [1375] = {.lex_state = 55, .external_lex_state = 5}, - [1376] = {.lex_state = 55, .external_lex_state = 5}, - [1377] = {.lex_state = 55, .external_lex_state = 5}, - [1378] = {.lex_state = 55, .external_lex_state = 2}, - [1379] = {.lex_state = 53, .external_lex_state = 2}, - [1380] = {.lex_state = 64, .external_lex_state = 5}, - [1381] = {.lex_state = 64, .external_lex_state = 5}, - [1382] = {.lex_state = 64, .external_lex_state = 5}, - [1383] = {.lex_state = 1321, .external_lex_state = 5}, - [1384] = {.lex_state = 64, .external_lex_state = 5}, - [1385] = {.lex_state = 1321, .external_lex_state = 5}, - [1386] = {.lex_state = 1321, .external_lex_state = 5}, - [1387] = {.lex_state = 1321, .external_lex_state = 5}, - [1388] = {.lex_state = 28, .external_lex_state = 2}, - [1389] = {.lex_state = 1321, .external_lex_state = 5}, - [1390] = {.lex_state = 64, .external_lex_state = 5}, - [1391] = {.lex_state = 1321, .external_lex_state = 5}, - [1392] = {.lex_state = 94, .external_lex_state = 5}, - [1393] = {.lex_state = 72, .external_lex_state = 5}, - [1394] = {.lex_state = 1321, .external_lex_state = 5}, - [1395] = {.lex_state = 64, .external_lex_state = 5}, - [1396] = {.lex_state = 37, .external_lex_state = 5}, - [1397] = {.lex_state = 64, .external_lex_state = 5}, - [1398] = {.lex_state = 64, .external_lex_state = 5}, - [1399] = {.lex_state = 54, .external_lex_state = 2}, - [1400] = {.lex_state = 55, .external_lex_state = 2}, - [1401] = {.lex_state = 1321, .external_lex_state = 5}, - [1402] = {.lex_state = 64, .external_lex_state = 5}, - [1403] = {.lex_state = 95, .external_lex_state = 5}, - [1404] = {.lex_state = 1321, .external_lex_state = 5}, - [1405] = {.lex_state = 64, .external_lex_state = 5}, - [1406] = {.lex_state = 64, .external_lex_state = 5}, - [1407] = {.lex_state = 1321, .external_lex_state = 5}, - [1408] = {.lex_state = 1321, .external_lex_state = 5}, - [1409] = {.lex_state = 64, .external_lex_state = 5}, - [1410] = {.lex_state = 64, .external_lex_state = 5}, - [1411] = {.lex_state = 64, .external_lex_state = 5}, - [1412] = {.lex_state = 64, .external_lex_state = 5}, - [1413] = {.lex_state = 64, .external_lex_state = 5}, - [1414] = {.lex_state = 64, .external_lex_state = 5}, - [1415] = {.lex_state = 64, .external_lex_state = 5}, - [1416] = {.lex_state = 1321, .external_lex_state = 5}, - [1417] = {.lex_state = 64, .external_lex_state = 5}, - [1418] = {.lex_state = 1321, .external_lex_state = 5}, - [1419] = {.lex_state = 64, .external_lex_state = 5}, - [1420] = {.lex_state = 64, .external_lex_state = 5}, - [1421] = {.lex_state = 64, .external_lex_state = 5}, - [1422] = {.lex_state = 64, .external_lex_state = 5}, - [1423] = {.lex_state = 64, .external_lex_state = 5}, - [1424] = {.lex_state = 64, .external_lex_state = 5}, - [1425] = {.lex_state = 64, .external_lex_state = 5}, - [1426] = {.lex_state = 64, .external_lex_state = 5}, - [1427] = {.lex_state = 54, .external_lex_state = 2}, - [1428] = {.lex_state = 73, .external_lex_state = 5}, - [1429] = {.lex_state = 28, .external_lex_state = 2}, - [1430] = {.lex_state = 53, .external_lex_state = 2}, - [1431] = {.lex_state = 1321, .external_lex_state = 5}, - [1432] = {.lex_state = 1321, .external_lex_state = 5}, - [1433] = {.lex_state = 1321, .external_lex_state = 5}, - [1434] = {.lex_state = 1321, .external_lex_state = 5}, - [1435] = {.lex_state = 1321, .external_lex_state = 5}, - [1436] = {.lex_state = 1321, .external_lex_state = 5}, - [1437] = {.lex_state = 1321, .external_lex_state = 5}, - [1438] = {.lex_state = 1321, .external_lex_state = 5}, - [1439] = {.lex_state = 1321, .external_lex_state = 5}, - [1440] = {.lex_state = 1321, .external_lex_state = 5}, - [1441] = {.lex_state = 1321, .external_lex_state = 5}, - [1442] = {.lex_state = 96, .external_lex_state = 5}, - [1443] = {.lex_state = 99, .external_lex_state = 5}, - [1444] = {.lex_state = 1321, .external_lex_state = 5}, - [1445] = {.lex_state = 1321, .external_lex_state = 5}, - [1446] = {.lex_state = 1321, .external_lex_state = 5}, - [1447] = {.lex_state = 28, .external_lex_state = 2}, - [1448] = {.lex_state = 31, .external_lex_state = 2}, - [1449] = {.lex_state = 28, .external_lex_state = 2}, - [1450] = {.lex_state = 31, .external_lex_state = 2}, - [1451] = {.lex_state = 105, .external_lex_state = 5}, - [1452] = {.lex_state = 102, .external_lex_state = 5}, - [1453] = {.lex_state = 1321, .external_lex_state = 5}, - [1454] = {.lex_state = 1322}, - [1455] = {.lex_state = 1321, .external_lex_state = 5}, - [1456] = {.lex_state = 1321, .external_lex_state = 5}, - [1457] = {.lex_state = 1321, .external_lex_state = 5}, - [1458] = {.lex_state = 192}, - [1459] = {.lex_state = 1321, .external_lex_state = 5}, - [1460] = {.lex_state = 192}, - [1461] = {.lex_state = 192}, - [1462] = {.lex_state = 1321, .external_lex_state = 5}, - [1463] = {.lex_state = 1321, .external_lex_state = 5}, - [1464] = {.lex_state = 106, .external_lex_state = 5}, - [1465] = {.lex_state = 1321, .external_lex_state = 5}, - [1466] = {.lex_state = 1321, .external_lex_state = 5}, - [1467] = {.lex_state = 1321, .external_lex_state = 5}, - [1468] = {.lex_state = 1321, .external_lex_state = 5}, - [1469] = {.lex_state = 1322}, - [1470] = {.lex_state = 1321, .external_lex_state = 5}, - [1471] = {.lex_state = 1321, .external_lex_state = 5}, - [1472] = {.lex_state = 1322}, - [1473] = {.lex_state = 1321, .external_lex_state = 5}, - [1474] = {.lex_state = 1321, .external_lex_state = 5}, - [1475] = {.lex_state = 1321, .external_lex_state = 5}, - [1476] = {.lex_state = 1321, .external_lex_state = 5}, - [1477] = {.lex_state = 1321, .external_lex_state = 5}, - [1478] = {.lex_state = 192}, - [1479] = {.lex_state = 1322}, - [1480] = {.lex_state = 1321, .external_lex_state = 5}, - [1481] = {.lex_state = 191}, - [1482] = {.lex_state = 192}, - [1483] = {.lex_state = 191}, - [1484] = {.lex_state = 1322}, - [1485] = {.lex_state = 1322}, - [1486] = {.lex_state = 1322}, - [1487] = {.lex_state = 192}, - [1488] = {.lex_state = 191}, - [1489] = {.lex_state = 67, .external_lex_state = 7}, - [1490] = {.lex_state = 192}, - [1491] = {.lex_state = 192}, - [1492] = {.lex_state = 1321, .external_lex_state = 5}, - [1493] = {.lex_state = 191}, - [1494] = {.lex_state = 1321, .external_lex_state = 5}, - [1495] = {.lex_state = 1321, .external_lex_state = 5}, - [1496] = {.lex_state = 1321, .external_lex_state = 5}, - [1497] = {.lex_state = 1321, .external_lex_state = 5}, - [1498] = {.lex_state = 1321, .external_lex_state = 5}, - [1499] = {.lex_state = 1322}, - [1500] = {.lex_state = 1321, .external_lex_state = 5}, - [1501] = {.lex_state = 1322}, - [1502] = {.lex_state = 192}, - [1503] = {.lex_state = 55, .external_lex_state = 5}, - [1504] = {.lex_state = 53, .external_lex_state = 5}, - [1505] = {.lex_state = 55, .external_lex_state = 5}, - [1506] = {.lex_state = 1321, .external_lex_state = 5}, - [1507] = {.lex_state = 55, .external_lex_state = 5}, - [1508] = {.lex_state = 55, .external_lex_state = 5}, - [1509] = {.lex_state = 55, .external_lex_state = 5}, - [1510] = {.lex_state = 1321, .external_lex_state = 2}, - [1511] = {.lex_state = 40}, - [1512] = {.lex_state = 55, .external_lex_state = 5}, - [1513] = {.lex_state = 1321, .external_lex_state = 2}, - [1514] = {.lex_state = 55, .external_lex_state = 5}, - [1515] = {.lex_state = 1321, .external_lex_state = 5}, - [1516] = {.lex_state = 1321, .external_lex_state = 5}, - [1517] = {.lex_state = 53, .external_lex_state = 5}, - [1518] = {.lex_state = 1321, .external_lex_state = 2}, - [1519] = {.lex_state = 1321, .external_lex_state = 5}, - [1520] = {.lex_state = 1321, .external_lex_state = 5}, - [1521] = {.lex_state = 1321, .external_lex_state = 5}, - [1522] = {.lex_state = 1321, .external_lex_state = 5}, - [1523] = {.lex_state = 1321, .external_lex_state = 5}, - [1524] = {.lex_state = 1321, .external_lex_state = 5}, - [1525] = {.lex_state = 1321, .external_lex_state = 5}, - [1526] = {.lex_state = 1321, .external_lex_state = 5}, - [1527] = {.lex_state = 1321, .external_lex_state = 5}, - [1528] = {.lex_state = 55, .external_lex_state = 5}, - [1529] = {.lex_state = 55, .external_lex_state = 5}, - [1530] = {.lex_state = 55, .external_lex_state = 5}, - [1531] = {.lex_state = 1321, .external_lex_state = 2}, - [1532] = {.lex_state = 55, .external_lex_state = 5}, - [1533] = {.lex_state = 55, .external_lex_state = 5}, - [1534] = {.lex_state = 70}, - [1535] = {.lex_state = 54, .external_lex_state = 5}, - [1536] = {.lex_state = 109, .external_lex_state = 5}, - [1537] = {.lex_state = 55, .external_lex_state = 3}, - [1538] = {.lex_state = 1321, .external_lex_state = 2}, - [1539] = {.lex_state = 55, .external_lex_state = 5}, - [1540] = {.lex_state = 71, .external_lex_state = 5}, - [1541] = {.lex_state = 40}, - [1542] = {.lex_state = 107, .external_lex_state = 5}, - [1543] = {.lex_state = 54, .external_lex_state = 5}, - [1544] = {.lex_state = 55, .external_lex_state = 3}, - [1545] = {.lex_state = 40}, - [1546] = {.lex_state = 40}, - [1547] = {.lex_state = 40}, - [1548] = {.lex_state = 1322}, - [1549] = {.lex_state = 192}, - [1550] = {.lex_state = 192}, - [1551] = {.lex_state = 192}, - [1552] = {.lex_state = 192}, - [1553] = {.lex_state = 192}, - [1554] = {.lex_state = 192}, - [1555] = {.lex_state = 192}, - [1556] = {.lex_state = 1322}, - [1557] = {.lex_state = 1322}, - [1558] = {.lex_state = 1322}, - [1559] = {.lex_state = 1322}, - [1560] = {.lex_state = 192}, - [1561] = {.lex_state = 1322}, - [1562] = {.lex_state = 1322}, - [1563] = {.lex_state = 192}, - [1564] = {.lex_state = 1322}, - [1565] = {.lex_state = 1322}, - [1566] = {.lex_state = 192}, - [1567] = {.lex_state = 192}, - [1568] = {.lex_state = 53, .external_lex_state = 5}, - [1569] = {.lex_state = 192}, - [1570] = {.lex_state = 1321, .external_lex_state = 5}, - [1571] = {.lex_state = 192}, - [1572] = {.lex_state = 1321, .external_lex_state = 5}, - [1573] = {.lex_state = 192}, - [1574] = {.lex_state = 192}, - [1575] = {.lex_state = 192}, - [1576] = {.lex_state = 192}, - [1577] = {.lex_state = 192}, - [1578] = {.lex_state = 1321, .external_lex_state = 5}, - [1579] = {.lex_state = 1321, .external_lex_state = 5}, - [1580] = {.lex_state = 1321, .external_lex_state = 5}, - [1581] = {.lex_state = 192}, - [1582] = {.lex_state = 192}, - [1583] = {.lex_state = 192}, - [1584] = {.lex_state = 29, .external_lex_state = 5}, - [1585] = {.lex_state = 192}, - [1586] = {.lex_state = 192}, - [1587] = {.lex_state = 192}, - [1588] = {.lex_state = 192}, - [1589] = {.lex_state = 1322}, - [1590] = {.lex_state = 1322}, - [1591] = {.lex_state = 1322}, - [1592] = {.lex_state = 192}, - [1593] = {.lex_state = 192}, - [1594] = {.lex_state = 192}, - [1595] = {.lex_state = 192}, - [1596] = {.lex_state = 192}, - [1597] = {.lex_state = 192}, - [1598] = {.lex_state = 192}, - [1599] = {.lex_state = 192}, - [1600] = {.lex_state = 192}, - [1601] = {.lex_state = 192}, - [1602] = {.lex_state = 192}, - [1603] = {.lex_state = 1322}, - [1604] = {.lex_state = 1322}, - [1605] = {.lex_state = 1322}, - [1606] = {.lex_state = 192}, - [1607] = {.lex_state = 192}, - [1608] = {.lex_state = 192}, - [1609] = {.lex_state = 192}, - [1610] = {.lex_state = 192}, - [1611] = {.lex_state = 1321, .external_lex_state = 5}, - [1612] = {.lex_state = 192}, - [1613] = {.lex_state = 192}, - [1614] = {.lex_state = 192}, - [1615] = {.lex_state = 192}, - [1616] = {.lex_state = 1322}, - [1617] = {.lex_state = 1322}, - [1618] = {.lex_state = 1322}, - [1619] = {.lex_state = 192}, - [1620] = {.lex_state = 192}, - [1621] = {.lex_state = 192}, - [1622] = {.lex_state = 192}, - [1623] = {.lex_state = 192}, - [1624] = {.lex_state = 192}, - [1625] = {.lex_state = 192}, - [1626] = {.lex_state = 1322}, - [1627] = {.lex_state = 192}, - [1628] = {.lex_state = 192}, - [1629] = {.lex_state = 192}, - [1630] = {.lex_state = 192}, - [1631] = {.lex_state = 1322}, - [1632] = {.lex_state = 1322}, - [1633] = {.lex_state = 192}, - [1634] = {.lex_state = 192}, - [1635] = {.lex_state = 192}, - [1636] = {.lex_state = 192}, - [1637] = {.lex_state = 1322}, - [1638] = {.lex_state = 192}, - [1639] = {.lex_state = 192}, - [1640] = {.lex_state = 1322}, - [1641] = {.lex_state = 1322}, - [1642] = {.lex_state = 1322}, - [1643] = {.lex_state = 192}, - [1644] = {.lex_state = 1322}, - [1645] = {.lex_state = 1322}, - [1646] = {.lex_state = 192}, - [1647] = {.lex_state = 192}, - [1648] = {.lex_state = 192}, - [1649] = {.lex_state = 192}, - [1650] = {.lex_state = 192}, - [1651] = {.lex_state = 192}, - [1652] = {.lex_state = 192}, - [1653] = {.lex_state = 192}, - [1654] = {.lex_state = 192}, - [1655] = {.lex_state = 192}, - [1656] = {.lex_state = 1322}, - [1657] = {.lex_state = 192}, - [1658] = {.lex_state = 192}, - [1659] = {.lex_state = 192}, - [1660] = {.lex_state = 192}, - [1661] = {.lex_state = 192}, - [1662] = {.lex_state = 192}, - [1663] = {.lex_state = 192}, - [1664] = {.lex_state = 192}, - [1665] = {.lex_state = 192}, - [1666] = {.lex_state = 192}, - [1667] = {.lex_state = 1321, .external_lex_state = 5}, - [1668] = {.lex_state = 1321, .external_lex_state = 5}, - [1669] = {.lex_state = 192}, - [1670] = {.lex_state = 192}, - [1671] = {.lex_state = 192}, - [1672] = {.lex_state = 192}, - [1673] = {.lex_state = 192}, - [1674] = {.lex_state = 192}, - [1675] = {.lex_state = 1321, .external_lex_state = 5}, - [1676] = {.lex_state = 1321, .external_lex_state = 5}, - [1677] = {.lex_state = 1321, .external_lex_state = 5}, - [1678] = {.lex_state = 192}, - [1679] = {.lex_state = 192}, - [1680] = {.lex_state = 192}, - [1681] = {.lex_state = 192}, - [1682] = {.lex_state = 192}, - [1683] = {.lex_state = 1321, .external_lex_state = 5}, - [1684] = {.lex_state = 192}, - [1685] = {.lex_state = 1321, .external_lex_state = 5}, - [1686] = {.lex_state = 192}, - [1687] = {.lex_state = 192}, - [1688] = {.lex_state = 192}, - [1689] = {.lex_state = 192}, - [1690] = {.lex_state = 192}, - [1691] = {.lex_state = 192}, - [1692] = {.lex_state = 192}, - [1693] = {.lex_state = 1322}, - [1694] = {.lex_state = 1322}, - [1695] = {.lex_state = 192}, - [1696] = {.lex_state = 192}, - [1697] = {.lex_state = 192}, - [1698] = {.lex_state = 192}, - [1699] = {.lex_state = 53, .external_lex_state = 3}, - [1700] = {.lex_state = 1321, .external_lex_state = 5}, - [1701] = {.lex_state = 1321, .external_lex_state = 5}, - [1702] = {.lex_state = 1321, .external_lex_state = 5}, - [1703] = {.lex_state = 1321, .external_lex_state = 5}, - [1704] = {.lex_state = 1321, .external_lex_state = 5}, - [1705] = {.lex_state = 192}, - [1706] = {.lex_state = 1321, .external_lex_state = 5}, - [1707] = {.lex_state = 1321, .external_lex_state = 5}, - [1708] = {.lex_state = 192}, - [1709] = {.lex_state = 192}, - [1710] = {.lex_state = 192}, - [1711] = {.lex_state = 192}, - [1712] = {.lex_state = 192}, - [1713] = {.lex_state = 192}, - [1714] = {.lex_state = 192}, - [1715] = {.lex_state = 192}, - [1716] = {.lex_state = 192}, - [1717] = {.lex_state = 192}, - [1718] = {.lex_state = 192}, - [1719] = {.lex_state = 1321, .external_lex_state = 5}, - [1720] = {.lex_state = 192}, - [1721] = {.lex_state = 192}, - [1722] = {.lex_state = 192}, - [1723] = {.lex_state = 1321, .external_lex_state = 5}, - [1724] = {.lex_state = 192}, - [1725] = {.lex_state = 1321, .external_lex_state = 5}, - [1726] = {.lex_state = 1321, .external_lex_state = 5}, - [1727] = {.lex_state = 192}, - [1728] = {.lex_state = 192}, - [1729] = {.lex_state = 192}, - [1730] = {.lex_state = 192}, - [1731] = {.lex_state = 1322}, - [1732] = {.lex_state = 192}, - [1733] = {.lex_state = 53, .external_lex_state = 5}, - [1734] = {.lex_state = 53, .external_lex_state = 5}, - [1735] = {.lex_state = 53, .external_lex_state = 5}, - [1736] = {.lex_state = 53, .external_lex_state = 5}, - [1737] = {.lex_state = 53, .external_lex_state = 5}, - [1738] = {.lex_state = 53, .external_lex_state = 3}, - [1739] = {.lex_state = 192}, - [1740] = {.lex_state = 192}, - [1741] = {.lex_state = 192}, - [1742] = {.lex_state = 192}, - [1743] = {.lex_state = 192}, - [1744] = {.lex_state = 192}, - [1745] = {.lex_state = 192}, - [1746] = {.lex_state = 192}, - [1747] = {.lex_state = 192}, - [1748] = {.lex_state = 192}, - [1749] = {.lex_state = 1321, .external_lex_state = 5}, - [1750] = {.lex_state = 1321, .external_lex_state = 5}, - [1751] = {.lex_state = 1321, .external_lex_state = 5}, - [1752] = {.lex_state = 192}, - [1753] = {.lex_state = 192}, - [1754] = {.lex_state = 192}, - [1755] = {.lex_state = 192}, - [1756] = {.lex_state = 192}, - [1757] = {.lex_state = 192}, - [1758] = {.lex_state = 1321, .external_lex_state = 5}, - [1759] = {.lex_state = 192}, - [1760] = {.lex_state = 192}, - [1761] = {.lex_state = 192}, - [1762] = {.lex_state = 192}, - [1763] = {.lex_state = 192}, - [1764] = {.lex_state = 53, .external_lex_state = 5}, - [1765] = {.lex_state = 53, .external_lex_state = 5}, - [1766] = {.lex_state = 192}, - [1767] = {.lex_state = 53, .external_lex_state = 5}, - [1768] = {.lex_state = 53, .external_lex_state = 5}, - [1769] = {.lex_state = 192}, - [1770] = {.lex_state = 192}, - [1771] = {.lex_state = 192}, - [1772] = {.lex_state = 53, .external_lex_state = 5}, - [1773] = {.lex_state = 53, .external_lex_state = 5}, - [1774] = {.lex_state = 192}, - [1775] = {.lex_state = 192}, - [1776] = {.lex_state = 55, .external_lex_state = 3}, - [1777] = {.lex_state = 192}, - [1778] = {.lex_state = 192}, - [1779] = {.lex_state = 192}, - [1780] = {.lex_state = 192}, - [1781] = {.lex_state = 192}, - [1782] = {.lex_state = 192}, - [1783] = {.lex_state = 40}, - [1784] = {.lex_state = 192}, - [1785] = {.lex_state = 192}, - [1786] = {.lex_state = 192}, - [1787] = {.lex_state = 192}, - [1788] = {.lex_state = 192}, - [1789] = {.lex_state = 192}, - [1790] = {.lex_state = 192}, - [1791] = {.lex_state = 192}, - [1792] = {.lex_state = 192}, - [1793] = {.lex_state = 192}, - [1794] = {.lex_state = 192}, - [1795] = {.lex_state = 192}, - [1796] = {.lex_state = 192}, - [1797] = {.lex_state = 192}, - [1798] = {.lex_state = 1322}, - [1799] = {.lex_state = 1322}, - [1800] = {.lex_state = 1322}, - [1801] = {.lex_state = 1322}, - [1802] = {.lex_state = 1322}, - [1803] = {.lex_state = 1322}, - [1804] = {.lex_state = 1322}, - [1805] = {.lex_state = 1322}, - [1806] = {.lex_state = 1322}, - [1807] = {.lex_state = 1322}, - [1808] = {.lex_state = 1322}, - [1809] = {.lex_state = 1322}, - [1810] = {.lex_state = 1322}, - [1811] = {.lex_state = 1322}, - [1812] = {.lex_state = 1322}, - [1813] = {.lex_state = 1322}, - [1814] = {.lex_state = 1322}, - [1815] = {.lex_state = 1322}, - [1816] = {.lex_state = 1322}, - [1817] = {.lex_state = 1322}, - [1818] = {.lex_state = 1322}, - [1819] = {.lex_state = 1322}, - [1820] = {.lex_state = 1322}, - [1821] = {.lex_state = 1322}, - [1822] = {.lex_state = 1322}, - [1823] = {.lex_state = 1322}, - [1824] = {.lex_state = 1322}, - [1825] = {.lex_state = 1322}, - [1826] = {.lex_state = 1322}, - [1827] = {.lex_state = 1322}, - [1828] = {.lex_state = 1322}, - [1829] = {.lex_state = 192}, - [1830] = {.lex_state = 1322}, - [1831] = {.lex_state = 1322}, - [1832] = {.lex_state = 1322}, - [1833] = {.lex_state = 1322}, - [1834] = {.lex_state = 1322}, - [1835] = {.lex_state = 1322}, - [1836] = {.lex_state = 1322}, - [1837] = {.lex_state = 1322}, - [1838] = {.lex_state = 1322}, - [1839] = {.lex_state = 1322}, - [1840] = {.lex_state = 1322}, - [1841] = {.lex_state = 1322}, - [1842] = {.lex_state = 1322}, - [1843] = {.lex_state = 1322}, - [1844] = {.lex_state = 1322}, - [1845] = {.lex_state = 1322}, - [1846] = {.lex_state = 1322}, - [1847] = {.lex_state = 1322}, - [1848] = {.lex_state = 192}, - [1849] = {.lex_state = 1322}, - [1850] = {.lex_state = 192}, - [1851] = {.lex_state = 192}, - [1852] = {.lex_state = 1322}, - [1853] = {.lex_state = 1322}, - [1854] = {.lex_state = 1322}, - [1855] = {.lex_state = 1322}, - [1856] = {.lex_state = 1322}, - [1857] = {.lex_state = 1322}, - [1858] = {.lex_state = 1322}, - [1859] = {.lex_state = 1322}, - [1860] = {.lex_state = 1322}, - [1861] = {.lex_state = 1322}, - [1862] = {.lex_state = 1322}, - [1863] = {.lex_state = 1322}, - [1864] = {.lex_state = 1322}, - [1865] = {.lex_state = 1322}, - [1866] = {.lex_state = 1322}, - [1867] = {.lex_state = 1322}, - [1868] = {.lex_state = 1322}, - [1869] = {.lex_state = 1322}, - [1870] = {.lex_state = 1322}, - [1871] = {.lex_state = 1322}, - [1872] = {.lex_state = 1322}, - [1873] = {.lex_state = 1322}, - [1874] = {.lex_state = 1322}, - [1875] = {.lex_state = 1322}, - [1876] = {.lex_state = 1322}, - [1877] = {.lex_state = 1322}, - [1878] = {.lex_state = 54, .external_lex_state = 5}, - [1879] = {.lex_state = 1322}, - [1880] = {.lex_state = 192}, - [1881] = {.lex_state = 1322}, - [1882] = {.lex_state = 1322}, - [1883] = {.lex_state = 192}, - [1884] = {.lex_state = 1322}, - [1885] = {.lex_state = 1322}, - [1886] = {.lex_state = 192}, - [1887] = {.lex_state = 192}, - [1888] = {.lex_state = 192}, - [1889] = {.lex_state = 192}, - [1890] = {.lex_state = 1321, .external_lex_state = 5}, - [1891] = {.lex_state = 54, .external_lex_state = 5}, - [1892] = {.lex_state = 1322}, - [1893] = {.lex_state = 1322}, - [1894] = {.lex_state = 1322}, - [1895] = {.lex_state = 54, .external_lex_state = 5}, - [1896] = {.lex_state = 55, .external_lex_state = 5}, - [1897] = {.lex_state = 54, .external_lex_state = 5}, - [1898] = {.lex_state = 54, .external_lex_state = 5}, - [1899] = {.lex_state = 54, .external_lex_state = 5}, - [1900] = {.lex_state = 54, .external_lex_state = 5}, - [1901] = {.lex_state = 54, .external_lex_state = 5}, - [1902] = {.lex_state = 1322}, - [1903] = {.lex_state = 1322}, - [1904] = {.lex_state = 1322}, - [1905] = {.lex_state = 1322}, - [1906] = {.lex_state = 1322}, - [1907] = {.lex_state = 1322}, - [1908] = {.lex_state = 1322}, - [1909] = {.lex_state = 1322}, - [1910] = {.lex_state = 54, .external_lex_state = 5}, - [1911] = {.lex_state = 54, .external_lex_state = 5}, - [1912] = {.lex_state = 54, .external_lex_state = 5}, - [1913] = {.lex_state = 1322}, - [1914] = {.lex_state = 54, .external_lex_state = 5}, - [1915] = {.lex_state = 28, .external_lex_state = 5}, - [1916] = {.lex_state = 1322}, - [1917] = {.lex_state = 1322}, - [1918] = {.lex_state = 1322}, - [1919] = {.lex_state = 54, .external_lex_state = 3}, - [1920] = {.lex_state = 28, .external_lex_state = 5}, - [1921] = {.lex_state = 28, .external_lex_state = 5}, - [1922] = {.lex_state = 28, .external_lex_state = 5}, - [1923] = {.lex_state = 28, .external_lex_state = 5}, - [1924] = {.lex_state = 28, .external_lex_state = 5}, - [1925] = {.lex_state = 1322}, - [1926] = {.lex_state = 1322}, - [1927] = {.lex_state = 28, .external_lex_state = 5}, - [1928] = {.lex_state = 54, .external_lex_state = 3}, - [1929] = {.lex_state = 1322}, - [1930] = {.lex_state = 28, .external_lex_state = 5}, - [1931] = {.lex_state = 28, .external_lex_state = 5}, - [1932] = {.lex_state = 28, .external_lex_state = 5}, - [1933] = {.lex_state = 28, .external_lex_state = 5}, - [1934] = {.lex_state = 28, .external_lex_state = 5}, - [1935] = {.lex_state = 28, .external_lex_state = 5}, - [1936] = {.lex_state = 1321, .external_lex_state = 5}, - [1937] = {.lex_state = 28, .external_lex_state = 3}, - [1938] = {.lex_state = 1322}, - [1939] = {.lex_state = 1322}, - [1940] = {.lex_state = 1322}, - [1941] = {.lex_state = 1322}, - [1942] = {.lex_state = 1322}, - [1943] = {.lex_state = 1322}, - [1944] = {.lex_state = 1322}, - [1945] = {.lex_state = 1322}, - [1946] = {.lex_state = 1322}, - [1947] = {.lex_state = 1322}, - [1948] = {.lex_state = 1322}, - [1949] = {.lex_state = 1322}, - [1950] = {.lex_state = 1322}, - [1951] = {.lex_state = 1322}, - [1952] = {.lex_state = 1322}, - [1953] = {.lex_state = 1322}, - [1954] = {.lex_state = 1322}, - [1955] = {.lex_state = 65, .external_lex_state = 7}, - [1956] = {.lex_state = 1322}, - [1957] = {.lex_state = 1322}, - [1958] = {.lex_state = 1322}, - [1959] = {.lex_state = 28, .external_lex_state = 3}, - [1960] = {.lex_state = 1322}, - [1961] = {.lex_state = 1322}, - [1962] = {.lex_state = 1321, .external_lex_state = 5}, - [1963] = {.lex_state = 1322}, - [1964] = {.lex_state = 1322}, - [1965] = {.lex_state = 1322}, - [1966] = {.lex_state = 110, .external_lex_state = 5}, - [1967] = {.lex_state = 108, .external_lex_state = 5}, - [1968] = {.lex_state = 67, .external_lex_state = 7}, - [1969] = {.lex_state = 67, .external_lex_state = 7}, - [1970] = {.lex_state = 65, .external_lex_state = 7}, - [1971] = {.lex_state = 1322}, - [1972] = {.lex_state = 1322}, - [1973] = {.lex_state = 1322}, - [1974] = {.lex_state = 1322}, - [1975] = {.lex_state = 1322}, - [1976] = {.lex_state = 65, .external_lex_state = 7}, - [1977] = {.lex_state = 1322}, - [1978] = {.lex_state = 1322}, - [1979] = {.lex_state = 1322}, - [1980] = {.lex_state = 1322}, - [1981] = {.lex_state = 1322}, - [1982] = {.lex_state = 1322}, - [1983] = {.lex_state = 1322}, - [1984] = {.lex_state = 1322}, - [1985] = {.lex_state = 1322}, - [1986] = {.lex_state = 1322}, - [1987] = {.lex_state = 1322}, - [1988] = {.lex_state = 1322}, - [1989] = {.lex_state = 1322}, - [1990] = {.lex_state = 1322}, - [1991] = {.lex_state = 1322}, - [1992] = {.lex_state = 1322}, - [1993] = {.lex_state = 1322}, - [1994] = {.lex_state = 1322}, - [1995] = {.lex_state = 1322}, - [1996] = {.lex_state = 1322}, - [1997] = {.lex_state = 1322}, - [1998] = {.lex_state = 1322}, - [1999] = {.lex_state = 1322}, - [2000] = {.lex_state = 1322}, - [2001] = {.lex_state = 193}, - [2002] = {.lex_state = 1323}, - [2003] = {.lex_state = 1323}, - [2004] = {.lex_state = 55, .external_lex_state = 4}, - [2005] = {.lex_state = 31, .external_lex_state = 5}, - [2006] = {.lex_state = 28, .external_lex_state = 5}, - [2007] = {.lex_state = 31, .external_lex_state = 5}, - [2008] = {.lex_state = 31, .external_lex_state = 5}, - [2009] = {.lex_state = 1323}, - [2010] = {.lex_state = 31, .external_lex_state = 5}, - [2011] = {.lex_state = 31, .external_lex_state = 5}, - [2012] = {.lex_state = 1323}, - [2013] = {.lex_state = 1321, .external_lex_state = 5}, - [2014] = {.lex_state = 1321, .external_lex_state = 5}, - [2015] = {.lex_state = 31, .external_lex_state = 5}, - [2016] = {.lex_state = 1321, .external_lex_state = 5}, - [2017] = {.lex_state = 1321, .external_lex_state = 5}, - [2018] = {.lex_state = 55, .external_lex_state = 4}, - [2019] = {.lex_state = 1321, .external_lex_state = 5}, - [2020] = {.lex_state = 1323}, - [2021] = {.lex_state = 31, .external_lex_state = 5}, - [2022] = {.lex_state = 1323}, - [2023] = {.lex_state = 1321, .external_lex_state = 5}, - [2024] = {.lex_state = 31, .external_lex_state = 5}, - [2025] = {.lex_state = 1323}, - [2026] = {.lex_state = 31, .external_lex_state = 5}, - [2027] = {.lex_state = 31, .external_lex_state = 5}, - [2028] = {.lex_state = 1323}, - [2029] = {.lex_state = 1323}, - [2030] = {.lex_state = 1323}, - [2031] = {.lex_state = 1321, .external_lex_state = 5}, - [2032] = {.lex_state = 31, .external_lex_state = 5}, - [2033] = {.lex_state = 1323}, - [2034] = {.lex_state = 193}, - [2035] = {.lex_state = 55, .external_lex_state = 5}, - [2036] = {.lex_state = 1323}, - [2037] = {.lex_state = 1323}, - [2038] = {.lex_state = 1323}, - [2039] = {.lex_state = 1323}, - [2040] = {.lex_state = 1323}, - [2041] = {.lex_state = 1323}, - [2042] = {.lex_state = 37, .external_lex_state = 11}, - [2043] = {.lex_state = 31, .external_lex_state = 5}, - [2044] = {.lex_state = 1323}, - [2045] = {.lex_state = 1321, .external_lex_state = 5}, - [2046] = {.lex_state = 1323}, - [2047] = {.lex_state = 1323}, - [2048] = {.lex_state = 1323}, - [2049] = {.lex_state = 1323}, - [2050] = {.lex_state = 1323}, - [2051] = {.lex_state = 1323}, - [2052] = {.lex_state = 1321, .external_lex_state = 5}, - [2053] = {.lex_state = 1321, .external_lex_state = 5}, - [2054] = {.lex_state = 193}, - [2055] = {.lex_state = 1321, .external_lex_state = 5}, - [2056] = {.lex_state = 1321, .external_lex_state = 5}, - [2057] = {.lex_state = 1323}, - [2058] = {.lex_state = 193}, - [2059] = {.lex_state = 193}, - [2060] = {.lex_state = 28, .external_lex_state = 3}, - [2061] = {.lex_state = 193}, - [2062] = {.lex_state = 193}, - [2063] = {.lex_state = 193}, - [2064] = {.lex_state = 113, .external_lex_state = 5}, - [2065] = {.lex_state = 1323}, - [2066] = {.lex_state = 31, .external_lex_state = 3}, - [2067] = {.lex_state = 1323}, - [2068] = {.lex_state = 1323}, - [2069] = {.lex_state = 193}, - [2070] = {.lex_state = 193}, - [2071] = {.lex_state = 193}, - [2072] = {.lex_state = 193}, - [2073] = {.lex_state = 193}, - [2074] = {.lex_state = 193}, - [2075] = {.lex_state = 193}, - [2076] = {.lex_state = 193}, - [2077] = {.lex_state = 193}, - [2078] = {.lex_state = 193}, - [2079] = {.lex_state = 193}, - [2080] = {.lex_state = 193}, - [2081] = {.lex_state = 193}, - [2082] = {.lex_state = 193}, - [2083] = {.lex_state = 193}, - [2084] = {.lex_state = 193}, - [2085] = {.lex_state = 193}, - [2086] = {.lex_state = 193}, - [2087] = {.lex_state = 1323}, - [2088] = {.lex_state = 1323}, - [2089] = {.lex_state = 1323}, - [2090] = {.lex_state = 193}, - [2091] = {.lex_state = 193}, - [2092] = {.lex_state = 28, .external_lex_state = 5}, - [2093] = {.lex_state = 28, .external_lex_state = 5}, - [2094] = {.lex_state = 193}, - [2095] = {.lex_state = 1323}, - [2096] = {.lex_state = 28, .external_lex_state = 5}, - [2097] = {.lex_state = 193}, - [2098] = {.lex_state = 1323}, - [2099] = {.lex_state = 1323}, - [2100] = {.lex_state = 54, .external_lex_state = 3}, - [2101] = {.lex_state = 28, .external_lex_state = 5}, - [2102] = {.lex_state = 193}, - [2103] = {.lex_state = 193}, - [2104] = {.lex_state = 193}, - [2105] = {.lex_state = 28, .external_lex_state = 5}, - [2106] = {.lex_state = 1323}, - [2107] = {.lex_state = 193}, - [2108] = {.lex_state = 193}, - [2109] = {.lex_state = 193}, - [2110] = {.lex_state = 193}, - [2111] = {.lex_state = 193}, - [2112] = {.lex_state = 193}, - [2113] = {.lex_state = 193}, - [2114] = {.lex_state = 193}, - [2115] = {.lex_state = 193}, - [2116] = {.lex_state = 193}, - [2117] = {.lex_state = 193}, - [2118] = {.lex_state = 193}, - [2119] = {.lex_state = 193}, - [2120] = {.lex_state = 28, .external_lex_state = 5}, - [2121] = {.lex_state = 111, .external_lex_state = 5}, - [2122] = {.lex_state = 1323}, - [2123] = {.lex_state = 1323}, - [2124] = {.lex_state = 1323}, - [2125] = {.lex_state = 1323}, - [2126] = {.lex_state = 1323}, - [2127] = {.lex_state = 193}, - [2128] = {.lex_state = 193}, - [2129] = {.lex_state = 193}, - [2130] = {.lex_state = 193}, - [2131] = {.lex_state = 193}, - [2132] = {.lex_state = 193}, - [2133] = {.lex_state = 193}, - [2134] = {.lex_state = 193}, - [2135] = {.lex_state = 193}, - [2136] = {.lex_state = 193}, - [2137] = {.lex_state = 1323}, - [2138] = {.lex_state = 1323}, - [2139] = {.lex_state = 1323}, - [2140] = {.lex_state = 193}, - [2141] = {.lex_state = 1323}, - [2142] = {.lex_state = 1323}, - [2143] = {.lex_state = 28, .external_lex_state = 5}, - [2144] = {.lex_state = 193}, - [2145] = {.lex_state = 1323}, - [2146] = {.lex_state = 1323}, - [2147] = {.lex_state = 1323}, - [2148] = {.lex_state = 31, .external_lex_state = 3}, - [2149] = {.lex_state = 1321, .external_lex_state = 5}, - [2150] = {.lex_state = 193}, - [2151] = {.lex_state = 193}, - [2152] = {.lex_state = 193}, - [2153] = {.lex_state = 193}, - [2154] = {.lex_state = 1323}, - [2155] = {.lex_state = 54, .external_lex_state = 5}, - [2156] = {.lex_state = 193}, - [2157] = {.lex_state = 193}, - [2158] = {.lex_state = 28, .external_lex_state = 5}, - [2159] = {.lex_state = 193}, - [2160] = {.lex_state = 193}, - [2161] = {.lex_state = 193}, - [2162] = {.lex_state = 193}, - [2163] = {.lex_state = 193}, - [2164] = {.lex_state = 193}, - [2165] = {.lex_state = 193}, - [2166] = {.lex_state = 193}, - [2167] = {.lex_state = 193}, - [2168] = {.lex_state = 193}, - [2169] = {.lex_state = 28, .external_lex_state = 5}, - [2170] = {.lex_state = 28, .external_lex_state = 5}, - [2171] = {.lex_state = 193}, - [2172] = {.lex_state = 193}, - [2173] = {.lex_state = 28, .external_lex_state = 5}, - [2174] = {.lex_state = 28, .external_lex_state = 5}, - [2175] = {.lex_state = 1323}, - [2176] = {.lex_state = 1323}, - [2177] = {.lex_state = 193}, - [2178] = {.lex_state = 193}, - [2179] = {.lex_state = 193}, - [2180] = {.lex_state = 193}, - [2181] = {.lex_state = 193}, - [2182] = {.lex_state = 193}, - [2183] = {.lex_state = 28, .external_lex_state = 5}, - [2184] = {.lex_state = 1323}, - [2185] = {.lex_state = 1323}, - [2186] = {.lex_state = 55, .external_lex_state = 4}, - [2187] = {.lex_state = 53, .external_lex_state = 5}, - [2188] = {.lex_state = 1323}, - [2189] = {.lex_state = 193}, - [2190] = {.lex_state = 55, .external_lex_state = 6}, - [2191] = {.lex_state = 1323}, - [2192] = {.lex_state = 1323}, - [2193] = {.lex_state = 193}, - [2194] = {.lex_state = 193}, - [2195] = {.lex_state = 193}, - [2196] = {.lex_state = 193}, - [2197] = {.lex_state = 193}, - [2198] = {.lex_state = 28, .external_lex_state = 3}, - [2199] = {.lex_state = 1323}, - [2200] = {.lex_state = 37, .external_lex_state = 11}, - [2201] = {.lex_state = 1323}, - [2202] = {.lex_state = 193}, - [2203] = {.lex_state = 193}, - [2204] = {.lex_state = 1323}, - [2205] = {.lex_state = 1323}, - [2206] = {.lex_state = 1323}, - [2207] = {.lex_state = 55, .external_lex_state = 4}, - [2208] = {.lex_state = 1323}, - [2209] = {.lex_state = 1323}, - [2210] = {.lex_state = 193}, - [2211] = {.lex_state = 193}, - [2212] = {.lex_state = 28, .external_lex_state = 3}, - [2213] = {.lex_state = 37, .external_lex_state = 11}, - [2214] = {.lex_state = 1323}, - [2215] = {.lex_state = 1323}, - [2216] = {.lex_state = 1323}, - [2217] = {.lex_state = 1323}, - [2218] = {.lex_state = 193}, - [2219] = {.lex_state = 193}, - [2220] = {.lex_state = 193}, - [2221] = {.lex_state = 193}, - [2222] = {.lex_state = 1323}, - [2223] = {.lex_state = 193}, - [2224] = {.lex_state = 55, .external_lex_state = 6}, - [2225] = {.lex_state = 193}, - [2226] = {.lex_state = 193}, - [2227] = {.lex_state = 193}, - [2228] = {.lex_state = 193}, - [2229] = {.lex_state = 193}, - [2230] = {.lex_state = 193}, - [2231] = {.lex_state = 1323}, - [2232] = {.lex_state = 1323}, - [2233] = {.lex_state = 1323}, - [2234] = {.lex_state = 193}, - [2235] = {.lex_state = 193}, - [2236] = {.lex_state = 193}, - [2237] = {.lex_state = 193}, - [2238] = {.lex_state = 193}, - [2239] = {.lex_state = 193}, - [2240] = {.lex_state = 193}, - [2241] = {.lex_state = 193}, - [2242] = {.lex_state = 193}, - [2243] = {.lex_state = 1323}, - [2244] = {.lex_state = 1323}, - [2245] = {.lex_state = 1323}, - [2246] = {.lex_state = 193}, - [2247] = {.lex_state = 1323}, - [2248] = {.lex_state = 1323}, - [2249] = {.lex_state = 1321, .external_lex_state = 5}, - [2250] = {.lex_state = 193}, - [2251] = {.lex_state = 193}, - [2252] = {.lex_state = 193}, - [2253] = {.lex_state = 193}, - [2254] = {.lex_state = 193}, - [2255] = {.lex_state = 193}, - [2256] = {.lex_state = 1323}, - [2257] = {.lex_state = 193}, - [2258] = {.lex_state = 1323}, - [2259] = {.lex_state = 193}, - [2260] = {.lex_state = 193}, - [2261] = {.lex_state = 193}, - [2262] = {.lex_state = 1323}, - [2263] = {.lex_state = 193}, - [2264] = {.lex_state = 1323}, - [2265] = {.lex_state = 193}, - [2266] = {.lex_state = 37, .external_lex_state = 11}, - [2267] = {.lex_state = 1323}, - [2268] = {.lex_state = 193}, - [2269] = {.lex_state = 193}, - [2270] = {.lex_state = 1323}, - [2271] = {.lex_state = 1323}, - [2272] = {.lex_state = 193}, - [2273] = {.lex_state = 1323}, - [2274] = {.lex_state = 193}, - [2275] = {.lex_state = 193}, - [2276] = {.lex_state = 193}, - [2277] = {.lex_state = 193}, - [2278] = {.lex_state = 193}, - [2279] = {.lex_state = 193}, - [2280] = {.lex_state = 193}, - [2281] = {.lex_state = 193}, - [2282] = {.lex_state = 193}, - [2283] = {.lex_state = 1323}, - [2284] = {.lex_state = 1323}, - [2285] = {.lex_state = 31, .external_lex_state = 5}, - [2286] = {.lex_state = 37, .external_lex_state = 11}, - [2287] = {.lex_state = 1323}, - [2288] = {.lex_state = 1323}, - [2289] = {.lex_state = 1323}, - [2290] = {.lex_state = 1323}, - [2291] = {.lex_state = 193}, - [2292] = {.lex_state = 193}, - [2293] = {.lex_state = 193}, - [2294] = {.lex_state = 193}, - [2295] = {.lex_state = 193}, - [2296] = {.lex_state = 193}, - [2297] = {.lex_state = 193}, - [2298] = {.lex_state = 193}, - [2299] = {.lex_state = 193}, - [2300] = {.lex_state = 1323}, - [2301] = {.lex_state = 193}, - [2302] = {.lex_state = 193}, - [2303] = {.lex_state = 1323}, - [2304] = {.lex_state = 1323}, - [2305] = {.lex_state = 193}, - [2306] = {.lex_state = 193}, - [2307] = {.lex_state = 1323}, - [2308] = {.lex_state = 1323}, - [2309] = {.lex_state = 1323}, - [2310] = {.lex_state = 193}, - [2311] = {.lex_state = 1323}, - [2312] = {.lex_state = 193}, - [2313] = {.lex_state = 193}, - [2314] = {.lex_state = 193}, - [2315] = {.lex_state = 193}, - [2316] = {.lex_state = 193}, - [2317] = {.lex_state = 1323}, - [2318] = {.lex_state = 1323}, - [2319] = {.lex_state = 28, .external_lex_state = 5}, - [2320] = {.lex_state = 193}, - [2321] = {.lex_state = 193}, - [2322] = {.lex_state = 1323}, - [2323] = {.lex_state = 1323}, - [2324] = {.lex_state = 193}, - [2325] = {.lex_state = 193}, - [2326] = {.lex_state = 1323}, - [2327] = {.lex_state = 1323}, - [2328] = {.lex_state = 1323}, - [2329] = {.lex_state = 193}, - [2330] = {.lex_state = 193}, - [2331] = {.lex_state = 193}, - [2332] = {.lex_state = 193}, - [2333] = {.lex_state = 193}, - [2334] = {.lex_state = 1323}, - [2335] = {.lex_state = 1323}, - [2336] = {.lex_state = 1323}, - [2337] = {.lex_state = 193}, - [2338] = {.lex_state = 193}, - [2339] = {.lex_state = 193}, - [2340] = {.lex_state = 193}, - [2341] = {.lex_state = 1323}, - [2342] = {.lex_state = 1323}, - [2343] = {.lex_state = 193}, - [2344] = {.lex_state = 193}, - [2345] = {.lex_state = 1323}, - [2346] = {.lex_state = 193}, - [2347] = {.lex_state = 193}, - [2348] = {.lex_state = 1323}, - [2349] = {.lex_state = 1323}, - [2350] = {.lex_state = 1323}, - [2351] = {.lex_state = 193}, - [2352] = {.lex_state = 193}, - [2353] = {.lex_state = 193}, - [2354] = {.lex_state = 1323}, - [2355] = {.lex_state = 37, .external_lex_state = 11}, - [2356] = {.lex_state = 1323}, - [2357] = {.lex_state = 1323}, - [2358] = {.lex_state = 193}, - [2359] = {.lex_state = 193}, - [2360] = {.lex_state = 193}, - [2361] = {.lex_state = 37, .external_lex_state = 11}, - [2362] = {.lex_state = 1323}, - [2363] = {.lex_state = 1323}, - [2364] = {.lex_state = 193}, - [2365] = {.lex_state = 193}, - [2366] = {.lex_state = 193}, - [2367] = {.lex_state = 1323}, - [2368] = {.lex_state = 1323}, - [2369] = {.lex_state = 1323}, - [2370] = {.lex_state = 1323}, - [2371] = {.lex_state = 1323}, - [2372] = {.lex_state = 1323}, - [2373] = {.lex_state = 1323}, - [2374] = {.lex_state = 1323}, - [2375] = {.lex_state = 1323}, - [2376] = {.lex_state = 1323}, - [2377] = {.lex_state = 1323}, - [2378] = {.lex_state = 1323}, - [2379] = {.lex_state = 1323}, - [2380] = {.lex_state = 1323}, - [2381] = {.lex_state = 1323}, - [2382] = {.lex_state = 1323}, - [2383] = {.lex_state = 1323}, - [2384] = {.lex_state = 1323}, - [2385] = {.lex_state = 37, .external_lex_state = 11}, - [2386] = {.lex_state = 1323}, - [2387] = {.lex_state = 1323}, - [2388] = {.lex_state = 1323}, - [2389] = {.lex_state = 1323}, - [2390] = {.lex_state = 1323}, - [2391] = {.lex_state = 1323}, - [2392] = {.lex_state = 1323}, - [2393] = {.lex_state = 1323}, - [2394] = {.lex_state = 1323}, - [2395] = {.lex_state = 1323}, - [2396] = {.lex_state = 37, .external_lex_state = 11}, - [2397] = {.lex_state = 1323}, - [2398] = {.lex_state = 1323}, - [2399] = {.lex_state = 1323}, - [2400] = {.lex_state = 1323}, - [2401] = {.lex_state = 1323}, - [2402] = {.lex_state = 1323}, - [2403] = {.lex_state = 1323}, - [2404] = {.lex_state = 1323}, - [2405] = {.lex_state = 1323}, - [2406] = {.lex_state = 1323}, - [2407] = {.lex_state = 1321, .external_lex_state = 5}, - [2408] = {.lex_state = 1323}, - [2409] = {.lex_state = 1323}, - [2410] = {.lex_state = 1323}, - [2411] = {.lex_state = 1321, .external_lex_state = 5}, - [2412] = {.lex_state = 1323}, - [2413] = {.lex_state = 1323}, - [2414] = {.lex_state = 1323}, - [2415] = {.lex_state = 1323}, - [2416] = {.lex_state = 1323}, - [2417] = {.lex_state = 1323}, - [2418] = {.lex_state = 1321, .external_lex_state = 5}, - [2419] = {.lex_state = 1323}, - [2420] = {.lex_state = 1323}, - [2421] = {.lex_state = 1323}, - [2422] = {.lex_state = 1323}, - [2423] = {.lex_state = 1323}, - [2424] = {.lex_state = 1323}, - [2425] = {.lex_state = 1323}, - [2426] = {.lex_state = 1323}, - [2427] = {.lex_state = 53, .external_lex_state = 3}, - [2428] = {.lex_state = 1323}, - [2429] = {.lex_state = 1323}, - [2430] = {.lex_state = 1323}, - [2431] = {.lex_state = 1323}, - [2432] = {.lex_state = 1323}, - [2433] = {.lex_state = 37, .external_lex_state = 11}, - [2434] = {.lex_state = 1323}, - [2435] = {.lex_state = 1323}, - [2436] = {.lex_state = 1323}, - [2437] = {.lex_state = 1323}, - [2438] = {.lex_state = 1321, .external_lex_state = 5}, - [2439] = {.lex_state = 1321, .external_lex_state = 5}, - [2440] = {.lex_state = 54, .external_lex_state = 4}, - [2441] = {.lex_state = 79, .external_lex_state = 5}, - [2442] = {.lex_state = 1321, .external_lex_state = 5}, - [2443] = {.lex_state = 54, .external_lex_state = 4}, - [2444] = {.lex_state = 31, .external_lex_state = 5}, - [2445] = {.lex_state = 79, .external_lex_state = 5}, - [2446] = {.lex_state = 115, .external_lex_state = 5}, - [2447] = {.lex_state = 79, .external_lex_state = 5}, - [2448] = {.lex_state = 28, .external_lex_state = 6}, - [2449] = {.lex_state = 55, .external_lex_state = 4}, - [2450] = {.lex_state = 79, .external_lex_state = 5}, - [2451] = {.lex_state = 28, .external_lex_state = 6}, - [2452] = {.lex_state = 28, .external_lex_state = 4}, - [2453] = {.lex_state = 28, .external_lex_state = 5}, - [2454] = {.lex_state = 28, .external_lex_state = 4}, - [2455] = {.lex_state = 112, .external_lex_state = 5}, - [2456] = {.lex_state = 54, .external_lex_state = 6}, - [2457] = {.lex_state = 31, .external_lex_state = 3}, - [2458] = {.lex_state = 28, .external_lex_state = 4}, - [2459] = {.lex_state = 28, .external_lex_state = 5}, - [2460] = {.lex_state = 53, .external_lex_state = 6}, - [2461] = {.lex_state = 54, .external_lex_state = 6}, - [2462] = {.lex_state = 54, .external_lex_state = 4}, - [2463] = {.lex_state = 53, .external_lex_state = 4}, - [2464] = {.lex_state = 28, .external_lex_state = 4}, - [2465] = {.lex_state = 1321, .external_lex_state = 5}, - [2466] = {.lex_state = 54, .external_lex_state = 4}, - [2467] = {.lex_state = 1321, .external_lex_state = 5}, - [2468] = {.lex_state = 1321, .external_lex_state = 5}, - [2469] = {.lex_state = 1321, .external_lex_state = 5}, - [2470] = {.lex_state = 54, .external_lex_state = 5}, - [2471] = {.lex_state = 53, .external_lex_state = 4}, - [2472] = {.lex_state = 1321, .external_lex_state = 5}, - [2473] = {.lex_state = 1321, .external_lex_state = 5}, - [2474] = {.lex_state = 82, .external_lex_state = 5}, - [2475] = {.lex_state = 80, .external_lex_state = 5}, - [2476] = {.lex_state = 82, .external_lex_state = 5}, - [2477] = {.lex_state = 82, .external_lex_state = 5}, - [2478] = {.lex_state = 1321, .external_lex_state = 5}, - [2479] = {.lex_state = 1321, .external_lex_state = 5}, - [2480] = {.lex_state = 55, .external_lex_state = 6}, - [2481] = {.lex_state = 28, .external_lex_state = 3}, - [2482] = {.lex_state = 82, .external_lex_state = 5}, - [2483] = {.lex_state = 53, .external_lex_state = 5}, - [2484] = {.lex_state = 55, .external_lex_state = 4}, - [2485] = {.lex_state = 68, .external_lex_state = 7}, - [2486] = {.lex_state = 53, .external_lex_state = 4}, - [2487] = {.lex_state = 68, .external_lex_state = 7}, - [2488] = {.lex_state = 55, .external_lex_state = 5}, - [2489] = {.lex_state = 1321, .external_lex_state = 5}, - [2490] = {.lex_state = 1321, .external_lex_state = 5}, - [2491] = {.lex_state = 55, .external_lex_state = 5}, - [2492] = {.lex_state = 68, .external_lex_state = 7}, - [2493] = {.lex_state = 53, .external_lex_state = 6}, - [2494] = {.lex_state = 53, .external_lex_state = 4}, - [2495] = {.lex_state = 1321, .external_lex_state = 5}, - [2496] = {.lex_state = 1321, .external_lex_state = 5}, - [2497] = {.lex_state = 1321, .external_lex_state = 5}, - [2498] = {.lex_state = 1321, .external_lex_state = 5}, - [2499] = {.lex_state = 83, .external_lex_state = 5}, - [2500] = {.lex_state = 1321, .external_lex_state = 5}, - [2501] = {.lex_state = 1321, .external_lex_state = 5}, - [2502] = {.lex_state = 1321, .external_lex_state = 5}, - [2503] = {.lex_state = 1321, .external_lex_state = 5}, - [2504] = {.lex_state = 1321, .external_lex_state = 5}, - [2505] = {.lex_state = 1321, .external_lex_state = 5}, - [2506] = {.lex_state = 1321, .external_lex_state = 5}, - [2507] = {.lex_state = 1321, .external_lex_state = 5}, - [2508] = {.lex_state = 1321, .external_lex_state = 5}, - [2509] = {.lex_state = 1321, .external_lex_state = 5}, - [2510] = {.lex_state = 1321, .external_lex_state = 5}, - [2511] = {.lex_state = 1321, .external_lex_state = 5}, - [2512] = {.lex_state = 1321, .external_lex_state = 5}, - [2513] = {.lex_state = 1321, .external_lex_state = 5}, - [2514] = {.lex_state = 1321, .external_lex_state = 5}, - [2515] = {.lex_state = 1321, .external_lex_state = 5}, - [2516] = {.lex_state = 1321, .external_lex_state = 5}, - [2517] = {.lex_state = 75, .external_lex_state = 5}, - [2518] = {.lex_state = 1321, .external_lex_state = 5}, - [2519] = {.lex_state = 1321, .external_lex_state = 5}, - [2520] = {.lex_state = 1321, .external_lex_state = 5}, - [2521] = {.lex_state = 1321, .external_lex_state = 5}, - [2522] = {.lex_state = 29, .external_lex_state = 5}, - [2523] = {.lex_state = 1321, .external_lex_state = 5}, - [2524] = {.lex_state = 1321, .external_lex_state = 5}, - [2525] = {.lex_state = 1321, .external_lex_state = 5}, - [2526] = {.lex_state = 1321, .external_lex_state = 5}, - [2527] = {.lex_state = 55, .external_lex_state = 5}, - [2528] = {.lex_state = 1321, .external_lex_state = 5}, - [2529] = {.lex_state = 1321, .external_lex_state = 5}, - [2530] = {.lex_state = 55, .external_lex_state = 5}, - [2531] = {.lex_state = 1321, .external_lex_state = 5}, - [2532] = {.lex_state = 1321, .external_lex_state = 5}, - [2533] = {.lex_state = 1321, .external_lex_state = 5}, - [2534] = {.lex_state = 1321, .external_lex_state = 5}, - [2535] = {.lex_state = 1321, .external_lex_state = 5}, - [2536] = {.lex_state = 28, .external_lex_state = 5}, - [2537] = {.lex_state = 37}, - [2538] = {.lex_state = 1321, .external_lex_state = 5}, - [2539] = {.lex_state = 54, .external_lex_state = 5}, - [2540] = {.lex_state = 1321, .external_lex_state = 5}, - [2541] = {.lex_state = 31, .external_lex_state = 4}, - [2542] = {.lex_state = 1321, .external_lex_state = 5}, - [2543] = {.lex_state = 1321, .external_lex_state = 5}, - [2544] = {.lex_state = 55, .external_lex_state = 5}, - [2545] = {.lex_state = 55, .external_lex_state = 5}, - [2546] = {.lex_state = 37, .external_lex_state = 11}, - [2547] = {.lex_state = 31, .external_lex_state = 5}, - [2548] = {.lex_state = 37, .external_lex_state = 11}, - [2549] = {.lex_state = 55, .external_lex_state = 5}, - [2550] = {.lex_state = 1321, .external_lex_state = 5}, - [2551] = {.lex_state = 54, .external_lex_state = 4}, - [2552] = {.lex_state = 1321, .external_lex_state = 5}, - [2553] = {.lex_state = 1321, .external_lex_state = 5}, - [2554] = {.lex_state = 1321, .external_lex_state = 5}, - [2555] = {.lex_state = 53, .external_lex_state = 5}, - [2556] = {.lex_state = 55, .external_lex_state = 5}, - [2557] = {.lex_state = 114, .external_lex_state = 5}, - [2558] = {.lex_state = 55, .external_lex_state = 5}, - [2559] = {.lex_state = 55, .external_lex_state = 5}, - [2560] = {.lex_state = 1321, .external_lex_state = 5}, - [2561] = {.lex_state = 40, .external_lex_state = 11}, - [2562] = {.lex_state = 55, .external_lex_state = 5}, - [2563] = {.lex_state = 55, .external_lex_state = 5}, - [2564] = {.lex_state = 55, .external_lex_state = 5}, - [2565] = {.lex_state = 31, .external_lex_state = 4}, - [2566] = {.lex_state = 37}, - [2567] = {.lex_state = 55, .external_lex_state = 5}, - [2568] = {.lex_state = 1321, .external_lex_state = 5}, - [2569] = {.lex_state = 1321, .external_lex_state = 5}, - [2570] = {.lex_state = 55, .external_lex_state = 5}, - [2571] = {.lex_state = 1321, .external_lex_state = 5}, - [2572] = {.lex_state = 40, .external_lex_state = 11}, - [2573] = {.lex_state = 55, .external_lex_state = 5}, - [2574] = {.lex_state = 31, .external_lex_state = 5}, - [2575] = {.lex_state = 1321, .external_lex_state = 5}, - [2576] = {.lex_state = 31, .external_lex_state = 5}, - [2577] = {.lex_state = 37}, - [2578] = {.lex_state = 1321, .external_lex_state = 5}, - [2579] = {.lex_state = 37}, - [2580] = {.lex_state = 1321, .external_lex_state = 5}, - [2581] = {.lex_state = 31, .external_lex_state = 5}, - [2582] = {.lex_state = 55, .external_lex_state = 5}, - [2583] = {.lex_state = 37}, - [2584] = {.lex_state = 1321, .external_lex_state = 5}, - [2585] = {.lex_state = 1321, .external_lex_state = 5}, - [2586] = {.lex_state = 1321, .external_lex_state = 5}, - [2587] = {.lex_state = 1321, .external_lex_state = 5}, - [2588] = {.lex_state = 1321, .external_lex_state = 5}, - [2589] = {.lex_state = 1321, .external_lex_state = 5}, - [2590] = {.lex_state = 1321, .external_lex_state = 5}, - [2591] = {.lex_state = 1321, .external_lex_state = 5}, - [2592] = {.lex_state = 1321, .external_lex_state = 5}, - [2593] = {.lex_state = 1321, .external_lex_state = 5}, - [2594] = {.lex_state = 1321, .external_lex_state = 5}, - [2595] = {.lex_state = 1321, .external_lex_state = 5}, - [2596] = {.lex_state = 55, .external_lex_state = 5}, - [2597] = {.lex_state = 1321, .external_lex_state = 5}, - [2598] = {.lex_state = 1321, .external_lex_state = 5}, - [2599] = {.lex_state = 1321, .external_lex_state = 5}, - [2600] = {.lex_state = 55, .external_lex_state = 5}, - [2601] = {.lex_state = 55, .external_lex_state = 5}, - [2602] = {.lex_state = 1321, .external_lex_state = 5}, - [2603] = {.lex_state = 1321, .external_lex_state = 5}, - [2604] = {.lex_state = 1321, .external_lex_state = 5}, - [2605] = {.lex_state = 55, .external_lex_state = 5}, - [2606] = {.lex_state = 53, .external_lex_state = 5}, - [2607] = {.lex_state = 1321, .external_lex_state = 5}, - [2608] = {.lex_state = 1321, .external_lex_state = 5}, - [2609] = {.lex_state = 55, .external_lex_state = 5}, - [2610] = {.lex_state = 1321, .external_lex_state = 5}, - [2611] = {.lex_state = 1321, .external_lex_state = 5}, - [2612] = {.lex_state = 1321, .external_lex_state = 5}, - [2613] = {.lex_state = 1321, .external_lex_state = 5}, - [2614] = {.lex_state = 1321, .external_lex_state = 5}, - [2615] = {.lex_state = 1321, .external_lex_state = 5}, - [2616] = {.lex_state = 28, .external_lex_state = 6}, - [2617] = {.lex_state = 1321, .external_lex_state = 5}, - [2618] = {.lex_state = 1321, .external_lex_state = 5}, - [2619] = {.lex_state = 32, .external_lex_state = 5}, - [2620] = {.lex_state = 1321, .external_lex_state = 5}, - [2621] = {.lex_state = 1321, .external_lex_state = 5}, - [2622] = {.lex_state = 1321, .external_lex_state = 5}, - [2623] = {.lex_state = 1321, .external_lex_state = 5}, - [2624] = {.lex_state = 32, .external_lex_state = 5}, - [2625] = {.lex_state = 32, .external_lex_state = 5}, - [2626] = {.lex_state = 1321, .external_lex_state = 5}, - [2627] = {.lex_state = 28, .external_lex_state = 4}, - [2628] = {.lex_state = 28, .external_lex_state = 4}, - [2629] = {.lex_state = 1321, .external_lex_state = 5}, - [2630] = {.lex_state = 32, .external_lex_state = 5}, - [2631] = {.lex_state = 1321, .external_lex_state = 5}, - [2632] = {.lex_state = 37}, - [2633] = {.lex_state = 1321, .external_lex_state = 5}, - [2634] = {.lex_state = 1321, .external_lex_state = 5}, - [2635] = {.lex_state = 1321, .external_lex_state = 5}, - [2636] = {.lex_state = 119, .external_lex_state = 5}, - [2637] = {.lex_state = 28, .external_lex_state = 4}, - [2638] = {.lex_state = 1321, .external_lex_state = 5}, - [2639] = {.lex_state = 75, .external_lex_state = 5}, - [2640] = {.lex_state = 1321, .external_lex_state = 5}, - [2641] = {.lex_state = 1321, .external_lex_state = 5}, - [2642] = {.lex_state = 1321, .external_lex_state = 5}, - [2643] = {.lex_state = 1321, .external_lex_state = 5}, - [2644] = {.lex_state = 1321, .external_lex_state = 5}, - [2645] = {.lex_state = 1321, .external_lex_state = 5}, - [2646] = {.lex_state = 76, .external_lex_state = 5}, - [2647] = {.lex_state = 1321, .external_lex_state = 5}, - [2648] = {.lex_state = 1321, .external_lex_state = 5}, + [1098] = {.lex_state = 64, .external_lex_state = 15}, + [1099] = {.lex_state = 47, .external_lex_state = 12}, + [1100] = {.lex_state = 47, .external_lex_state = 12}, + [1101] = {.lex_state = 47, .external_lex_state = 12}, + [1102] = {.lex_state = 64, .external_lex_state = 14}, + [1103] = {.lex_state = 47, .external_lex_state = 12}, + [1104] = {.lex_state = 47, .external_lex_state = 12}, + [1105] = {.lex_state = 64, .external_lex_state = 14}, + [1106] = {.lex_state = 64, .external_lex_state = 14}, + [1107] = {.lex_state = 47, .external_lex_state = 12}, + [1108] = {.lex_state = 47, .external_lex_state = 12}, + [1109] = {.lex_state = 47, .external_lex_state = 12}, + [1110] = {.lex_state = 47, .external_lex_state = 12}, + [1111] = {.lex_state = 47, .external_lex_state = 12}, + [1112] = {.lex_state = 64, .external_lex_state = 12}, + [1113] = {.lex_state = 64, .external_lex_state = 12}, + [1114] = {.lex_state = 47, .external_lex_state = 12}, + [1115] = {.lex_state = 64, .external_lex_state = 12}, + [1116] = {.lex_state = 47, .external_lex_state = 12}, + [1117] = {.lex_state = 47, .external_lex_state = 12}, + [1118] = {.lex_state = 47, .external_lex_state = 12}, + [1119] = {.lex_state = 47, .external_lex_state = 12}, + [1120] = {.lex_state = 47, .external_lex_state = 12}, + [1121] = {.lex_state = 47, .external_lex_state = 12}, + [1122] = {.lex_state = 47, .external_lex_state = 12}, + [1123] = {.lex_state = 64, .external_lex_state = 13}, + [1124] = {.lex_state = 47, .external_lex_state = 12}, + [1125] = {.lex_state = 47, .external_lex_state = 12}, + [1126] = {.lex_state = 64, .external_lex_state = 12}, + [1127] = {.lex_state = 64, .external_lex_state = 12}, + [1128] = {.lex_state = 37, .external_lex_state = 6}, + [1129] = {.lex_state = 64, .external_lex_state = 12}, + [1130] = {.lex_state = 64, .external_lex_state = 12}, + [1131] = {.lex_state = 37, .external_lex_state = 6}, + [1132] = {.lex_state = 64, .external_lex_state = 12}, + [1133] = {.lex_state = 37, .external_lex_state = 6}, + [1134] = {.lex_state = 37, .external_lex_state = 6}, + [1135] = {.lex_state = 64, .external_lex_state = 12}, + [1136] = {.lex_state = 37, .external_lex_state = 6}, + [1137] = {.lex_state = 64, .external_lex_state = 12}, + [1138] = {.lex_state = 37, .external_lex_state = 6}, + [1139] = {.lex_state = 64, .external_lex_state = 12}, + [1140] = {.lex_state = 64, .external_lex_state = 12}, + [1141] = {.lex_state = 64, .external_lex_state = 12}, + [1142] = {.lex_state = 64, .external_lex_state = 12}, + [1143] = {.lex_state = 64, .external_lex_state = 12}, + [1144] = {.lex_state = 64, .external_lex_state = 12}, + [1145] = {.lex_state = 37, .external_lex_state = 6}, + [1146] = {.lex_state = 37, .external_lex_state = 6}, + [1147] = {.lex_state = 64, .external_lex_state = 12}, + [1148] = {.lex_state = 37, .external_lex_state = 6}, + [1149] = {.lex_state = 64, .external_lex_state = 12}, + [1150] = {.lex_state = 64, .external_lex_state = 12}, + [1151] = {.lex_state = 37, .external_lex_state = 6}, + [1152] = {.lex_state = 64, .external_lex_state = 12}, + [1153] = {.lex_state = 37, .external_lex_state = 6}, + [1154] = {.lex_state = 64, .external_lex_state = 12}, + [1155] = {.lex_state = 64, .external_lex_state = 12}, + [1156] = {.lex_state = 37, .external_lex_state = 6}, + [1157] = {.lex_state = 64, .external_lex_state = 12}, + [1158] = {.lex_state = 64, .external_lex_state = 12}, + [1159] = {.lex_state = 64, .external_lex_state = 12}, + [1160] = {.lex_state = 37, .external_lex_state = 6}, + [1161] = {.lex_state = 64, .external_lex_state = 12}, + [1162] = {.lex_state = 64, .external_lex_state = 12}, + [1163] = {.lex_state = 64, .external_lex_state = 12}, + [1164] = {.lex_state = 96, .external_lex_state = 6}, + [1165] = {.lex_state = 97, .external_lex_state = 6}, + [1166] = {.lex_state = 38, .external_lex_state = 3}, + [1167] = {.lex_state = 38, .external_lex_state = 3}, + [1168] = {.lex_state = 38, .external_lex_state = 3}, + [1169] = {.lex_state = 38, .external_lex_state = 3}, + [1170] = {.lex_state = 1329, .external_lex_state = 6}, + [1171] = {.lex_state = 1329, .external_lex_state = 6}, + [1172] = {.lex_state = 1329, .external_lex_state = 6}, + [1173] = {.lex_state = 1329, .external_lex_state = 6}, + [1174] = {.lex_state = 1329, .external_lex_state = 6}, + [1175] = {.lex_state = 1329, .external_lex_state = 6}, + [1176] = {.lex_state = 1329, .external_lex_state = 6}, + [1177] = {.lex_state = 1329, .external_lex_state = 6}, + [1178] = {.lex_state = 1329, .external_lex_state = 6}, + [1179] = {.lex_state = 1329, .external_lex_state = 6}, + [1180] = {.lex_state = 1329, .external_lex_state = 6}, + [1181] = {.lex_state = 1329, .external_lex_state = 6}, + [1182] = {.lex_state = 1329, .external_lex_state = 6}, + [1183] = {.lex_state = 1329, .external_lex_state = 6}, + [1184] = {.lex_state = 1329, .external_lex_state = 6}, + [1185] = {.lex_state = 1329, .external_lex_state = 6}, + [1186] = {.lex_state = 1329, .external_lex_state = 6}, + [1187] = {.lex_state = 1329, .external_lex_state = 6}, + [1188] = {.lex_state = 1329, .external_lex_state = 6}, + [1189] = {.lex_state = 1329, .external_lex_state = 6}, + [1190] = {.lex_state = 1329, .external_lex_state = 6}, + [1191] = {.lex_state = 1329, .external_lex_state = 6}, + [1192] = {.lex_state = 1329, .external_lex_state = 6}, + [1193] = {.lex_state = 92, .external_lex_state = 6}, + [1194] = {.lex_state = 1329, .external_lex_state = 6}, + [1195] = {.lex_state = 1329, .external_lex_state = 6}, + [1196] = {.lex_state = 1329, .external_lex_state = 6}, + [1197] = {.lex_state = 1329, .external_lex_state = 6}, + [1198] = {.lex_state = 1329, .external_lex_state = 6}, + [1199] = {.lex_state = 1329, .external_lex_state = 6}, + [1200] = {.lex_state = 1329, .external_lex_state = 6}, + [1201] = {.lex_state = 1329, .external_lex_state = 6}, + [1202] = {.lex_state = 1329, .external_lex_state = 6}, + [1203] = {.lex_state = 1329, .external_lex_state = 6}, + [1204] = {.lex_state = 1329, .external_lex_state = 6}, + [1205] = {.lex_state = 1329, .external_lex_state = 6}, + [1206] = {.lex_state = 1329, .external_lex_state = 6}, + [1207] = {.lex_state = 1329, .external_lex_state = 6}, + [1208] = {.lex_state = 1329, .external_lex_state = 6}, + [1209] = {.lex_state = 66, .external_lex_state = 2}, + [1210] = {.lex_state = 1329, .external_lex_state = 6}, + [1211] = {.lex_state = 1329, .external_lex_state = 6}, + [1212] = {.lex_state = 1329, .external_lex_state = 6}, + [1213] = {.lex_state = 1329, .external_lex_state = 6}, + [1214] = {.lex_state = 1329, .external_lex_state = 6}, + [1215] = {.lex_state = 1329, .external_lex_state = 6}, + [1216] = {.lex_state = 1329, .external_lex_state = 6}, + [1217] = {.lex_state = 1329, .external_lex_state = 6}, + [1218] = {.lex_state = 66, .external_lex_state = 2}, + [1219] = {.lex_state = 1329, .external_lex_state = 6}, + [1220] = {.lex_state = 1329, .external_lex_state = 6}, + [1221] = {.lex_state = 1329, .external_lex_state = 6}, + [1222] = {.lex_state = 94, .external_lex_state = 6}, + [1223] = {.lex_state = 93, .external_lex_state = 6}, + [1224] = {.lex_state = 1329, .external_lex_state = 6}, + [1225] = {.lex_state = 1329, .external_lex_state = 6}, + [1226] = {.lex_state = 1329, .external_lex_state = 6}, + [1227] = {.lex_state = 1329, .external_lex_state = 6}, + [1228] = {.lex_state = 1329, .external_lex_state = 6}, + [1229] = {.lex_state = 102, .external_lex_state = 6}, + [1230] = {.lex_state = 1329, .external_lex_state = 6}, + [1231] = {.lex_state = 1329, .external_lex_state = 6}, + [1232] = {.lex_state = 1329, .external_lex_state = 6}, + [1233] = {.lex_state = 1329, .external_lex_state = 6}, + [1234] = {.lex_state = 1329, .external_lex_state = 6}, + [1235] = {.lex_state = 1329, .external_lex_state = 6}, + [1236] = {.lex_state = 95, .external_lex_state = 6}, + [1237] = {.lex_state = 1329, .external_lex_state = 6}, + [1238] = {.lex_state = 1329, .external_lex_state = 6}, + [1239] = {.lex_state = 1329, .external_lex_state = 6}, + [1240] = {.lex_state = 1329, .external_lex_state = 6}, + [1241] = {.lex_state = 1329, .external_lex_state = 6}, + [1242] = {.lex_state = 1329, .external_lex_state = 6}, + [1243] = {.lex_state = 1329, .external_lex_state = 6}, + [1244] = {.lex_state = 1329, .external_lex_state = 6}, + [1245] = {.lex_state = 1329, .external_lex_state = 6}, + [1246] = {.lex_state = 1329, .external_lex_state = 6}, + [1247] = {.lex_state = 1329, .external_lex_state = 6}, + [1248] = {.lex_state = 1329, .external_lex_state = 6}, + [1249] = {.lex_state = 1329, .external_lex_state = 6}, + [1250] = {.lex_state = 1329, .external_lex_state = 6}, + [1251] = {.lex_state = 1329, .external_lex_state = 6}, + [1252] = {.lex_state = 1329, .external_lex_state = 6}, + [1253] = {.lex_state = 1329, .external_lex_state = 6}, + [1254] = {.lex_state = 1329, .external_lex_state = 6}, + [1255] = {.lex_state = 105, .external_lex_state = 6}, + [1256] = {.lex_state = 1329, .external_lex_state = 6}, + [1257] = {.lex_state = 1329, .external_lex_state = 6}, + [1258] = {.lex_state = 1329, .external_lex_state = 6}, + [1259] = {.lex_state = 1329, .external_lex_state = 6}, + [1260] = {.lex_state = 1329, .external_lex_state = 6}, + [1261] = {.lex_state = 1329, .external_lex_state = 6}, + [1262] = {.lex_state = 1329, .external_lex_state = 6}, + [1263] = {.lex_state = 1329, .external_lex_state = 6}, + [1264] = {.lex_state = 1329, .external_lex_state = 6}, + [1265] = {.lex_state = 1329, .external_lex_state = 6}, + [1266] = {.lex_state = 1329, .external_lex_state = 6}, + [1267] = {.lex_state = 1329, .external_lex_state = 6}, + [1268] = {.lex_state = 103, .external_lex_state = 6}, + [1269] = {.lex_state = 198}, + [1270] = {.lex_state = 198}, + [1271] = {.lex_state = 201, .external_lex_state = 7}, + [1272] = {.lex_state = 106, .external_lex_state = 6}, + [1273] = {.lex_state = 201, .external_lex_state = 7}, + [1274] = {.lex_state = 201, .external_lex_state = 7}, + [1275] = {.lex_state = 201, .external_lex_state = 7}, + [1276] = {.lex_state = 201, .external_lex_state = 7}, + [1277] = {.lex_state = 66, .external_lex_state = 6}, + [1278] = {.lex_state = 66, .external_lex_state = 3}, + [1279] = {.lex_state = 66, .external_lex_state = 3}, + [1280] = {.lex_state = 66, .external_lex_state = 6}, + [1281] = {.lex_state = 66, .external_lex_state = 6}, + [1282] = {.lex_state = 66, .external_lex_state = 6}, + [1283] = {.lex_state = 66, .external_lex_state = 6}, + [1284] = {.lex_state = 66, .external_lex_state = 6}, + [1285] = {.lex_state = 66, .external_lex_state = 3}, + [1286] = {.lex_state = 66, .external_lex_state = 6}, + [1287] = {.lex_state = 66, .external_lex_state = 6}, + [1288] = {.lex_state = 66, .external_lex_state = 6}, + [1289] = {.lex_state = 66, .external_lex_state = 6}, + [1290] = {.lex_state = 66, .external_lex_state = 6}, + [1291] = {.lex_state = 66, .external_lex_state = 6}, + [1292] = {.lex_state = 66, .external_lex_state = 6}, + [1293] = {.lex_state = 1329, .external_lex_state = 6}, + [1294] = {.lex_state = 37, .external_lex_state = 6}, + [1295] = {.lex_state = 37, .external_lex_state = 6}, + [1296] = {.lex_state = 37, .external_lex_state = 6}, + [1297] = {.lex_state = 37, .external_lex_state = 6}, + [1298] = {.lex_state = 37, .external_lex_state = 6}, + [1299] = {.lex_state = 1329, .external_lex_state = 6}, + [1300] = {.lex_state = 37, .external_lex_state = 6}, + [1301] = {.lex_state = 1329, .external_lex_state = 6}, + [1302] = {.lex_state = 37, .external_lex_state = 6}, + [1303] = {.lex_state = 1329, .external_lex_state = 6}, + [1304] = {.lex_state = 37, .external_lex_state = 6}, + [1305] = {.lex_state = 37, .external_lex_state = 6}, + [1306] = {.lex_state = 37, .external_lex_state = 6}, + [1307] = {.lex_state = 37, .external_lex_state = 6}, + [1308] = {.lex_state = 66, .external_lex_state = 3}, + [1309] = {.lex_state = 66, .external_lex_state = 3}, + [1310] = {.lex_state = 1329, .external_lex_state = 6}, + [1311] = {.lex_state = 1329, .external_lex_state = 6}, + [1312] = {.lex_state = 1329, .external_lex_state = 6}, + [1313] = {.lex_state = 1329, .external_lex_state = 6}, + [1314] = {.lex_state = 37, .external_lex_state = 6}, + [1315] = {.lex_state = 37, .external_lex_state = 6}, + [1316] = {.lex_state = 1329, .external_lex_state = 6}, + [1317] = {.lex_state = 1329, .external_lex_state = 6}, + [1318] = {.lex_state = 108, .external_lex_state = 6}, + [1319] = {.lex_state = 66, .external_lex_state = 6}, + [1320] = {.lex_state = 66, .external_lex_state = 3}, + [1321] = {.lex_state = 66, .external_lex_state = 3}, + [1322] = {.lex_state = 66, .external_lex_state = 6}, + [1323] = {.lex_state = 109, .external_lex_state = 6}, + [1324] = {.lex_state = 1329, .external_lex_state = 6}, + [1325] = {.lex_state = 66, .external_lex_state = 3}, + [1326] = {.lex_state = 1329, .external_lex_state = 6}, + [1327] = {.lex_state = 66, .external_lex_state = 3}, + [1328] = {.lex_state = 66, .external_lex_state = 3}, + [1329] = {.lex_state = 73, .external_lex_state = 3}, + [1330] = {.lex_state = 1329, .external_lex_state = 6}, + [1331] = {.lex_state = 1329, .external_lex_state = 6}, + [1332] = {.lex_state = 1329, .external_lex_state = 6}, + [1333] = {.lex_state = 66, .external_lex_state = 5}, + [1334] = {.lex_state = 82, .external_lex_state = 6}, + [1335] = {.lex_state = 66, .external_lex_state = 4}, + [1336] = {.lex_state = 1329, .external_lex_state = 6}, + [1337] = {.lex_state = 44, .external_lex_state = 8}, + [1338] = {.lex_state = 1329, .external_lex_state = 6}, + [1339] = {.lex_state = 66, .external_lex_state = 4}, + [1340] = {.lex_state = 73, .external_lex_state = 3}, + [1341] = {.lex_state = 73, .external_lex_state = 3}, + [1342] = {.lex_state = 73, .external_lex_state = 3}, + [1343] = {.lex_state = 1329, .external_lex_state = 6}, + [1344] = {.lex_state = 1329, .external_lex_state = 6}, + [1345] = {.lex_state = 1329, .external_lex_state = 6}, + [1346] = {.lex_state = 66, .external_lex_state = 5}, + [1347] = {.lex_state = 66, .external_lex_state = 3}, + [1348] = {.lex_state = 66, .external_lex_state = 4}, + [1349] = {.lex_state = 1329, .external_lex_state = 6}, + [1350] = {.lex_state = 1329, .external_lex_state = 6}, + [1351] = {.lex_state = 44, .external_lex_state = 8}, + [1352] = {.lex_state = 66, .external_lex_state = 4}, + [1353] = {.lex_state = 1329, .external_lex_state = 6}, + [1354] = {.lex_state = 1329, .external_lex_state = 6}, + [1355] = {.lex_state = 1329, .external_lex_state = 6}, + [1356] = {.lex_state = 57, .external_lex_state = 6}, + [1357] = {.lex_state = 57, .external_lex_state = 6}, + [1358] = {.lex_state = 57, .external_lex_state = 6}, + [1359] = {.lex_state = 1329, .external_lex_state = 6}, + [1360] = {.lex_state = 57, .external_lex_state = 6}, + [1361] = {.lex_state = 1329, .external_lex_state = 6}, + [1362] = {.lex_state = 1329, .external_lex_state = 6}, + [1363] = {.lex_state = 1329, .external_lex_state = 6}, + [1364] = {.lex_state = 57, .external_lex_state = 6}, + [1365] = {.lex_state = 1329, .external_lex_state = 6}, + [1366] = {.lex_state = 1329, .external_lex_state = 6}, + [1367] = {.lex_state = 57, .external_lex_state = 6}, + [1368] = {.lex_state = 57, .external_lex_state = 6}, + [1369] = {.lex_state = 1329, .external_lex_state = 6}, + [1370] = {.lex_state = 1329, .external_lex_state = 6}, + [1371] = {.lex_state = 57, .external_lex_state = 6}, + [1372] = {.lex_state = 1329, .external_lex_state = 6}, + [1373] = {.lex_state = 55, .external_lex_state = 2}, + [1374] = {.lex_state = 1329, .external_lex_state = 6}, + [1375] = {.lex_state = 57, .external_lex_state = 6}, + [1376] = {.lex_state = 57, .external_lex_state = 6}, + [1377] = {.lex_state = 1329, .external_lex_state = 6}, + [1378] = {.lex_state = 1329, .external_lex_state = 6}, + [1379] = {.lex_state = 57, .external_lex_state = 6}, + [1380] = {.lex_state = 1329, .external_lex_state = 6}, + [1381] = {.lex_state = 83, .external_lex_state = 6}, + [1382] = {.lex_state = 1329, .external_lex_state = 6}, + [1383] = {.lex_state = 66, .external_lex_state = 3}, + [1384] = {.lex_state = 1329, .external_lex_state = 6}, + [1385] = {.lex_state = 198}, + [1386] = {.lex_state = 98, .external_lex_state = 6}, + [1387] = {.lex_state = 57, .external_lex_state = 2}, + [1388] = {.lex_state = 1329, .external_lex_state = 6}, + [1389] = {.lex_state = 1329, .external_lex_state = 6}, + [1390] = {.lex_state = 1329, .external_lex_state = 6}, + [1391] = {.lex_state = 57, .external_lex_state = 6}, + [1392] = {.lex_state = 66, .external_lex_state = 3}, + [1393] = {.lex_state = 1329, .external_lex_state = 6}, + [1394] = {.lex_state = 1329, .external_lex_state = 6}, + [1395] = {.lex_state = 57, .external_lex_state = 6}, + [1396] = {.lex_state = 1329, .external_lex_state = 6}, + [1397] = {.lex_state = 1329, .external_lex_state = 6}, + [1398] = {.lex_state = 1329, .external_lex_state = 6}, + [1399] = {.lex_state = 57, .external_lex_state = 6}, + [1400] = {.lex_state = 66, .external_lex_state = 4}, + [1401] = {.lex_state = 66, .external_lex_state = 4}, + [1402] = {.lex_state = 1329, .external_lex_state = 6}, + [1403] = {.lex_state = 1329, .external_lex_state = 6}, + [1404] = {.lex_state = 57, .external_lex_state = 6}, + [1405] = {.lex_state = 66, .external_lex_state = 5}, + [1406] = {.lex_state = 44, .external_lex_state = 8}, + [1407] = {.lex_state = 53, .external_lex_state = 2}, + [1408] = {.lex_state = 37, .external_lex_state = 3}, + [1409] = {.lex_state = 1329, .external_lex_state = 6}, + [1410] = {.lex_state = 1329, .external_lex_state = 6}, + [1411] = {.lex_state = 66, .external_lex_state = 6}, + [1412] = {.lex_state = 66, .external_lex_state = 6}, + [1413] = {.lex_state = 1329, .external_lex_state = 6}, + [1414] = {.lex_state = 66, .external_lex_state = 6}, + [1415] = {.lex_state = 66, .external_lex_state = 6}, + [1416] = {.lex_state = 66, .external_lex_state = 6}, + [1417] = {.lex_state = 75, .external_lex_state = 6}, + [1418] = {.lex_state = 66, .external_lex_state = 6}, + [1419] = {.lex_state = 1329, .external_lex_state = 6}, + [1420] = {.lex_state = 66, .external_lex_state = 6}, + [1421] = {.lex_state = 66, .external_lex_state = 6}, + [1422] = {.lex_state = 66, .external_lex_state = 6}, + [1423] = {.lex_state = 66, .external_lex_state = 6}, + [1424] = {.lex_state = 66, .external_lex_state = 6}, + [1425] = {.lex_state = 100, .external_lex_state = 6}, + [1426] = {.lex_state = 66, .external_lex_state = 6}, + [1427] = {.lex_state = 66, .external_lex_state = 6}, + [1428] = {.lex_state = 66, .external_lex_state = 6}, + [1429] = {.lex_state = 66, .external_lex_state = 6}, + [1430] = {.lex_state = 66, .external_lex_state = 6}, + [1431] = {.lex_state = 55, .external_lex_state = 2}, + [1432] = {.lex_state = 28, .external_lex_state = 2}, + [1433] = {.lex_state = 1329, .external_lex_state = 6}, + [1434] = {.lex_state = 1329, .external_lex_state = 6}, + [1435] = {.lex_state = 1329, .external_lex_state = 6}, + [1436] = {.lex_state = 56, .external_lex_state = 2}, + [1437] = {.lex_state = 57, .external_lex_state = 2}, + [1438] = {.lex_state = 66, .external_lex_state = 6}, + [1439] = {.lex_state = 1329, .external_lex_state = 6}, + [1440] = {.lex_state = 1329, .external_lex_state = 6}, + [1441] = {.lex_state = 54, .external_lex_state = 2}, + [1442] = {.lex_state = 99, .external_lex_state = 6}, + [1443] = {.lex_state = 1329, .external_lex_state = 6}, + [1444] = {.lex_state = 1329, .external_lex_state = 3}, + [1445] = {.lex_state = 1329, .external_lex_state = 6}, + [1446] = {.lex_state = 53, .external_lex_state = 2}, + [1447] = {.lex_state = 1329, .external_lex_state = 6}, + [1448] = {.lex_state = 66, .external_lex_state = 6}, + [1449] = {.lex_state = 66, .external_lex_state = 6}, + [1450] = {.lex_state = 1329, .external_lex_state = 6}, + [1451] = {.lex_state = 66, .external_lex_state = 6}, + [1452] = {.lex_state = 66, .external_lex_state = 6}, + [1453] = {.lex_state = 66, .external_lex_state = 6}, + [1454] = {.lex_state = 66, .external_lex_state = 6}, + [1455] = {.lex_state = 66, .external_lex_state = 6}, + [1456] = {.lex_state = 66, .external_lex_state = 6}, + [1457] = {.lex_state = 1329, .external_lex_state = 6}, + [1458] = {.lex_state = 56, .external_lex_state = 2}, + [1459] = {.lex_state = 1329, .external_lex_state = 6}, + [1460] = {.lex_state = 28, .external_lex_state = 2}, + [1461] = {.lex_state = 1329, .external_lex_state = 6}, + [1462] = {.lex_state = 1329, .external_lex_state = 6}, + [1463] = {.lex_state = 104, .external_lex_state = 6}, + [1464] = {.lex_state = 1329, .external_lex_state = 6}, + [1465] = {.lex_state = 101, .external_lex_state = 6}, + [1466] = {.lex_state = 1329, .external_lex_state = 6}, + [1467] = {.lex_state = 1329, .external_lex_state = 6}, + [1468] = {.lex_state = 1329, .external_lex_state = 6}, + [1469] = {.lex_state = 54, .external_lex_state = 2}, + [1470] = {.lex_state = 1329, .external_lex_state = 6}, + [1471] = {.lex_state = 1329, .external_lex_state = 6}, + [1472] = {.lex_state = 1329, .external_lex_state = 6}, + [1473] = {.lex_state = 1329, .external_lex_state = 6}, + [1474] = {.lex_state = 1329, .external_lex_state = 6}, + [1475] = {.lex_state = 1329, .external_lex_state = 6}, + [1476] = {.lex_state = 76, .external_lex_state = 6}, + [1477] = {.lex_state = 199}, + [1478] = {.lex_state = 199}, + [1479] = {.lex_state = 199}, + [1480] = {.lex_state = 199}, + [1481] = {.lex_state = 199}, + [1482] = {.lex_state = 1330}, + [1483] = {.lex_state = 199}, + [1484] = {.lex_state = 199}, + [1485] = {.lex_state = 1330}, + [1486] = {.lex_state = 1330}, + [1487] = {.lex_state = 1330}, + [1488] = {.lex_state = 199}, + [1489] = {.lex_state = 1330}, + [1490] = {.lex_state = 112, .external_lex_state = 6}, + [1491] = {.lex_state = 1330}, + [1492] = {.lex_state = 199}, + [1493] = {.lex_state = 1330}, + [1494] = {.lex_state = 1330}, + [1495] = {.lex_state = 1330}, + [1496] = {.lex_state = 107, .external_lex_state = 6}, + [1497] = {.lex_state = 1329, .external_lex_state = 6}, + [1498] = {.lex_state = 1329, .external_lex_state = 6}, + [1499] = {.lex_state = 1329, .external_lex_state = 6}, + [1500] = {.lex_state = 1329, .external_lex_state = 6}, + [1501] = {.lex_state = 1329, .external_lex_state = 6}, + [1502] = {.lex_state = 198}, + [1503] = {.lex_state = 1329, .external_lex_state = 6}, + [1504] = {.lex_state = 1329, .external_lex_state = 6}, + [1505] = {.lex_state = 1329, .external_lex_state = 6}, + [1506] = {.lex_state = 1329, .external_lex_state = 6}, + [1507] = {.lex_state = 53, .external_lex_state = 6}, + [1508] = {.lex_state = 70, .external_lex_state = 7}, + [1509] = {.lex_state = 1329, .external_lex_state = 6}, + [1510] = {.lex_state = 1329, .external_lex_state = 6}, + [1511] = {.lex_state = 1329, .external_lex_state = 6}, + [1512] = {.lex_state = 1329, .external_lex_state = 6}, + [1513] = {.lex_state = 1329, .external_lex_state = 6}, + [1514] = {.lex_state = 1329, .external_lex_state = 6}, + [1515] = {.lex_state = 1329, .external_lex_state = 6}, + [1516] = {.lex_state = 1329, .external_lex_state = 6}, + [1517] = {.lex_state = 1329, .external_lex_state = 6}, + [1518] = {.lex_state = 1329, .external_lex_state = 6}, + [1519] = {.lex_state = 1329, .external_lex_state = 6}, + [1520] = {.lex_state = 1329, .external_lex_state = 6}, + [1521] = {.lex_state = 74, .external_lex_state = 6}, + [1522] = {.lex_state = 1329, .external_lex_state = 6}, + [1523] = {.lex_state = 55, .external_lex_state = 6}, + [1524] = {.lex_state = 198}, + [1525] = {.lex_state = 1329, .external_lex_state = 6}, + [1526] = {.lex_state = 1329, .external_lex_state = 6}, + [1527] = {.lex_state = 113, .external_lex_state = 6}, + [1528] = {.lex_state = 1329, .external_lex_state = 6}, + [1529] = {.lex_state = 198}, + [1530] = {.lex_state = 198}, + [1531] = {.lex_state = 1329, .external_lex_state = 6}, + [1532] = {.lex_state = 199}, + [1533] = {.lex_state = 199}, + [1534] = {.lex_state = 1330}, + [1535] = {.lex_state = 199}, + [1536] = {.lex_state = 199}, + [1537] = {.lex_state = 53, .external_lex_state = 6}, + [1538] = {.lex_state = 199}, + [1539] = {.lex_state = 199}, + [1540] = {.lex_state = 199}, + [1541] = {.lex_state = 199}, + [1542] = {.lex_state = 199}, + [1543] = {.lex_state = 199}, + [1544] = {.lex_state = 199}, + [1545] = {.lex_state = 199}, + [1546] = {.lex_state = 199}, + [1547] = {.lex_state = 199}, + [1548] = {.lex_state = 199}, + [1549] = {.lex_state = 199}, + [1550] = {.lex_state = 199}, + [1551] = {.lex_state = 199}, + [1552] = {.lex_state = 199}, + [1553] = {.lex_state = 199}, + [1554] = {.lex_state = 199}, + [1555] = {.lex_state = 199}, + [1556] = {.lex_state = 199}, + [1557] = {.lex_state = 199}, + [1558] = {.lex_state = 1330}, + [1559] = {.lex_state = 199}, + [1560] = {.lex_state = 199}, + [1561] = {.lex_state = 1330}, + [1562] = {.lex_state = 1330}, + [1563] = {.lex_state = 1330}, + [1564] = {.lex_state = 199}, + [1565] = {.lex_state = 1330}, + [1566] = {.lex_state = 1330}, + [1567] = {.lex_state = 199}, + [1568] = {.lex_state = 199}, + [1569] = {.lex_state = 1330}, + [1570] = {.lex_state = 199}, + [1571] = {.lex_state = 199}, + [1572] = {.lex_state = 199}, + [1573] = {.lex_state = 199}, + [1574] = {.lex_state = 199}, + [1575] = {.lex_state = 199}, + [1576] = {.lex_state = 199}, + [1577] = {.lex_state = 1330}, + [1578] = {.lex_state = 199}, + [1579] = {.lex_state = 1330}, + [1580] = {.lex_state = 199}, + [1581] = {.lex_state = 1330}, + [1582] = {.lex_state = 199}, + [1583] = {.lex_state = 199}, + [1584] = {.lex_state = 1330}, + [1585] = {.lex_state = 1330}, + [1586] = {.lex_state = 199}, + [1587] = {.lex_state = 199}, + [1588] = {.lex_state = 199}, + [1589] = {.lex_state = 199}, + [1590] = {.lex_state = 199}, + [1591] = {.lex_state = 199}, + [1592] = {.lex_state = 199}, + [1593] = {.lex_state = 1329, .external_lex_state = 2}, + [1594] = {.lex_state = 199}, + [1595] = {.lex_state = 199}, + [1596] = {.lex_state = 199}, + [1597] = {.lex_state = 199}, + [1598] = {.lex_state = 199}, + [1599] = {.lex_state = 199}, + [1600] = {.lex_state = 199}, + [1601] = {.lex_state = 199}, + [1602] = {.lex_state = 199}, + [1603] = {.lex_state = 199}, + [1604] = {.lex_state = 199}, + [1605] = {.lex_state = 199}, + [1606] = {.lex_state = 199}, + [1607] = {.lex_state = 199}, + [1608] = {.lex_state = 199}, + [1609] = {.lex_state = 199}, + [1610] = {.lex_state = 199}, + [1611] = {.lex_state = 199}, + [1612] = {.lex_state = 199}, + [1613] = {.lex_state = 199}, + [1614] = {.lex_state = 199}, + [1615] = {.lex_state = 1330}, + [1616] = {.lex_state = 1330}, + [1617] = {.lex_state = 1330}, + [1618] = {.lex_state = 1330}, + [1619] = {.lex_state = 1329, .external_lex_state = 2}, + [1620] = {.lex_state = 1330}, + [1621] = {.lex_state = 199}, + [1622] = {.lex_state = 1329, .external_lex_state = 2}, + [1623] = {.lex_state = 1329, .external_lex_state = 6}, + [1624] = {.lex_state = 1329, .external_lex_state = 6}, + [1625] = {.lex_state = 1329, .external_lex_state = 6}, + [1626] = {.lex_state = 1329, .external_lex_state = 6}, + [1627] = {.lex_state = 1329, .external_lex_state = 6}, + [1628] = {.lex_state = 1329, .external_lex_state = 6}, + [1629] = {.lex_state = 199}, + [1630] = {.lex_state = 199}, + [1631] = {.lex_state = 40}, + [1632] = {.lex_state = 199}, + [1633] = {.lex_state = 1329, .external_lex_state = 2}, + [1634] = {.lex_state = 199}, + [1635] = {.lex_state = 199}, + [1636] = {.lex_state = 199}, + [1637] = {.lex_state = 199}, + [1638] = {.lex_state = 199}, + [1639] = {.lex_state = 199}, + [1640] = {.lex_state = 1330}, + [1641] = {.lex_state = 1330}, + [1642] = {.lex_state = 199}, + [1643] = {.lex_state = 199}, + [1644] = {.lex_state = 1330}, + [1645] = {.lex_state = 199}, + [1646] = {.lex_state = 199}, + [1647] = {.lex_state = 199}, + [1648] = {.lex_state = 199}, + [1649] = {.lex_state = 1330}, + [1650] = {.lex_state = 1330}, + [1651] = {.lex_state = 199}, + [1652] = {.lex_state = 199}, + [1653] = {.lex_state = 199}, + [1654] = {.lex_state = 199}, + [1655] = {.lex_state = 199}, + [1656] = {.lex_state = 199}, + [1657] = {.lex_state = 199}, + [1658] = {.lex_state = 199}, + [1659] = {.lex_state = 199}, + [1660] = {.lex_state = 199}, + [1661] = {.lex_state = 199}, + [1662] = {.lex_state = 199}, + [1663] = {.lex_state = 199}, + [1664] = {.lex_state = 199}, + [1665] = {.lex_state = 199}, + [1666] = {.lex_state = 199}, + [1667] = {.lex_state = 199}, + [1668] = {.lex_state = 199}, + [1669] = {.lex_state = 199}, + [1670] = {.lex_state = 199}, + [1671] = {.lex_state = 199}, + [1672] = {.lex_state = 1329, .external_lex_state = 6}, + [1673] = {.lex_state = 1329, .external_lex_state = 6}, + [1674] = {.lex_state = 1329, .external_lex_state = 6}, + [1675] = {.lex_state = 1329, .external_lex_state = 6}, + [1676] = {.lex_state = 1329, .external_lex_state = 6}, + [1677] = {.lex_state = 199}, + [1678] = {.lex_state = 1330}, + [1679] = {.lex_state = 199}, + [1680] = {.lex_state = 199}, + [1681] = {.lex_state = 199}, + [1682] = {.lex_state = 1330}, + [1683] = {.lex_state = 199}, + [1684] = {.lex_state = 199}, + [1685] = {.lex_state = 199}, + [1686] = {.lex_state = 199}, + [1687] = {.lex_state = 1330}, + [1688] = {.lex_state = 199}, + [1689] = {.lex_state = 199}, + [1690] = {.lex_state = 1330}, + [1691] = {.lex_state = 199}, + [1692] = {.lex_state = 53, .external_lex_state = 6}, + [1693] = {.lex_state = 53, .external_lex_state = 6}, + [1694] = {.lex_state = 57, .external_lex_state = 6}, + [1695] = {.lex_state = 53, .external_lex_state = 6}, + [1696] = {.lex_state = 53, .external_lex_state = 6}, + [1697] = {.lex_state = 53, .external_lex_state = 6}, + [1698] = {.lex_state = 1330}, + [1699] = {.lex_state = 199}, + [1700] = {.lex_state = 199}, + [1701] = {.lex_state = 199}, + [1702] = {.lex_state = 199}, + [1703] = {.lex_state = 199}, + [1704] = {.lex_state = 199}, + [1705] = {.lex_state = 199}, + [1706] = {.lex_state = 199}, + [1707] = {.lex_state = 199}, + [1708] = {.lex_state = 1330}, + [1709] = {.lex_state = 199}, + [1710] = {.lex_state = 1330}, + [1711] = {.lex_state = 199}, + [1712] = {.lex_state = 1330}, + [1713] = {.lex_state = 199}, + [1714] = {.lex_state = 199}, + [1715] = {.lex_state = 199}, + [1716] = {.lex_state = 199}, + [1717] = {.lex_state = 199}, + [1718] = {.lex_state = 199}, + [1719] = {.lex_state = 199}, + [1720] = {.lex_state = 199}, + [1721] = {.lex_state = 199}, + [1722] = {.lex_state = 199}, + [1723] = {.lex_state = 199}, + [1724] = {.lex_state = 199}, + [1725] = {.lex_state = 199}, + [1726] = {.lex_state = 116, .external_lex_state = 6}, + [1727] = {.lex_state = 199}, + [1728] = {.lex_state = 53, .external_lex_state = 6}, + [1729] = {.lex_state = 53, .external_lex_state = 6}, + [1730] = {.lex_state = 53, .external_lex_state = 6}, + [1731] = {.lex_state = 199}, + [1732] = {.lex_state = 114, .external_lex_state = 6}, + [1733] = {.lex_state = 53, .external_lex_state = 6}, + [1734] = {.lex_state = 53, .external_lex_state = 6}, + [1735] = {.lex_state = 53, .external_lex_state = 6}, + [1736] = {.lex_state = 57, .external_lex_state = 3}, + [1737] = {.lex_state = 57, .external_lex_state = 3}, + [1738] = {.lex_state = 1329, .external_lex_state = 2}, + [1739] = {.lex_state = 57, .external_lex_state = 3}, + [1740] = {.lex_state = 199}, + [1741] = {.lex_state = 199}, + [1742] = {.lex_state = 199}, + [1743] = {.lex_state = 199}, + [1744] = {.lex_state = 199}, + [1745] = {.lex_state = 40}, + [1746] = {.lex_state = 199}, + [1747] = {.lex_state = 40}, + [1748] = {.lex_state = 199}, + [1749] = {.lex_state = 199}, + [1750] = {.lex_state = 199}, + [1751] = {.lex_state = 1330}, + [1752] = {.lex_state = 199}, + [1753] = {.lex_state = 199}, + [1754] = {.lex_state = 199}, + [1755] = {.lex_state = 199}, + [1756] = {.lex_state = 199}, + [1757] = {.lex_state = 199}, + [1758] = {.lex_state = 199}, + [1759] = {.lex_state = 199}, + [1760] = {.lex_state = 199}, + [1761] = {.lex_state = 1330}, + [1762] = {.lex_state = 1330}, + [1763] = {.lex_state = 1330}, + [1764] = {.lex_state = 1330}, + [1765] = {.lex_state = 1330}, + [1766] = {.lex_state = 1330}, + [1767] = {.lex_state = 1330}, + [1768] = {.lex_state = 1330}, + [1769] = {.lex_state = 1330}, + [1770] = {.lex_state = 1330}, + [1771] = {.lex_state = 1330}, + [1772] = {.lex_state = 1330}, + [1773] = {.lex_state = 199}, + [1774] = {.lex_state = 1330}, + [1775] = {.lex_state = 1330}, + [1776] = {.lex_state = 199}, + [1777] = {.lex_state = 199}, + [1778] = {.lex_state = 199}, + [1779] = {.lex_state = 1330}, + [1780] = {.lex_state = 1330}, + [1781] = {.lex_state = 1330}, + [1782] = {.lex_state = 1330}, + [1783] = {.lex_state = 1330}, + [1784] = {.lex_state = 1330}, + [1785] = {.lex_state = 1330}, + [1786] = {.lex_state = 1330}, + [1787] = {.lex_state = 1330}, + [1788] = {.lex_state = 1330}, + [1789] = {.lex_state = 1330}, + [1790] = {.lex_state = 1330}, + [1791] = {.lex_state = 1330}, + [1792] = {.lex_state = 1330}, + [1793] = {.lex_state = 1330}, + [1794] = {.lex_state = 1330}, + [1795] = {.lex_state = 1330}, + [1796] = {.lex_state = 1330}, + [1797] = {.lex_state = 1330}, + [1798] = {.lex_state = 1330}, + [1799] = {.lex_state = 1330}, + [1800] = {.lex_state = 1329, .external_lex_state = 6}, + [1801] = {.lex_state = 199}, + [1802] = {.lex_state = 1330}, + [1803] = {.lex_state = 199}, + [1804] = {.lex_state = 1330}, + [1805] = {.lex_state = 1330}, + [1806] = {.lex_state = 1330}, + [1807] = {.lex_state = 1330}, + [1808] = {.lex_state = 1330}, + [1809] = {.lex_state = 1330}, + [1810] = {.lex_state = 1330}, + [1811] = {.lex_state = 199}, + [1812] = {.lex_state = 1330}, + [1813] = {.lex_state = 1330}, + [1814] = {.lex_state = 1330}, + [1815] = {.lex_state = 1330}, + [1816] = {.lex_state = 1330}, + [1817] = {.lex_state = 1330}, + [1818] = {.lex_state = 57, .external_lex_state = 6}, + [1819] = {.lex_state = 1330}, + [1820] = {.lex_state = 1330}, + [1821] = {.lex_state = 1330}, + [1822] = {.lex_state = 1330}, + [1823] = {.lex_state = 1330}, + [1824] = {.lex_state = 1330}, + [1825] = {.lex_state = 1330}, + [1826] = {.lex_state = 1330}, + [1827] = {.lex_state = 1330}, + [1828] = {.lex_state = 1330}, + [1829] = {.lex_state = 1330}, + [1830] = {.lex_state = 1330}, + [1831] = {.lex_state = 1330}, + [1832] = {.lex_state = 1330}, + [1833] = {.lex_state = 1330}, + [1834] = {.lex_state = 1330}, + [1835] = {.lex_state = 1330}, + [1836] = {.lex_state = 199}, + [1837] = {.lex_state = 1330}, + [1838] = {.lex_state = 1330}, + [1839] = {.lex_state = 1330}, + [1840] = {.lex_state = 1330}, + [1841] = {.lex_state = 1330}, + [1842] = {.lex_state = 1330}, + [1843] = {.lex_state = 1330}, + [1844] = {.lex_state = 1330}, + [1845] = {.lex_state = 55, .external_lex_state = 6}, + [1846] = {.lex_state = 1330}, + [1847] = {.lex_state = 1330}, + [1848] = {.lex_state = 1330}, + [1849] = {.lex_state = 1330}, + [1850] = {.lex_state = 1330}, + [1851] = {.lex_state = 1330}, + [1852] = {.lex_state = 1330}, + [1853] = {.lex_state = 1330}, + [1854] = {.lex_state = 1330}, + [1855] = {.lex_state = 1330}, + [1856] = {.lex_state = 1330}, + [1857] = {.lex_state = 199}, + [1858] = {.lex_state = 199}, + [1859] = {.lex_state = 1330}, + [1860] = {.lex_state = 1330}, + [1861] = {.lex_state = 1330}, + [1862] = {.lex_state = 1330}, + [1863] = {.lex_state = 1330}, + [1864] = {.lex_state = 1330}, + [1865] = {.lex_state = 1330}, + [1866] = {.lex_state = 1330}, + [1867] = {.lex_state = 199}, + [1868] = {.lex_state = 1330}, + [1869] = {.lex_state = 1330}, + [1870] = {.lex_state = 1330}, + [1871] = {.lex_state = 1330}, + [1872] = {.lex_state = 1330}, + [1873] = {.lex_state = 1330}, + [1874] = {.lex_state = 1330}, + [1875] = {.lex_state = 1330}, + [1876] = {.lex_state = 1330}, + [1877] = {.lex_state = 1330}, + [1878] = {.lex_state = 1330}, + [1879] = {.lex_state = 1330}, + [1880] = {.lex_state = 199}, + [1881] = {.lex_state = 1330}, + [1882] = {.lex_state = 1330}, + [1883] = {.lex_state = 1330}, + [1884] = {.lex_state = 1330}, + [1885] = {.lex_state = 199}, + [1886] = {.lex_state = 1330}, + [1887] = {.lex_state = 199}, + [1888] = {.lex_state = 1330}, + [1889] = {.lex_state = 1330}, + [1890] = {.lex_state = 1330}, + [1891] = {.lex_state = 1330}, + [1892] = {.lex_state = 1330}, + [1893] = {.lex_state = 199}, + [1894] = {.lex_state = 199}, + [1895] = {.lex_state = 199}, + [1896] = {.lex_state = 199}, + [1897] = {.lex_state = 199}, + [1898] = {.lex_state = 199}, + [1899] = {.lex_state = 1330}, + [1900] = {.lex_state = 1330}, + [1901] = {.lex_state = 1330}, + [1902] = {.lex_state = 199}, + [1903] = {.lex_state = 1330}, + [1904] = {.lex_state = 1330}, + [1905] = {.lex_state = 1330}, + [1906] = {.lex_state = 1330}, + [1907] = {.lex_state = 199}, + [1908] = {.lex_state = 199}, + [1909] = {.lex_state = 199}, + [1910] = {.lex_state = 1330}, + [1911] = {.lex_state = 1330}, + [1912] = {.lex_state = 1330}, + [1913] = {.lex_state = 1330}, + [1914] = {.lex_state = 1330}, + [1915] = {.lex_state = 1330}, + [1916] = {.lex_state = 1330}, + [1917] = {.lex_state = 1330}, + [1918] = {.lex_state = 1330}, + [1919] = {.lex_state = 40}, + [1920] = {.lex_state = 53, .external_lex_state = 3}, + [1921] = {.lex_state = 53, .external_lex_state = 3}, + [1922] = {.lex_state = 55, .external_lex_state = 3}, + [1923] = {.lex_state = 73}, + [1924] = {.lex_state = 1330}, + [1925] = {.lex_state = 1330}, + [1926] = {.lex_state = 55, .external_lex_state = 3}, + [1927] = {.lex_state = 55, .external_lex_state = 3}, + [1928] = {.lex_state = 53, .external_lex_state = 3}, + [1929] = {.lex_state = 1330}, + [1930] = {.lex_state = 1330}, + [1931] = {.lex_state = 57, .external_lex_state = 6}, + [1932] = {.lex_state = 57, .external_lex_state = 6}, + [1933] = {.lex_state = 57, .external_lex_state = 6}, + [1934] = {.lex_state = 57, .external_lex_state = 6}, + [1935] = {.lex_state = 57, .external_lex_state = 6}, + [1936] = {.lex_state = 57, .external_lex_state = 6}, + [1937] = {.lex_state = 1330}, + [1938] = {.lex_state = 1330}, + [1939] = {.lex_state = 55, .external_lex_state = 6}, + [1940] = {.lex_state = 40}, + [1941] = {.lex_state = 55, .external_lex_state = 6}, + [1942] = {.lex_state = 55, .external_lex_state = 6}, + [1943] = {.lex_state = 55, .external_lex_state = 6}, + [1944] = {.lex_state = 55, .external_lex_state = 6}, + [1945] = {.lex_state = 55, .external_lex_state = 6}, + [1946] = {.lex_state = 55, .external_lex_state = 6}, + [1947] = {.lex_state = 55, .external_lex_state = 6}, + [1948] = {.lex_state = 55, .external_lex_state = 6}, + [1949] = {.lex_state = 1330}, + [1950] = {.lex_state = 1330}, + [1951] = {.lex_state = 55, .external_lex_state = 6}, + [1952] = {.lex_state = 1330}, + [1953] = {.lex_state = 1330}, + [1954] = {.lex_state = 1330}, + [1955] = {.lex_state = 1330}, + [1956] = {.lex_state = 1330}, + [1957] = {.lex_state = 1330}, + [1958] = {.lex_state = 1330}, + [1959] = {.lex_state = 1330}, + [1960] = {.lex_state = 1330}, + [1961] = {.lex_state = 1330}, + [1962] = {.lex_state = 1330}, + [1963] = {.lex_state = 1330}, + [1964] = {.lex_state = 1330}, + [1965] = {.lex_state = 55, .external_lex_state = 6}, + [1966] = {.lex_state = 57, .external_lex_state = 6}, + [1967] = {.lex_state = 57, .external_lex_state = 6}, + [1968] = {.lex_state = 57, .external_lex_state = 6}, + [1969] = {.lex_state = 57, .external_lex_state = 6}, + [1970] = {.lex_state = 57, .external_lex_state = 6}, + [1971] = {.lex_state = 200}, + [1972] = {.lex_state = 1331}, + [1973] = {.lex_state = 56, .external_lex_state = 3}, + [1974] = {.lex_state = 70, .external_lex_state = 7}, + [1975] = {.lex_state = 1331}, + [1976] = {.lex_state = 56, .external_lex_state = 3}, + [1977] = {.lex_state = 1331}, + [1978] = {.lex_state = 1331}, + [1979] = {.lex_state = 1331}, + [1980] = {.lex_state = 1331}, + [1981] = {.lex_state = 1331}, + [1982] = {.lex_state = 1331}, + [1983] = {.lex_state = 1331}, + [1984] = {.lex_state = 1331}, + [1985] = {.lex_state = 1331}, + [1986] = {.lex_state = 1331}, + [1987] = {.lex_state = 1331}, + [1988] = {.lex_state = 56, .external_lex_state = 3}, + [1989] = {.lex_state = 1331}, + [1990] = {.lex_state = 1331}, + [1991] = {.lex_state = 115, .external_lex_state = 6}, + [1992] = {.lex_state = 1331}, + [1993] = {.lex_state = 1331}, + [1994] = {.lex_state = 1331}, + [1995] = {.lex_state = 1331}, + [1996] = {.lex_state = 200}, + [1997] = {.lex_state = 54, .external_lex_state = 3}, + [1998] = {.lex_state = 1331}, + [1999] = {.lex_state = 1331}, + [2000] = {.lex_state = 1331}, + [2001] = {.lex_state = 1331}, + [2002] = {.lex_state = 57, .external_lex_state = 6}, + [2003] = {.lex_state = 1331}, + [2004] = {.lex_state = 1331}, + [2005] = {.lex_state = 1331}, + [2006] = {.lex_state = 1331}, + [2007] = {.lex_state = 1331}, + [2008] = {.lex_state = 54, .external_lex_state = 3}, + [2009] = {.lex_state = 54, .external_lex_state = 3}, + [2010] = {.lex_state = 1331}, + [2011] = {.lex_state = 200}, + [2012] = {.lex_state = 56, .external_lex_state = 6}, + [2013] = {.lex_state = 1331}, + [2014] = {.lex_state = 1331}, + [2015] = {.lex_state = 1331}, + [2016] = {.lex_state = 56, .external_lex_state = 6}, + [2017] = {.lex_state = 1331}, + [2018] = {.lex_state = 200}, + [2019] = {.lex_state = 200}, + [2020] = {.lex_state = 200}, + [2021] = {.lex_state = 200}, + [2022] = {.lex_state = 117, .external_lex_state = 6}, + [2023] = {.lex_state = 56, .external_lex_state = 6}, + [2024] = {.lex_state = 200}, + [2025] = {.lex_state = 200}, + [2026] = {.lex_state = 200}, + [2027] = {.lex_state = 200}, + [2028] = {.lex_state = 200}, + [2029] = {.lex_state = 200}, + [2030] = {.lex_state = 200}, + [2031] = {.lex_state = 200}, + [2032] = {.lex_state = 56, .external_lex_state = 6}, + [2033] = {.lex_state = 200}, + [2034] = {.lex_state = 56, .external_lex_state = 6}, + [2035] = {.lex_state = 200}, + [2036] = {.lex_state = 200}, + [2037] = {.lex_state = 200}, + [2038] = {.lex_state = 200}, + [2039] = {.lex_state = 56, .external_lex_state = 6}, + [2040] = {.lex_state = 200}, + [2041] = {.lex_state = 200}, + [2042] = {.lex_state = 200}, + [2043] = {.lex_state = 200}, + [2044] = {.lex_state = 200}, + [2045] = {.lex_state = 200}, + [2046] = {.lex_state = 200}, + [2047] = {.lex_state = 200}, + [2048] = {.lex_state = 200}, + [2049] = {.lex_state = 200}, + [2050] = {.lex_state = 200}, + [2051] = {.lex_state = 200}, + [2052] = {.lex_state = 200}, + [2053] = {.lex_state = 200}, + [2054] = {.lex_state = 200}, + [2055] = {.lex_state = 200}, + [2056] = {.lex_state = 56, .external_lex_state = 6}, + [2057] = {.lex_state = 1331}, + [2058] = {.lex_state = 1331}, + [2059] = {.lex_state = 200}, + [2060] = {.lex_state = 200}, + [2061] = {.lex_state = 1331}, + [2062] = {.lex_state = 1331}, + [2063] = {.lex_state = 200}, + [2064] = {.lex_state = 1331}, + [2065] = {.lex_state = 1331}, + [2066] = {.lex_state = 56, .external_lex_state = 6}, + [2067] = {.lex_state = 200}, + [2068] = {.lex_state = 200}, + [2069] = {.lex_state = 56, .external_lex_state = 6}, + [2070] = {.lex_state = 200}, + [2071] = {.lex_state = 200}, + [2072] = {.lex_state = 200}, + [2073] = {.lex_state = 56, .external_lex_state = 6}, + [2074] = {.lex_state = 56, .external_lex_state = 6}, + [2075] = {.lex_state = 56, .external_lex_state = 6}, + [2076] = {.lex_state = 56, .external_lex_state = 6}, + [2077] = {.lex_state = 1331}, + [2078] = {.lex_state = 200}, + [2079] = {.lex_state = 200}, + [2080] = {.lex_state = 200}, + [2081] = {.lex_state = 200}, + [2082] = {.lex_state = 200}, + [2083] = {.lex_state = 200}, + [2084] = {.lex_state = 200}, + [2085] = {.lex_state = 200}, + [2086] = {.lex_state = 200}, + [2087] = {.lex_state = 200}, + [2088] = {.lex_state = 200}, + [2089] = {.lex_state = 200}, + [2090] = {.lex_state = 200}, + [2091] = {.lex_state = 1331}, + [2092] = {.lex_state = 200}, + [2093] = {.lex_state = 54, .external_lex_state = 6}, + [2094] = {.lex_state = 54, .external_lex_state = 6}, + [2095] = {.lex_state = 54, .external_lex_state = 6}, + [2096] = {.lex_state = 54, .external_lex_state = 6}, + [2097] = {.lex_state = 54, .external_lex_state = 6}, + [2098] = {.lex_state = 54, .external_lex_state = 6}, + [2099] = {.lex_state = 200}, + [2100] = {.lex_state = 200}, + [2101] = {.lex_state = 28, .external_lex_state = 3}, + [2102] = {.lex_state = 1331}, + [2103] = {.lex_state = 200}, + [2104] = {.lex_state = 1331}, + [2105] = {.lex_state = 1329, .external_lex_state = 6}, + [2106] = {.lex_state = 200}, + [2107] = {.lex_state = 54, .external_lex_state = 6}, + [2108] = {.lex_state = 54, .external_lex_state = 6}, + [2109] = {.lex_state = 54, .external_lex_state = 6}, + [2110] = {.lex_state = 54, .external_lex_state = 6}, + [2111] = {.lex_state = 200}, + [2112] = {.lex_state = 200}, + [2113] = {.lex_state = 200}, + [2114] = {.lex_state = 1329, .external_lex_state = 6}, + [2115] = {.lex_state = 54, .external_lex_state = 6}, + [2116] = {.lex_state = 200}, + [2117] = {.lex_state = 200}, + [2118] = {.lex_state = 200}, + [2119] = {.lex_state = 200}, + [2120] = {.lex_state = 200}, + [2121] = {.lex_state = 200}, + [2122] = {.lex_state = 200}, + [2123] = {.lex_state = 200}, + [2124] = {.lex_state = 200}, + [2125] = {.lex_state = 200}, + [2126] = {.lex_state = 200}, + [2127] = {.lex_state = 200}, + [2128] = {.lex_state = 200}, + [2129] = {.lex_state = 54, .external_lex_state = 6}, + [2130] = {.lex_state = 1331}, + [2131] = {.lex_state = 1331}, + [2132] = {.lex_state = 28, .external_lex_state = 3}, + [2133] = {.lex_state = 1329, .external_lex_state = 6}, + [2134] = {.lex_state = 67, .external_lex_state = 7}, + [2135] = {.lex_state = 28, .external_lex_state = 3}, + [2136] = {.lex_state = 200}, + [2137] = {.lex_state = 200}, + [2138] = {.lex_state = 200}, + [2139] = {.lex_state = 200}, + [2140] = {.lex_state = 200}, + [2141] = {.lex_state = 200}, + [2142] = {.lex_state = 200}, + [2143] = {.lex_state = 200}, + [2144] = {.lex_state = 200}, + [2145] = {.lex_state = 200}, + [2146] = {.lex_state = 67, .external_lex_state = 7}, + [2147] = {.lex_state = 1331}, + [2148] = {.lex_state = 1331}, + [2149] = {.lex_state = 1329, .external_lex_state = 6}, + [2150] = {.lex_state = 1331}, + [2151] = {.lex_state = 1331}, + [2152] = {.lex_state = 200}, + [2153] = {.lex_state = 200}, + [2154] = {.lex_state = 1331}, + [2155] = {.lex_state = 1331}, + [2156] = {.lex_state = 1331}, + [2157] = {.lex_state = 1331}, + [2158] = {.lex_state = 1331}, + [2159] = {.lex_state = 200}, + [2160] = {.lex_state = 200}, + [2161] = {.lex_state = 1331}, + [2162] = {.lex_state = 1331}, + [2163] = {.lex_state = 1331}, + [2164] = {.lex_state = 1331}, + [2165] = {.lex_state = 200}, + [2166] = {.lex_state = 200}, + [2167] = {.lex_state = 1331}, + [2168] = {.lex_state = 200}, + [2169] = {.lex_state = 200}, + [2170] = {.lex_state = 200}, + [2171] = {.lex_state = 200}, + [2172] = {.lex_state = 200}, + [2173] = {.lex_state = 200}, + [2174] = {.lex_state = 200}, + [2175] = {.lex_state = 200}, + [2176] = {.lex_state = 200}, + [2177] = {.lex_state = 200}, + [2178] = {.lex_state = 1331}, + [2179] = {.lex_state = 1331}, + [2180] = {.lex_state = 200}, + [2181] = {.lex_state = 200}, + [2182] = {.lex_state = 1331}, + [2183] = {.lex_state = 1331}, + [2184] = {.lex_state = 1331}, + [2185] = {.lex_state = 1329, .external_lex_state = 6}, + [2186] = {.lex_state = 200}, + [2187] = {.lex_state = 200}, + [2188] = {.lex_state = 200}, + [2189] = {.lex_state = 200}, + [2190] = {.lex_state = 200}, + [2191] = {.lex_state = 200}, + [2192] = {.lex_state = 1331}, + [2193] = {.lex_state = 1331}, + [2194] = {.lex_state = 70, .external_lex_state = 7}, + [2195] = {.lex_state = 1331}, + [2196] = {.lex_state = 55, .external_lex_state = 3}, + [2197] = {.lex_state = 53, .external_lex_state = 6}, + [2198] = {.lex_state = 200}, + [2199] = {.lex_state = 55, .external_lex_state = 3}, + [2200] = {.lex_state = 1331}, + [2201] = {.lex_state = 28, .external_lex_state = 6}, + [2202] = {.lex_state = 28, .external_lex_state = 6}, + [2203] = {.lex_state = 200}, + [2204] = {.lex_state = 1331}, + [2205] = {.lex_state = 200}, + [2206] = {.lex_state = 1331}, + [2207] = {.lex_state = 28, .external_lex_state = 6}, + [2208] = {.lex_state = 28, .external_lex_state = 6}, + [2209] = {.lex_state = 200}, + [2210] = {.lex_state = 200}, + [2211] = {.lex_state = 28, .external_lex_state = 6}, + [2212] = {.lex_state = 200}, + [2213] = {.lex_state = 28, .external_lex_state = 6}, + [2214] = {.lex_state = 28, .external_lex_state = 6}, + [2215] = {.lex_state = 1331}, + [2216] = {.lex_state = 1331}, + [2217] = {.lex_state = 200}, + [2218] = {.lex_state = 1331}, + [2219] = {.lex_state = 1331}, + [2220] = {.lex_state = 1331}, + [2221] = {.lex_state = 1331}, + [2222] = {.lex_state = 28, .external_lex_state = 6}, + [2223] = {.lex_state = 200}, + [2224] = {.lex_state = 200}, + [2225] = {.lex_state = 200}, + [2226] = {.lex_state = 28, .external_lex_state = 6}, + [2227] = {.lex_state = 200}, + [2228] = {.lex_state = 200}, + [2229] = {.lex_state = 28, .external_lex_state = 6}, + [2230] = {.lex_state = 28, .external_lex_state = 6}, + [2231] = {.lex_state = 200}, + [2232] = {.lex_state = 28, .external_lex_state = 6}, + [2233] = {.lex_state = 28, .external_lex_state = 6}, + [2234] = {.lex_state = 200}, + [2235] = {.lex_state = 1331}, + [2236] = {.lex_state = 200}, + [2237] = {.lex_state = 200}, + [2238] = {.lex_state = 200}, + [2239] = {.lex_state = 1331}, + [2240] = {.lex_state = 1331}, + [2241] = {.lex_state = 200}, + [2242] = {.lex_state = 200}, + [2243] = {.lex_state = 1331}, + [2244] = {.lex_state = 200}, + [2245] = {.lex_state = 200}, + [2246] = {.lex_state = 200}, + [2247] = {.lex_state = 200}, + [2248] = {.lex_state = 1331}, + [2249] = {.lex_state = 1331}, + [2250] = {.lex_state = 1331}, + [2251] = {.lex_state = 200}, + [2252] = {.lex_state = 54, .external_lex_state = 6}, + [2253] = {.lex_state = 200}, + [2254] = {.lex_state = 200}, + [2255] = {.lex_state = 200}, + [2256] = {.lex_state = 200}, + [2257] = {.lex_state = 200}, + [2258] = {.lex_state = 1331}, + [2259] = {.lex_state = 1331}, + [2260] = {.lex_state = 200}, + [2261] = {.lex_state = 200}, + [2262] = {.lex_state = 1331}, + [2263] = {.lex_state = 1331}, + [2264] = {.lex_state = 1331}, + [2265] = {.lex_state = 200}, + [2266] = {.lex_state = 1331}, + [2267] = {.lex_state = 1331}, + [2268] = {.lex_state = 1331}, + [2269] = {.lex_state = 200}, + [2270] = {.lex_state = 200}, + [2271] = {.lex_state = 1331}, + [2272] = {.lex_state = 1329, .external_lex_state = 6}, + [2273] = {.lex_state = 200}, + [2274] = {.lex_state = 1331}, + [2275] = {.lex_state = 200}, + [2276] = {.lex_state = 1331}, + [2277] = {.lex_state = 1331}, + [2278] = {.lex_state = 200}, + [2279] = {.lex_state = 1331}, + [2280] = {.lex_state = 200}, + [2281] = {.lex_state = 200}, + [2282] = {.lex_state = 200}, + [2283] = {.lex_state = 55, .external_lex_state = 6}, + [2284] = {.lex_state = 200}, + [2285] = {.lex_state = 1331}, + [2286] = {.lex_state = 1331}, + [2287] = {.lex_state = 200}, + [2288] = {.lex_state = 200}, + [2289] = {.lex_state = 1331}, + [2290] = {.lex_state = 200}, + [2291] = {.lex_state = 1331}, + [2292] = {.lex_state = 1331}, + [2293] = {.lex_state = 1331}, + [2294] = {.lex_state = 200}, + [2295] = {.lex_state = 200}, + [2296] = {.lex_state = 1331}, + [2297] = {.lex_state = 1331}, + [2298] = {.lex_state = 200}, + [2299] = {.lex_state = 200}, + [2300] = {.lex_state = 200}, + [2301] = {.lex_state = 200}, + [2302] = {.lex_state = 1331}, + [2303] = {.lex_state = 1331}, + [2304] = {.lex_state = 200}, + [2305] = {.lex_state = 1331}, + [2306] = {.lex_state = 1331}, + [2307] = {.lex_state = 67, .external_lex_state = 7}, + [2308] = {.lex_state = 200}, + [2309] = {.lex_state = 200}, + [2310] = {.lex_state = 1331}, + [2311] = {.lex_state = 1331}, + [2312] = {.lex_state = 1331}, + [2313] = {.lex_state = 200}, + [2314] = {.lex_state = 200}, + [2315] = {.lex_state = 200}, + [2316] = {.lex_state = 200}, + [2317] = {.lex_state = 53, .external_lex_state = 3}, + [2318] = {.lex_state = 53, .external_lex_state = 3}, + [2319] = {.lex_state = 200}, + [2320] = {.lex_state = 200}, + [2321] = {.lex_state = 1331}, + [2322] = {.lex_state = 1331}, + [2323] = {.lex_state = 200}, + [2324] = {.lex_state = 200}, + [2325] = {.lex_state = 1331}, + [2326] = {.lex_state = 1331}, + [2327] = {.lex_state = 1331}, + [2328] = {.lex_state = 1331}, + [2329] = {.lex_state = 200}, + [2330] = {.lex_state = 200}, + [2331] = {.lex_state = 200}, + [2332] = {.lex_state = 1331}, + [2333] = {.lex_state = 1331}, + [2334] = {.lex_state = 1331}, + [2335] = {.lex_state = 29, .external_lex_state = 6}, + [2336] = {.lex_state = 1331}, + [2337] = {.lex_state = 200}, + [2338] = {.lex_state = 200}, + [2339] = {.lex_state = 200}, + [2340] = {.lex_state = 200}, + [2341] = {.lex_state = 200}, + [2342] = {.lex_state = 200}, + [2343] = {.lex_state = 1331}, + [2344] = {.lex_state = 1331}, + [2345] = {.lex_state = 1331}, + [2346] = {.lex_state = 1331}, + [2347] = {.lex_state = 1331}, + [2348] = {.lex_state = 1331}, + [2349] = {.lex_state = 1331}, + [2350] = {.lex_state = 1331}, + [2351] = {.lex_state = 1331}, + [2352] = {.lex_state = 1331}, + [2353] = {.lex_state = 1331}, + [2354] = {.lex_state = 1331}, + [2355] = {.lex_state = 1331}, + [2356] = {.lex_state = 1331}, + [2357] = {.lex_state = 1331}, + [2358] = {.lex_state = 1331}, + [2359] = {.lex_state = 1331}, + [2360] = {.lex_state = 1331}, + [2361] = {.lex_state = 1331}, + [2362] = {.lex_state = 1331}, + [2363] = {.lex_state = 1331}, + [2364] = {.lex_state = 1331}, + [2365] = {.lex_state = 1331}, + [2366] = {.lex_state = 1331}, + [2367] = {.lex_state = 1331}, + [2368] = {.lex_state = 1331}, + [2369] = {.lex_state = 1329, .external_lex_state = 6}, + [2370] = {.lex_state = 1329, .external_lex_state = 6}, + [2371] = {.lex_state = 1329, .external_lex_state = 6}, + [2372] = {.lex_state = 1329, .external_lex_state = 6}, + [2373] = {.lex_state = 1329, .external_lex_state = 6}, + [2374] = {.lex_state = 1329, .external_lex_state = 6}, + [2375] = {.lex_state = 1329, .external_lex_state = 6}, + [2376] = {.lex_state = 1329, .external_lex_state = 6}, + [2377] = {.lex_state = 1329, .external_lex_state = 6}, + [2378] = {.lex_state = 1329, .external_lex_state = 6}, + [2379] = {.lex_state = 1329, .external_lex_state = 6}, + [2380] = {.lex_state = 1329, .external_lex_state = 6}, + [2381] = {.lex_state = 1331}, + [2382] = {.lex_state = 1329, .external_lex_state = 6}, + [2383] = {.lex_state = 1331}, + [2384] = {.lex_state = 1329, .external_lex_state = 6}, + [2385] = {.lex_state = 1329, .external_lex_state = 6}, + [2386] = {.lex_state = 1331}, + [2387] = {.lex_state = 1329, .external_lex_state = 6}, + [2388] = {.lex_state = 1329, .external_lex_state = 6}, + [2389] = {.lex_state = 1329, .external_lex_state = 6}, + [2390] = {.lex_state = 1329, .external_lex_state = 6}, + [2391] = {.lex_state = 1329, .external_lex_state = 6}, + [2392] = {.lex_state = 1331}, + [2393] = {.lex_state = 1329, .external_lex_state = 6}, + [2394] = {.lex_state = 1329, .external_lex_state = 6}, + [2395] = {.lex_state = 1329, .external_lex_state = 6}, + [2396] = {.lex_state = 1329, .external_lex_state = 6}, + [2397] = {.lex_state = 1331}, + [2398] = {.lex_state = 1331}, + [2399] = {.lex_state = 1331}, + [2400] = {.lex_state = 1331}, + [2401] = {.lex_state = 40}, + [2402] = {.lex_state = 1331}, + [2403] = {.lex_state = 1331}, + [2404] = {.lex_state = 1331}, + [2405] = {.lex_state = 1331}, + [2406] = {.lex_state = 1331}, + [2407] = {.lex_state = 1331}, + [2408] = {.lex_state = 1331}, + [2409] = {.lex_state = 1331}, + [2410] = {.lex_state = 1331}, + [2411] = {.lex_state = 1331}, + [2412] = {.lex_state = 1331}, + [2413] = {.lex_state = 1329, .external_lex_state = 6}, + [2414] = {.lex_state = 1331}, + [2415] = {.lex_state = 1331}, + [2416] = {.lex_state = 1331}, + [2417] = {.lex_state = 1331}, + [2418] = {.lex_state = 1331}, + [2419] = {.lex_state = 1331}, + [2420] = {.lex_state = 1331}, + [2421] = {.lex_state = 1331}, + [2422] = {.lex_state = 57, .external_lex_state = 3}, + [2423] = {.lex_state = 57, .external_lex_state = 3}, + [2424] = {.lex_state = 1331}, + [2425] = {.lex_state = 1331}, + [2426] = {.lex_state = 1331}, + [2427] = {.lex_state = 1331}, + [2428] = {.lex_state = 1331}, + [2429] = {.lex_state = 1331}, + [2430] = {.lex_state = 1331}, + [2431] = {.lex_state = 1331}, + [2432] = {.lex_state = 28, .external_lex_state = 6}, + [2433] = {.lex_state = 28, .external_lex_state = 6}, + [2434] = {.lex_state = 53, .external_lex_state = 3}, + [2435] = {.lex_state = 37, .external_lex_state = 11}, + [2436] = {.lex_state = 56, .external_lex_state = 3}, + [2437] = {.lex_state = 53, .external_lex_state = 3}, + [2438] = {.lex_state = 84, .external_lex_state = 3}, + [2439] = {.lex_state = 37, .external_lex_state = 11}, + [2440] = {.lex_state = 37, .external_lex_state = 11}, + [2441] = {.lex_state = 37, .external_lex_state = 11}, + [2442] = {.lex_state = 1329, .external_lex_state = 6}, + [2443] = {.lex_state = 56, .external_lex_state = 3}, + [2444] = {.lex_state = 90, .external_lex_state = 3}, + [2445] = {.lex_state = 84, .external_lex_state = 3}, + [2446] = {.lex_state = 53, .external_lex_state = 3}, + [2447] = {.lex_state = 37, .external_lex_state = 11}, + [2448] = {.lex_state = 53, .external_lex_state = 4}, + [2449] = {.lex_state = 57, .external_lex_state = 4}, + [2450] = {.lex_state = 53, .external_lex_state = 3}, + [2451] = {.lex_state = 37, .external_lex_state = 11}, + [2452] = {.lex_state = 57, .external_lex_state = 4}, + [2453] = {.lex_state = 55, .external_lex_state = 4}, + [2454] = {.lex_state = 54, .external_lex_state = 3}, + [2455] = {.lex_state = 78, .external_lex_state = 6}, + [2456] = {.lex_state = 84, .external_lex_state = 3}, + [2457] = {.lex_state = 87, .external_lex_state = 3}, + [2458] = {.lex_state = 90, .external_lex_state = 3}, + [2459] = {.lex_state = 53, .external_lex_state = 3}, + [2460] = {.lex_state = 1329, .external_lex_state = 6}, + [2461] = {.lex_state = 54, .external_lex_state = 3}, + [2462] = {.lex_state = 1329, .external_lex_state = 6}, + [2463] = {.lex_state = 1329, .external_lex_state = 6}, + [2464] = {.lex_state = 1329, .external_lex_state = 6}, + [2465] = {.lex_state = 1329, .external_lex_state = 6}, + [2466] = {.lex_state = 1329, .external_lex_state = 6}, + [2467] = {.lex_state = 90, .external_lex_state = 3}, + [2468] = {.lex_state = 1329, .external_lex_state = 6}, + [2469] = {.lex_state = 1329, .external_lex_state = 6}, + [2470] = {.lex_state = 1329, .external_lex_state = 6}, + [2471] = {.lex_state = 57, .external_lex_state = 5}, + [2472] = {.lex_state = 57, .external_lex_state = 6}, + [2473] = {.lex_state = 57, .external_lex_state = 3}, + [2474] = {.lex_state = 1329, .external_lex_state = 6}, + [2475] = {.lex_state = 1329, .external_lex_state = 6}, + [2476] = {.lex_state = 90, .external_lex_state = 3}, + [2477] = {.lex_state = 1329, .external_lex_state = 6}, + [2478] = {.lex_state = 53, .external_lex_state = 4}, + [2479] = {.lex_state = 53, .external_lex_state = 5}, + [2480] = {.lex_state = 1329, .external_lex_state = 6}, + [2481] = {.lex_state = 120, .external_lex_state = 6}, + [2482] = {.lex_state = 80, .external_lex_state = 3}, + [2483] = {.lex_state = 87, .external_lex_state = 3}, + [2484] = {.lex_state = 80, .external_lex_state = 3}, + [2485] = {.lex_state = 54, .external_lex_state = 6}, + [2486] = {.lex_state = 28, .external_lex_state = 3}, + [2487] = {.lex_state = 28, .external_lex_state = 3}, + [2488] = {.lex_state = 37, .external_lex_state = 11}, + [2489] = {.lex_state = 88, .external_lex_state = 6}, + [2490] = {.lex_state = 56, .external_lex_state = 6}, + [2491] = {.lex_state = 87, .external_lex_state = 3}, + [2492] = {.lex_state = 55, .external_lex_state = 5}, + [2493] = {.lex_state = 57, .external_lex_state = 4}, + [2494] = {.lex_state = 53, .external_lex_state = 3}, + [2495] = {.lex_state = 53, .external_lex_state = 4}, + [2496] = {.lex_state = 53, .external_lex_state = 6}, + [2497] = {.lex_state = 37, .external_lex_state = 11}, + [2498] = {.lex_state = 57, .external_lex_state = 3}, + [2499] = {.lex_state = 55, .external_lex_state = 4}, + [2500] = {.lex_state = 55, .external_lex_state = 3}, + [2501] = {.lex_state = 37, .external_lex_state = 11}, + [2502] = {.lex_state = 55, .external_lex_state = 3}, + [2503] = {.lex_state = 37, .external_lex_state = 11}, + [2504] = {.lex_state = 55, .external_lex_state = 6}, + [2505] = {.lex_state = 1329, .external_lex_state = 6}, + [2506] = {.lex_state = 87, .external_lex_state = 3}, + [2507] = {.lex_state = 55, .external_lex_state = 4}, + [2508] = {.lex_state = 80, .external_lex_state = 3}, + [2509] = {.lex_state = 55, .external_lex_state = 4}, + [2510] = {.lex_state = 80, .external_lex_state = 3}, + [2511] = {.lex_state = 118, .external_lex_state = 6}, + [2512] = {.lex_state = 53, .external_lex_state = 4}, + [2513] = {.lex_state = 57, .external_lex_state = 5}, + [2514] = {.lex_state = 55, .external_lex_state = 5}, + [2515] = {.lex_state = 53, .external_lex_state = 5}, + [2516] = {.lex_state = 84, .external_lex_state = 3}, + [2517] = {.lex_state = 57, .external_lex_state = 4}, + [2518] = {.lex_state = 53, .external_lex_state = 6}, + [2519] = {.lex_state = 71, .external_lex_state = 7}, + [2520] = {.lex_state = 57, .external_lex_state = 4}, + [2521] = {.lex_state = 54, .external_lex_state = 6}, + [2522] = {.lex_state = 31, .external_lex_state = 3}, + [2523] = {.lex_state = 56, .external_lex_state = 5}, + [2524] = {.lex_state = 79, .external_lex_state = 6}, + [2525] = {.lex_state = 28, .external_lex_state = 3}, + [2526] = {.lex_state = 1329, .external_lex_state = 6}, + [2527] = {.lex_state = 55, .external_lex_state = 4}, + [2528] = {.lex_state = 54, .external_lex_state = 4}, + [2529] = {.lex_state = 56, .external_lex_state = 4}, + [2530] = {.lex_state = 56, .external_lex_state = 4}, + [2531] = {.lex_state = 53, .external_lex_state = 3}, + [2532] = {.lex_state = 32, .external_lex_state = 3}, + [2533] = {.lex_state = 32, .external_lex_state = 3}, + [2534] = {.lex_state = 55, .external_lex_state = 3}, + [2535] = {.lex_state = 55, .external_lex_state = 5}, + [2536] = {.lex_state = 57, .external_lex_state = 3}, + [2537] = {.lex_state = 89, .external_lex_state = 6}, + [2538] = {.lex_state = 28, .external_lex_state = 3}, + [2539] = {.lex_state = 28, .external_lex_state = 6}, + [2540] = {.lex_state = 57, .external_lex_state = 6}, + [2541] = {.lex_state = 71, .external_lex_state = 7}, + [2542] = {.lex_state = 57, .external_lex_state = 3}, + [2543] = {.lex_state = 54, .external_lex_state = 3}, + [2544] = {.lex_state = 54, .external_lex_state = 4}, + [2545] = {.lex_state = 54, .external_lex_state = 4}, + [2546] = {.lex_state = 32, .external_lex_state = 3}, + [2547] = {.lex_state = 28, .external_lex_state = 4}, + [2548] = {.lex_state = 1329, .external_lex_state = 6}, + [2549] = {.lex_state = 53, .external_lex_state = 3}, + [2550] = {.lex_state = 91, .external_lex_state = 3}, + [2551] = {.lex_state = 56, .external_lex_state = 3}, + [2552] = {.lex_state = 55, .external_lex_state = 3}, + [2553] = {.lex_state = 54, .external_lex_state = 4}, + [2554] = {.lex_state = 53, .external_lex_state = 5}, + [2555] = {.lex_state = 119, .external_lex_state = 6}, + [2556] = {.lex_state = 54, .external_lex_state = 5}, + [2557] = {.lex_state = 57, .external_lex_state = 5}, + [2558] = {.lex_state = 54, .external_lex_state = 3}, + [2559] = {.lex_state = 28, .external_lex_state = 4}, + [2560] = {.lex_state = 32, .external_lex_state = 3}, + [2561] = {.lex_state = 81, .external_lex_state = 3}, + [2562] = {.lex_state = 1329, .external_lex_state = 6}, + [2563] = {.lex_state = 1329, .external_lex_state = 6}, + [2564] = {.lex_state = 1329, .external_lex_state = 6}, + [2565] = {.lex_state = 1329, .external_lex_state = 6}, + [2566] = {.lex_state = 1329, .external_lex_state = 6}, + [2567] = {.lex_state = 1329, .external_lex_state = 6}, + [2568] = {.lex_state = 1329, .external_lex_state = 6}, + [2569] = {.lex_state = 1329, .external_lex_state = 6}, + [2570] = {.lex_state = 1329, .external_lex_state = 6}, + [2571] = {.lex_state = 1329, .external_lex_state = 6}, + [2572] = {.lex_state = 1329, .external_lex_state = 6}, + [2573] = {.lex_state = 1329, .external_lex_state = 6}, + [2574] = {.lex_state = 28, .external_lex_state = 5}, + [2575] = {.lex_state = 53, .external_lex_state = 3}, + [2576] = {.lex_state = 53, .external_lex_state = 4}, + [2577] = {.lex_state = 1329, .external_lex_state = 6}, + [2578] = {.lex_state = 81, .external_lex_state = 3}, + [2579] = {.lex_state = 81, .external_lex_state = 3}, + [2580] = {.lex_state = 28, .external_lex_state = 4}, + [2581] = {.lex_state = 1329, .external_lex_state = 6}, + [2582] = {.lex_state = 1329, .external_lex_state = 6}, + [2583] = {.lex_state = 1329, .external_lex_state = 6}, + [2584] = {.lex_state = 1329, .external_lex_state = 6}, + [2585] = {.lex_state = 1329, .external_lex_state = 6}, + [2586] = {.lex_state = 1329, .external_lex_state = 6}, + [2587] = {.lex_state = 1329, .external_lex_state = 6}, + [2588] = {.lex_state = 1329, .external_lex_state = 6}, + [2589] = {.lex_state = 1329, .external_lex_state = 6}, + [2590] = {.lex_state = 1329, .external_lex_state = 6}, + [2591] = {.lex_state = 1329, .external_lex_state = 6}, + [2592] = {.lex_state = 1329, .external_lex_state = 6}, + [2593] = {.lex_state = 57, .external_lex_state = 4}, + [2594] = {.lex_state = 29, .external_lex_state = 6}, + [2595] = {.lex_state = 54, .external_lex_state = 3}, + [2596] = {.lex_state = 71, .external_lex_state = 7}, + [2597] = {.lex_state = 55, .external_lex_state = 6}, + [2598] = {.lex_state = 54, .external_lex_state = 3}, + [2599] = {.lex_state = 54, .external_lex_state = 3}, + [2600] = {.lex_state = 56, .external_lex_state = 3}, + [2601] = {.lex_state = 56, .external_lex_state = 6}, + [2602] = {.lex_state = 54, .external_lex_state = 3}, + [2603] = {.lex_state = 85, .external_lex_state = 6}, + [2604] = {.lex_state = 56, .external_lex_state = 4}, + [2605] = {.lex_state = 1329, .external_lex_state = 6}, + [2606] = {.lex_state = 56, .external_lex_state = 5}, + [2607] = {.lex_state = 1329, .external_lex_state = 6}, + [2608] = {.lex_state = 31, .external_lex_state = 3}, + [2609] = {.lex_state = 1329, .external_lex_state = 6}, + [2610] = {.lex_state = 1329, .external_lex_state = 6}, + [2611] = {.lex_state = 81, .external_lex_state = 3}, + [2612] = {.lex_state = 53, .external_lex_state = 4}, + [2613] = {.lex_state = 1329, .external_lex_state = 6}, + [2614] = {.lex_state = 1329, .external_lex_state = 6}, + [2615] = {.lex_state = 1329, .external_lex_state = 6}, + [2616] = {.lex_state = 28, .external_lex_state = 4}, + [2617] = {.lex_state = 1329, .external_lex_state = 6}, + [2618] = {.lex_state = 1329, .external_lex_state = 6}, + [2619] = {.lex_state = 31, .external_lex_state = 3}, + [2620] = {.lex_state = 1329, .external_lex_state = 6}, + [2621] = {.lex_state = 1329, .external_lex_state = 6}, + [2622] = {.lex_state = 1329, .external_lex_state = 6}, + [2623] = {.lex_state = 56, .external_lex_state = 4}, + [2624] = {.lex_state = 28, .external_lex_state = 5}, + [2625] = {.lex_state = 31, .external_lex_state = 3}, + [2626] = {.lex_state = 91, .external_lex_state = 3}, + [2627] = {.lex_state = 122, .external_lex_state = 6}, + [2628] = {.lex_state = 91, .external_lex_state = 3}, + [2629] = {.lex_state = 91, .external_lex_state = 3}, + [2630] = {.lex_state = 54, .external_lex_state = 5}, + [2631] = {.lex_state = 55, .external_lex_state = 4}, + [2632] = {.lex_state = 57, .external_lex_state = 6}, + [2633] = {.lex_state = 57, .external_lex_state = 6}, + [2634] = {.lex_state = 57, .external_lex_state = 6}, + [2635] = {.lex_state = 1329, .external_lex_state = 6}, + [2636] = {.lex_state = 37}, + [2637] = {.lex_state = 1329, .external_lex_state = 6}, + [2638] = {.lex_state = 1329, .external_lex_state = 6}, + [2639] = {.lex_state = 1329, .external_lex_state = 6}, + [2640] = {.lex_state = 1329, .external_lex_state = 6}, + [2641] = {.lex_state = 1329, .external_lex_state = 6}, + [2642] = {.lex_state = 1329, .external_lex_state = 6}, + [2643] = {.lex_state = 1329, .external_lex_state = 6}, + [2644] = {.lex_state = 1329, .external_lex_state = 6}, + [2645] = {.lex_state = 1329, .external_lex_state = 6}, + [2646] = {.lex_state = 1329, .external_lex_state = 6}, + [2647] = {.lex_state = 1329, .external_lex_state = 6}, + [2648] = {.lex_state = 57, .external_lex_state = 6}, [2649] = {.lex_state = 37}, - [2650] = {.lex_state = 1321, .external_lex_state = 5}, - [2651] = {.lex_state = 1321, .external_lex_state = 5}, - [2652] = {.lex_state = 1321, .external_lex_state = 5}, - [2653] = {.lex_state = 1321, .external_lex_state = 5}, - [2654] = {.lex_state = 1321, .external_lex_state = 5}, - [2655] = {.lex_state = 1321, .external_lex_state = 5}, - [2656] = {.lex_state = 1321, .external_lex_state = 5}, - [2657] = {.lex_state = 76, .external_lex_state = 5}, - [2658] = {.lex_state = 1321, .external_lex_state = 5}, - [2659] = {.lex_state = 1321, .external_lex_state = 5}, - [2660] = {.lex_state = 31, .external_lex_state = 6}, - [2661] = {.lex_state = 31, .external_lex_state = 4}, - [2662] = {.lex_state = 1321, .external_lex_state = 5}, - [2663] = {.lex_state = 1321, .external_lex_state = 5}, - [2664] = {.lex_state = 1321, .external_lex_state = 5}, - [2665] = {.lex_state = 1321, .external_lex_state = 5}, - [2666] = {.lex_state = 1321, .external_lex_state = 5}, - [2667] = {.lex_state = 1321, .external_lex_state = 5}, - [2668] = {.lex_state = 81, .external_lex_state = 5}, - [2669] = {.lex_state = 37}, - [2670] = {.lex_state = 28, .external_lex_state = 4}, - [2671] = {.lex_state = 55, .external_lex_state = 5}, - [2672] = {.lex_state = 55, .external_lex_state = 5}, - [2673] = {.lex_state = 1321, .external_lex_state = 5}, - [2674] = {.lex_state = 1321, .external_lex_state = 5}, - [2675] = {.lex_state = 1321, .external_lex_state = 5}, - [2676] = {.lex_state = 1321, .external_lex_state = 5}, - [2677] = {.lex_state = 76, .external_lex_state = 5}, - [2678] = {.lex_state = 28, .external_lex_state = 5}, - [2679] = {.lex_state = 1321, .external_lex_state = 5}, - [2680] = {.lex_state = 1321, .external_lex_state = 5}, - [2681] = {.lex_state = 31, .external_lex_state = 4}, - [2682] = {.lex_state = 37}, - [2683] = {.lex_state = 1321, .external_lex_state = 5}, - [2684] = {.lex_state = 1321, .external_lex_state = 5}, - [2685] = {.lex_state = 54, .external_lex_state = 6}, - [2686] = {.lex_state = 1321, .external_lex_state = 5}, - [2687] = {.lex_state = 1321, .external_lex_state = 5}, - [2688] = {.lex_state = 1321, .external_lex_state = 5}, - [2689] = {.lex_state = 55, .external_lex_state = 5}, - [2690] = {.lex_state = 53, .external_lex_state = 5}, - [2691] = {.lex_state = 1321, .external_lex_state = 5}, - [2692] = {.lex_state = 55, .external_lex_state = 5}, - [2693] = {.lex_state = 1321, .external_lex_state = 5}, - [2694] = {.lex_state = 55, .external_lex_state = 5}, - [2695] = {.lex_state = 76, .external_lex_state = 5}, - [2696] = {.lex_state = 1321, .external_lex_state = 5}, - [2697] = {.lex_state = 54, .external_lex_state = 4}, - [2698] = {.lex_state = 1321, .external_lex_state = 5}, - [2699] = {.lex_state = 55, .external_lex_state = 5}, - [2700] = {.lex_state = 53, .external_lex_state = 5}, - [2701] = {.lex_state = 1321, .external_lex_state = 5}, - [2702] = {.lex_state = 1321, .external_lex_state = 5}, - [2703] = {.lex_state = 1321, .external_lex_state = 5}, - [2704] = {.lex_state = 28, .external_lex_state = 6}, - [2705] = {.lex_state = 85, .external_lex_state = 5}, - [2706] = {.lex_state = 37}, - [2707] = {.lex_state = 1321, .external_lex_state = 5}, - [2708] = {.lex_state = 1321, .external_lex_state = 5}, - [2709] = {.lex_state = 1321, .external_lex_state = 5}, - [2710] = {.lex_state = 1321, .external_lex_state = 5}, - [2711] = {.lex_state = 1321, .external_lex_state = 5}, - [2712] = {.lex_state = 1321, .external_lex_state = 5}, - [2713] = {.lex_state = 28, .external_lex_state = 4}, - [2714] = {.lex_state = 1321, .external_lex_state = 5}, - [2715] = {.lex_state = 1321, .external_lex_state = 5}, - [2716] = {.lex_state = 1321, .external_lex_state = 5}, - [2717] = {.lex_state = 85, .external_lex_state = 5}, - [2718] = {.lex_state = 1321, .external_lex_state = 5}, - [2719] = {.lex_state = 1321, .external_lex_state = 5}, - [2720] = {.lex_state = 1321, .external_lex_state = 5}, - [2721] = {.lex_state = 1321, .external_lex_state = 5}, - [2722] = {.lex_state = 1321, .external_lex_state = 5}, - [2723] = {.lex_state = 1321, .external_lex_state = 5}, - [2724] = {.lex_state = 1321, .external_lex_state = 5}, - [2725] = {.lex_state = 84, .external_lex_state = 5}, - [2726] = {.lex_state = 1321, .external_lex_state = 5}, - [2727] = {.lex_state = 37}, - [2728] = {.lex_state = 1321, .external_lex_state = 5}, - [2729] = {.lex_state = 55, .external_lex_state = 5}, - [2730] = {.lex_state = 1321, .external_lex_state = 5}, - [2731] = {.lex_state = 1321, .external_lex_state = 5}, - [2732] = {.lex_state = 40}, - [2733] = {.lex_state = 53, .external_lex_state = 5}, - [2734] = {.lex_state = 1321, .external_lex_state = 5}, - [2735] = {.lex_state = 1321, .external_lex_state = 5}, - [2736] = {.lex_state = 31, .external_lex_state = 6}, - [2737] = {.lex_state = 1321, .external_lex_state = 5}, - [2738] = {.lex_state = 69, .external_lex_state = 7}, - [2739] = {.lex_state = 28, .external_lex_state = 6}, - [2740] = {.lex_state = 1321, .external_lex_state = 5}, - [2741] = {.lex_state = 1321, .external_lex_state = 5}, - [2742] = {.lex_state = 53, .external_lex_state = 6}, - [2743] = {.lex_state = 29, .external_lex_state = 5}, - [2744] = {.lex_state = 1321, .external_lex_state = 5}, - [2745] = {.lex_state = 1321, .external_lex_state = 5}, - [2746] = {.lex_state = 85, .external_lex_state = 5}, - [2747] = {.lex_state = 1321, .external_lex_state = 5}, - [2748] = {.lex_state = 1321, .external_lex_state = 5}, - [2749] = {.lex_state = 1321, .external_lex_state = 5}, - [2750] = {.lex_state = 1321, .external_lex_state = 5}, - [2751] = {.lex_state = 53, .external_lex_state = 4}, - [2752] = {.lex_state = 31, .external_lex_state = 5}, - [2753] = {.lex_state = 1321, .external_lex_state = 5}, - [2754] = {.lex_state = 1321, .external_lex_state = 5}, - [2755] = {.lex_state = 1321, .external_lex_state = 5}, - [2756] = {.lex_state = 1321, .external_lex_state = 5}, - [2757] = {.lex_state = 1321, .external_lex_state = 5}, - [2758] = {.lex_state = 53, .external_lex_state = 4}, - [2759] = {.lex_state = 1321, .external_lex_state = 5}, - [2760] = {.lex_state = 1321, .external_lex_state = 5}, - [2761] = {.lex_state = 1321, .external_lex_state = 5}, - [2762] = {.lex_state = 1321, .external_lex_state = 5}, - [2763] = {.lex_state = 28, .external_lex_state = 4}, - [2764] = {.lex_state = 1321, .external_lex_state = 5}, - [2765] = {.lex_state = 1321, .external_lex_state = 5}, - [2766] = {.lex_state = 1321, .external_lex_state = 5}, - [2767] = {.lex_state = 85, .external_lex_state = 5}, - [2768] = {.lex_state = 1321, .external_lex_state = 5}, - [2769] = {.lex_state = 1321, .external_lex_state = 5}, - [2770] = {.lex_state = 1321, .external_lex_state = 5}, - [2771] = {.lex_state = 54, .external_lex_state = 5}, - [2772] = {.lex_state = 28, .external_lex_state = 5}, - [2773] = {.lex_state = 54, .external_lex_state = 5}, - [2774] = {.lex_state = 28, .external_lex_state = 5}, - [2775] = {.lex_state = 37}, - [2776] = {.lex_state = 53, .external_lex_state = 5}, - [2777] = {.lex_state = 37}, - [2778] = {.lex_state = 32, .external_lex_state = 5}, - [2779] = {.lex_state = 53, .external_lex_state = 5}, - [2780] = {.lex_state = 195, .external_lex_state = 7}, - [2781] = {.lex_state = 32, .external_lex_state = 5}, - [2782] = {.lex_state = 53, .external_lex_state = 5}, - [2783] = {.lex_state = 53, .external_lex_state = 5}, - [2784] = {.lex_state = 54, .external_lex_state = 5}, - [2785] = {.lex_state = 54, .external_lex_state = 5}, - [2786] = {.lex_state = 53, .external_lex_state = 5}, - [2787] = {.lex_state = 53, .external_lex_state = 5}, - [2788] = {.lex_state = 37}, - [2789] = {.lex_state = 54, .external_lex_state = 5}, - [2790] = {.lex_state = 28, .external_lex_state = 5}, - [2791] = {.lex_state = 116, .external_lex_state = 5}, - [2792] = {.lex_state = 32, .external_lex_state = 5}, - [2793] = {.lex_state = 31, .external_lex_state = 5}, - [2794] = {.lex_state = 31, .external_lex_state = 5}, - [2795] = {.lex_state = 53, .external_lex_state = 5}, - [2796] = {.lex_state = 54, .external_lex_state = 5}, - [2797] = {.lex_state = 122, .external_lex_state = 5}, - [2798] = {.lex_state = 54, .external_lex_state = 5}, - [2799] = {.lex_state = 28, .external_lex_state = 4}, - [2800] = {.lex_state = 53, .external_lex_state = 5}, - [2801] = {.lex_state = 54, .external_lex_state = 5}, - [2802] = {.lex_state = 54, .external_lex_state = 5}, - [2803] = {.lex_state = 31, .external_lex_state = 5}, - [2804] = {.lex_state = 28, .external_lex_state = 5}, - [2805] = {.lex_state = 53, .external_lex_state = 5}, - [2806] = {.lex_state = 32, .external_lex_state = 5}, - [2807] = {.lex_state = 195, .external_lex_state = 7}, - [2808] = {.lex_state = 53, .external_lex_state = 5}, - [2809] = {.lex_state = 31, .external_lex_state = 5}, - [2810] = {.lex_state = 28, .external_lex_state = 5}, - [2811] = {.lex_state = 54, .external_lex_state = 5}, + [2650] = {.lex_state = 1329, .external_lex_state = 6}, + [2651] = {.lex_state = 1329, .external_lex_state = 6}, + [2652] = {.lex_state = 1329, .external_lex_state = 6}, + [2653] = {.lex_state = 1329, .external_lex_state = 6}, + [2654] = {.lex_state = 57, .external_lex_state = 6}, + [2655] = {.lex_state = 1329, .external_lex_state = 6}, + [2656] = {.lex_state = 57, .external_lex_state = 6}, + [2657] = {.lex_state = 1329, .external_lex_state = 6}, + [2658] = {.lex_state = 57, .external_lex_state = 6}, + [2659] = {.lex_state = 1329, .external_lex_state = 6}, + [2660] = {.lex_state = 53, .external_lex_state = 6}, + [2661] = {.lex_state = 37}, + [2662] = {.lex_state = 53, .external_lex_state = 6}, + [2663] = {.lex_state = 37}, + [2664] = {.lex_state = 55, .external_lex_state = 6}, + [2665] = {.lex_state = 57, .external_lex_state = 6}, + [2666] = {.lex_state = 53, .external_lex_state = 6}, + [2667] = {.lex_state = 57, .external_lex_state = 6}, + [2668] = {.lex_state = 53, .external_lex_state = 6}, + [2669] = {.lex_state = 53, .external_lex_state = 6}, + [2670] = {.lex_state = 1329, .external_lex_state = 6}, + [2671] = {.lex_state = 1329, .external_lex_state = 6}, + [2672] = {.lex_state = 57, .external_lex_state = 6}, + [2673] = {.lex_state = 1329, .external_lex_state = 6}, + [2674] = {.lex_state = 28, .external_lex_state = 3}, + [2675] = {.lex_state = 37}, + [2676] = {.lex_state = 1329, .external_lex_state = 6}, + [2677] = {.lex_state = 1329, .external_lex_state = 6}, + [2678] = {.lex_state = 1329, .external_lex_state = 6}, + [2679] = {.lex_state = 1329, .external_lex_state = 6}, + [2680] = {.lex_state = 1329, .external_lex_state = 6}, + [2681] = {.lex_state = 1329, .external_lex_state = 6}, + [2682] = {.lex_state = 1329, .external_lex_state = 6}, + [2683] = {.lex_state = 53, .external_lex_state = 6}, + [2684] = {.lex_state = 1329, .external_lex_state = 6}, + [2685] = {.lex_state = 1329, .external_lex_state = 6}, + [2686] = {.lex_state = 1329, .external_lex_state = 6}, + [2687] = {.lex_state = 1329, .external_lex_state = 6}, + [2688] = {.lex_state = 1329, .external_lex_state = 6}, + [2689] = {.lex_state = 53, .external_lex_state = 6}, + [2690] = {.lex_state = 1329, .external_lex_state = 6}, + [2691] = {.lex_state = 53, .external_lex_state = 6}, + [2692] = {.lex_state = 53, .external_lex_state = 6}, + [2693] = {.lex_state = 1329, .external_lex_state = 6}, + [2694] = {.lex_state = 54, .external_lex_state = 3}, + [2695] = {.lex_state = 56, .external_lex_state = 4}, + [2696] = {.lex_state = 57, .external_lex_state = 6}, + [2697] = {.lex_state = 1329, .external_lex_state = 6}, + [2698] = {.lex_state = 1329, .external_lex_state = 6}, + [2699] = {.lex_state = 57, .external_lex_state = 6}, + [2700] = {.lex_state = 57, .external_lex_state = 6}, + [2701] = {.lex_state = 54, .external_lex_state = 3}, + [2702] = {.lex_state = 1329, .external_lex_state = 6}, + [2703] = {.lex_state = 1329, .external_lex_state = 6}, + [2704] = {.lex_state = 1329, .external_lex_state = 6}, + [2705] = {.lex_state = 1329, .external_lex_state = 6}, + [2706] = {.lex_state = 57, .external_lex_state = 6}, + [2707] = {.lex_state = 57, .external_lex_state = 6}, + [2708] = {.lex_state = 1329, .external_lex_state = 6}, + [2709] = {.lex_state = 1329, .external_lex_state = 6}, + [2710] = {.lex_state = 1329, .external_lex_state = 6}, + [2711] = {.lex_state = 1329, .external_lex_state = 6}, + [2712] = {.lex_state = 1329, .external_lex_state = 6}, + [2713] = {.lex_state = 1329, .external_lex_state = 6}, + [2714] = {.lex_state = 1329, .external_lex_state = 6}, + [2715] = {.lex_state = 1329, .external_lex_state = 6}, + [2716] = {.lex_state = 1329, .external_lex_state = 6}, + [2717] = {.lex_state = 1329, .external_lex_state = 6}, + [2718] = {.lex_state = 57, .external_lex_state = 6}, + [2719] = {.lex_state = 55, .external_lex_state = 6}, + [2720] = {.lex_state = 37}, + [2721] = {.lex_state = 1329, .external_lex_state = 6}, + [2722] = {.lex_state = 1329, .external_lex_state = 6}, + [2723] = {.lex_state = 1329, .external_lex_state = 6}, + [2724] = {.lex_state = 1329, .external_lex_state = 6}, + [2725] = {.lex_state = 1329, .external_lex_state = 6}, + [2726] = {.lex_state = 1329, .external_lex_state = 6}, + [2727] = {.lex_state = 53, .external_lex_state = 6}, + [2728] = {.lex_state = 1329, .external_lex_state = 6}, + [2729] = {.lex_state = 1329, .external_lex_state = 6}, + [2730] = {.lex_state = 56, .external_lex_state = 5}, + [2731] = {.lex_state = 28, .external_lex_state = 4}, + [2732] = {.lex_state = 1329, .external_lex_state = 6}, + [2733] = {.lex_state = 1329, .external_lex_state = 6}, + [2734] = {.lex_state = 1329, .external_lex_state = 6}, + [2735] = {.lex_state = 1329, .external_lex_state = 6}, + [2736] = {.lex_state = 1329, .external_lex_state = 6}, + [2737] = {.lex_state = 57, .external_lex_state = 6}, + [2738] = {.lex_state = 1329, .external_lex_state = 6}, + [2739] = {.lex_state = 40, .external_lex_state = 11}, + [2740] = {.lex_state = 54, .external_lex_state = 5}, + [2741] = {.lex_state = 1329, .external_lex_state = 6}, + [2742] = {.lex_state = 1329, .external_lex_state = 6}, + [2743] = {.lex_state = 28, .external_lex_state = 6}, + [2744] = {.lex_state = 1329, .external_lex_state = 6}, + [2745] = {.lex_state = 1329, .external_lex_state = 6}, + [2746] = {.lex_state = 1329, .external_lex_state = 6}, + [2747] = {.lex_state = 37}, + [2748] = {.lex_state = 57, .external_lex_state = 6}, + [2749] = {.lex_state = 57, .external_lex_state = 6}, + [2750] = {.lex_state = 1329, .external_lex_state = 6}, + [2751] = {.lex_state = 28, .external_lex_state = 5}, + [2752] = {.lex_state = 1329, .external_lex_state = 6}, + [2753] = {.lex_state = 1329, .external_lex_state = 6}, + [2754] = {.lex_state = 1329, .external_lex_state = 6}, + [2755] = {.lex_state = 1329, .external_lex_state = 6}, + [2756] = {.lex_state = 1329, .external_lex_state = 6}, + [2757] = {.lex_state = 110, .external_lex_state = 6}, + [2758] = {.lex_state = 1329, .external_lex_state = 6}, + [2759] = {.lex_state = 37}, + [2760] = {.lex_state = 54, .external_lex_state = 3}, + [2761] = {.lex_state = 126, .external_lex_state = 6}, + [2762] = {.lex_state = 1329, .external_lex_state = 6}, + [2763] = {.lex_state = 57, .external_lex_state = 6}, + [2764] = {.lex_state = 54, .external_lex_state = 4}, + [2765] = {.lex_state = 40}, + [2766] = {.lex_state = 55, .external_lex_state = 6}, + [2767] = {.lex_state = 1329, .external_lex_state = 6}, + [2768] = {.lex_state = 54, .external_lex_state = 4}, + [2769] = {.lex_state = 1329, .external_lex_state = 6}, + [2770] = {.lex_state = 1329, .external_lex_state = 6}, + [2771] = {.lex_state = 28, .external_lex_state = 4}, + [2772] = {.lex_state = 37, .external_lex_state = 11}, + [2773] = {.lex_state = 1329, .external_lex_state = 6}, + [2774] = {.lex_state = 121, .external_lex_state = 6}, + [2775] = {.lex_state = 37, .external_lex_state = 11}, + [2776] = {.lex_state = 53, .external_lex_state = 6}, + [2777] = {.lex_state = 1329, .external_lex_state = 6}, + [2778] = {.lex_state = 53, .external_lex_state = 6}, + [2779] = {.lex_state = 40, .external_lex_state = 11}, + [2780] = {.lex_state = 1329, .external_lex_state = 6}, + [2781] = {.lex_state = 1329, .external_lex_state = 6}, + [2782] = {.lex_state = 1329, .external_lex_state = 6}, + [2783] = {.lex_state = 1329, .external_lex_state = 6}, + [2784] = {.lex_state = 1329, .external_lex_state = 6}, + [2785] = {.lex_state = 1329, .external_lex_state = 6}, + [2786] = {.lex_state = 1329, .external_lex_state = 6}, + [2787] = {.lex_state = 1329, .external_lex_state = 6}, + [2788] = {.lex_state = 1329, .external_lex_state = 6}, + [2789] = {.lex_state = 1329, .external_lex_state = 6}, + [2790] = {.lex_state = 1329, .external_lex_state = 6}, + [2791] = {.lex_state = 1329, .external_lex_state = 6}, + [2792] = {.lex_state = 53, .external_lex_state = 6}, + [2793] = {.lex_state = 1329, .external_lex_state = 6}, + [2794] = {.lex_state = 1329, .external_lex_state = 6}, + [2795] = {.lex_state = 53, .external_lex_state = 6}, + [2796] = {.lex_state = 1329, .external_lex_state = 6}, + [2797] = {.lex_state = 1329, .external_lex_state = 6}, + [2798] = {.lex_state = 53, .external_lex_state = 6}, + [2799] = {.lex_state = 1329, .external_lex_state = 6}, + [2800] = {.lex_state = 1329, .external_lex_state = 6}, + [2801] = {.lex_state = 1329, .external_lex_state = 6}, + [2802] = {.lex_state = 1329, .external_lex_state = 6}, + [2803] = {.lex_state = 1329, .external_lex_state = 6}, + [2804] = {.lex_state = 1329, .external_lex_state = 6}, + [2805] = {.lex_state = 1329, .external_lex_state = 6}, + [2806] = {.lex_state = 57, .external_lex_state = 6}, + [2807] = {.lex_state = 1329, .external_lex_state = 6}, + [2808] = {.lex_state = 1329, .external_lex_state = 6}, + [2809] = {.lex_state = 1329, .external_lex_state = 6}, + [2810] = {.lex_state = 55, .external_lex_state = 6}, + [2811] = {.lex_state = 55, .external_lex_state = 6}, [2812] = {.lex_state = 37}, - [2813] = {.lex_state = 54, .external_lex_state = 5}, - [2814] = {.lex_state = 195, .external_lex_state = 7}, - [2815] = {.lex_state = 53, .external_lex_state = 5}, - [2816] = {.lex_state = 53, .external_lex_state = 5}, - [2817] = {.lex_state = 37}, - [2818] = {.lex_state = 37}, - [2819] = {.lex_state = 37}, - [2820] = {.lex_state = 54, .external_lex_state = 5}, - [2821] = {.lex_state = 37}, - [2822] = {.lex_state = 53, .external_lex_state = 5}, - [2823] = {.lex_state = 53, .external_lex_state = 5}, - [2824] = {.lex_state = 54, .external_lex_state = 5}, - [2825] = {.lex_state = 37}, - [2826] = {.lex_state = 54, .external_lex_state = 5}, - [2827] = {.lex_state = 195, .external_lex_state = 7}, - [2828] = {.lex_state = 86, .external_lex_state = 5}, - [2829] = {.lex_state = 86, .external_lex_state = 5}, - [2830] = {.lex_state = 121, .external_lex_state = 5}, - [2831] = {.lex_state = 53, .external_lex_state = 5}, - [2832] = {.lex_state = 86, .external_lex_state = 5}, - [2833] = {.lex_state = 28, .external_lex_state = 5}, - [2834] = {.lex_state = 53, .external_lex_state = 5}, - [2835] = {.lex_state = 54, .external_lex_state = 5}, - [2836] = {.lex_state = 53, .external_lex_state = 5}, - [2837] = {.lex_state = 37}, - [2838] = {.lex_state = 54, .external_lex_state = 5}, - [2839] = {.lex_state = 37}, - [2840] = {.lex_state = 54, .external_lex_state = 5}, - [2841] = {.lex_state = 37}, - [2842] = {.lex_state = 54, .external_lex_state = 5}, - [2843] = {.lex_state = 54, .external_lex_state = 5}, - [2844] = {.lex_state = 54, .external_lex_state = 5}, - [2845] = {.lex_state = 37}, - [2846] = {.lex_state = 54, .external_lex_state = 5}, - [2847] = {.lex_state = 54, .external_lex_state = 5}, - [2848] = {.lex_state = 54, .external_lex_state = 5}, - [2849] = {.lex_state = 54, .external_lex_state = 5}, - [2850] = {.lex_state = 28, .external_lex_state = 5}, - [2851] = {.lex_state = 37}, - [2852] = {.lex_state = 28, .external_lex_state = 5}, - [2853] = {.lex_state = 28, .external_lex_state = 5}, - [2854] = {.lex_state = 53, .external_lex_state = 5}, - [2855] = {.lex_state = 53, .external_lex_state = 5}, - [2856] = {.lex_state = 54, .external_lex_state = 5}, - [2857] = {.lex_state = 28, .external_lex_state = 5}, - [2858] = {.lex_state = 53, .external_lex_state = 5}, - [2859] = {.lex_state = 37}, - [2860] = {.lex_state = 117, .external_lex_state = 5}, - [2861] = {.lex_state = 53, .external_lex_state = 5}, - [2862] = {.lex_state = 37}, - [2863] = {.lex_state = 37}, - [2864] = {.lex_state = 37}, - [2865] = {.lex_state = 37}, - [2866] = {.lex_state = 28, .external_lex_state = 5}, - [2867] = {.lex_state = 37}, - [2868] = {.lex_state = 53, .external_lex_state = 5}, - [2869] = {.lex_state = 28, .external_lex_state = 5}, - [2870] = {.lex_state = 28, .external_lex_state = 5}, - [2871] = {.lex_state = 31, .external_lex_state = 5}, - [2872] = {.lex_state = 37}, - [2873] = {.lex_state = 195, .external_lex_state = 7}, - [2874] = {.lex_state = 31, .external_lex_state = 4}, - [2875] = {.lex_state = 28, .external_lex_state = 5}, - [2876] = {.lex_state = 31, .external_lex_state = 4}, - [2877] = {.lex_state = 53, .external_lex_state = 5}, - [2878] = {.lex_state = 53, .external_lex_state = 5}, - [2879] = {.lex_state = 28, .external_lex_state = 5}, - [2880] = {.lex_state = 53, .external_lex_state = 5}, - [2881] = {.lex_state = 28, .external_lex_state = 5}, - [2882] = {.lex_state = 54, .external_lex_state = 5}, - [2883] = {.lex_state = 53, .external_lex_state = 5}, - [2884] = {.lex_state = 28, .external_lex_state = 4}, - [2885] = {.lex_state = 31, .external_lex_state = 6}, - [2886] = {.lex_state = 53, .external_lex_state = 5}, - [2887] = {.lex_state = 28, .external_lex_state = 5}, - [2888] = {.lex_state = 120, .external_lex_state = 5}, - [2889] = {.lex_state = 28, .external_lex_state = 5}, - [2890] = {.lex_state = 28, .external_lex_state = 5}, - [2891] = {.lex_state = 54, .external_lex_state = 5}, - [2892] = {.lex_state = 28, .external_lex_state = 5}, - [2893] = {.lex_state = 28, .external_lex_state = 5}, - [2894] = {.lex_state = 28, .external_lex_state = 5}, - [2895] = {.lex_state = 28, .external_lex_state = 6}, - [2896] = {.lex_state = 53, .external_lex_state = 5}, - [2897] = {.lex_state = 28, .external_lex_state = 5}, - [2898] = {.lex_state = 66, .external_lex_state = 7}, - [2899] = {.lex_state = 28, .external_lex_state = 5}, - [2900] = {.lex_state = 28, .external_lex_state = 5}, - [2901] = {.lex_state = 28, .external_lex_state = 5}, - [2902] = {.lex_state = 86, .external_lex_state = 5}, - [2903] = {.lex_state = 28, .external_lex_state = 5}, - [2904] = {.lex_state = 54, .external_lex_state = 5}, - [2905] = {.lex_state = 28, .external_lex_state = 5}, - [2906] = {.lex_state = 28, .external_lex_state = 5}, - [2907] = {.lex_state = 28, .external_lex_state = 5}, - [2908] = {.lex_state = 37}, - [2909] = {.lex_state = 31, .external_lex_state = 5}, - [2910] = {.lex_state = 31, .external_lex_state = 5}, - [2911] = {.lex_state = 37}, - [2912] = {.lex_state = 28, .external_lex_state = 5}, - [2913] = {.lex_state = 28, .external_lex_state = 5}, - [2914] = {.lex_state = 31, .external_lex_state = 5}, - [2915] = {.lex_state = 28, .external_lex_state = 5}, - [2916] = {.lex_state = 28, .external_lex_state = 5}, - [2917] = {.lex_state = 31, .external_lex_state = 5}, - [2918] = {.lex_state = 28, .external_lex_state = 5}, - [2919] = {.lex_state = 28, .external_lex_state = 5}, - [2920] = {.lex_state = 31, .external_lex_state = 5}, - [2921] = {.lex_state = 28, .external_lex_state = 5}, + [2813] = {.lex_state = 1329, .external_lex_state = 6}, + [2814] = {.lex_state = 1329, .external_lex_state = 6}, + [2815] = {.lex_state = 55, .external_lex_state = 6}, + [2816] = {.lex_state = 1329, .external_lex_state = 6}, + [2817] = {.lex_state = 56, .external_lex_state = 3}, + [2818] = {.lex_state = 28, .external_lex_state = 3}, + [2819] = {.lex_state = 1329, .external_lex_state = 6}, + [2820] = {.lex_state = 55, .external_lex_state = 6}, + [2821] = {.lex_state = 53, .external_lex_state = 6}, + [2822] = {.lex_state = 57, .external_lex_state = 6}, + [2823] = {.lex_state = 1329, .external_lex_state = 6}, + [2824] = {.lex_state = 53, .external_lex_state = 6}, + [2825] = {.lex_state = 57, .external_lex_state = 6}, + [2826] = {.lex_state = 1329, .external_lex_state = 6}, + [2827] = {.lex_state = 55, .external_lex_state = 6}, + [2828] = {.lex_state = 1329, .external_lex_state = 6}, + [2829] = {.lex_state = 37}, + [2830] = {.lex_state = 55, .external_lex_state = 6}, + [2831] = {.lex_state = 55, .external_lex_state = 6}, + [2832] = {.lex_state = 1329, .external_lex_state = 6}, + [2833] = {.lex_state = 53, .external_lex_state = 6}, + [2834] = {.lex_state = 1329, .external_lex_state = 6}, + [2835] = {.lex_state = 1329, .external_lex_state = 6}, + [2836] = {.lex_state = 1329, .external_lex_state = 6}, + [2837] = {.lex_state = 1329, .external_lex_state = 6}, + [2838] = {.lex_state = 1329, .external_lex_state = 6}, + [2839] = {.lex_state = 1329, .external_lex_state = 6}, + [2840] = {.lex_state = 57, .external_lex_state = 6}, + [2841] = {.lex_state = 55, .external_lex_state = 6}, + [2842] = {.lex_state = 1329, .external_lex_state = 6}, + [2843] = {.lex_state = 55, .external_lex_state = 6}, + [2844] = {.lex_state = 1329, .external_lex_state = 6}, + [2845] = {.lex_state = 1329, .external_lex_state = 6}, + [2846] = {.lex_state = 1329, .external_lex_state = 6}, + [2847] = {.lex_state = 1329, .external_lex_state = 6}, + [2848] = {.lex_state = 1329, .external_lex_state = 6}, + [2849] = {.lex_state = 86, .external_lex_state = 6}, + [2850] = {.lex_state = 53, .external_lex_state = 6}, + [2851] = {.lex_state = 1329, .external_lex_state = 6}, + [2852] = {.lex_state = 1329, .external_lex_state = 6}, + [2853] = {.lex_state = 53, .external_lex_state = 6}, + [2854] = {.lex_state = 1329, .external_lex_state = 6}, + [2855] = {.lex_state = 55, .external_lex_state = 6}, + [2856] = {.lex_state = 53, .external_lex_state = 6}, + [2857] = {.lex_state = 55, .external_lex_state = 6}, + [2858] = {.lex_state = 53, .external_lex_state = 6}, + [2859] = {.lex_state = 56, .external_lex_state = 4}, + [2860] = {.lex_state = 1329, .external_lex_state = 6}, + [2861] = {.lex_state = 53, .external_lex_state = 6}, + [2862] = {.lex_state = 1329, .external_lex_state = 6}, + [2863] = {.lex_state = 72, .external_lex_state = 7}, + [2864] = {.lex_state = 56, .external_lex_state = 6}, + [2865] = {.lex_state = 53, .external_lex_state = 6}, + [2866] = {.lex_state = 55, .external_lex_state = 6}, + [2867] = {.lex_state = 1329, .external_lex_state = 6}, + [2868] = {.lex_state = 1329, .external_lex_state = 6}, + [2869] = {.lex_state = 55, .external_lex_state = 6}, + [2870] = {.lex_state = 55, .external_lex_state = 6}, + [2871] = {.lex_state = 1329, .external_lex_state = 6}, + [2872] = {.lex_state = 55, .external_lex_state = 6}, + [2873] = {.lex_state = 55, .external_lex_state = 6}, + [2874] = {.lex_state = 55, .external_lex_state = 6}, + [2875] = {.lex_state = 1329, .external_lex_state = 6}, + [2876] = {.lex_state = 55, .external_lex_state = 6}, + [2877] = {.lex_state = 55, .external_lex_state = 6}, + [2878] = {.lex_state = 55, .external_lex_state = 6}, + [2879] = {.lex_state = 55, .external_lex_state = 6}, + [2880] = {.lex_state = 57, .external_lex_state = 6}, + [2881] = {.lex_state = 57, .external_lex_state = 6}, + [2882] = {.lex_state = 1329, .external_lex_state = 6}, + [2883] = {.lex_state = 1329, .external_lex_state = 6}, + [2884] = {.lex_state = 1329, .external_lex_state = 6}, + [2885] = {.lex_state = 1329, .external_lex_state = 6}, + [2886] = {.lex_state = 55, .external_lex_state = 6}, + [2887] = {.lex_state = 37}, + [2888] = {.lex_state = 1329, .external_lex_state = 6}, + [2889] = {.lex_state = 53, .external_lex_state = 6}, + [2890] = {.lex_state = 1329, .external_lex_state = 6}, + [2891] = {.lex_state = 1329, .external_lex_state = 6}, + [2892] = {.lex_state = 56, .external_lex_state = 3}, + [2893] = {.lex_state = 1329, .external_lex_state = 6}, + [2894] = {.lex_state = 1329, .external_lex_state = 6}, + [2895] = {.lex_state = 1329, .external_lex_state = 6}, + [2896] = {.lex_state = 1329, .external_lex_state = 6}, + [2897] = {.lex_state = 54, .external_lex_state = 6}, + [2898] = {.lex_state = 1329, .external_lex_state = 6}, + [2899] = {.lex_state = 54, .external_lex_state = 6}, + [2900] = {.lex_state = 37}, + [2901] = {.lex_state = 54, .external_lex_state = 6}, + [2902] = {.lex_state = 28, .external_lex_state = 6}, + [2903] = {.lex_state = 28, .external_lex_state = 6}, + [2904] = {.lex_state = 28, .external_lex_state = 6}, + [2905] = {.lex_state = 28, .external_lex_state = 6}, + [2906] = {.lex_state = 28, .external_lex_state = 6}, + [2907] = {.lex_state = 37}, + [2908] = {.lex_state = 54, .external_lex_state = 6}, + [2909] = {.lex_state = 54, .external_lex_state = 6}, + [2910] = {.lex_state = 124, .external_lex_state = 6}, + [2911] = {.lex_state = 28, .external_lex_state = 6}, + [2912] = {.lex_state = 54, .external_lex_state = 6}, + [2913] = {.lex_state = 28, .external_lex_state = 6}, + [2914] = {.lex_state = 54, .external_lex_state = 6}, + [2915] = {.lex_state = 28, .external_lex_state = 6}, + [2916] = {.lex_state = 123, .external_lex_state = 6}, + [2917] = {.lex_state = 54, .external_lex_state = 6}, + [2918] = {.lex_state = 37}, + [2919] = {.lex_state = 56, .external_lex_state = 6}, + [2920] = {.lex_state = 127, .external_lex_state = 6}, + [2921] = {.lex_state = 56, .external_lex_state = 6}, [2922] = {.lex_state = 37}, [2923] = {.lex_state = 37}, - [2924] = {.lex_state = 28, .external_lex_state = 5}, - [2925] = {.lex_state = 28, .external_lex_state = 5}, - [2926] = {.lex_state = 31, .external_lex_state = 5}, - [2927] = {.lex_state = 28, .external_lex_state = 5}, - [2928] = {.lex_state = 40}, - [2929] = {.lex_state = 28, .external_lex_state = 5}, - [2930] = {.lex_state = 37}, - [2931] = {.lex_state = 31, .external_lex_state = 5}, - [2932] = {.lex_state = 31, .external_lex_state = 5}, - [2933] = {.lex_state = 37}, - [2934] = {.lex_state = 31, .external_lex_state = 5}, - [2935] = {.lex_state = 31, .external_lex_state = 5}, - [2936] = {.lex_state = 28, .external_lex_state = 5}, - [2937] = {.lex_state = 31, .external_lex_state = 5}, - [2938] = {.lex_state = 31, .external_lex_state = 5}, - [2939] = {.lex_state = 37}, - [2940] = {.lex_state = 31, .external_lex_state = 5}, - [2941] = {.lex_state = 37}, - [2942] = {.lex_state = 37}, - [2943] = {.lex_state = 37}, - [2944] = {.lex_state = 31, .external_lex_state = 5}, - [2945] = {.lex_state = 31, .external_lex_state = 5}, - [2946] = {.lex_state = 31, .external_lex_state = 5}, - [2947] = {.lex_state = 118, .external_lex_state = 5}, - [2948] = {.lex_state = 31, .external_lex_state = 5}, - [2949] = {.lex_state = 31, .external_lex_state = 5}, - [2950] = {.lex_state = 123, .external_lex_state = 5}, - [2951] = {.lex_state = 31, .external_lex_state = 5}, - [2952] = {.lex_state = 37}, - [2953] = {.lex_state = 31, .external_lex_state = 5}, - [2954] = {.lex_state = 28, .external_lex_state = 5}, - [2955] = {.lex_state = 31, .external_lex_state = 5}, - [2956] = {.lex_state = 31, .external_lex_state = 5}, - [2957] = {.lex_state = 28, .external_lex_state = 5}, - [2958] = {.lex_state = 28, .external_lex_state = 5}, - [2959] = {.lex_state = 28, .external_lex_state = 5}, - [2960] = {.lex_state = 31, .external_lex_state = 5}, - [2961] = {.lex_state = 28, .external_lex_state = 5}, - [2962] = {.lex_state = 28, .external_lex_state = 5}, - [2963] = {.lex_state = 31, .external_lex_state = 5}, - [2964] = {.lex_state = 28, .external_lex_state = 5}, - [2965] = {.lex_state = 66, .external_lex_state = 7}, - [2966] = {.lex_state = 124, .external_lex_state = 5}, - [2967] = {.lex_state = 37}, - [2968] = {.lex_state = 40}, - [2969] = {.lex_state = 66, .external_lex_state = 7}, - [2970] = {.lex_state = 66, .external_lex_state = 7}, - [2971] = {.lex_state = 40}, - [2972] = {.lex_state = 66, .external_lex_state = 7}, - [2973] = {.lex_state = 31, .external_lex_state = 5}, - [2974] = {.lex_state = 66, .external_lex_state = 7}, - [2975] = {.lex_state = 28, .external_lex_state = 5}, - [2976] = {.lex_state = 31, .external_lex_state = 5}, - [2977] = {.lex_state = 31, .external_lex_state = 5}, - [2978] = {.lex_state = 31, .external_lex_state = 5}, - [2979] = {.lex_state = 28, .external_lex_state = 5}, - [2980] = {.lex_state = 28, .external_lex_state = 5}, - [2981] = {.lex_state = 28, .external_lex_state = 5}, - [2982] = {.lex_state = 40}, - [2983] = {.lex_state = 28, .external_lex_state = 5}, - [2984] = {.lex_state = 28, .external_lex_state = 5}, - [2985] = {.lex_state = 37}, - [2986] = {.lex_state = 37}, + [2924] = {.lex_state = 54, .external_lex_state = 6}, + [2925] = {.lex_state = 111, .external_lex_state = 6}, + [2926] = {.lex_state = 56, .external_lex_state = 6}, + [2927] = {.lex_state = 28, .external_lex_state = 6}, + [2928] = {.lex_state = 28, .external_lex_state = 6}, + [2929] = {.lex_state = 28, .external_lex_state = 6}, + [2930] = {.lex_state = 54, .external_lex_state = 6}, + [2931] = {.lex_state = 37}, + [2932] = {.lex_state = 54, .external_lex_state = 6}, + [2933] = {.lex_state = 202, .external_lex_state = 7}, + [2934] = {.lex_state = 28, .external_lex_state = 6}, + [2935] = {.lex_state = 54, .external_lex_state = 6}, + [2936] = {.lex_state = 202, .external_lex_state = 7}, + [2937] = {.lex_state = 54, .external_lex_state = 6}, + [2938] = {.lex_state = 28, .external_lex_state = 6}, + [2939] = {.lex_state = 69, .external_lex_state = 7}, + [2940] = {.lex_state = 54, .external_lex_state = 6}, + [2941] = {.lex_state = 28, .external_lex_state = 6}, + [2942] = {.lex_state = 28, .external_lex_state = 6}, + [2943] = {.lex_state = 54, .external_lex_state = 6}, + [2944] = {.lex_state = 28, .external_lex_state = 6}, + [2945] = {.lex_state = 28, .external_lex_state = 6}, + [2946] = {.lex_state = 28, .external_lex_state = 6}, + [2947] = {.lex_state = 54, .external_lex_state = 6}, + [2948] = {.lex_state = 28, .external_lex_state = 6}, + [2949] = {.lex_state = 28, .external_lex_state = 6}, + [2950] = {.lex_state = 28, .external_lex_state = 6}, + [2951] = {.lex_state = 56, .external_lex_state = 6}, + [2952] = {.lex_state = 56, .external_lex_state = 6}, + [2953] = {.lex_state = 54, .external_lex_state = 6}, + [2954] = {.lex_state = 54, .external_lex_state = 6}, + [2955] = {.lex_state = 54, .external_lex_state = 6}, + [2956] = {.lex_state = 54, .external_lex_state = 6}, + [2957] = {.lex_state = 28, .external_lex_state = 6}, + [2958] = {.lex_state = 28, .external_lex_state = 6}, + [2959] = {.lex_state = 54, .external_lex_state = 6}, + [2960] = {.lex_state = 56, .external_lex_state = 6}, + [2961] = {.lex_state = 56, .external_lex_state = 6}, + [2962] = {.lex_state = 37}, + [2963] = {.lex_state = 37}, + [2964] = {.lex_state = 37}, + [2965] = {.lex_state = 54, .external_lex_state = 6}, + [2966] = {.lex_state = 54, .external_lex_state = 6}, + [2967] = {.lex_state = 56, .external_lex_state = 6}, + [2968] = {.lex_state = 37}, + [2969] = {.lex_state = 37}, + [2970] = {.lex_state = 54, .external_lex_state = 6}, + [2971] = {.lex_state = 128, .external_lex_state = 6}, + [2972] = {.lex_state = 56, .external_lex_state = 6}, + [2973] = {.lex_state = 56, .external_lex_state = 6}, + [2974] = {.lex_state = 37}, + [2975] = {.lex_state = 37}, + [2976] = {.lex_state = 56, .external_lex_state = 6}, + [2977] = {.lex_state = 56, .external_lex_state = 6}, + [2978] = {.lex_state = 37}, + [2979] = {.lex_state = 37}, + [2980] = {.lex_state = 37}, + [2981] = {.lex_state = 56, .external_lex_state = 6}, + [2982] = {.lex_state = 37}, + [2983] = {.lex_state = 56, .external_lex_state = 6}, + [2984] = {.lex_state = 56, .external_lex_state = 6}, + [2985] = {.lex_state = 56, .external_lex_state = 6}, + [2986] = {.lex_state = 56, .external_lex_state = 6}, [2987] = {.lex_state = 37}, - [2988] = {.lex_state = 195}, + [2988] = {.lex_state = 37}, [2989] = {.lex_state = 37}, - [2990] = {.lex_state = 37}, - [2991] = {.lex_state = 40}, - [2992] = {.lex_state = 195}, - [2993] = {.lex_state = 37}, - [2994] = {.lex_state = 37}, - [2995] = {.lex_state = 37}, - [2996] = {.lex_state = 37}, - [2997] = {.lex_state = 37}, - [2998] = {.lex_state = 37}, - [2999] = {.lex_state = 37}, - [3000] = {.lex_state = 37}, - [3001] = {.lex_state = 37}, - [3002] = {.lex_state = 37}, - [3003] = {.lex_state = 37}, - [3004] = {.lex_state = 195}, - [3005] = {.lex_state = 37}, - [3006] = {.lex_state = 37}, - [3007] = {.lex_state = 37}, + [2990] = {.lex_state = 56, .external_lex_state = 6}, + [2991] = {.lex_state = 56, .external_lex_state = 6}, + [2992] = {.lex_state = 37}, + [2993] = {.lex_state = 202, .external_lex_state = 7}, + [2994] = {.lex_state = 56, .external_lex_state = 6}, + [2995] = {.lex_state = 54, .external_lex_state = 6}, + [2996] = {.lex_state = 28, .external_lex_state = 6}, + [2997] = {.lex_state = 28, .external_lex_state = 6}, + [2998] = {.lex_state = 56, .external_lex_state = 6}, + [2999] = {.lex_state = 129, .external_lex_state = 6}, + [3000] = {.lex_state = 56, .external_lex_state = 6}, + [3001] = {.lex_state = 202, .external_lex_state = 7}, + [3002] = {.lex_state = 202, .external_lex_state = 7}, + [3003] = {.lex_state = 56, .external_lex_state = 6}, + [3004] = {.lex_state = 54, .external_lex_state = 6}, + [3005] = {.lex_state = 56, .external_lex_state = 6}, + [3006] = {.lex_state = 56, .external_lex_state = 6}, + [3007] = {.lex_state = 125, .external_lex_state = 6}, [3008] = {.lex_state = 37}, [3009] = {.lex_state = 37}, - [3010] = {.lex_state = 37}, + [3010] = {.lex_state = 131, .external_lex_state = 6}, [3011] = {.lex_state = 37}, [3012] = {.lex_state = 37}, [3013] = {.lex_state = 40}, - [3014] = {.lex_state = 37}, - [3015] = {.lex_state = 37}, - [3016] = {.lex_state = 37}, + [3014] = {.lex_state = 130, .external_lex_state = 6}, + [3015] = {.lex_state = 69, .external_lex_state = 7}, + [3016] = {.lex_state = 69, .external_lex_state = 7}, [3017] = {.lex_state = 37}, - [3018] = {.lex_state = 37}, - [3019] = {.lex_state = 37}, - [3020] = {.lex_state = 37}, + [3018] = {.lex_state = 69, .external_lex_state = 7}, + [3019] = {.lex_state = 69, .external_lex_state = 7}, + [3020] = {.lex_state = 69, .external_lex_state = 7}, [3021] = {.lex_state = 37}, - [3022] = {.lex_state = 37}, + [3022] = {.lex_state = 40}, [3023] = {.lex_state = 37}, [3024] = {.lex_state = 37}, - [3025] = {.lex_state = 37}, + [3025] = {.lex_state = 40}, [3026] = {.lex_state = 37}, [3027] = {.lex_state = 37}, - [3028] = {.lex_state = 37}, + [3028] = {.lex_state = 40}, [3029] = {.lex_state = 37}, [3030] = {.lex_state = 37}, [3031] = {.lex_state = 37}, - [3032] = {.lex_state = 37}, + [3032] = {.lex_state = 202}, [3033] = {.lex_state = 37}, [3034] = {.lex_state = 37}, [3035] = {.lex_state = 37}, [3036] = {.lex_state = 37}, - [3037] = {.lex_state = 37}, + [3037] = {.lex_state = 202}, [3038] = {.lex_state = 37}, [3039] = {.lex_state = 37}, [3040] = {.lex_state = 37}, @@ -40012,21 +40464,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3042] = {.lex_state = 37}, [3043] = {.lex_state = 37}, [3044] = {.lex_state = 37}, - [3045] = {.lex_state = 37}, + [3045] = {.lex_state = 202}, [3046] = {.lex_state = 37}, - [3047] = {.lex_state = 37}, + [3047] = {.lex_state = 40}, [3048] = {.lex_state = 37}, [3049] = {.lex_state = 37}, [3050] = {.lex_state = 37}, [3051] = {.lex_state = 37}, [3052] = {.lex_state = 37}, - [3053] = {.lex_state = 40}, + [3053] = {.lex_state = 37}, [3054] = {.lex_state = 37}, [3055] = {.lex_state = 37}, [3056] = {.lex_state = 37}, [3057] = {.lex_state = 37}, [3058] = {.lex_state = 37}, - [3059] = {.lex_state = 37}, + [3059] = {.lex_state = 40}, [3060] = {.lex_state = 37}, [3061] = {.lex_state = 37}, [3062] = {.lex_state = 37}, @@ -40037,3644 +40489,3754 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3067] = {.lex_state = 37}, [3068] = {.lex_state = 37}, [3069] = {.lex_state = 37}, - [3070] = {.lex_state = 37}, + [3070] = {.lex_state = 194}, [3071] = {.lex_state = 37}, [3072] = {.lex_state = 37}, - [3073] = {.lex_state = 37}, + [3073] = {.lex_state = 197}, [3074] = {.lex_state = 37}, [3075] = {.lex_state = 37}, [3076] = {.lex_state = 37}, [3077] = {.lex_state = 37}, - [3078] = {.lex_state = 37}, + [3078] = {.lex_state = 194}, [3079] = {.lex_state = 37}, [3080] = {.lex_state = 37}, - [3081] = {.lex_state = 37}, - [3082] = {.lex_state = 37}, + [3081] = {.lex_state = 197}, + [3082] = {.lex_state = 194}, [3083] = {.lex_state = 37}, - [3084] = {.lex_state = 37}, - [3085] = {.lex_state = 37}, + [3084] = {.lex_state = 194}, + [3085] = {.lex_state = 197}, [3086] = {.lex_state = 37}, [3087] = {.lex_state = 37}, [3088] = {.lex_state = 37}, - [3089] = {.lex_state = 37}, - [3090] = {.lex_state = 37}, + [3089] = {.lex_state = 197}, + [3090] = {.lex_state = 197}, [3091] = {.lex_state = 37}, [3092] = {.lex_state = 37}, [3093] = {.lex_state = 37}, [3094] = {.lex_state = 37}, [3095] = {.lex_state = 37}, - [3096] = {.lex_state = 195, .external_lex_state = 7}, - [3097] = {.lex_state = 195, .external_lex_state = 7}, - [3098] = {.lex_state = 195, .external_lex_state = 7}, + [3096] = {.lex_state = 37}, + [3097] = {.lex_state = 37}, + [3098] = {.lex_state = 197}, [3099] = {.lex_state = 37}, - [3100] = {.lex_state = 40}, - [3101] = {.lex_state = 1321}, + [3100] = {.lex_state = 37}, + [3101] = {.lex_state = 194}, [3102] = {.lex_state = 37}, - [3103] = {.lex_state = 41, .external_lex_state = 11}, - [3104] = {.lex_state = 37}, + [3103] = {.lex_state = 37}, + [3104] = {.lex_state = 194}, [3105] = {.lex_state = 37}, [3106] = {.lex_state = 37}, [3107] = {.lex_state = 37}, - [3108] = {.lex_state = 40}, - [3109] = {.lex_state = 1321}, - [3110] = {.lex_state = 40}, - [3111] = {.lex_state = 1321}, + [3108] = {.lex_state = 37}, + [3109] = {.lex_state = 37}, + [3110] = {.lex_state = 37}, + [3111] = {.lex_state = 37}, [3112] = {.lex_state = 37}, - [3113] = {.lex_state = 1321}, - [3114] = {.lex_state = 1321}, + [3113] = {.lex_state = 37}, + [3114] = {.lex_state = 37}, [3115] = {.lex_state = 37}, - [3116] = {.lex_state = 41, .external_lex_state = 11}, - [3117] = {.lex_state = 1321}, - [3118] = {.lex_state = 37}, - [3119] = {.lex_state = 40}, - [3120] = {.lex_state = 1321}, - [3121] = {.lex_state = 1321}, - [3122] = {.lex_state = 1321}, - [3123] = {.lex_state = 1321}, + [3116] = {.lex_state = 37}, + [3117] = {.lex_state = 37}, + [3118] = {.lex_state = 197}, + [3119] = {.lex_state = 194}, + [3120] = {.lex_state = 197}, + [3121] = {.lex_state = 194}, + [3122] = {.lex_state = 37}, + [3123] = {.lex_state = 37}, [3124] = {.lex_state = 37}, [3125] = {.lex_state = 37}, - [3126] = {.lex_state = 1321}, - [3127] = {.lex_state = 1321}, + [3126] = {.lex_state = 37}, + [3127] = {.lex_state = 37}, [3128] = {.lex_state = 37}, [3129] = {.lex_state = 37}, [3130] = {.lex_state = 40}, [3131] = {.lex_state = 37}, - [3132] = {.lex_state = 37, .external_lex_state = 11}, - [3133] = {.lex_state = 64}, - [3134] = {.lex_state = 190}, - [3135] = {.lex_state = 1321}, - [3136] = {.lex_state = 187}, - [3137] = {.lex_state = 190}, - [3138] = {.lex_state = 190}, - [3139] = {.lex_state = 64}, - [3140] = {.lex_state = 187}, - [3141] = {.lex_state = 187}, - [3142] = {.lex_state = 190}, - [3143] = {.lex_state = 190}, - [3144] = {.lex_state = 187}, - [3145] = {.lex_state = 187}, - [3146] = {.lex_state = 187}, - [3147] = {.lex_state = 40}, - [3148] = {.lex_state = 187}, - [3149] = {.lex_state = 190}, - [3150] = {.lex_state = 64}, - [3151] = {.lex_state = 187}, - [3152] = {.lex_state = 190}, - [3153] = {.lex_state = 64}, - [3154] = {.lex_state = 1321}, - [3155] = {.lex_state = 187}, - [3156] = {.lex_state = 40}, - [3157] = {.lex_state = 1321}, - [3158] = {.lex_state = 190}, - [3159] = {.lex_state = 190}, - [3160] = {.lex_state = 40}, - [3161] = {.lex_state = 187}, - [3162] = {.lex_state = 37, .external_lex_state = 11}, - [3163] = {.lex_state = 190}, - [3164] = {.lex_state = 41, .external_lex_state = 11}, - [3165] = {.lex_state = 1321}, - [3166] = {.lex_state = 37}, - [3167] = {.lex_state = 1321, .external_lex_state = 11}, - [3168] = {.lex_state = 1321}, - [3169] = {.lex_state = 1321}, - [3170] = {.lex_state = 1321, .external_lex_state = 11}, - [3171] = {.lex_state = 1321, .external_lex_state = 11}, - [3172] = {.lex_state = 1321}, - [3173] = {.lex_state = 40}, - [3174] = {.lex_state = 1321, .external_lex_state = 11}, - [3175] = {.lex_state = 40}, - [3176] = {.lex_state = 1321, .external_lex_state = 11}, - [3177] = {.lex_state = 1321}, - [3178] = {.lex_state = 37, .external_lex_state = 11}, - [3179] = {.lex_state = 41, .external_lex_state = 16}, - [3180] = {.lex_state = 40}, - [3181] = {.lex_state = 1321, .external_lex_state = 11}, - [3182] = {.lex_state = 1321}, - [3183] = {.lex_state = 37}, - [3184] = {.lex_state = 1321, .external_lex_state = 11}, - [3185] = {.lex_state = 1321, .external_lex_state = 11}, - [3186] = {.lex_state = 41, .external_lex_state = 16}, - [3187] = {.lex_state = 1321, .external_lex_state = 11}, - [3188] = {.lex_state = 1321}, + [3132] = {.lex_state = 37}, + [3133] = {.lex_state = 37}, + [3134] = {.lex_state = 194}, + [3135] = {.lex_state = 37}, + [3136] = {.lex_state = 37}, + [3137] = {.lex_state = 194}, + [3138] = {.lex_state = 37}, + [3139] = {.lex_state = 37}, + [3140] = {.lex_state = 37}, + [3141] = {.lex_state = 37}, + [3142] = {.lex_state = 37}, + [3143] = {.lex_state = 37}, + [3144] = {.lex_state = 37}, + [3145] = {.lex_state = 37}, + [3146] = {.lex_state = 37}, + [3147] = {.lex_state = 37}, + [3148] = {.lex_state = 37}, + [3149] = {.lex_state = 37}, + [3150] = {.lex_state = 37}, + [3151] = {.lex_state = 37}, + [3152] = {.lex_state = 37}, + [3153] = {.lex_state = 197}, + [3154] = {.lex_state = 37}, + [3155] = {.lex_state = 197}, + [3156] = {.lex_state = 37}, + [3157] = {.lex_state = 37}, + [3158] = {.lex_state = 37}, + [3159] = {.lex_state = 37}, + [3160] = {.lex_state = 37}, + [3161] = {.lex_state = 37}, + [3162] = {.lex_state = 202, .external_lex_state = 7}, + [3163] = {.lex_state = 202, .external_lex_state = 7}, + [3164] = {.lex_state = 202, .external_lex_state = 7}, + [3165] = {.lex_state = 41, .external_lex_state = 11}, + [3166] = {.lex_state = 1329}, + [3167] = {.lex_state = 1329}, + [3168] = {.lex_state = 37}, + [3169] = {.lex_state = 1329}, + [3170] = {.lex_state = 1329}, + [3171] = {.lex_state = 37}, + [3172] = {.lex_state = 37}, + [3173] = {.lex_state = 1329}, + [3174] = {.lex_state = 37}, + [3175] = {.lex_state = 37}, + [3176] = {.lex_state = 40}, + [3177] = {.lex_state = 1329}, + [3178] = {.lex_state = 1329}, + [3179] = {.lex_state = 1329}, + [3180] = {.lex_state = 37}, + [3181] = {.lex_state = 40}, + [3182] = {.lex_state = 40}, + [3183] = {.lex_state = 1329}, + [3184] = {.lex_state = 37}, + [3185] = {.lex_state = 37}, + [3186] = {.lex_state = 37}, + [3187] = {.lex_state = 1329}, + [3188] = {.lex_state = 1329}, [3189] = {.lex_state = 40}, - [3190] = {.lex_state = 40}, - [3191] = {.lex_state = 41, .external_lex_state = 16}, - [3192] = {.lex_state = 41, .external_lex_state = 16}, - [3193] = {.lex_state = 41, .external_lex_state = 16}, - [3194] = {.lex_state = 1321, .external_lex_state = 11}, - [3195] = {.lex_state = 1321}, - [3196] = {.lex_state = 1321, .external_lex_state = 11}, - [3197] = {.lex_state = 1321, .external_lex_state = 11}, - [3198] = {.lex_state = 1321, .external_lex_state = 11}, - [3199] = {.lex_state = 1321, .external_lex_state = 11}, - [3200] = {.lex_state = 40}, - [3201] = {.lex_state = 37}, - [3202] = {.lex_state = 1321, .external_lex_state = 11}, - [3203] = {.lex_state = 37}, + [3190] = {.lex_state = 37}, + [3191] = {.lex_state = 41, .external_lex_state = 11}, + [3192] = {.lex_state = 1329}, + [3193] = {.lex_state = 37}, + [3194] = {.lex_state = 40}, + [3195] = {.lex_state = 37}, + [3196] = {.lex_state = 37}, + [3197] = {.lex_state = 37}, + [3198] = {.lex_state = 66}, + [3199] = {.lex_state = 1329}, + [3200] = {.lex_state = 1329}, + [3201] = {.lex_state = 40}, + [3202] = {.lex_state = 66}, + [3203] = {.lex_state = 66}, [3204] = {.lex_state = 40}, - [3205] = {.lex_state = 37}, - [3206] = {.lex_state = 37}, - [3207] = {.lex_state = 40}, - [3208] = {.lex_state = 40}, - [3209] = {.lex_state = 40}, - [3210] = {.lex_state = 1321}, - [3211] = {.lex_state = 1321}, - [3212] = {.lex_state = 40}, - [3213] = {.lex_state = 40}, - [3214] = {.lex_state = 40}, - [3215] = {.lex_state = 1321}, - [3216] = {.lex_state = 40}, - [3217] = {.lex_state = 37}, - [3218] = {.lex_state = 1321}, - [3219] = {.lex_state = 1321}, - [3220] = {.lex_state = 37}, - [3221] = {.lex_state = 1321}, - [3222] = {.lex_state = 1321}, + [3205] = {.lex_state = 66}, + [3206] = {.lex_state = 37, .external_lex_state = 11}, + [3207] = {.lex_state = 1329}, + [3208] = {.lex_state = 41, .external_lex_state = 11}, + [3209] = {.lex_state = 37, .external_lex_state = 11}, + [3210] = {.lex_state = 40}, + [3211] = {.lex_state = 1329}, + [3212] = {.lex_state = 37}, + [3213] = {.lex_state = 1329, .external_lex_state = 11}, + [3214] = {.lex_state = 41, .external_lex_state = 16}, + [3215] = {.lex_state = 1329, .external_lex_state = 11}, + [3216] = {.lex_state = 1329, .external_lex_state = 11}, + [3217] = {.lex_state = 40}, + [3218] = {.lex_state = 1329}, + [3219] = {.lex_state = 1329, .external_lex_state = 11}, + [3220] = {.lex_state = 40}, + [3221] = {.lex_state = 1329, .external_lex_state = 11}, + [3222] = {.lex_state = 1329}, [3223] = {.lex_state = 40}, - [3224] = {.lex_state = 1321}, - [3225] = {.lex_state = 1321}, - [3226] = {.lex_state = 1321}, - [3227] = {.lex_state = 1321}, - [3228] = {.lex_state = 1321}, - [3229] = {.lex_state = 1321}, - [3230] = {.lex_state = 1321}, - [3231] = {.lex_state = 1321}, - [3232] = {.lex_state = 1321}, - [3233] = {.lex_state = 1321}, - [3234] = {.lex_state = 1321}, - [3235] = {.lex_state = 37}, - [3236] = {.lex_state = 40}, - [3237] = {.lex_state = 1321}, - [3238] = {.lex_state = 37}, - [3239] = {.lex_state = 1321}, - [3240] = {.lex_state = 1321}, - [3241] = {.lex_state = 1321}, - [3242] = {.lex_state = 40}, - [3243] = {.lex_state = 1321}, - [3244] = {.lex_state = 1321}, - [3245] = {.lex_state = 1321}, + [3224] = {.lex_state = 1329}, + [3225] = {.lex_state = 1329, .external_lex_state = 11}, + [3226] = {.lex_state = 37}, + [3227] = {.lex_state = 1329, .external_lex_state = 11}, + [3228] = {.lex_state = 41, .external_lex_state = 16}, + [3229] = {.lex_state = 37}, + [3230] = {.lex_state = 1329}, + [3231] = {.lex_state = 1329, .external_lex_state = 11}, + [3232] = {.lex_state = 1329, .external_lex_state = 11}, + [3233] = {.lex_state = 1329, .external_lex_state = 11}, + [3234] = {.lex_state = 1329, .external_lex_state = 11}, + [3235] = {.lex_state = 1329, .external_lex_state = 11}, + [3236] = {.lex_state = 41, .external_lex_state = 16}, + [3237] = {.lex_state = 1329, .external_lex_state = 11}, + [3238] = {.lex_state = 37, .external_lex_state = 11}, + [3239] = {.lex_state = 41, .external_lex_state = 16}, + [3240] = {.lex_state = 1329, .external_lex_state = 11}, + [3241] = {.lex_state = 1329}, + [3242] = {.lex_state = 1329, .external_lex_state = 11}, + [3243] = {.lex_state = 1329}, + [3244] = {.lex_state = 40}, + [3245] = {.lex_state = 1329}, [3246] = {.lex_state = 40}, - [3247] = {.lex_state = 40}, + [3247] = {.lex_state = 41, .external_lex_state = 16}, [3248] = {.lex_state = 40}, - [3249] = {.lex_state = 1321}, - [3250] = {.lex_state = 1321}, - [3251] = {.lex_state = 1321}, - [3252] = {.lex_state = 1321}, - [3253] = {.lex_state = 1321}, - [3254] = {.lex_state = 40}, - [3255] = {.lex_state = 1321}, - [3256] = {.lex_state = 1321}, - [3257] = {.lex_state = 1321}, - [3258] = {.lex_state = 1321}, - [3259] = {.lex_state = 1321}, - [3260] = {.lex_state = 1321}, - [3261] = {.lex_state = 1321}, - [3262] = {.lex_state = 1321}, - [3263] = {.lex_state = 1321}, - [3264] = {.lex_state = 1321}, - [3265] = {.lex_state = 1321}, - [3266] = {.lex_state = 1321}, - [3267] = {.lex_state = 1321}, - [3268] = {.lex_state = 1321}, - [3269] = {.lex_state = 40}, - [3270] = {.lex_state = 1321}, - [3271] = {.lex_state = 1321}, - [3272] = {.lex_state = 40}, - [3273] = {.lex_state = 1321}, - [3274] = {.lex_state = 1321}, - [3275] = {.lex_state = 1321}, - [3276] = {.lex_state = 1321}, - [3277] = {.lex_state = 1321}, - [3278] = {.lex_state = 1321}, - [3279] = {.lex_state = 1321}, - [3280] = {.lex_state = 1321}, - [3281] = {.lex_state = 64}, - [3282] = {.lex_state = 1321}, - [3283] = {.lex_state = 1321}, - [3284] = {.lex_state = 1321}, - [3285] = {.lex_state = 1321}, - [3286] = {.lex_state = 1321}, - [3287] = {.lex_state = 1321}, - [3288] = {.lex_state = 1321}, - [3289] = {.lex_state = 1321}, - [3290] = {.lex_state = 1321}, - [3291] = {.lex_state = 1321}, - [3292] = {.lex_state = 1321}, - [3293] = {.lex_state = 1321}, - [3294] = {.lex_state = 40}, - [3295] = {.lex_state = 1321}, - [3296] = {.lex_state = 1321}, - [3297] = {.lex_state = 1321}, - [3298] = {.lex_state = 1321}, - [3299] = {.lex_state = 1321}, - [3300] = {.lex_state = 40}, - [3301] = {.lex_state = 1321}, - [3302] = {.lex_state = 1321}, - [3303] = {.lex_state = 1321}, - [3304] = {.lex_state = 1321}, - [3305] = {.lex_state = 1321}, - [3306] = {.lex_state = 1321}, - [3307] = {.lex_state = 41}, - [3308] = {.lex_state = 39, .external_lex_state = 11}, - [3309] = {.lex_state = 1321}, - [3310] = {.lex_state = 40}, - [3311] = {.lex_state = 40}, - [3312] = {.lex_state = 41}, - [3313] = {.lex_state = 1321}, - [3314] = {.lex_state = 1321}, - [3315] = {.lex_state = 41}, - [3316] = {.lex_state = 40}, + [3249] = {.lex_state = 40}, + [3250] = {.lex_state = 1329}, + [3251] = {.lex_state = 1329}, + [3252] = {.lex_state = 40}, + [3253] = {.lex_state = 40}, + [3254] = {.lex_state = 37}, + [3255] = {.lex_state = 40}, + [3256] = {.lex_state = 37}, + [3257] = {.lex_state = 40}, + [3258] = {.lex_state = 40}, + [3259] = {.lex_state = 40}, + [3260] = {.lex_state = 1329}, + [3261] = {.lex_state = 37}, + [3262] = {.lex_state = 40}, + [3263] = {.lex_state = 1329}, + [3264] = {.lex_state = 1329}, + [3265] = {.lex_state = 1329}, + [3266] = {.lex_state = 1329}, + [3267] = {.lex_state = 41, .external_lex_state = 17}, + [3268] = {.lex_state = 1329}, + [3269] = {.lex_state = 41, .external_lex_state = 17}, + [3270] = {.lex_state = 1329}, + [3271] = {.lex_state = 37}, + [3272] = {.lex_state = 1329}, + [3273] = {.lex_state = 1329}, + [3274] = {.lex_state = 1329}, + [3275] = {.lex_state = 40}, + [3276] = {.lex_state = 1329}, + [3277] = {.lex_state = 1329}, + [3278] = {.lex_state = 1329}, + [3279] = {.lex_state = 1329}, + [3280] = {.lex_state = 40}, + [3281] = {.lex_state = 41, .external_lex_state = 17}, + [3282] = {.lex_state = 1329}, + [3283] = {.lex_state = 37}, + [3284] = {.lex_state = 40}, + [3285] = {.lex_state = 1329}, + [3286] = {.lex_state = 1329}, + [3287] = {.lex_state = 41, .external_lex_state = 17}, + [3288] = {.lex_state = 1329}, + [3289] = {.lex_state = 1329}, + [3290] = {.lex_state = 37}, + [3291] = {.lex_state = 38, .external_lex_state = 16}, + [3292] = {.lex_state = 1329}, + [3293] = {.lex_state = 37}, + [3294] = {.lex_state = 41, .external_lex_state = 17}, + [3295] = {.lex_state = 1329}, + [3296] = {.lex_state = 1329}, + [3297] = {.lex_state = 1329}, + [3298] = {.lex_state = 1329}, + [3299] = {.lex_state = 1329}, + [3300] = {.lex_state = 1329}, + [3301] = {.lex_state = 40}, + [3302] = {.lex_state = 1329}, + [3303] = {.lex_state = 1329}, + [3304] = {.lex_state = 1329}, + [3305] = {.lex_state = 1329}, + [3306] = {.lex_state = 66}, + [3307] = {.lex_state = 1329}, + [3308] = {.lex_state = 40}, + [3309] = {.lex_state = 1329}, + [3310] = {.lex_state = 1329}, + [3311] = {.lex_state = 1329}, + [3312] = {.lex_state = 1329}, + [3313] = {.lex_state = 1329}, + [3314] = {.lex_state = 1329}, + [3315] = {.lex_state = 1329}, + [3316] = {.lex_state = 1329}, [3317] = {.lex_state = 40}, - [3318] = {.lex_state = 40}, - [3319] = {.lex_state = 41}, - [3320] = {.lex_state = 1321}, - [3321] = {.lex_state = 37}, - [3322] = {.lex_state = 41}, - [3323] = {.lex_state = 41}, - [3324] = {.lex_state = 1321}, - [3325] = {.lex_state = 41}, - [3326] = {.lex_state = 41}, - [3327] = {.lex_state = 40}, - [3328] = {.lex_state = 41}, - [3329] = {.lex_state = 1321}, - [3330] = {.lex_state = 40}, - [3331] = {.lex_state = 39, .external_lex_state = 11}, - [3332] = {.lex_state = 38, .external_lex_state = 16}, - [3333] = {.lex_state = 41}, + [3318] = {.lex_state = 1329}, + [3319] = {.lex_state = 1329}, + [3320] = {.lex_state = 1329}, + [3321] = {.lex_state = 1329}, + [3322] = {.lex_state = 1329}, + [3323] = {.lex_state = 40}, + [3324] = {.lex_state = 1329}, + [3325] = {.lex_state = 40}, + [3326] = {.lex_state = 40}, + [3327] = {.lex_state = 1329}, + [3328] = {.lex_state = 1329}, + [3329] = {.lex_state = 1329}, + [3330] = {.lex_state = 1329}, + [3331] = {.lex_state = 1329}, + [3332] = {.lex_state = 1329}, + [3333] = {.lex_state = 1329}, [3334] = {.lex_state = 40}, - [3335] = {.lex_state = 1321}, - [3336] = {.lex_state = 1321}, - [3337] = {.lex_state = 1321}, - [3338] = {.lex_state = 1321}, - [3339] = {.lex_state = 1321}, - [3340] = {.lex_state = 1321}, - [3341] = {.lex_state = 40}, - [3342] = {.lex_state = 1321}, - [3343] = {.lex_state = 205}, - [3344] = {.lex_state = 40}, - [3345] = {.lex_state = 1321}, - [3346] = {.lex_state = 40}, - [3347] = {.lex_state = 1321}, - [3348] = {.lex_state = 39, .external_lex_state = 11}, - [3349] = {.lex_state = 1321}, - [3350] = {.lex_state = 64}, - [3351] = {.lex_state = 1321}, - [3352] = {.lex_state = 1321}, - [3353] = {.lex_state = 64}, - [3354] = {.lex_state = 1321}, - [3355] = {.lex_state = 40}, - [3356] = {.lex_state = 1321}, - [3357] = {.lex_state = 1321}, - [3358] = {.lex_state = 1321}, - [3359] = {.lex_state = 41}, - [3360] = {.lex_state = 205}, - [3361] = {.lex_state = 1321}, - [3362] = {.lex_state = 1321}, - [3363] = {.lex_state = 1321}, - [3364] = {.lex_state = 1321}, - [3365] = {.lex_state = 40}, - [3366] = {.lex_state = 1321}, - [3367] = {.lex_state = 40}, - [3368] = {.lex_state = 1321}, - [3369] = {.lex_state = 40}, - [3370] = {.lex_state = 1321}, - [3371] = {.lex_state = 1321}, - [3372] = {.lex_state = 1321}, + [3335] = {.lex_state = 1329}, + [3336] = {.lex_state = 1329}, + [3337] = {.lex_state = 1329}, + [3338] = {.lex_state = 1329}, + [3339] = {.lex_state = 1329}, + [3340] = {.lex_state = 1329}, + [3341] = {.lex_state = 1329}, + [3342] = {.lex_state = 1329}, + [3343] = {.lex_state = 1329}, + [3344] = {.lex_state = 1329}, + [3345] = {.lex_state = 1329}, + [3346] = {.lex_state = 1329}, + [3347] = {.lex_state = 1329}, + [3348] = {.lex_state = 40}, + [3349] = {.lex_state = 1329}, + [3350] = {.lex_state = 1329}, + [3351] = {.lex_state = 1329}, + [3352] = {.lex_state = 1329}, + [3353] = {.lex_state = 1329}, + [3354] = {.lex_state = 1329}, + [3355] = {.lex_state = 1329}, + [3356] = {.lex_state = 1329}, + [3357] = {.lex_state = 1329}, + [3358] = {.lex_state = 1329}, + [3359] = {.lex_state = 40}, + [3360] = {.lex_state = 1329}, + [3361] = {.lex_state = 41}, + [3362] = {.lex_state = 1329}, + [3363] = {.lex_state = 68, .external_lex_state = 18}, + [3364] = {.lex_state = 41}, + [3365] = {.lex_state = 41}, + [3366] = {.lex_state = 40}, + [3367] = {.lex_state = 1329}, + [3368] = {.lex_state = 37}, + [3369] = {.lex_state = 1329}, + [3370] = {.lex_state = 40}, + [3371] = {.lex_state = 41}, + [3372] = {.lex_state = 41}, [3373] = {.lex_state = 40}, - [3374] = {.lex_state = 1321}, - [3375] = {.lex_state = 1321}, - [3376] = {.lex_state = 1321}, - [3377] = {.lex_state = 1321}, - [3378] = {.lex_state = 1321}, - [3379] = {.lex_state = 1321}, - [3380] = {.lex_state = 1321}, - [3381] = {.lex_state = 1321}, - [3382] = {.lex_state = 1321}, - [3383] = {.lex_state = 40}, - [3384] = {.lex_state = 38, .external_lex_state = 17}, - [3385] = {.lex_state = 1321}, - [3386] = {.lex_state = 40}, - [3387] = {.lex_state = 1321}, - [3388] = {.lex_state = 1321}, - [3389] = {.lex_state = 1321}, - [3390] = {.lex_state = 1321}, - [3391] = {.lex_state = 1321}, - [3392] = {.lex_state = 1321}, - [3393] = {.lex_state = 1321}, - [3394] = {.lex_state = 1321}, - [3395] = {.lex_state = 1321}, - [3396] = {.lex_state = 1321}, - [3397] = {.lex_state = 1321}, - [3398] = {.lex_state = 1321}, - [3399] = {.lex_state = 1321}, - [3400] = {.lex_state = 205}, - [3401] = {.lex_state = 1321}, - [3402] = {.lex_state = 1321}, - [3403] = {.lex_state = 40}, - [3404] = {.lex_state = 1321}, - [3405] = {.lex_state = 1321}, - [3406] = {.lex_state = 37}, - [3407] = {.lex_state = 1321}, - [3408] = {.lex_state = 1321}, - [3409] = {.lex_state = 1321}, - [3410] = {.lex_state = 40}, - [3411] = {.lex_state = 1321}, - [3412] = {.lex_state = 1321}, - [3413] = {.lex_state = 1321}, - [3414] = {.lex_state = 40}, - [3415] = {.lex_state = 64}, - [3416] = {.lex_state = 1321}, - [3417] = {.lex_state = 1321}, - [3418] = {.lex_state = 38, .external_lex_state = 17}, - [3419] = {.lex_state = 1321}, - [3420] = {.lex_state = 1321}, - [3421] = {.lex_state = 1321}, - [3422] = {.lex_state = 40}, - [3423] = {.lex_state = 1321}, - [3424] = {.lex_state = 37}, - [3425] = {.lex_state = 37}, - [3426] = {.lex_state = 1321}, - [3427] = {.lex_state = 37}, - [3428] = {.lex_state = 1321}, - [3429] = {.lex_state = 37}, - [3430] = {.lex_state = 1321}, - [3431] = {.lex_state = 37}, - [3432] = {.lex_state = 1321}, - [3433] = {.lex_state = 37}, - [3434] = {.lex_state = 37}, - [3435] = {.lex_state = 37}, - [3436] = {.lex_state = 37}, - [3437] = {.lex_state = 37}, - [3438] = {.lex_state = 37}, - [3439] = {.lex_state = 37}, - [3440] = {.lex_state = 37}, - [3441] = {.lex_state = 37}, - [3442] = {.lex_state = 37}, - [3443] = {.lex_state = 37}, - [3444] = {.lex_state = 37}, - [3445] = {.lex_state = 1321}, - [3446] = {.lex_state = 37}, - [3447] = {.lex_state = 37}, - [3448] = {.lex_state = 37}, - [3449] = {.lex_state = 37}, - [3450] = {.lex_state = 37}, - [3451] = {.lex_state = 38, .external_lex_state = 17}, - [3452] = {.lex_state = 37}, - [3453] = {.lex_state = 37}, - [3454] = {.lex_state = 1321}, - [3455] = {.lex_state = 37}, - [3456] = {.lex_state = 37}, - [3457] = {.lex_state = 37}, - [3458] = {.lex_state = 1321}, - [3459] = {.lex_state = 37}, - [3460] = {.lex_state = 37}, - [3461] = {.lex_state = 37}, - [3462] = {.lex_state = 40}, - [3463] = {.lex_state = 1321}, - [3464] = {.lex_state = 37}, - [3465] = {.lex_state = 37}, - [3466] = {.lex_state = 37}, - [3467] = {.lex_state = 37}, - [3468] = {.lex_state = 40}, - [3469] = {.lex_state = 37}, - [3470] = {.lex_state = 37}, - [3471] = {.lex_state = 37}, - [3472] = {.lex_state = 37}, - [3473] = {.lex_state = 1321}, - [3474] = {.lex_state = 37}, - [3475] = {.lex_state = 37}, - [3476] = {.lex_state = 1321}, - [3477] = {.lex_state = 37}, - [3478] = {.lex_state = 37}, - [3479] = {.lex_state = 37}, - [3480] = {.lex_state = 1321}, - [3481] = {.lex_state = 1321}, - [3482] = {.lex_state = 37}, - [3483] = {.lex_state = 37}, - [3484] = {.lex_state = 37}, - [3485] = {.lex_state = 37}, - [3486] = {.lex_state = 37}, - [3487] = {.lex_state = 37}, - [3488] = {.lex_state = 37}, - [3489] = {.lex_state = 1321}, - [3490] = {.lex_state = 1321}, - [3491] = {.lex_state = 1321}, - [3492] = {.lex_state = 1321}, - [3493] = {.lex_state = 1321}, - [3494] = {.lex_state = 1321}, + [3374] = {.lex_state = 40}, + [3375] = {.lex_state = 39, .external_lex_state = 11}, + [3376] = {.lex_state = 39, .external_lex_state = 11}, + [3377] = {.lex_state = 1329}, + [3378] = {.lex_state = 40}, + [3379] = {.lex_state = 1329}, + [3380] = {.lex_state = 41}, + [3381] = {.lex_state = 41}, + [3382] = {.lex_state = 1329}, + [3383] = {.lex_state = 1329}, + [3384] = {.lex_state = 1329}, + [3385] = {.lex_state = 40}, + [3386] = {.lex_state = 41}, + [3387] = {.lex_state = 1329}, + [3388] = {.lex_state = 41}, + [3389] = {.lex_state = 41}, + [3390] = {.lex_state = 40}, + [3391] = {.lex_state = 1329}, + [3392] = {.lex_state = 66}, + [3393] = {.lex_state = 1329}, + [3394] = {.lex_state = 1329}, + [3395] = {.lex_state = 68}, + [3396] = {.lex_state = 1329}, + [3397] = {.lex_state = 1329}, + [3398] = {.lex_state = 1329}, + [3399] = {.lex_state = 1329}, + [3400] = {.lex_state = 213}, + [3401] = {.lex_state = 1329}, + [3402] = {.lex_state = 213}, + [3403] = {.lex_state = 68}, + [3404] = {.lex_state = 1329}, + [3405] = {.lex_state = 1329}, + [3406] = {.lex_state = 68}, + [3407] = {.lex_state = 40}, + [3408] = {.lex_state = 1329}, + [3409] = {.lex_state = 1329}, + [3410] = {.lex_state = 1329}, + [3411] = {.lex_state = 1329}, + [3412] = {.lex_state = 213}, + [3413] = {.lex_state = 68}, + [3414] = {.lex_state = 1329}, + [3415] = {.lex_state = 1329}, + [3416] = {.lex_state = 40}, + [3417] = {.lex_state = 68}, + [3418] = {.lex_state = 39, .external_lex_state = 11}, + [3419] = {.lex_state = 68}, + [3420] = {.lex_state = 1329}, + [3421] = {.lex_state = 1329}, + [3422] = {.lex_state = 1329}, + [3423] = {.lex_state = 1329}, + [3424] = {.lex_state = 40}, + [3425] = {.lex_state = 40}, + [3426] = {.lex_state = 1329}, + [3427] = {.lex_state = 68}, + [3428] = {.lex_state = 1329}, + [3429] = {.lex_state = 1329}, + [3430] = {.lex_state = 1329}, + [3431] = {.lex_state = 1329}, + [3432] = {.lex_state = 1329}, + [3433] = {.lex_state = 1329}, + [3434] = {.lex_state = 1329}, + [3435] = {.lex_state = 1329}, + [3436] = {.lex_state = 68}, + [3437] = {.lex_state = 1329}, + [3438] = {.lex_state = 1329}, + [3439] = {.lex_state = 40}, + [3440] = {.lex_state = 1329}, + [3441] = {.lex_state = 40}, + [3442] = {.lex_state = 1329}, + [3443] = {.lex_state = 68}, + [3444] = {.lex_state = 1329}, + [3445] = {.lex_state = 1329}, + [3446] = {.lex_state = 1329}, + [3447] = {.lex_state = 1329}, + [3448] = {.lex_state = 40}, + [3449] = {.lex_state = 1329}, + [3450] = {.lex_state = 1329}, + [3451] = {.lex_state = 1329}, + [3452] = {.lex_state = 1329}, + [3453] = {.lex_state = 1329}, + [3454] = {.lex_state = 37}, + [3455] = {.lex_state = 1329}, + [3456] = {.lex_state = 1329}, + [3457] = {.lex_state = 1329}, + [3458] = {.lex_state = 1329}, + [3459] = {.lex_state = 1329}, + [3460] = {.lex_state = 40}, + [3461] = {.lex_state = 1329}, + [3462] = {.lex_state = 1329}, + [3463] = {.lex_state = 68}, + [3464] = {.lex_state = 1329}, + [3465] = {.lex_state = 1329}, + [3466] = {.lex_state = 1329}, + [3467] = {.lex_state = 40}, + [3468] = {.lex_state = 66}, + [3469] = {.lex_state = 1329}, + [3470] = {.lex_state = 40}, + [3471] = {.lex_state = 68}, + [3472] = {.lex_state = 40}, + [3473] = {.lex_state = 1329}, + [3474] = {.lex_state = 66}, + [3475] = {.lex_state = 40}, + [3476] = {.lex_state = 1329}, + [3477] = {.lex_state = 41}, + [3478] = {.lex_state = 68}, + [3479] = {.lex_state = 40}, + [3480] = {.lex_state = 1329}, + [3481] = {.lex_state = 1329}, + [3482] = {.lex_state = 1329}, + [3483] = {.lex_state = 1329}, + [3484] = {.lex_state = 68}, + [3485] = {.lex_state = 1329}, + [3486] = {.lex_state = 40}, + [3487] = {.lex_state = 68}, + [3488] = {.lex_state = 1329}, + [3489] = {.lex_state = 37}, + [3490] = {.lex_state = 37}, + [3491] = {.lex_state = 37}, + [3492] = {.lex_state = 40}, + [3493] = {.lex_state = 37}, + [3494] = {.lex_state = 37}, [3495] = {.lex_state = 37}, - [3496] = {.lex_state = 37}, + [3496] = {.lex_state = 68}, [3497] = {.lex_state = 37}, - [3498] = {.lex_state = 1321}, - [3499] = {.lex_state = 1321}, - [3500] = {.lex_state = 1321}, - [3501] = {.lex_state = 1321}, - [3502] = {.lex_state = 30}, + [3498] = {.lex_state = 37}, + [3499] = {.lex_state = 37}, + [3500] = {.lex_state = 37}, + [3501] = {.lex_state = 37}, + [3502] = {.lex_state = 1329}, [3503] = {.lex_state = 37}, - [3504] = {.lex_state = 30}, - [3505] = {.lex_state = 1321}, - [3506] = {.lex_state = 30}, - [3507] = {.lex_state = 1321}, - [3508] = {.lex_state = 1321}, - [3509] = {.lex_state = 1321}, - [3510] = {.lex_state = 37}, - [3511] = {.lex_state = 40}, - [3512] = {.lex_state = 1321}, + [3504] = {.lex_state = 37}, + [3505] = {.lex_state = 37}, + [3506] = {.lex_state = 41, .external_lex_state = 17}, + [3507] = {.lex_state = 37}, + [3508] = {.lex_state = 37}, + [3509] = {.lex_state = 1329}, + [3510] = {.lex_state = 1329}, + [3511] = {.lex_state = 37}, + [3512] = {.lex_state = 38, .external_lex_state = 17}, [3513] = {.lex_state = 37}, [3514] = {.lex_state = 37}, [3515] = {.lex_state = 37}, - [3516] = {.lex_state = 41}, - [3517] = {.lex_state = 1321}, - [3518] = {.lex_state = 30}, - [3519] = {.lex_state = 1321}, - [3520] = {.lex_state = 1321}, - [3521] = {.lex_state = 1321}, - [3522] = {.lex_state = 1321}, + [3516] = {.lex_state = 37}, + [3517] = {.lex_state = 37}, + [3518] = {.lex_state = 37}, + [3519] = {.lex_state = 37}, + [3520] = {.lex_state = 37}, + [3521] = {.lex_state = 37}, + [3522] = {.lex_state = 38, .external_lex_state = 17}, [3523] = {.lex_state = 37}, [3524] = {.lex_state = 37}, - [3525] = {.lex_state = 41}, - [3526] = {.lex_state = 1321}, + [3525] = {.lex_state = 37}, + [3526] = {.lex_state = 37}, [3527] = {.lex_state = 37}, - [3528] = {.lex_state = 1321}, - [3529] = {.lex_state = 1321}, - [3530] = {.lex_state = 1321}, - [3531] = {.lex_state = 1321}, - [3532] = {.lex_state = 1321}, - [3533] = {.lex_state = 1321}, - [3534] = {.lex_state = 30}, - [3535] = {.lex_state = 38}, - [3536] = {.lex_state = 30}, - [3537] = {.lex_state = 1321}, - [3538] = {.lex_state = 1321}, - [3539] = {.lex_state = 1321}, - [3540] = {.lex_state = 30}, - [3541] = {.lex_state = 1321}, - [3542] = {.lex_state = 1321}, - [3543] = {.lex_state = 1321}, - [3544] = {.lex_state = 1321}, - [3545] = {.lex_state = 1321}, - [3546] = {.lex_state = 1321}, - [3547] = {.lex_state = 1321}, - [3548] = {.lex_state = 37}, - [3549] = {.lex_state = 1321}, - [3550] = {.lex_state = 1321}, - [3551] = {.lex_state = 1321}, - [3552] = {.lex_state = 1321}, - [3553] = {.lex_state = 1321}, - [3554] = {.lex_state = 1321}, - [3555] = {.lex_state = 1321}, - [3556] = {.lex_state = 1321}, - [3557] = {.lex_state = 1321}, - [3558] = {.lex_state = 1321}, - [3559] = {.lex_state = 41}, - [3560] = {.lex_state = 1321}, - [3561] = {.lex_state = 37}, - [3562] = {.lex_state = 1321}, + [3528] = {.lex_state = 37}, + [3529] = {.lex_state = 68}, + [3530] = {.lex_state = 37}, + [3531] = {.lex_state = 41, .external_lex_state = 17}, + [3532] = {.lex_state = 37}, + [3533] = {.lex_state = 68}, + [3534] = {.lex_state = 1329}, + [3535] = {.lex_state = 37}, + [3536] = {.lex_state = 38, .external_lex_state = 17}, + [3537] = {.lex_state = 1329}, + [3538] = {.lex_state = 41, .external_lex_state = 17}, + [3539] = {.lex_state = 1329}, + [3540] = {.lex_state = 37}, + [3541] = {.lex_state = 41, .external_lex_state = 17}, + [3542] = {.lex_state = 1329}, + [3543] = {.lex_state = 40}, + [3544] = {.lex_state = 37}, + [3545] = {.lex_state = 37}, + [3546] = {.lex_state = 68}, + [3547] = {.lex_state = 68}, + [3548] = {.lex_state = 1329}, + [3549] = {.lex_state = 68}, + [3550] = {.lex_state = 37}, + [3551] = {.lex_state = 37}, + [3552] = {.lex_state = 37}, + [3553] = {.lex_state = 37}, + [3554] = {.lex_state = 37}, + [3555] = {.lex_state = 37}, + [3556] = {.lex_state = 68}, + [3557] = {.lex_state = 68}, + [3558] = {.lex_state = 37}, + [3559] = {.lex_state = 37}, + [3560] = {.lex_state = 1329}, + [3561] = {.lex_state = 1329}, + [3562] = {.lex_state = 37}, [3563] = {.lex_state = 37}, - [3564] = {.lex_state = 1321}, - [3565] = {.lex_state = 1321}, - [3566] = {.lex_state = 1321}, - [3567] = {.lex_state = 1321}, - [3568] = {.lex_state = 37}, - [3569] = {.lex_state = 1321}, - [3570] = {.lex_state = 1321}, - [3571] = {.lex_state = 1321}, - [3572] = {.lex_state = 1321}, - [3573] = {.lex_state = 1321}, - [3574] = {.lex_state = 1321}, - [3575] = {.lex_state = 1321}, - [3576] = {.lex_state = 1321}, - [3577] = {.lex_state = 1321}, - [3578] = {.lex_state = 1321}, - [3579] = {.lex_state = 1321}, - [3580] = {.lex_state = 37}, - [3581] = {.lex_state = 37}, - [3582] = {.lex_state = 1321}, - [3583] = {.lex_state = 1321}, - [3584] = {.lex_state = 1321}, - [3585] = {.lex_state = 41}, - [3586] = {.lex_state = 1321}, - [3587] = {.lex_state = 37}, - [3588] = {.lex_state = 37}, - [3589] = {.lex_state = 1321}, + [3564] = {.lex_state = 68}, + [3565] = {.lex_state = 1329}, + [3566] = {.lex_state = 37}, + [3567] = {.lex_state = 41, .external_lex_state = 17}, + [3568] = {.lex_state = 38}, + [3569] = {.lex_state = 37}, + [3570] = {.lex_state = 41, .external_lex_state = 17}, + [3571] = {.lex_state = 1329}, + [3572] = {.lex_state = 41}, + [3573] = {.lex_state = 191}, + [3574] = {.lex_state = 1329}, + [3575] = {.lex_state = 68}, + [3576] = {.lex_state = 39}, + [3577] = {.lex_state = 1329, .external_lex_state = 11}, + [3578] = {.lex_state = 37}, + [3579] = {.lex_state = 37}, + [3580] = {.lex_state = 1329}, + [3581] = {.lex_state = 1329}, + [3582] = {.lex_state = 1329}, + [3583] = {.lex_state = 1329}, + [3584] = {.lex_state = 1329}, + [3585] = {.lex_state = 1329, .external_lex_state = 11}, + [3586] = {.lex_state = 68}, + [3587] = {.lex_state = 1329}, + [3588] = {.lex_state = 68}, + [3589] = {.lex_state = 1329}, [3590] = {.lex_state = 37}, - [3591] = {.lex_state = 37}, - [3592] = {.lex_state = 1321}, - [3593] = {.lex_state = 1321}, - [3594] = {.lex_state = 1321}, - [3595] = {.lex_state = 1321}, - [3596] = {.lex_state = 1321}, - [3597] = {.lex_state = 1321}, - [3598] = {.lex_state = 1321}, - [3599] = {.lex_state = 1321}, - [3600] = {.lex_state = 1321}, - [3601] = {.lex_state = 37}, - [3602] = {.lex_state = 1321}, - [3603] = {.lex_state = 1321}, - [3604] = {.lex_state = 1321}, - [3605] = {.lex_state = 30}, - [3606] = {.lex_state = 1321}, - [3607] = {.lex_state = 1321}, - [3608] = {.lex_state = 30}, + [3591] = {.lex_state = 1329}, + [3592] = {.lex_state = 68}, + [3593] = {.lex_state = 1329}, + [3594] = {.lex_state = 1329}, + [3595] = {.lex_state = 1329}, + [3596] = {.lex_state = 68}, + [3597] = {.lex_state = 191}, + [3598] = {.lex_state = 1329}, + [3599] = {.lex_state = 191}, + [3600] = {.lex_state = 37}, + [3601] = {.lex_state = 191}, + [3602] = {.lex_state = 1329}, + [3603] = {.lex_state = 1329}, + [3604] = {.lex_state = 68}, + [3605] = {.lex_state = 38}, + [3606] = {.lex_state = 37}, + [3607] = {.lex_state = 191}, + [3608] = {.lex_state = 68}, [3609] = {.lex_state = 37}, - [3610] = {.lex_state = 41}, - [3611] = {.lex_state = 37}, + [3610] = {.lex_state = 1329}, + [3611] = {.lex_state = 1329}, [3612] = {.lex_state = 37}, - [3613] = {.lex_state = 37}, - [3614] = {.lex_state = 1321}, - [3615] = {.lex_state = 30}, - [3616] = {.lex_state = 1321}, - [3617] = {.lex_state = 1321}, - [3618] = {.lex_state = 1321}, - [3619] = {.lex_state = 1321}, - [3620] = {.lex_state = 1321}, - [3621] = {.lex_state = 41}, - [3622] = {.lex_state = 1321}, - [3623] = {.lex_state = 1321}, - [3624] = {.lex_state = 37}, - [3625] = {.lex_state = 1321}, - [3626] = {.lex_state = 1321}, - [3627] = {.lex_state = 1321}, + [3613] = {.lex_state = 41}, + [3614] = {.lex_state = 37}, + [3615] = {.lex_state = 1329}, + [3616] = {.lex_state = 1329}, + [3617] = {.lex_state = 68}, + [3618] = {.lex_state = 41}, + [3619] = {.lex_state = 37}, + [3620] = {.lex_state = 1329}, + [3621] = {.lex_state = 68}, + [3622] = {.lex_state = 68}, + [3623] = {.lex_state = 191}, + [3624] = {.lex_state = 1329}, + [3625] = {.lex_state = 191}, + [3626] = {.lex_state = 39}, + [3627] = {.lex_state = 38}, [3628] = {.lex_state = 39}, [3629] = {.lex_state = 37}, - [3630] = {.lex_state = 38}, - [3631] = {.lex_state = 38}, - [3632] = {.lex_state = 37}, - [3633] = {.lex_state = 1321}, - [3634] = {.lex_state = 37}, - [3635] = {.lex_state = 37}, - [3636] = {.lex_state = 1321}, - [3637] = {.lex_state = 1321}, - [3638] = {.lex_state = 1321}, - [3639] = {.lex_state = 1321}, - [3640] = {.lex_state = 1321}, - [3641] = {.lex_state = 37}, - [3642] = {.lex_state = 39}, - [3643] = {.lex_state = 1321}, - [3644] = {.lex_state = 1321}, - [3645] = {.lex_state = 39}, - [3646] = {.lex_state = 1321}, - [3647] = {.lex_state = 1321}, - [3648] = {.lex_state = 1321}, - [3649] = {.lex_state = 37}, - [3650] = {.lex_state = 38}, - [3651] = {.lex_state = 1321}, - [3652] = {.lex_state = 1321}, - [3653] = {.lex_state = 1321}, - [3654] = {.lex_state = 30}, - [3655] = {.lex_state = 37}, - [3656] = {.lex_state = 1321}, - [3657] = {.lex_state = 37}, - [3658] = {.lex_state = 41}, - [3659] = {.lex_state = 1321}, - [3660] = {.lex_state = 30}, - [3661] = {.lex_state = 30}, - [3662] = {.lex_state = 1321}, - [3663] = {.lex_state = 41}, - [3664] = {.lex_state = 1321}, - [3665] = {.lex_state = 1321}, - [3666] = {.lex_state = 1321}, - [3667] = {.lex_state = 41}, - [3668] = {.lex_state = 1321}, - [3669] = {.lex_state = 41}, - [3670] = {.lex_state = 37}, - [3671] = {.lex_state = 37}, - [3672] = {.lex_state = 1321}, - [3673] = {.lex_state = 37}, - [3674] = {.lex_state = 1321}, - [3675] = {.lex_state = 1321}, - [3676] = {.lex_state = 1321}, - [3677] = {.lex_state = 1321}, - [3678] = {.lex_state = 1321}, - [3679] = {.lex_state = 1321}, - [3680] = {.lex_state = 1321}, - [3681] = {.lex_state = 1321}, - [3682] = {.lex_state = 1321}, - [3683] = {.lex_state = 1321}, - [3684] = {.lex_state = 1321}, - [3685] = {.lex_state = 1321}, - [3686] = {.lex_state = 1321}, - [3687] = {.lex_state = 1321}, - [3688] = {.lex_state = 1321}, - [3689] = {.lex_state = 41}, - [3690] = {.lex_state = 1321}, - [3691] = {.lex_state = 1321}, - [3692] = {.lex_state = 1321}, - [3693] = {.lex_state = 1321}, - [3694] = {.lex_state = 1321}, + [3630] = {.lex_state = 1329}, + [3631] = {.lex_state = 1329}, + [3632] = {.lex_state = 68}, + [3633] = {.lex_state = 68}, + [3634] = {.lex_state = 1329}, + [3635] = {.lex_state = 1329}, + [3636] = {.lex_state = 68}, + [3637] = {.lex_state = 68}, + [3638] = {.lex_state = 68}, + [3639] = {.lex_state = 37}, + [3640] = {.lex_state = 191}, + [3641] = {.lex_state = 1329}, + [3642] = {.lex_state = 1329}, + [3643] = {.lex_state = 1329}, + [3644] = {.lex_state = 1329}, + [3645] = {.lex_state = 1329}, + [3646] = {.lex_state = 37}, + [3647] = {.lex_state = 1329}, + [3648] = {.lex_state = 1329}, + [3649] = {.lex_state = 1329}, + [3650] = {.lex_state = 1329}, + [3651] = {.lex_state = 68}, + [3652] = {.lex_state = 1329}, + [3653] = {.lex_state = 1329}, + [3654] = {.lex_state = 1329}, + [3655] = {.lex_state = 1329}, + [3656] = {.lex_state = 1329}, + [3657] = {.lex_state = 1329}, + [3658] = {.lex_state = 1329}, + [3659] = {.lex_state = 1329}, + [3660] = {.lex_state = 1329}, + [3661] = {.lex_state = 1329}, + [3662] = {.lex_state = 1329}, + [3663] = {.lex_state = 68}, + [3664] = {.lex_state = 1329}, + [3665] = {.lex_state = 37}, + [3666] = {.lex_state = 1329}, + [3667] = {.lex_state = 1329}, + [3668] = {.lex_state = 1329}, + [3669] = {.lex_state = 1329}, + [3670] = {.lex_state = 1329}, + [3671] = {.lex_state = 1329}, + [3672] = {.lex_state = 1329}, + [3673] = {.lex_state = 38}, + [3674] = {.lex_state = 1329}, + [3675] = {.lex_state = 68}, + [3676] = {.lex_state = 1329}, + [3677] = {.lex_state = 1329}, + [3678] = {.lex_state = 37}, + [3679] = {.lex_state = 1329}, + [3680] = {.lex_state = 68}, + [3681] = {.lex_state = 1329}, + [3682] = {.lex_state = 1329}, + [3683] = {.lex_state = 1329}, + [3684] = {.lex_state = 1329}, + [3685] = {.lex_state = 191}, + [3686] = {.lex_state = 37}, + [3687] = {.lex_state = 1329}, + [3688] = {.lex_state = 1329}, + [3689] = {.lex_state = 68}, + [3690] = {.lex_state = 1329}, + [3691] = {.lex_state = 37}, + [3692] = {.lex_state = 1329}, + [3693] = {.lex_state = 191}, + [3694] = {.lex_state = 38}, [3695] = {.lex_state = 37}, - [3696] = {.lex_state = 1321}, - [3697] = {.lex_state = 1321, .external_lex_state = 11}, - [3698] = {.lex_state = 1321}, - [3699] = {.lex_state = 1321}, - [3700] = {.lex_state = 1321}, - [3701] = {.lex_state = 1321}, - [3702] = {.lex_state = 1321}, - [3703] = {.lex_state = 1321}, - [3704] = {.lex_state = 1321, .external_lex_state = 11}, - [3705] = {.lex_state = 1321}, - [3706] = {.lex_state = 1321}, - [3707] = {.lex_state = 1321}, - [3708] = {.lex_state = 1321}, - [3709] = {.lex_state = 37}, - [3710] = {.lex_state = 1321}, - [3711] = {.lex_state = 1321}, - [3712] = {.lex_state = 1321}, - [3713] = {.lex_state = 1321}, - [3714] = {.lex_state = 1321}, - [3715] = {.lex_state = 1321}, - [3716] = {.lex_state = 37}, - [3717] = {.lex_state = 1321}, - [3718] = {.lex_state = 1321}, - [3719] = {.lex_state = 1321}, - [3720] = {.lex_state = 1321}, - [3721] = {.lex_state = 74}, - [3722] = {.lex_state = 1321}, - [3723] = {.lex_state = 1321, .external_lex_state = 11}, - [3724] = {.lex_state = 1321}, - [3725] = {.lex_state = 131}, - [3726] = {.lex_state = 37}, - [3727] = {.lex_state = 1321}, + [3696] = {.lex_state = 1329}, + [3697] = {.lex_state = 1329}, + [3698] = {.lex_state = 1329}, + [3699] = {.lex_state = 68}, + [3700] = {.lex_state = 68}, + [3701] = {.lex_state = 1329}, + [3702] = {.lex_state = 191}, + [3703] = {.lex_state = 1329}, + [3704] = {.lex_state = 68}, + [3705] = {.lex_state = 1329}, + [3706] = {.lex_state = 1329}, + [3707] = {.lex_state = 1329}, + [3708] = {.lex_state = 1329}, + [3709] = {.lex_state = 1329}, + [3710] = {.lex_state = 1329}, + [3711] = {.lex_state = 37}, + [3712] = {.lex_state = 1329}, + [3713] = {.lex_state = 1329}, + [3714] = {.lex_state = 1329}, + [3715] = {.lex_state = 1329}, + [3716] = {.lex_state = 1329}, + [3717] = {.lex_state = 1329}, + [3718] = {.lex_state = 1329}, + [3719] = {.lex_state = 68}, + [3720] = {.lex_state = 1329}, + [3721] = {.lex_state = 1329}, + [3722] = {.lex_state = 68}, + [3723] = {.lex_state = 68}, + [3724] = {.lex_state = 37}, + [3725] = {.lex_state = 1329}, + [3726] = {.lex_state = 1329}, + [3727] = {.lex_state = 68}, [3728] = {.lex_state = 37}, - [3729] = {.lex_state = 1321}, - [3730] = {.lex_state = 1321}, - [3731] = {.lex_state = 205}, - [3732] = {.lex_state = 1321}, - [3733] = {.lex_state = 131}, - [3734] = {.lex_state = 37}, - [3735] = {.lex_state = 1321}, - [3736] = {.lex_state = 1321}, - [3737] = {.lex_state = 1321}, - [3738] = {.lex_state = 1321}, - [3739] = {.lex_state = 30, .external_lex_state = 18}, - [3740] = {.lex_state = 1321}, - [3741] = {.lex_state = 37}, - [3742] = {.lex_state = 1321}, - [3743] = {.lex_state = 1321}, - [3744] = {.lex_state = 1321}, + [3729] = {.lex_state = 38, .external_lex_state = 17}, + [3730] = {.lex_state = 1329}, + [3731] = {.lex_state = 40}, + [3732] = {.lex_state = 1329}, + [3733] = {.lex_state = 37}, + [3734] = {.lex_state = 41}, + [3735] = {.lex_state = 1329}, + [3736] = {.lex_state = 1329}, + [3737] = {.lex_state = 1329}, + [3738] = {.lex_state = 1329}, + [3739] = {.lex_state = 1329}, + [3740] = {.lex_state = 1329}, + [3741] = {.lex_state = 1329}, + [3742] = {.lex_state = 1329}, + [3743] = {.lex_state = 37}, + [3744] = {.lex_state = 37}, [3745] = {.lex_state = 37}, - [3746] = {.lex_state = 131}, - [3747] = {.lex_state = 37}, - [3748] = {.lex_state = 1321}, - [3749] = {.lex_state = 1321}, - [3750] = {.lex_state = 1321}, - [3751] = {.lex_state = 205}, - [3752] = {.lex_state = 1321}, - [3753] = {.lex_state = 205}, - [3754] = {.lex_state = 131}, - [3755] = {.lex_state = 37}, - [3756] = {.lex_state = 1321}, - [3757] = {.lex_state = 1321}, - [3758] = {.lex_state = 37}, - [3759] = {.lex_state = 131}, - [3760] = {.lex_state = 1321}, - [3761] = {.lex_state = 1321}, - [3762] = {.lex_state = 74}, - [3763] = {.lex_state = 1321}, - [3764] = {.lex_state = 131}, - [3765] = {.lex_state = 131}, - [3766] = {.lex_state = 1321}, - [3767] = {.lex_state = 1321}, - [3768] = {.lex_state = 131}, - [3769] = {.lex_state = 1321}, - [3770] = {.lex_state = 1321}, - [3771] = {.lex_state = 1321}, - [3772] = {.lex_state = 1321}, - [3773] = {.lex_state = 38}, - [3774] = {.lex_state = 131}, - [3775] = {.lex_state = 1321}, - [3776] = {.lex_state = 1321}, - [3777] = {.lex_state = 131}, - [3778] = {.lex_state = 131}, - [3779] = {.lex_state = 1321}, - [3780] = {.lex_state = 1321}, - [3781] = {.lex_state = 131}, - [3782] = {.lex_state = 1321}, - [3783] = {.lex_state = 1321}, - [3784] = {.lex_state = 37}, - [3785] = {.lex_state = 1321}, - [3786] = {.lex_state = 131}, - [3787] = {.lex_state = 131}, - [3788] = {.lex_state = 1321}, - [3789] = {.lex_state = 1321}, - [3790] = {.lex_state = 1321}, - [3791] = {.lex_state = 131}, - [3792] = {.lex_state = 1321}, - [3793] = {.lex_state = 1321}, - [3794] = {.lex_state = 30}, - [3795] = {.lex_state = 1321}, - [3796] = {.lex_state = 1321}, - [3797] = {.lex_state = 1321}, - [3798] = {.lex_state = 30}, - [3799] = {.lex_state = 1321}, - [3800] = {.lex_state = 1321}, - [3801] = {.lex_state = 1321}, - [3802] = {.lex_state = 1321}, - [3803] = {.lex_state = 1321}, - [3804] = {.lex_state = 1321}, - [3805] = {.lex_state = 30}, - [3806] = {.lex_state = 1321}, - [3807] = {.lex_state = 1321}, - [3808] = {.lex_state = 30}, - [3809] = {.lex_state = 1321}, - [3810] = {.lex_state = 1321}, - [3811] = {.lex_state = 1321}, - [3812] = {.lex_state = 1321}, - [3813] = {.lex_state = 1321}, - [3814] = {.lex_state = 1321}, - [3815] = {.lex_state = 1321}, - [3816] = {.lex_state = 1321}, - [3817] = {.lex_state = 1321}, - [3818] = {.lex_state = 1321}, - [3819] = {.lex_state = 1321}, - [3820] = {.lex_state = 1321}, - [3821] = {.lex_state = 1321}, - [3822] = {.lex_state = 1321}, - [3823] = {.lex_state = 1321}, - [3824] = {.lex_state = 1321}, - [3825] = {.lex_state = 38, .external_lex_state = 11}, - [3826] = {.lex_state = 1321}, - [3827] = {.lex_state = 1321}, - [3828] = {.lex_state = 1321}, - [3829] = {.lex_state = 30}, - [3830] = {.lex_state = 1321}, - [3831] = {.lex_state = 1321}, - [3832] = {.lex_state = 38, .external_lex_state = 11}, - [3833] = {.lex_state = 1321}, - [3834] = {.lex_state = 38}, - [3835] = {.lex_state = 1321}, - [3836] = {.lex_state = 1321}, - [3837] = {.lex_state = 1321}, - [3838] = {.lex_state = 30}, - [3839] = {.lex_state = 1321}, - [3840] = {.lex_state = 1321}, - [3841] = {.lex_state = 1321}, - [3842] = {.lex_state = 1321}, - [3843] = {.lex_state = 30}, - [3844] = {.lex_state = 1321}, - [3845] = {.lex_state = 1321}, - [3846] = {.lex_state = 38, .external_lex_state = 11}, - [3847] = {.lex_state = 1321}, - [3848] = {.lex_state = 1321}, - [3849] = {.lex_state = 1321}, - [3850] = {.lex_state = 1321}, - [3851] = {.lex_state = 1321}, - [3852] = {.lex_state = 1321}, - [3853] = {.lex_state = 1321}, - [3854] = {.lex_state = 1321}, - [3855] = {.lex_state = 1321}, - [3856] = {.lex_state = 1321}, - [3857] = {.lex_state = 1321}, - [3858] = {.lex_state = 1321}, - [3859] = {.lex_state = 30}, - [3860] = {.lex_state = 30}, - [3861] = {.lex_state = 74}, - [3862] = {.lex_state = 1321}, - [3863] = {.lex_state = 1321}, - [3864] = {.lex_state = 1321}, - [3865] = {.lex_state = 1321}, - [3866] = {.lex_state = 1321}, - [3867] = {.lex_state = 1321}, - [3868] = {.lex_state = 1321}, - [3869] = {.lex_state = 1321}, - [3870] = {.lex_state = 30}, - [3871] = {.lex_state = 1321}, - [3872] = {.lex_state = 1321}, - [3873] = {.lex_state = 1321, .external_lex_state = 11}, - [3874] = {.lex_state = 30}, - [3875] = {.lex_state = 30}, - [3876] = {.lex_state = 74}, - [3877] = {.lex_state = 184}, - [3878] = {.lex_state = 30}, - [3879] = {.lex_state = 30}, - [3880] = {.lex_state = 30}, - [3881] = {.lex_state = 39}, - [3882] = {.lex_state = 30}, - [3883] = {.lex_state = 30}, - [3884] = {.lex_state = 30}, - [3885] = {.lex_state = 1321}, - [3886] = {.lex_state = 184}, - [3887] = {.lex_state = 38}, - [3888] = {.lex_state = 38}, - [3889] = {.lex_state = 206}, - [3890] = {.lex_state = 184}, - [3891] = {.lex_state = 38}, - [3892] = {.lex_state = 38}, - [3893] = {.lex_state = 38}, - [3894] = {.lex_state = 1321, .external_lex_state = 11}, - [3895] = {.lex_state = 202}, - [3896] = {.lex_state = 38}, - [3897] = {.lex_state = 38}, - [3898] = {.lex_state = 184}, - [3899] = {.lex_state = 184}, - [3900] = {.lex_state = 30}, - [3901] = {.lex_state = 184}, - [3902] = {.lex_state = 38}, - [3903] = {.lex_state = 38}, - [3904] = {.lex_state = 30}, - [3905] = {.lex_state = 30}, - [3906] = {.lex_state = 30}, - [3907] = {.lex_state = 39}, - [3908] = {.lex_state = 30}, - [3909] = {.lex_state = 184}, - [3910] = {.lex_state = 206}, - [3911] = {.lex_state = 30}, - [3912] = {.lex_state = 38}, - [3913] = {.lex_state = 30}, - [3914] = {.lex_state = 39}, - [3915] = {.lex_state = 30}, - [3916] = {.lex_state = 202}, - [3917] = {.lex_state = 30}, - [3918] = {.lex_state = 30}, - [3919] = {.lex_state = 30}, - [3920] = {.lex_state = 30}, - [3921] = {.lex_state = 30}, - [3922] = {.lex_state = 39}, - [3923] = {.lex_state = 30}, - [3924] = {.lex_state = 184}, - [3925] = {.lex_state = 30}, - [3926] = {.lex_state = 30}, - [3927] = {.lex_state = 184}, - [3928] = {.lex_state = 38}, - [3929] = {.lex_state = 30}, - [3930] = {.lex_state = 30}, - [3931] = {.lex_state = 30}, - [3932] = {.lex_state = 30}, - [3933] = {.lex_state = 30}, - [3934] = {.lex_state = 30}, - [3935] = {.lex_state = 30}, - [3936] = {.lex_state = 1321, .external_lex_state = 11}, - [3937] = {.lex_state = 30}, - [3938] = {.lex_state = 202}, - [3939] = {.lex_state = 30}, - [3940] = {.lex_state = 30}, - [3941] = {.lex_state = 30}, - [3942] = {.lex_state = 1321, .external_lex_state = 11}, - [3943] = {.lex_state = 38}, - [3944] = {.lex_state = 38}, - [3945] = {.lex_state = 38}, - [3946] = {.lex_state = 30}, - [3947] = {.lex_state = 38}, - [3948] = {.lex_state = 184}, - [3949] = {.lex_state = 30}, - [3950] = {.lex_state = 30}, - [3951] = {.lex_state = 38}, - [3952] = {.lex_state = 38}, - [3953] = {.lex_state = 30}, - [3954] = {.lex_state = 184}, - [3955] = {.lex_state = 202}, - [3956] = {.lex_state = 38}, - [3957] = {.lex_state = 30}, - [3958] = {.lex_state = 30}, - [3959] = {.lex_state = 1321, .external_lex_state = 11}, - [3960] = {.lex_state = 30}, - [3961] = {.lex_state = 38}, - [3962] = {.lex_state = 206}, - [3963] = {.lex_state = 30}, - [3964] = {.lex_state = 30}, - [3965] = {.lex_state = 30}, - [3966] = {.lex_state = 30}, - [3967] = {.lex_state = 30}, - [3968] = {.lex_state = 30}, - [3969] = {.lex_state = 38}, - [3970] = {.lex_state = 38}, - [3971] = {.lex_state = 30}, - [3972] = {.lex_state = 38}, - [3973] = {.lex_state = 39}, - [3974] = {.lex_state = 30}, - [3975] = {.lex_state = 30}, - [3976] = {.lex_state = 38}, - [3977] = {.lex_state = 30}, - [3978] = {.lex_state = 202}, - [3979] = {.lex_state = 30}, - [3980] = {.lex_state = 30}, - [3981] = {.lex_state = 30}, - [3982] = {.lex_state = 30}, - [3983] = {.lex_state = 199}, - [3984] = {.lex_state = 1321, .external_lex_state = 11}, - [3985] = {.lex_state = 1321}, - [3986] = {.lex_state = 1321}, - [3987] = {.lex_state = 1321}, - [3988] = {.lex_state = 199}, - [3989] = {.lex_state = 1321}, - [3990] = {.lex_state = 1321}, - [3991] = {.lex_state = 1321}, - [3992] = {.lex_state = 1321}, - [3993] = {.lex_state = 1321}, - [3994] = {.lex_state = 199}, - [3995] = {.lex_state = 1321}, - [3996] = {.lex_state = 1321}, - [3997] = {.lex_state = 1321}, - [3998] = {.lex_state = 1321}, - [3999] = {.lex_state = 1321}, - [4000] = {.lex_state = 1321}, - [4001] = {.lex_state = 199}, - [4002] = {.lex_state = 199}, - [4003] = {.lex_state = 1321}, - [4004] = {.lex_state = 1321}, - [4005] = {.lex_state = 1321}, - [4006] = {.lex_state = 1321, .external_lex_state = 11}, - [4007] = {.lex_state = 199}, - [4008] = {.lex_state = 1321}, - [4009] = {.lex_state = 1321}, - [4010] = {.lex_state = 1321}, - [4011] = {.lex_state = 199}, - [4012] = {.lex_state = 199}, - [4013] = {.lex_state = 199}, - [4014] = {.lex_state = 1321}, - [4015] = {.lex_state = 1321}, - [4016] = {.lex_state = 1321}, - [4017] = {.lex_state = 199}, - [4018] = {.lex_state = 1321}, + [3746] = {.lex_state = 41}, + [3747] = {.lex_state = 1329}, + [3748] = {.lex_state = 37}, + [3749] = {.lex_state = 1329}, + [3750] = {.lex_state = 1329}, + [3751] = {.lex_state = 1329}, + [3752] = {.lex_state = 1329}, + [3753] = {.lex_state = 37}, + [3754] = {.lex_state = 1329}, + [3755] = {.lex_state = 1329}, + [3756] = {.lex_state = 1329}, + [3757] = {.lex_state = 68}, + [3758] = {.lex_state = 1329}, + [3759] = {.lex_state = 1329}, + [3760] = {.lex_state = 68}, + [3761] = {.lex_state = 68}, + [3762] = {.lex_state = 37}, + [3763] = {.lex_state = 1329}, + [3764] = {.lex_state = 1329}, + [3765] = {.lex_state = 1329}, + [3766] = {.lex_state = 1329}, + [3767] = {.lex_state = 1329}, + [3768] = {.lex_state = 37}, + [3769] = {.lex_state = 68}, + [3770] = {.lex_state = 68}, + [3771] = {.lex_state = 1329}, + [3772] = {.lex_state = 68}, + [3773] = {.lex_state = 1329}, + [3774] = {.lex_state = 68}, + [3775] = {.lex_state = 1329}, + [3776] = {.lex_state = 1329}, + [3777] = {.lex_state = 1329}, + [3778] = {.lex_state = 1329}, + [3779] = {.lex_state = 1329}, + [3780] = {.lex_state = 68}, + [3781] = {.lex_state = 68}, + [3782] = {.lex_state = 68}, + [3783] = {.lex_state = 68}, + [3784] = {.lex_state = 68}, + [3785] = {.lex_state = 1329}, + [3786] = {.lex_state = 37}, + [3787] = {.lex_state = 37}, + [3788] = {.lex_state = 1329}, + [3789] = {.lex_state = 1329}, + [3790] = {.lex_state = 1329}, + [3791] = {.lex_state = 37}, + [3792] = {.lex_state = 1329}, + [3793] = {.lex_state = 68}, + [3794] = {.lex_state = 1329}, + [3795] = {.lex_state = 1329}, + [3796] = {.lex_state = 68}, + [3797] = {.lex_state = 37}, + [3798] = {.lex_state = 68}, + [3799] = {.lex_state = 1329}, + [3800] = {.lex_state = 68}, + [3801] = {.lex_state = 1329}, + [3802] = {.lex_state = 68}, + [3803] = {.lex_state = 1329}, + [3804] = {.lex_state = 1329}, + [3805] = {.lex_state = 1329}, + [3806] = {.lex_state = 1329}, + [3807] = {.lex_state = 37}, + [3808] = {.lex_state = 1329}, + [3809] = {.lex_state = 37}, + [3810] = {.lex_state = 1329}, + [3811] = {.lex_state = 37}, + [3812] = {.lex_state = 68}, + [3813] = {.lex_state = 1329}, + [3814] = {.lex_state = 37}, + [3815] = {.lex_state = 1329}, + [3816] = {.lex_state = 37}, + [3817] = {.lex_state = 68}, + [3818] = {.lex_state = 1329}, + [3819] = {.lex_state = 1329}, + [3820] = {.lex_state = 1329}, + [3821] = {.lex_state = 68}, + [3822] = {.lex_state = 1329}, + [3823] = {.lex_state = 1329}, + [3824] = {.lex_state = 1329}, + [3825] = {.lex_state = 1329}, + [3826] = {.lex_state = 1329}, + [3827] = {.lex_state = 1329}, + [3828] = {.lex_state = 1329}, + [3829] = {.lex_state = 37}, + [3830] = {.lex_state = 68}, + [3831] = {.lex_state = 68}, + [3832] = {.lex_state = 68}, + [3833] = {.lex_state = 37}, + [3834] = {.lex_state = 68}, + [3835] = {.lex_state = 1329}, + [3836] = {.lex_state = 1329}, + [3837] = {.lex_state = 1329}, + [3838] = {.lex_state = 1329}, + [3839] = {.lex_state = 37}, + [3840] = {.lex_state = 1329}, + [3841] = {.lex_state = 37}, + [3842] = {.lex_state = 37}, + [3843] = {.lex_state = 1329}, + [3844] = {.lex_state = 213}, + [3845] = {.lex_state = 138}, + [3846] = {.lex_state = 1329}, + [3847] = {.lex_state = 1329}, + [3848] = {.lex_state = 1329}, + [3849] = {.lex_state = 1329}, + [3850] = {.lex_state = 207}, + [3851] = {.lex_state = 1329}, + [3852] = {.lex_state = 1329}, + [3853] = {.lex_state = 138}, + [3854] = {.lex_state = 1329}, + [3855] = {.lex_state = 77}, + [3856] = {.lex_state = 1329}, + [3857] = {.lex_state = 138}, + [3858] = {.lex_state = 1329}, + [3859] = {.lex_state = 37}, + [3860] = {.lex_state = 1329}, + [3861] = {.lex_state = 1329}, + [3862] = {.lex_state = 1329}, + [3863] = {.lex_state = 37}, + [3864] = {.lex_state = 1329}, + [3865] = {.lex_state = 1329}, + [3866] = {.lex_state = 1329}, + [3867] = {.lex_state = 138}, + [3868] = {.lex_state = 1329}, + [3869] = {.lex_state = 1329}, + [3870] = {.lex_state = 1329, .external_lex_state = 18}, + [3871] = {.lex_state = 1329}, + [3872] = {.lex_state = 138}, + [3873] = {.lex_state = 138}, + [3874] = {.lex_state = 1329}, + [3875] = {.lex_state = 1329, .external_lex_state = 18}, + [3876] = {.lex_state = 1329}, + [3877] = {.lex_state = 138}, + [3878] = {.lex_state = 77}, + [3879] = {.lex_state = 1329}, + [3880] = {.lex_state = 138}, + [3881] = {.lex_state = 138}, + [3882] = {.lex_state = 1329}, + [3883] = {.lex_state = 1329}, + [3884] = {.lex_state = 138}, + [3885] = {.lex_state = 1329}, + [3886] = {.lex_state = 138}, + [3887] = {.lex_state = 37}, + [3888] = {.lex_state = 138}, + [3889] = {.lex_state = 1329}, + [3890] = {.lex_state = 1329}, + [3891] = {.lex_state = 1329}, + [3892] = {.lex_state = 1329}, + [3893] = {.lex_state = 1329}, + [3894] = {.lex_state = 1329}, + [3895] = {.lex_state = 1329}, + [3896] = {.lex_state = 138}, + [3897] = {.lex_state = 1329}, + [3898] = {.lex_state = 213}, + [3899] = {.lex_state = 1329}, + [3900] = {.lex_state = 213}, + [3901] = {.lex_state = 138}, + [3902] = {.lex_state = 1329}, + [3903] = {.lex_state = 1329}, + [3904] = {.lex_state = 38}, + [3905] = {.lex_state = 1329}, + [3906] = {.lex_state = 1329}, + [3907] = {.lex_state = 1329}, + [3908] = {.lex_state = 1329}, + [3909] = {.lex_state = 1329}, + [3910] = {.lex_state = 1329, .external_lex_state = 11}, + [3911] = {.lex_state = 37}, + [3912] = {.lex_state = 1329}, + [3913] = {.lex_state = 1329}, + [3914] = {.lex_state = 1329}, + [3915] = {.lex_state = 138}, + [3916] = {.lex_state = 37}, + [3917] = {.lex_state = 37}, + [3918] = {.lex_state = 37}, + [3919] = {.lex_state = 1329}, + [3920] = {.lex_state = 37}, + [3921] = {.lex_state = 1329}, + [3922] = {.lex_state = 1329}, + [3923] = {.lex_state = 1329}, + [3924] = {.lex_state = 1329}, + [3925] = {.lex_state = 1329}, + [3926] = {.lex_state = 1329}, + [3927] = {.lex_state = 1329}, + [3928] = {.lex_state = 1329}, + [3929] = {.lex_state = 38, .external_lex_state = 11}, + [3930] = {.lex_state = 1329}, + [3931] = {.lex_state = 1329}, + [3932] = {.lex_state = 1329}, + [3933] = {.lex_state = 38, .external_lex_state = 11}, + [3934] = {.lex_state = 1329}, + [3935] = {.lex_state = 1329}, + [3936] = {.lex_state = 1329}, + [3937] = {.lex_state = 1329}, + [3938] = {.lex_state = 1329}, + [3939] = {.lex_state = 1329}, + [3940] = {.lex_state = 1329}, + [3941] = {.lex_state = 1329}, + [3942] = {.lex_state = 1329}, + [3943] = {.lex_state = 1329}, + [3944] = {.lex_state = 1329}, + [3945] = {.lex_state = 1329}, + [3946] = {.lex_state = 1329}, + [3947] = {.lex_state = 1329}, + [3948] = {.lex_state = 1329}, + [3949] = {.lex_state = 1329}, + [3950] = {.lex_state = 1329}, + [3951] = {.lex_state = 1329}, + [3952] = {.lex_state = 1329}, + [3953] = {.lex_state = 1329}, + [3954] = {.lex_state = 1329}, + [3955] = {.lex_state = 1329}, + [3956] = {.lex_state = 1329}, + [3957] = {.lex_state = 38, .external_lex_state = 11}, + [3958] = {.lex_state = 1329}, + [3959] = {.lex_state = 1329}, + [3960] = {.lex_state = 38}, + [3961] = {.lex_state = 1329}, + [3962] = {.lex_state = 1329}, + [3963] = {.lex_state = 1329}, + [3964] = {.lex_state = 1329}, + [3965] = {.lex_state = 1329}, + [3966] = {.lex_state = 1329}, + [3967] = {.lex_state = 1329}, + [3968] = {.lex_state = 1329}, + [3969] = {.lex_state = 1329}, + [3970] = {.lex_state = 1329}, + [3971] = {.lex_state = 1329}, + [3972] = {.lex_state = 1329}, + [3973] = {.lex_state = 1329}, + [3974] = {.lex_state = 1329}, + [3975] = {.lex_state = 1329}, + [3976] = {.lex_state = 1329}, + [3977] = {.lex_state = 1329}, + [3978] = {.lex_state = 1329}, + [3979] = {.lex_state = 1329}, + [3980] = {.lex_state = 1329}, + [3981] = {.lex_state = 1329}, + [3982] = {.lex_state = 1329}, + [3983] = {.lex_state = 1329}, + [3984] = {.lex_state = 1329}, + [3985] = {.lex_state = 1329}, + [3986] = {.lex_state = 77}, + [3987] = {.lex_state = 1329}, + [3988] = {.lex_state = 1329}, + [3989] = {.lex_state = 1329}, + [3990] = {.lex_state = 1329}, + [3991] = {.lex_state = 38}, + [3992] = {.lex_state = 38}, + [3993] = {.lex_state = 39}, + [3994] = {.lex_state = 38}, + [3995] = {.lex_state = 39}, + [3996] = {.lex_state = 210}, + [3997] = {.lex_state = 77}, + [3998] = {.lex_state = 39}, + [3999] = {.lex_state = 38}, + [4000] = {.lex_state = 38}, + [4001] = {.lex_state = 1329, .external_lex_state = 16}, + [4002] = {.lex_state = 38}, + [4003] = {.lex_state = 38}, + [4004] = {.lex_state = 214}, + [4005] = {.lex_state = 1329, .external_lex_state = 16}, + [4006] = {.lex_state = 210}, + [4007] = {.lex_state = 1329, .external_lex_state = 11}, + [4008] = {.lex_state = 1329, .external_lex_state = 11}, + [4009] = {.lex_state = 38}, + [4010] = {.lex_state = 38}, + [4011] = {.lex_state = 38}, + [4012] = {.lex_state = 210}, + [4013] = {.lex_state = 38}, + [4014] = {.lex_state = 39}, + [4015] = {.lex_state = 1329, .external_lex_state = 16}, + [4016] = {.lex_state = 1329, .external_lex_state = 11}, + [4017] = {.lex_state = 38}, + [4018] = {.lex_state = 30}, [4019] = {.lex_state = 38}, - [4020] = {.lex_state = 1321}, - [4021] = {.lex_state = 199}, - [4022] = {.lex_state = 200}, - [4023] = {.lex_state = 1321, .external_lex_state = 11}, - [4024] = {.lex_state = 1321}, - [4025] = {.lex_state = 1321}, - [4026] = {.lex_state = 199}, - [4027] = {.lex_state = 1321}, - [4028] = {.lex_state = 1321}, - [4029] = {.lex_state = 199}, - [4030] = {.lex_state = 1321}, - [4031] = {.lex_state = 1321}, - [4032] = {.lex_state = 1321}, - [4033] = {.lex_state = 1321}, - [4034] = {.lex_state = 199}, - [4035] = {.lex_state = 199}, - [4036] = {.lex_state = 37}, - [4037] = {.lex_state = 1321}, - [4038] = {.lex_state = 39}, - [4039] = {.lex_state = 1321}, - [4040] = {.lex_state = 199}, - [4041] = {.lex_state = 1321}, - [4042] = {.lex_state = 1321, .external_lex_state = 11}, - [4043] = {.lex_state = 1321}, - [4044] = {.lex_state = 1321}, - [4045] = {.lex_state = 1321}, - [4046] = {.lex_state = 1321}, - [4047] = {.lex_state = 199}, - [4048] = {.lex_state = 1321}, - [4049] = {.lex_state = 1321}, - [4050] = {.lex_state = 1321}, - [4051] = {.lex_state = 1321}, - [4052] = {.lex_state = 1321}, - [4053] = {.lex_state = 1321}, - [4054] = {.lex_state = 1321}, - [4055] = {.lex_state = 199}, - [4056] = {.lex_state = 1321}, - [4057] = {.lex_state = 1321}, - [4058] = {.lex_state = 199}, - [4059] = {.lex_state = 199}, - [4060] = {.lex_state = 1321, .external_lex_state = 11}, - [4061] = {.lex_state = 1321}, - [4062] = {.lex_state = 199}, - [4063] = {.lex_state = 1321}, - [4064] = {.lex_state = 1321}, - [4065] = {.lex_state = 1321}, - [4066] = {.lex_state = 1321}, - [4067] = {.lex_state = 1321}, - [4068] = {.lex_state = 1321, .external_lex_state = 11}, - [4069] = {.lex_state = 1321}, - [4070] = {.lex_state = 1321}, - [4071] = {.lex_state = 1321}, - [4072] = {.lex_state = 1321}, - [4073] = {.lex_state = 1321, .external_lex_state = 11}, - [4074] = {.lex_state = 1321}, - [4075] = {.lex_state = 38}, - [4076] = {.lex_state = 1321}, - [4077] = {.lex_state = 1321}, - [4078] = {.lex_state = 1321, .external_lex_state = 11}, - [4079] = {.lex_state = 1321}, - [4080] = {.lex_state = 1321}, - [4081] = {.lex_state = 1321}, - [4082] = {.lex_state = 1321}, - [4083] = {.lex_state = 199}, - [4084] = {.lex_state = 199}, - [4085] = {.lex_state = 1321}, - [4086] = {.lex_state = 1321}, - [4087] = {.lex_state = 1321}, - [4088] = {.lex_state = 39}, - [4089] = {.lex_state = 1321}, - [4090] = {.lex_state = 1321}, - [4091] = {.lex_state = 1321}, - [4092] = {.lex_state = 1321}, - [4093] = {.lex_state = 1321}, - [4094] = {.lex_state = 1321, .external_lex_state = 11}, - [4095] = {.lex_state = 1321}, - [4096] = {.lex_state = 199}, - [4097] = {.lex_state = 199}, - [4098] = {.lex_state = 199}, - [4099] = {.lex_state = 1321, .external_lex_state = 18}, - [4100] = {.lex_state = 1321}, - [4101] = {.lex_state = 1321}, - [4102] = {.lex_state = 1321}, - [4103] = {.lex_state = 1321}, - [4104] = {.lex_state = 1321}, - [4105] = {.lex_state = 1321}, - [4106] = {.lex_state = 1321}, - [4107] = {.lex_state = 199}, - [4108] = {.lex_state = 1321}, - [4109] = {.lex_state = 199}, - [4110] = {.lex_state = 1321}, - [4111] = {.lex_state = 1321}, - [4112] = {.lex_state = 1321}, - [4113] = {.lex_state = 199}, - [4114] = {.lex_state = 199}, - [4115] = {.lex_state = 1321}, - [4116] = {.lex_state = 1321}, - [4117] = {.lex_state = 1321}, - [4118] = {.lex_state = 1321}, - [4119] = {.lex_state = 1321}, - [4120] = {.lex_state = 1321}, - [4121] = {.lex_state = 199}, - [4122] = {.lex_state = 1321}, - [4123] = {.lex_state = 1321}, - [4124] = {.lex_state = 199}, - [4125] = {.lex_state = 1321}, - [4126] = {.lex_state = 1321}, - [4127] = {.lex_state = 1321}, - [4128] = {.lex_state = 1321}, - [4129] = {.lex_state = 199}, - [4130] = {.lex_state = 199}, - [4131] = {.lex_state = 199}, - [4132] = {.lex_state = 1321}, - [4133] = {.lex_state = 1321}, - [4134] = {.lex_state = 1321}, - [4135] = {.lex_state = 1321}, - [4136] = {.lex_state = 1321}, - [4137] = {.lex_state = 199}, - [4138] = {.lex_state = 199}, - [4139] = {.lex_state = 199}, - [4140] = {.lex_state = 1321}, - [4141] = {.lex_state = 1321}, - [4142] = {.lex_state = 1321}, - [4143] = {.lex_state = 1321}, - [4144] = {.lex_state = 1321}, - [4145] = {.lex_state = 1321}, - [4146] = {.lex_state = 1321}, - [4147] = {.lex_state = 1321}, - [4148] = {.lex_state = 1321}, - [4149] = {.lex_state = 1321}, - [4150] = {.lex_state = 199}, - [4151] = {.lex_state = 199}, - [4152] = {.lex_state = 1321}, - [4153] = {.lex_state = 199}, - [4154] = {.lex_state = 1321}, - [4155] = {.lex_state = 1321}, - [4156] = {.lex_state = 1321}, - [4157] = {.lex_state = 1321}, - [4158] = {.lex_state = 1321}, - [4159] = {.lex_state = 1321}, - [4160] = {.lex_state = 39}, - [4161] = {.lex_state = 1321, .external_lex_state = 11}, - [4162] = {.lex_state = 1321, .external_lex_state = 18}, - [4163] = {.lex_state = 1321, .external_lex_state = 11}, - [4164] = {.lex_state = 1321}, - [4165] = {.lex_state = 1321}, - [4166] = {.lex_state = 1321}, - [4167] = {.lex_state = 1321}, - [4168] = {.lex_state = 1321}, - [4169] = {.lex_state = 1321}, - [4170] = {.lex_state = 1321}, - [4171] = {.lex_state = 1321}, - [4172] = {.lex_state = 1321}, - [4173] = {.lex_state = 199}, - [4174] = {.lex_state = 1321}, - [4175] = {.lex_state = 1321}, - [4176] = {.lex_state = 38}, - [4177] = {.lex_state = 199}, - [4178] = {.lex_state = 199}, - [4179] = {.lex_state = 1321}, - [4180] = {.lex_state = 1321}, - [4181] = {.lex_state = 1321}, - [4182] = {.lex_state = 1321}, - [4183] = {.lex_state = 199}, - [4184] = {.lex_state = 1321}, - [4185] = {.lex_state = 1321}, - [4186] = {.lex_state = 38, .external_lex_state = 11}, - [4187] = {.lex_state = 1321}, - [4188] = {.lex_state = 39}, - [4189] = {.lex_state = 1321}, - [4190] = {.lex_state = 1321}, - [4191] = {.lex_state = 39}, - [4192] = {.lex_state = 1321}, - [4193] = {.lex_state = 1321}, - [4194] = {.lex_state = 1321}, - [4195] = {.lex_state = 1321}, - [4196] = {.lex_state = 1321}, - [4197] = {.lex_state = 1321}, - [4198] = {.lex_state = 1321}, - [4199] = {.lex_state = 198}, - [4200] = {.lex_state = 1321}, - [4201] = {.lex_state = 1321}, - [4202] = {.lex_state = 1321}, - [4203] = {.lex_state = 1321}, - [4204] = {.lex_state = 1321}, - [4205] = {.lex_state = 1321}, - [4206] = {.lex_state = 1321}, - [4207] = {.lex_state = 1321}, - [4208] = {.lex_state = 1321}, - [4209] = {.lex_state = 1321}, - [4210] = {.lex_state = 1321}, - [4211] = {.lex_state = 1321}, - [4212] = {.lex_state = 1321}, - [4213] = {.lex_state = 1321}, - [4214] = {.lex_state = 1321}, - [4215] = {.lex_state = 1321}, - [4216] = {.lex_state = 1321}, - [4217] = {.lex_state = 1321}, - [4218] = {.lex_state = 206}, - [4219] = {.lex_state = 1321}, - [4220] = {.lex_state = 39}, - [4221] = {.lex_state = 1321}, - [4222] = {.lex_state = 1321}, - [4223] = {.lex_state = 1321, .external_lex_state = 16}, - [4224] = {.lex_state = 1321}, - [4225] = {.lex_state = 1321}, - [4226] = {.lex_state = 1321}, - [4227] = {.lex_state = 1321}, - [4228] = {.lex_state = 39}, - [4229] = {.lex_state = 1321}, - [4230] = {.lex_state = 1321}, - [4231] = {.lex_state = 1321}, - [4232] = {.lex_state = 1321}, - [4233] = {.lex_state = 1321}, - [4234] = {.lex_state = 1321}, - [4235] = {.lex_state = 1321}, - [4236] = {.lex_state = 1321}, - [4237] = {.lex_state = 1321}, - [4238] = {.lex_state = 1321}, - [4239] = {.lex_state = 1321}, - [4240] = {.lex_state = 1321}, - [4241] = {.lex_state = 1321}, - [4242] = {.lex_state = 1321}, - [4243] = {.lex_state = 1321}, - [4244] = {.lex_state = 1321}, - [4245] = {.lex_state = 1321}, - [4246] = {.lex_state = 1321}, - [4247] = {.lex_state = 1321}, - [4248] = {.lex_state = 1321}, - [4249] = {.lex_state = 1321}, - [4250] = {.lex_state = 1321}, - [4251] = {.lex_state = 1321}, - [4252] = {.lex_state = 1321}, - [4253] = {.lex_state = 1321, .external_lex_state = 16}, - [4254] = {.lex_state = 1321}, - [4255] = {.lex_state = 1321}, - [4256] = {.lex_state = 1321}, - [4257] = {.lex_state = 198}, - [4258] = {.lex_state = 1321}, - [4259] = {.lex_state = 1321, .external_lex_state = 16}, - [4260] = {.lex_state = 1321}, - [4261] = {.lex_state = 39}, - [4262] = {.lex_state = 1321}, - [4263] = {.lex_state = 38}, - [4264] = {.lex_state = 1321}, - [4265] = {.lex_state = 1321}, - [4266] = {.lex_state = 1321}, - [4267] = {.lex_state = 1321}, - [4268] = {.lex_state = 1321}, - [4269] = {.lex_state = 1321}, - [4270] = {.lex_state = 1321}, - [4271] = {.lex_state = 1321}, - [4272] = {.lex_state = 1321}, - [4273] = {.lex_state = 1321}, - [4274] = {.lex_state = 1321}, - [4275] = {.lex_state = 1321}, - [4276] = {.lex_state = 1321}, - [4277] = {.lex_state = 1321}, - [4278] = {.lex_state = 1321}, - [4279] = {.lex_state = 1321}, - [4280] = {.lex_state = 1321}, - [4281] = {.lex_state = 39}, - [4282] = {.lex_state = 1321}, - [4283] = {.lex_state = 1321}, - [4284] = {.lex_state = 1321}, - [4285] = {.lex_state = 1321}, - [4286] = {.lex_state = 1321}, - [4287] = {.lex_state = 1321}, - [4288] = {.lex_state = 39}, - [4289] = {.lex_state = 1321}, - [4290] = {.lex_state = 1321}, - [4291] = {.lex_state = 1321}, - [4292] = {.lex_state = 1321}, - [4293] = {.lex_state = 1321}, - [4294] = {.lex_state = 1321}, - [4295] = {.lex_state = 1321}, - [4296] = {.lex_state = 131}, - [4297] = {.lex_state = 1321}, - [4298] = {.lex_state = 1321}, - [4299] = {.lex_state = 39}, - [4300] = {.lex_state = 1321}, - [4301] = {.lex_state = 1321}, - [4302] = {.lex_state = 1321}, - [4303] = {.lex_state = 1321}, - [4304] = {.lex_state = 1321}, - [4305] = {.lex_state = 1321}, - [4306] = {.lex_state = 1321}, - [4307] = {.lex_state = 1321}, - [4308] = {.lex_state = 39, .external_lex_state = 11}, - [4309] = {.lex_state = 1321}, - [4310] = {.lex_state = 39, .external_lex_state = 11}, - [4311] = {.lex_state = 1321}, - [4312] = {.lex_state = 1321}, - [4313] = {.lex_state = 1321}, - [4314] = {.lex_state = 1321}, - [4315] = {.lex_state = 1321}, - [4316] = {.lex_state = 1321}, - [4317] = {.lex_state = 39}, - [4318] = {.lex_state = 1321}, - [4319] = {.lex_state = 1321}, - [4320] = {.lex_state = 1321}, - [4321] = {.lex_state = 1321}, - [4322] = {.lex_state = 1321}, - [4323] = {.lex_state = 1321}, - [4324] = {.lex_state = 1321}, - [4325] = {.lex_state = 1321}, - [4326] = {.lex_state = 1321}, - [4327] = {.lex_state = 1321}, - [4328] = {.lex_state = 1321}, - [4329] = {.lex_state = 1321}, - [4330] = {.lex_state = 38}, - [4331] = {.lex_state = 1321}, - [4332] = {.lex_state = 1321}, - [4333] = {.lex_state = 1321}, - [4334] = {.lex_state = 1321}, - [4335] = {.lex_state = 1321}, - [4336] = {.lex_state = 198}, - [4337] = {.lex_state = 1321}, - [4338] = {.lex_state = 1321}, - [4339] = {.lex_state = 1321}, - [4340] = {.lex_state = 1321}, - [4341] = {.lex_state = 1321}, - [4342] = {.lex_state = 1321}, - [4343] = {.lex_state = 1321}, - [4344] = {.lex_state = 1321}, - [4345] = {.lex_state = 1321}, - [4346] = {.lex_state = 38}, - [4347] = {.lex_state = 1321}, - [4348] = {.lex_state = 1321}, - [4349] = {.lex_state = 38}, - [4350] = {.lex_state = 1321}, - [4351] = {.lex_state = 206}, - [4352] = {.lex_state = 1321}, - [4353] = {.lex_state = 1321}, - [4354] = {.lex_state = 1321}, - [4355] = {.lex_state = 1321}, - [4356] = {.lex_state = 1321}, - [4357] = {.lex_state = 1321}, - [4358] = {.lex_state = 1321}, - [4359] = {.lex_state = 38}, - [4360] = {.lex_state = 1321}, - [4361] = {.lex_state = 1321}, - [4362] = {.lex_state = 1321}, - [4363] = {.lex_state = 39}, - [4364] = {.lex_state = 1321}, - [4365] = {.lex_state = 1321}, - [4366] = {.lex_state = 1321}, - [4367] = {.lex_state = 1321, .external_lex_state = 16}, - [4368] = {.lex_state = 1321}, - [4369] = {.lex_state = 1321}, - [4370] = {.lex_state = 1321}, - [4371] = {.lex_state = 1321}, - [4372] = {.lex_state = 1321}, - [4373] = {.lex_state = 1321}, - [4374] = {.lex_state = 1321}, - [4375] = {.lex_state = 1321}, - [4376] = {.lex_state = 201}, - [4377] = {.lex_state = 1321}, - [4378] = {.lex_state = 1321}, - [4379] = {.lex_state = 1321}, - [4380] = {.lex_state = 39}, - [4381] = {.lex_state = 1321}, - [4382] = {.lex_state = 1321}, - [4383] = {.lex_state = 1321}, - [4384] = {.lex_state = 1321}, - [4385] = {.lex_state = 1321}, - [4386] = {.lex_state = 1321}, - [4387] = {.lex_state = 1321}, - [4388] = {.lex_state = 1321}, - [4389] = {.lex_state = 1321}, - [4390] = {.lex_state = 1321}, - [4391] = {.lex_state = 38}, - [4392] = {.lex_state = 1321}, - [4393] = {.lex_state = 1321}, - [4394] = {.lex_state = 1321}, - [4395] = {.lex_state = 1321}, - [4396] = {.lex_state = 1321}, - [4397] = {.lex_state = 1321}, - [4398] = {.lex_state = 1321}, - [4399] = {.lex_state = 39}, - [4400] = {.lex_state = 1321}, - [4401] = {.lex_state = 1321}, - [4402] = {.lex_state = 1321}, - [4403] = {.lex_state = 1321}, - [4404] = {.lex_state = 1321}, - [4405] = {.lex_state = 1321}, - [4406] = {.lex_state = 1321}, - [4407] = {.lex_state = 1321}, - [4408] = {.lex_state = 1321}, - [4409] = {.lex_state = 1321}, - [4410] = {.lex_state = 1321}, - [4411] = {.lex_state = 1321}, - [4412] = {.lex_state = 1321}, - [4413] = {.lex_state = 1321}, - [4414] = {.lex_state = 1321}, - [4415] = {.lex_state = 1321}, - [4416] = {.lex_state = 1321}, - [4417] = {.lex_state = 1321}, - [4418] = {.lex_state = 1321}, - [4419] = {.lex_state = 1321}, - [4420] = {.lex_state = 1321}, - [4421] = {.lex_state = 1321}, - [4422] = {.lex_state = 1321}, - [4423] = {.lex_state = 1321}, - [4424] = {.lex_state = 1321}, - [4425] = {.lex_state = 1321}, - [4426] = {.lex_state = 1321}, - [4427] = {.lex_state = 1321}, - [4428] = {.lex_state = 1321}, - [4429] = {.lex_state = 1321}, - [4430] = {.lex_state = 1321}, - [4431] = {.lex_state = 1321}, - [4432] = {.lex_state = 1321}, - [4433] = {.lex_state = 1321}, - [4434] = {.lex_state = 1321}, - [4435] = {.lex_state = 1321}, - [4436] = {.lex_state = 1321}, - [4437] = {.lex_state = 1321, .external_lex_state = 16}, - [4438] = {.lex_state = 1321}, - [4439] = {.lex_state = 1321}, - [4440] = {.lex_state = 1321}, - [4441] = {.lex_state = 1321}, - [4442] = {.lex_state = 1321}, - [4443] = {.lex_state = 38}, - [4444] = {.lex_state = 1321}, - [4445] = {.lex_state = 1321}, - [4446] = {.lex_state = 1321}, - [4447] = {.lex_state = 1321}, - [4448] = {.lex_state = 1321}, - [4449] = {.lex_state = 1321}, - [4450] = {.lex_state = 1321}, - [4451] = {.lex_state = 1321}, - [4452] = {.lex_state = 1321}, - [4453] = {.lex_state = 1321}, - [4454] = {.lex_state = 1321}, - [4455] = {.lex_state = 1321}, - [4456] = {.lex_state = 1321}, - [4457] = {.lex_state = 1321}, - [4458] = {.lex_state = 1321}, - [4459] = {.lex_state = 1321}, - [4460] = {.lex_state = 1321}, - [4461] = {.lex_state = 1321}, - [4462] = {.lex_state = 1321}, - [4463] = {.lex_state = 1321}, - [4464] = {.lex_state = 1321}, - [4465] = {.lex_state = 1321}, - [4466] = {.lex_state = 40}, - [4467] = {.lex_state = 1321, .external_lex_state = 11}, - [4468] = {.lex_state = 40}, - [4469] = {.lex_state = 33, .external_lex_state = 19}, - [4470] = {.lex_state = 30, .external_lex_state = 11}, - [4471] = {.lex_state = 40}, - [4472] = {.lex_state = 1321}, - [4473] = {.lex_state = 40}, - [4474] = {.lex_state = 1321}, - [4475] = {.lex_state = 40}, - [4476] = {.lex_state = 1321}, - [4477] = {.lex_state = 1321}, - [4478] = {.lex_state = 1321}, - [4479] = {.lex_state = 1321, .external_lex_state = 11}, - [4480] = {.lex_state = 1321}, - [4481] = {.lex_state = 1321}, - [4482] = {.lex_state = 188}, - [4483] = {.lex_state = 1321, .external_lex_state = 11}, - [4484] = {.lex_state = 1321, .external_lex_state = 11}, - [4485] = {.lex_state = 1321}, - [4486] = {.lex_state = 1321}, - [4487] = {.lex_state = 37}, - [4488] = {.lex_state = 1321}, - [4489] = {.lex_state = 1321}, - [4490] = {.lex_state = 40}, - [4491] = {.lex_state = 40}, - [4492] = {.lex_state = 1321}, - [4493] = {.lex_state = 1321}, - [4494] = {.lex_state = 1321}, - [4495] = {.lex_state = 1321}, - [4496] = {.lex_state = 40}, - [4497] = {.lex_state = 1321}, - [4498] = {.lex_state = 1321}, - [4499] = {.lex_state = 1321}, - [4500] = {.lex_state = 1321}, - [4501] = {.lex_state = 40}, - [4502] = {.lex_state = 188}, - [4503] = {.lex_state = 1321}, - [4504] = {.lex_state = 1321}, - [4505] = {.lex_state = 1321}, - [4506] = {.lex_state = 1321}, - [4507] = {.lex_state = 188}, - [4508] = {.lex_state = 40}, - [4509] = {.lex_state = 1321}, - [4510] = {.lex_state = 200}, - [4511] = {.lex_state = 1321}, - [4512] = {.lex_state = 1321}, - [4513] = {.lex_state = 199}, - [4514] = {.lex_state = 40}, - [4515] = {.lex_state = 1321}, - [4516] = {.lex_state = 1321}, - [4517] = {.lex_state = 33, .external_lex_state = 19}, - [4518] = {.lex_state = 1321}, - [4519] = {.lex_state = 1321}, - [4520] = {.lex_state = 1321}, - [4521] = {.lex_state = 1321}, - [4522] = {.lex_state = 1321}, - [4523] = {.lex_state = 30, .external_lex_state = 11}, - [4524] = {.lex_state = 1321, .external_lex_state = 11}, - [4525] = {.lex_state = 1321}, - [4526] = {.lex_state = 30, .external_lex_state = 11}, - [4527] = {.lex_state = 33, .external_lex_state = 19}, - [4528] = {.lex_state = 188}, - [4529] = {.lex_state = 1321, .external_lex_state = 11}, - [4530] = {.lex_state = 30, .external_lex_state = 11}, - [4531] = {.lex_state = 1321, .external_lex_state = 11}, - [4532] = {.lex_state = 188}, - [4533] = {.lex_state = 1321}, - [4534] = {.lex_state = 40}, - [4535] = {.lex_state = 197}, - [4536] = {.lex_state = 1321}, - [4537] = {.lex_state = 1321}, - [4538] = {.lex_state = 1321}, + [4020] = {.lex_state = 30}, + [4021] = {.lex_state = 39}, + [4022] = {.lex_state = 30}, + [4023] = {.lex_state = 38}, + [4024] = {.lex_state = 38}, + [4025] = {.lex_state = 38}, + [4026] = {.lex_state = 210}, + [4027] = {.lex_state = 38}, + [4028] = {.lex_state = 38}, + [4029] = {.lex_state = 38}, + [4030] = {.lex_state = 38}, + [4031] = {.lex_state = 38}, + [4032] = {.lex_state = 38}, + [4033] = {.lex_state = 38}, + [4034] = {.lex_state = 30}, + [4035] = {.lex_state = 30}, + [4036] = {.lex_state = 1329, .external_lex_state = 11}, + [4037] = {.lex_state = 210}, + [4038] = {.lex_state = 1329}, + [4039] = {.lex_state = 214}, + [4040] = {.lex_state = 214}, + [4041] = {.lex_state = 1329, .external_lex_state = 11}, + [4042] = {.lex_state = 1329, .external_lex_state = 16}, + [4043] = {.lex_state = 1329, .external_lex_state = 16}, + [4044] = {.lex_state = 206}, + [4045] = {.lex_state = 1329}, + [4046] = {.lex_state = 206}, + [4047] = {.lex_state = 1329}, + [4048] = {.lex_state = 1329}, + [4049] = {.lex_state = 206}, + [4050] = {.lex_state = 1329}, + [4051] = {.lex_state = 1329}, + [4052] = {.lex_state = 1329}, + [4053] = {.lex_state = 206}, + [4054] = {.lex_state = 1329}, + [4055] = {.lex_state = 1329}, + [4056] = {.lex_state = 1329}, + [4057] = {.lex_state = 1329}, + [4058] = {.lex_state = 1329}, + [4059] = {.lex_state = 1329}, + [4060] = {.lex_state = 206}, + [4061] = {.lex_state = 1329}, + [4062] = {.lex_state = 206}, + [4063] = {.lex_state = 1329}, + [4064] = {.lex_state = 1329}, + [4065] = {.lex_state = 1329}, + [4066] = {.lex_state = 1329}, + [4067] = {.lex_state = 1329}, + [4068] = {.lex_state = 1329}, + [4069] = {.lex_state = 1329}, + [4070] = {.lex_state = 39}, + [4071] = {.lex_state = 206}, + [4072] = {.lex_state = 1329}, + [4073] = {.lex_state = 1329}, + [4074] = {.lex_state = 1329, .external_lex_state = 11}, + [4075] = {.lex_state = 1329}, + [4076] = {.lex_state = 1329}, + [4077] = {.lex_state = 1329}, + [4078] = {.lex_state = 1329}, + [4079] = {.lex_state = 1329}, + [4080] = {.lex_state = 1329}, + [4081] = {.lex_state = 1329}, + [4082] = {.lex_state = 1329, .external_lex_state = 11}, + [4083] = {.lex_state = 1329}, + [4084] = {.lex_state = 1329, .external_lex_state = 11}, + [4085] = {.lex_state = 1329}, + [4086] = {.lex_state = 1329, .external_lex_state = 11}, + [4087] = {.lex_state = 1329}, + [4088] = {.lex_state = 1329}, + [4089] = {.lex_state = 1329, .external_lex_state = 11}, + [4090] = {.lex_state = 1329}, + [4091] = {.lex_state = 206}, + [4092] = {.lex_state = 206}, + [4093] = {.lex_state = 1329}, + [4094] = {.lex_state = 1329}, + [4095] = {.lex_state = 206}, + [4096] = {.lex_state = 1329}, + [4097] = {.lex_state = 1329}, + [4098] = {.lex_state = 1329}, + [4099] = {.lex_state = 1329}, + [4100] = {.lex_state = 1329}, + [4101] = {.lex_state = 1329}, + [4102] = {.lex_state = 1329}, + [4103] = {.lex_state = 1329}, + [4104] = {.lex_state = 1329}, + [4105] = {.lex_state = 206}, + [4106] = {.lex_state = 1329}, + [4107] = {.lex_state = 1329}, + [4108] = {.lex_state = 206}, + [4109] = {.lex_state = 206}, + [4110] = {.lex_state = 1329}, + [4111] = {.lex_state = 206}, + [4112] = {.lex_state = 1329}, + [4113] = {.lex_state = 1329}, + [4114] = {.lex_state = 1329}, + [4115] = {.lex_state = 1329}, + [4116] = {.lex_state = 206}, + [4117] = {.lex_state = 206}, + [4118] = {.lex_state = 206}, + [4119] = {.lex_state = 1329}, + [4120] = {.lex_state = 1329}, + [4121] = {.lex_state = 206}, + [4122] = {.lex_state = 206}, + [4123] = {.lex_state = 1329}, + [4124] = {.lex_state = 1329}, + [4125] = {.lex_state = 1329}, + [4126] = {.lex_state = 1329}, + [4127] = {.lex_state = 1329}, + [4128] = {.lex_state = 1329}, + [4129] = {.lex_state = 38}, + [4130] = {.lex_state = 38}, + [4131] = {.lex_state = 1329}, + [4132] = {.lex_state = 38}, + [4133] = {.lex_state = 1329}, + [4134] = {.lex_state = 38, .external_lex_state = 11}, + [4135] = {.lex_state = 1329, .external_lex_state = 11}, + [4136] = {.lex_state = 1329}, + [4137] = {.lex_state = 206}, + [4138] = {.lex_state = 206}, + [4139] = {.lex_state = 1329}, + [4140] = {.lex_state = 1329}, + [4141] = {.lex_state = 1329}, + [4142] = {.lex_state = 1329}, + [4143] = {.lex_state = 1329}, + [4144] = {.lex_state = 1329, .external_lex_state = 11}, + [4145] = {.lex_state = 1329}, + [4146] = {.lex_state = 1329}, + [4147] = {.lex_state = 1329}, + [4148] = {.lex_state = 1329}, + [4149] = {.lex_state = 1329}, + [4150] = {.lex_state = 1329}, + [4151] = {.lex_state = 1329}, + [4152] = {.lex_state = 1329}, + [4153] = {.lex_state = 1329}, + [4154] = {.lex_state = 1329}, + [4155] = {.lex_state = 1329}, + [4156] = {.lex_state = 1329}, + [4157] = {.lex_state = 1329}, + [4158] = {.lex_state = 1329}, + [4159] = {.lex_state = 206}, + [4160] = {.lex_state = 206}, + [4161] = {.lex_state = 206}, + [4162] = {.lex_state = 206}, + [4163] = {.lex_state = 1329}, + [4164] = {.lex_state = 1329}, + [4165] = {.lex_state = 1329}, + [4166] = {.lex_state = 1329}, + [4167] = {.lex_state = 206}, + [4168] = {.lex_state = 1329}, + [4169] = {.lex_state = 206}, + [4170] = {.lex_state = 1329}, + [4171] = {.lex_state = 1329}, + [4172] = {.lex_state = 39}, + [4173] = {.lex_state = 1329}, + [4174] = {.lex_state = 206}, + [4175] = {.lex_state = 206}, + [4176] = {.lex_state = 1329}, + [4177] = {.lex_state = 1329}, + [4178] = {.lex_state = 1329}, + [4179] = {.lex_state = 1329}, + [4180] = {.lex_state = 1329}, + [4181] = {.lex_state = 1329}, + [4182] = {.lex_state = 206}, + [4183] = {.lex_state = 1329}, + [4184] = {.lex_state = 1329}, + [4185] = {.lex_state = 1329, .external_lex_state = 11}, + [4186] = {.lex_state = 1329}, + [4187] = {.lex_state = 1329}, + [4188] = {.lex_state = 1329}, + [4189] = {.lex_state = 206}, + [4190] = {.lex_state = 206}, + [4191] = {.lex_state = 206}, + [4192] = {.lex_state = 1329}, + [4193] = {.lex_state = 1329}, + [4194] = {.lex_state = 39}, + [4195] = {.lex_state = 1329}, + [4196] = {.lex_state = 206}, + [4197] = {.lex_state = 1329}, + [4198] = {.lex_state = 1329}, + [4199] = {.lex_state = 1329}, + [4200] = {.lex_state = 1329}, + [4201] = {.lex_state = 1329}, + [4202] = {.lex_state = 1329, .external_lex_state = 11}, + [4203] = {.lex_state = 39}, + [4204] = {.lex_state = 1329}, + [4205] = {.lex_state = 1329}, + [4206] = {.lex_state = 206}, + [4207] = {.lex_state = 206}, + [4208] = {.lex_state = 1329}, + [4209] = {.lex_state = 1329}, + [4210] = {.lex_state = 1329}, + [4211] = {.lex_state = 1329}, + [4212] = {.lex_state = 1329}, + [4213] = {.lex_state = 1329}, + [4214] = {.lex_state = 1329}, + [4215] = {.lex_state = 206}, + [4216] = {.lex_state = 1329}, + [4217] = {.lex_state = 1329}, + [4218] = {.lex_state = 1329}, + [4219] = {.lex_state = 39}, + [4220] = {.lex_state = 1329}, + [4221] = {.lex_state = 1329}, + [4222] = {.lex_state = 206}, + [4223] = {.lex_state = 1329}, + [4224] = {.lex_state = 1329}, + [4225] = {.lex_state = 1329}, + [4226] = {.lex_state = 1329}, + [4227] = {.lex_state = 206}, + [4228] = {.lex_state = 1329}, + [4229] = {.lex_state = 1329}, + [4230] = {.lex_state = 206}, + [4231] = {.lex_state = 1329}, + [4232] = {.lex_state = 206}, + [4233] = {.lex_state = 206}, + [4234] = {.lex_state = 1329, .external_lex_state = 11}, + [4235] = {.lex_state = 1329}, + [4236] = {.lex_state = 1329}, + [4237] = {.lex_state = 1329}, + [4238] = {.lex_state = 1329}, + [4239] = {.lex_state = 206}, + [4240] = {.lex_state = 37}, + [4241] = {.lex_state = 1329}, + [4242] = {.lex_state = 206}, + [4243] = {.lex_state = 1329}, + [4244] = {.lex_state = 206}, + [4245] = {.lex_state = 1329}, + [4246] = {.lex_state = 1329}, + [4247] = {.lex_state = 1329, .external_lex_state = 11}, + [4248] = {.lex_state = 1329}, + [4249] = {.lex_state = 1329}, + [4250] = {.lex_state = 1329}, + [4251] = {.lex_state = 1329}, + [4252] = {.lex_state = 1329}, + [4253] = {.lex_state = 1329}, + [4254] = {.lex_state = 1329}, + [4255] = {.lex_state = 1329}, + [4256] = {.lex_state = 1329}, + [4257] = {.lex_state = 1329}, + [4258] = {.lex_state = 1329}, + [4259] = {.lex_state = 1329}, + [4260] = {.lex_state = 38}, + [4261] = {.lex_state = 68}, + [4262] = {.lex_state = 39}, + [4263] = {.lex_state = 39, .external_lex_state = 11}, + [4264] = {.lex_state = 1329}, + [4265] = {.lex_state = 1329}, + [4266] = {.lex_state = 68}, + [4267] = {.lex_state = 1329}, + [4268] = {.lex_state = 1329}, + [4269] = {.lex_state = 1329}, + [4270] = {.lex_state = 1329}, + [4271] = {.lex_state = 1329}, + [4272] = {.lex_state = 1329}, + [4273] = {.lex_state = 39}, + [4274] = {.lex_state = 68}, + [4275] = {.lex_state = 1329}, + [4276] = {.lex_state = 1329}, + [4277] = {.lex_state = 1329}, + [4278] = {.lex_state = 1329}, + [4279] = {.lex_state = 1329}, + [4280] = {.lex_state = 1329}, + [4281] = {.lex_state = 1329}, + [4282] = {.lex_state = 1329}, + [4283] = {.lex_state = 1329}, + [4284] = {.lex_state = 68}, + [4285] = {.lex_state = 1329}, + [4286] = {.lex_state = 1329}, + [4287] = {.lex_state = 39}, + [4288] = {.lex_state = 1329}, + [4289] = {.lex_state = 1329}, + [4290] = {.lex_state = 1329}, + [4291] = {.lex_state = 1329}, + [4292] = {.lex_state = 1329}, + [4293] = {.lex_state = 1329}, + [4294] = {.lex_state = 38}, + [4295] = {.lex_state = 1329}, + [4296] = {.lex_state = 1329}, + [4297] = {.lex_state = 39}, + [4298] = {.lex_state = 1329}, + [4299] = {.lex_state = 1329}, + [4300] = {.lex_state = 38}, + [4301] = {.lex_state = 1329}, + [4302] = {.lex_state = 1329}, + [4303] = {.lex_state = 1329}, + [4304] = {.lex_state = 68}, + [4305] = {.lex_state = 1329}, + [4306] = {.lex_state = 214}, + [4307] = {.lex_state = 1329}, + [4308] = {.lex_state = 1329}, + [4309] = {.lex_state = 205}, + [4310] = {.lex_state = 1329}, + [4311] = {.lex_state = 209}, + [4312] = {.lex_state = 1329}, + [4313] = {.lex_state = 1329}, + [4314] = {.lex_state = 1329}, + [4315] = {.lex_state = 1329}, + [4316] = {.lex_state = 68, .external_lex_state = 11}, + [4317] = {.lex_state = 1329}, + [4318] = {.lex_state = 1329}, + [4319] = {.lex_state = 1329}, + [4320] = {.lex_state = 39}, + [4321] = {.lex_state = 1329}, + [4322] = {.lex_state = 1329}, + [4323] = {.lex_state = 205}, + [4324] = {.lex_state = 1329}, + [4325] = {.lex_state = 1329}, + [4326] = {.lex_state = 1329}, + [4327] = {.lex_state = 1329}, + [4328] = {.lex_state = 38}, + [4329] = {.lex_state = 1329}, + [4330] = {.lex_state = 1329}, + [4331] = {.lex_state = 1329}, + [4332] = {.lex_state = 1329}, + [4333] = {.lex_state = 1329}, + [4334] = {.lex_state = 205}, + [4335] = {.lex_state = 1329}, + [4336] = {.lex_state = 39, .external_lex_state = 11}, + [4337] = {.lex_state = 1329}, + [4338] = {.lex_state = 1329}, + [4339] = {.lex_state = 1329}, + [4340] = {.lex_state = 1329}, + [4341] = {.lex_state = 39}, + [4342] = {.lex_state = 1329}, + [4343] = {.lex_state = 1329}, + [4344] = {.lex_state = 68}, + [4345] = {.lex_state = 1329}, + [4346] = {.lex_state = 68, .external_lex_state = 11}, + [4347] = {.lex_state = 1329}, + [4348] = {.lex_state = 1329}, + [4349] = {.lex_state = 1329}, + [4350] = {.lex_state = 1329}, + [4351] = {.lex_state = 1329}, + [4352] = {.lex_state = 1329}, + [4353] = {.lex_state = 1329}, + [4354] = {.lex_state = 1329}, + [4355] = {.lex_state = 1329}, + [4356] = {.lex_state = 1329}, + [4357] = {.lex_state = 1329}, + [4358] = {.lex_state = 1329}, + [4359] = {.lex_state = 1329}, + [4360] = {.lex_state = 1329}, + [4361] = {.lex_state = 1329}, + [4362] = {.lex_state = 39}, + [4363] = {.lex_state = 214}, + [4364] = {.lex_state = 1329}, + [4365] = {.lex_state = 1329}, + [4366] = {.lex_state = 68, .external_lex_state = 11}, + [4367] = {.lex_state = 1329}, + [4368] = {.lex_state = 207}, + [4369] = {.lex_state = 1329}, + [4370] = {.lex_state = 1329}, + [4371] = {.lex_state = 1329}, + [4372] = {.lex_state = 1329}, + [4373] = {.lex_state = 1329}, + [4374] = {.lex_state = 1329}, + [4375] = {.lex_state = 1329}, + [4376] = {.lex_state = 1329}, + [4377] = {.lex_state = 1329}, + [4378] = {.lex_state = 1329}, + [4379] = {.lex_state = 1329}, + [4380] = {.lex_state = 1329}, + [4381] = {.lex_state = 39}, + [4382] = {.lex_state = 1329}, + [4383] = {.lex_state = 1329}, + [4384] = {.lex_state = 38}, + [4385] = {.lex_state = 1329}, + [4386] = {.lex_state = 1329}, + [4387] = {.lex_state = 1329}, + [4388] = {.lex_state = 68}, + [4389] = {.lex_state = 1329}, + [4390] = {.lex_state = 1329}, + [4391] = {.lex_state = 1329}, + [4392] = {.lex_state = 1329}, + [4393] = {.lex_state = 1329}, + [4394] = {.lex_state = 1329}, + [4395] = {.lex_state = 68}, + [4396] = {.lex_state = 1329}, + [4397] = {.lex_state = 1329}, + [4398] = {.lex_state = 38}, + [4399] = {.lex_state = 1329}, + [4400] = {.lex_state = 1329}, + [4401] = {.lex_state = 1329}, + [4402] = {.lex_state = 1329}, + [4403] = {.lex_state = 1329}, + [4404] = {.lex_state = 1329}, + [4405] = {.lex_state = 1329}, + [4406] = {.lex_state = 1329}, + [4407] = {.lex_state = 1329}, + [4408] = {.lex_state = 1329}, + [4409] = {.lex_state = 1329}, + [4410] = {.lex_state = 1329}, + [4411] = {.lex_state = 1329}, + [4412] = {.lex_state = 1329}, + [4413] = {.lex_state = 1329}, + [4414] = {.lex_state = 1329}, + [4415] = {.lex_state = 1329}, + [4416] = {.lex_state = 1329}, + [4417] = {.lex_state = 1329}, + [4418] = {.lex_state = 1329}, + [4419] = {.lex_state = 1329}, + [4420] = {.lex_state = 1329}, + [4421] = {.lex_state = 1329}, + [4422] = {.lex_state = 1329}, + [4423] = {.lex_state = 1329}, + [4424] = {.lex_state = 1329}, + [4425] = {.lex_state = 1329}, + [4426] = {.lex_state = 1329}, + [4427] = {.lex_state = 1329}, + [4428] = {.lex_state = 1329}, + [4429] = {.lex_state = 1329}, + [4430] = {.lex_state = 1329}, + [4431] = {.lex_state = 1329}, + [4432] = {.lex_state = 1329}, + [4433] = {.lex_state = 1329}, + [4434] = {.lex_state = 1329}, + [4435] = {.lex_state = 1329}, + [4436] = {.lex_state = 1329}, + [4437] = {.lex_state = 1329}, + [4438] = {.lex_state = 1329}, + [4439] = {.lex_state = 1329}, + [4440] = {.lex_state = 1329}, + [4441] = {.lex_state = 1329}, + [4442] = {.lex_state = 1329}, + [4443] = {.lex_state = 1329}, + [4444] = {.lex_state = 1329}, + [4445] = {.lex_state = 1329}, + [4446] = {.lex_state = 1329}, + [4447] = {.lex_state = 1329}, + [4448] = {.lex_state = 1329}, + [4449] = {.lex_state = 1329}, + [4450] = {.lex_state = 1329}, + [4451] = {.lex_state = 1329}, + [4452] = {.lex_state = 1329}, + [4453] = {.lex_state = 1329}, + [4454] = {.lex_state = 1329}, + [4455] = {.lex_state = 1329}, + [4456] = {.lex_state = 1329}, + [4457] = {.lex_state = 1329}, + [4458] = {.lex_state = 1329}, + [4459] = {.lex_state = 1329}, + [4460] = {.lex_state = 1329}, + [4461] = {.lex_state = 1329}, + [4462] = {.lex_state = 1329}, + [4463] = {.lex_state = 1329}, + [4464] = {.lex_state = 1329}, + [4465] = {.lex_state = 1329}, + [4466] = {.lex_state = 1329}, + [4467] = {.lex_state = 1329}, + [4468] = {.lex_state = 1329}, + [4469] = {.lex_state = 1329}, + [4470] = {.lex_state = 1329}, + [4471] = {.lex_state = 1329}, + [4472] = {.lex_state = 1329}, + [4473] = {.lex_state = 1329}, + [4474] = {.lex_state = 1329}, + [4475] = {.lex_state = 1329}, + [4476] = {.lex_state = 1329}, + [4477] = {.lex_state = 1329}, + [4478] = {.lex_state = 1329}, + [4479] = {.lex_state = 1329}, + [4480] = {.lex_state = 1329}, + [4481] = {.lex_state = 1329}, + [4482] = {.lex_state = 1329}, + [4483] = {.lex_state = 1329}, + [4484] = {.lex_state = 1329}, + [4485] = {.lex_state = 68}, + [4486] = {.lex_state = 1329}, + [4487] = {.lex_state = 1329}, + [4488] = {.lex_state = 39}, + [4489] = {.lex_state = 1329}, + [4490] = {.lex_state = 1329}, + [4491] = {.lex_state = 1329}, + [4492] = {.lex_state = 1329}, + [4493] = {.lex_state = 1329}, + [4494] = {.lex_state = 1329}, + [4495] = {.lex_state = 1329}, + [4496] = {.lex_state = 68, .external_lex_state = 11}, + [4497] = {.lex_state = 1329}, + [4498] = {.lex_state = 1329}, + [4499] = {.lex_state = 1329}, + [4500] = {.lex_state = 1329}, + [4501] = {.lex_state = 1329}, + [4502] = {.lex_state = 1329}, + [4503] = {.lex_state = 138}, + [4504] = {.lex_state = 68}, + [4505] = {.lex_state = 1329}, + [4506] = {.lex_state = 38}, + [4507] = {.lex_state = 1329}, + [4508] = {.lex_state = 1329}, + [4509] = {.lex_state = 1329}, + [4510] = {.lex_state = 1329}, + [4511] = {.lex_state = 1329}, + [4512] = {.lex_state = 1329}, + [4513] = {.lex_state = 1329}, + [4514] = {.lex_state = 1329}, + [4515] = {.lex_state = 1329}, + [4516] = {.lex_state = 1329}, + [4517] = {.lex_state = 1329}, + [4518] = {.lex_state = 1329}, + [4519] = {.lex_state = 39}, + [4520] = {.lex_state = 1329}, + [4521] = {.lex_state = 1329}, + [4522] = {.lex_state = 1329}, + [4523] = {.lex_state = 1329}, + [4524] = {.lex_state = 1329}, + [4525] = {.lex_state = 1329}, + [4526] = {.lex_state = 1329}, + [4527] = {.lex_state = 1329}, + [4528] = {.lex_state = 1329}, + [4529] = {.lex_state = 1329}, + [4530] = {.lex_state = 1329}, + [4531] = {.lex_state = 1329}, + [4532] = {.lex_state = 1329}, + [4533] = {.lex_state = 195}, + [4534] = {.lex_state = 1329}, + [4535] = {.lex_state = 1329}, + [4536] = {.lex_state = 1329}, + [4537] = {.lex_state = 1329}, + [4538] = {.lex_state = 1329}, [4539] = {.lex_state = 40}, - [4540] = {.lex_state = 1321, .external_lex_state = 11}, + [4540] = {.lex_state = 1329, .external_lex_state = 11}, [4541] = {.lex_state = 40}, - [4542] = {.lex_state = 40}, - [4543] = {.lex_state = 1321}, - [4544] = {.lex_state = 1321, .external_lex_state = 11}, - [4545] = {.lex_state = 1321}, - [4546] = {.lex_state = 1321}, - [4547] = {.lex_state = 1321}, - [4548] = {.lex_state = 1321, .external_lex_state = 11}, - [4549] = {.lex_state = 200}, - [4550] = {.lex_state = 1321}, - [4551] = {.lex_state = 1321}, - [4552] = {.lex_state = 1321, .external_lex_state = 11}, - [4553] = {.lex_state = 1321, .external_lex_state = 11}, - [4554] = {.lex_state = 1321, .external_lex_state = 11}, - [4555] = {.lex_state = 40}, - [4556] = {.lex_state = 1321}, - [4557] = {.lex_state = 1321}, - [4558] = {.lex_state = 1321}, - [4559] = {.lex_state = 1321}, - [4560] = {.lex_state = 200}, - [4561] = {.lex_state = 200}, - [4562] = {.lex_state = 1321}, - [4563] = {.lex_state = 197}, - [4564] = {.lex_state = 1321}, - [4565] = {.lex_state = 1321}, - [4566] = {.lex_state = 1321}, - [4567] = {.lex_state = 1321}, - [4568] = {.lex_state = 1321}, - [4569] = {.lex_state = 30, .external_lex_state = 7}, - [4570] = {.lex_state = 1321}, - [4571] = {.lex_state = 1321}, - [4572] = {.lex_state = 1321}, - [4573] = {.lex_state = 1321}, - [4574] = {.lex_state = 1321}, - [4575] = {.lex_state = 1321}, - [4576] = {.lex_state = 30, .external_lex_state = 7}, - [4577] = {.lex_state = 1321}, - [4578] = {.lex_state = 1321}, - [4579] = {.lex_state = 1321}, - [4580] = {.lex_state = 1321}, - [4581] = {.lex_state = 1321, .external_lex_state = 11}, - [4582] = {.lex_state = 30, .external_lex_state = 7}, - [4583] = {.lex_state = 1321}, - [4584] = {.lex_state = 1321}, - [4585] = {.lex_state = 1321}, - [4586] = {.lex_state = 1321}, - [4587] = {.lex_state = 1321}, - [4588] = {.lex_state = 1321}, - [4589] = {.lex_state = 1321}, - [4590] = {.lex_state = 1321}, - [4591] = {.lex_state = 1321}, - [4592] = {.lex_state = 1321}, - [4593] = {.lex_state = 1321}, - [4594] = {.lex_state = 1321}, - [4595] = {.lex_state = 1321}, - [4596] = {.lex_state = 30, .external_lex_state = 7}, - [4597] = {.lex_state = 1321}, - [4598] = {.lex_state = 203}, - [4599] = {.lex_state = 1321}, - [4600] = {.lex_state = 1321}, - [4601] = {.lex_state = 1321}, - [4602] = {.lex_state = 1321}, - [4603] = {.lex_state = 1321}, - [4604] = {.lex_state = 1321}, - [4605] = {.lex_state = 1321}, - [4606] = {.lex_state = 1321}, - [4607] = {.lex_state = 1321}, - [4608] = {.lex_state = 30, .external_lex_state = 7}, - [4609] = {.lex_state = 1321, .external_lex_state = 11}, - [4610] = {.lex_state = 1321}, - [4611] = {.lex_state = 203}, - [4612] = {.lex_state = 1321}, - [4613] = {.lex_state = 1321, .external_lex_state = 11}, - [4614] = {.lex_state = 1321}, - [4615] = {.lex_state = 130}, - [4616] = {.lex_state = 30}, - [4617] = {.lex_state = 1321, .external_lex_state = 11}, - [4618] = {.lex_state = 1321}, - [4619] = {.lex_state = 1321}, - [4620] = {.lex_state = 1321}, - [4621] = {.lex_state = 1321}, - [4622] = {.lex_state = 1321}, - [4623] = {.lex_state = 1321}, - [4624] = {.lex_state = 1321}, - [4625] = {.lex_state = 30}, - [4626] = {.lex_state = 1321}, - [4627] = {.lex_state = 1321}, - [4628] = {.lex_state = 1321}, - [4629] = {.lex_state = 1321}, - [4630] = {.lex_state = 1321}, - [4631] = {.lex_state = 185}, - [4632] = {.lex_state = 1321}, - [4633] = {.lex_state = 1321}, - [4634] = {.lex_state = 1321}, - [4635] = {.lex_state = 1321}, - [4636] = {.lex_state = 185}, - [4637] = {.lex_state = 1321}, - [4638] = {.lex_state = 1321}, - [4639] = {.lex_state = 1321}, - [4640] = {.lex_state = 1321}, - [4641] = {.lex_state = 1321}, - [4642] = {.lex_state = 1321}, - [4643] = {.lex_state = 1321}, - [4644] = {.lex_state = 1321}, - [4645] = {.lex_state = 1321}, - [4646] = {.lex_state = 1321}, - [4647] = {.lex_state = 198}, - [4648] = {.lex_state = 1321, .external_lex_state = 11}, - [4649] = {.lex_state = 1321}, - [4650] = {.lex_state = 1321}, - [4651] = {.lex_state = 1321}, - [4652] = {.lex_state = 1321}, - [4653] = {.lex_state = 1321}, - [4654] = {.lex_state = 1321}, - [4655] = {.lex_state = 1321}, - [4656] = {.lex_state = 1321}, - [4657] = {.lex_state = 1321}, - [4658] = {.lex_state = 1321}, - [4659] = {.lex_state = 1321, .external_lex_state = 11}, - [4660] = {.lex_state = 1321}, - [4661] = {.lex_state = 1321}, - [4662] = {.lex_state = 1321}, - [4663] = {.lex_state = 1321}, - [4664] = {.lex_state = 1321}, - [4665] = {.lex_state = 1321, .external_lex_state = 11}, - [4666] = {.lex_state = 1321}, - [4667] = {.lex_state = 1321}, - [4668] = {.lex_state = 1321}, - [4669] = {.lex_state = 1321}, - [4670] = {.lex_state = 1321}, - [4671] = {.lex_state = 30, .external_lex_state = 7}, - [4672] = {.lex_state = 30, .external_lex_state = 7}, - [4673] = {.lex_state = 1321}, - [4674] = {.lex_state = 1321}, - [4675] = {.lex_state = 30, .external_lex_state = 7}, - [4676] = {.lex_state = 40}, - [4677] = {.lex_state = 40}, - [4678] = {.lex_state = 40}, - [4679] = {.lex_state = 1321}, - [4680] = {.lex_state = 1321}, - [4681] = {.lex_state = 1321}, - [4682] = {.lex_state = 1321}, - [4683] = {.lex_state = 1321}, - [4684] = {.lex_state = 1321}, - [4685] = {.lex_state = 1321}, - [4686] = {.lex_state = 1321}, - [4687] = {.lex_state = 1321}, - [4688] = {.lex_state = 1321}, + [4542] = {.lex_state = 1329, .external_lex_state = 11}, + [4543] = {.lex_state = 40}, + [4544] = {.lex_state = 1329}, + [4545] = {.lex_state = 1329, .external_lex_state = 11}, + [4546] = {.lex_state = 40}, + [4547] = {.lex_state = 1329}, + [4548] = {.lex_state = 40}, + [4549] = {.lex_state = 40}, + [4550] = {.lex_state = 1329}, + [4551] = {.lex_state = 1329}, + [4552] = {.lex_state = 1329}, + [4553] = {.lex_state = 1329}, + [4554] = {.lex_state = 1329}, + [4555] = {.lex_state = 1329}, + [4556] = {.lex_state = 1329}, + [4557] = {.lex_state = 1329}, + [4558] = {.lex_state = 1329}, + [4559] = {.lex_state = 1329}, + [4560] = {.lex_state = 1329, .external_lex_state = 11}, + [4561] = {.lex_state = 40}, + [4562] = {.lex_state = 1329, .external_lex_state = 11}, + [4563] = {.lex_state = 1329, .external_lex_state = 19}, + [4564] = {.lex_state = 1329, .external_lex_state = 11}, + [4565] = {.lex_state = 1329, .external_lex_state = 11}, + [4566] = {.lex_state = 204}, + [4567] = {.lex_state = 1329}, + [4568] = {.lex_state = 1329}, + [4569] = {.lex_state = 40}, + [4570] = {.lex_state = 40}, + [4571] = {.lex_state = 1329, .external_lex_state = 11}, + [4572] = {.lex_state = 1329, .external_lex_state = 11}, + [4573] = {.lex_state = 1329, .external_lex_state = 19}, + [4574] = {.lex_state = 1329}, + [4575] = {.lex_state = 1329}, + [4576] = {.lex_state = 40}, + [4577] = {.lex_state = 1329}, + [4578] = {.lex_state = 1329}, + [4579] = {.lex_state = 33, .external_lex_state = 20}, + [4580] = {.lex_state = 1329}, + [4581] = {.lex_state = 1329}, + [4582] = {.lex_state = 1329, .external_lex_state = 19}, + [4583] = {.lex_state = 1329}, + [4584] = {.lex_state = 1329, .external_lex_state = 19}, + [4585] = {.lex_state = 68, .external_lex_state = 11}, + [4586] = {.lex_state = 1329}, + [4587] = {.lex_state = 1329}, + [4588] = {.lex_state = 1329}, + [4589] = {.lex_state = 40}, + [4590] = {.lex_state = 1329}, + [4591] = {.lex_state = 208}, + [4592] = {.lex_state = 40}, + [4593] = {.lex_state = 1329}, + [4594] = {.lex_state = 208}, + [4595] = {.lex_state = 1329, .external_lex_state = 11}, + [4596] = {.lex_state = 1329}, + [4597] = {.lex_state = 206}, + [4598] = {.lex_state = 1329}, + [4599] = {.lex_state = 40}, + [4600] = {.lex_state = 195}, + [4601] = {.lex_state = 1329, .external_lex_state = 11}, + [4602] = {.lex_state = 1329}, + [4603] = {.lex_state = 37}, + [4604] = {.lex_state = 1329, .external_lex_state = 11}, + [4605] = {.lex_state = 1329}, + [4606] = {.lex_state = 208}, + [4607] = {.lex_state = 40}, + [4608] = {.lex_state = 1329}, + [4609] = {.lex_state = 204}, + [4610] = {.lex_state = 33, .external_lex_state = 20}, + [4611] = {.lex_state = 1329, .external_lex_state = 11}, + [4612] = {.lex_state = 1329}, + [4613] = {.lex_state = 1329}, + [4614] = {.lex_state = 1329}, + [4615] = {.lex_state = 195}, + [4616] = {.lex_state = 195}, + [4617] = {.lex_state = 1329}, + [4618] = {.lex_state = 33, .external_lex_state = 20}, + [4619] = {.lex_state = 1329}, + [4620] = {.lex_state = 195}, + [4621] = {.lex_state = 1329}, + [4622] = {.lex_state = 1329}, + [4623] = {.lex_state = 1329}, + [4624] = {.lex_state = 1329}, + [4625] = {.lex_state = 1329}, + [4626] = {.lex_state = 40}, + [4627] = {.lex_state = 1329}, + [4628] = {.lex_state = 40}, + [4629] = {.lex_state = 1329}, + [4630] = {.lex_state = 1329}, + [4631] = {.lex_state = 1329}, + [4632] = {.lex_state = 1329}, + [4633] = {.lex_state = 1329}, + [4634] = {.lex_state = 1329}, + [4635] = {.lex_state = 1329}, + [4636] = {.lex_state = 1329}, + [4637] = {.lex_state = 30, .external_lex_state = 7}, + [4638] = {.lex_state = 30}, + [4639] = {.lex_state = 1329}, + [4640] = {.lex_state = 1329}, + [4641] = {.lex_state = 1329}, + [4642] = {.lex_state = 30}, + [4643] = {.lex_state = 1329}, + [4644] = {.lex_state = 1329}, + [4645] = {.lex_state = 30, .external_lex_state = 7}, + [4646] = {.lex_state = 1329}, + [4647] = {.lex_state = 30, .external_lex_state = 7}, + [4648] = {.lex_state = 1329}, + [4649] = {.lex_state = 1329, .external_lex_state = 21}, + [4650] = {.lex_state = 68}, + [4651] = {.lex_state = 1329}, + [4652] = {.lex_state = 1329}, + [4653] = {.lex_state = 1329}, + [4654] = {.lex_state = 1329}, + [4655] = {.lex_state = 211}, + [4656] = {.lex_state = 30}, + [4657] = {.lex_state = 205}, + [4658] = {.lex_state = 1329}, + [4659] = {.lex_state = 30, .external_lex_state = 7}, + [4660] = {.lex_state = 1329, .external_lex_state = 22}, + [4661] = {.lex_state = 1329}, + [4662] = {.lex_state = 1329}, + [4663] = {.lex_state = 1329}, + [4664] = {.lex_state = 30, .external_lex_state = 7}, + [4665] = {.lex_state = 1329}, + [4666] = {.lex_state = 1329}, + [4667] = {.lex_state = 1329}, + [4668] = {.lex_state = 1329, .external_lex_state = 23}, + [4669] = {.lex_state = 1329, .external_lex_state = 19}, + [4670] = {.lex_state = 1329}, + [4671] = {.lex_state = 1329}, + [4672] = {.lex_state = 1329}, + [4673] = {.lex_state = 1329}, + [4674] = {.lex_state = 30, .external_lex_state = 7}, + [4675] = {.lex_state = 1329}, + [4676] = {.lex_state = 30, .external_lex_state = 7}, + [4677] = {.lex_state = 1329}, + [4678] = {.lex_state = 1329}, + [4679] = {.lex_state = 30, .external_lex_state = 7}, + [4680] = {.lex_state = 30}, + [4681] = {.lex_state = 30, .external_lex_state = 7}, + [4682] = {.lex_state = 1329}, + [4683] = {.lex_state = 1329}, + [4684] = {.lex_state = 1329}, + [4685] = {.lex_state = 40}, + [4686] = {.lex_state = 1329}, + [4687] = {.lex_state = 1329, .external_lex_state = 11}, + [4688] = {.lex_state = 30, .external_lex_state = 7}, [4689] = {.lex_state = 30, .external_lex_state = 7}, - [4690] = {.lex_state = 1321}, - [4691] = {.lex_state = 1321}, - [4692] = {.lex_state = 1321}, - [4693] = {.lex_state = 30}, - [4694] = {.lex_state = 1321}, - [4695] = {.lex_state = 1321}, - [4696] = {.lex_state = 1321}, - [4697] = {.lex_state = 1321}, - [4698] = {.lex_state = 1321}, - [4699] = {.lex_state = 1321}, - [4700] = {.lex_state = 1321}, - [4701] = {.lex_state = 1321}, - [4702] = {.lex_state = 1321}, - [4703] = {.lex_state = 1321, .external_lex_state = 11}, - [4704] = {.lex_state = 1321}, - [4705] = {.lex_state = 1321}, - [4706] = {.lex_state = 130}, - [4707] = {.lex_state = 1321}, - [4708] = {.lex_state = 1321}, - [4709] = {.lex_state = 1321}, - [4710] = {.lex_state = 1321}, - [4711] = {.lex_state = 1321}, - [4712] = {.lex_state = 1321}, - [4713] = {.lex_state = 1321}, - [4714] = {.lex_state = 1321}, - [4715] = {.lex_state = 1321}, - [4716] = {.lex_state = 130}, - [4717] = {.lex_state = 1321}, - [4718] = {.lex_state = 1321}, - [4719] = {.lex_state = 1321}, - [4720] = {.lex_state = 1321}, - [4721] = {.lex_state = 1321}, - [4722] = {.lex_state = 1321}, - [4723] = {.lex_state = 40}, - [4724] = {.lex_state = 1321}, - [4725] = {.lex_state = 1321}, - [4726] = {.lex_state = 1321}, - [4727] = {.lex_state = 130}, - [4728] = {.lex_state = 1321}, - [4729] = {.lex_state = 1321}, - [4730] = {.lex_state = 1321}, - [4731] = {.lex_state = 1321}, - [4732] = {.lex_state = 1321}, - [4733] = {.lex_state = 1321}, - [4734] = {.lex_state = 1321}, - [4735] = {.lex_state = 1321}, - [4736] = {.lex_state = 130}, - [4737] = {.lex_state = 1321}, - [4738] = {.lex_state = 1321}, - [4739] = {.lex_state = 1321}, - [4740] = {.lex_state = 1321}, - [4741] = {.lex_state = 204}, - [4742] = {.lex_state = 1321}, - [4743] = {.lex_state = 40}, - [4744] = {.lex_state = 30, .external_lex_state = 7}, - [4745] = {.lex_state = 1321}, - [4746] = {.lex_state = 40}, - [4747] = {.lex_state = 40}, - [4748] = {.lex_state = 1321}, - [4749] = {.lex_state = 1321}, - [4750] = {.lex_state = 1321}, - [4751] = {.lex_state = 1321}, - [4752] = {.lex_state = 1321}, - [4753] = {.lex_state = 1321}, - [4754] = {.lex_state = 1321}, - [4755] = {.lex_state = 1321}, - [4756] = {.lex_state = 1321}, - [4757] = {.lex_state = 1321}, - [4758] = {.lex_state = 30, .external_lex_state = 7}, - [4759] = {.lex_state = 1321}, - [4760] = {.lex_state = 1321}, - [4761] = {.lex_state = 1321}, - [4762] = {.lex_state = 1321}, - [4763] = {.lex_state = 1321}, - [4764] = {.lex_state = 1321}, - [4765] = {.lex_state = 198}, - [4766] = {.lex_state = 1321}, - [4767] = {.lex_state = 1321}, - [4768] = {.lex_state = 1321}, - [4769] = {.lex_state = 1321}, - [4770] = {.lex_state = 1321}, - [4771] = {.lex_state = 1321}, - [4772] = {.lex_state = 1321}, - [4773] = {.lex_state = 203}, - [4774] = {.lex_state = 1321}, - [4775] = {.lex_state = 1321}, - [4776] = {.lex_state = 1321}, - [4777] = {.lex_state = 1321}, - [4778] = {.lex_state = 1321}, - [4779] = {.lex_state = 1321}, - [4780] = {.lex_state = 1321}, - [4781] = {.lex_state = 1321}, - [4782] = {.lex_state = 1321}, - [4783] = {.lex_state = 1321}, - [4784] = {.lex_state = 1321}, - [4785] = {.lex_state = 1321}, - [4786] = {.lex_state = 1321}, - [4787] = {.lex_state = 1321}, - [4788] = {.lex_state = 30}, - [4789] = {.lex_state = 1321, .external_lex_state = 11}, - [4790] = {.lex_state = 1321}, - [4791] = {.lex_state = 1321}, - [4792] = {.lex_state = 1321}, - [4793] = {.lex_state = 1321}, - [4794] = {.lex_state = 30, .external_lex_state = 7}, - [4795] = {.lex_state = 1321}, - [4796] = {.lex_state = 1321}, - [4797] = {.lex_state = 1321}, - [4798] = {.lex_state = 198}, - [4799] = {.lex_state = 1321}, - [4800] = {.lex_state = 1321}, - [4801] = {.lex_state = 30}, - [4802] = {.lex_state = 1321}, - [4803] = {.lex_state = 203}, - [4804] = {.lex_state = 30}, - [4805] = {.lex_state = 30}, - [4806] = {.lex_state = 203}, - [4807] = {.lex_state = 1321}, - [4808] = {.lex_state = 1321}, - [4809] = {.lex_state = 30, .external_lex_state = 7}, - [4810] = {.lex_state = 1321}, - [4811] = {.lex_state = 1321, .external_lex_state = 11}, - [4812] = {.lex_state = 1321}, - [4813] = {.lex_state = 1321}, - [4814] = {.lex_state = 1321}, - [4815] = {.lex_state = 1321}, - [4816] = {.lex_state = 203}, - [4817] = {.lex_state = 1321}, - [4818] = {.lex_state = 1321}, - [4819] = {.lex_state = 189}, - [4820] = {.lex_state = 1321}, - [4821] = {.lex_state = 1321}, - [4822] = {.lex_state = 1321}, - [4823] = {.lex_state = 30, .external_lex_state = 11}, - [4824] = {.lex_state = 30}, - [4825] = {.lex_state = 1321}, - [4826] = {.lex_state = 1321}, - [4827] = {.lex_state = 1321}, - [4828] = {.lex_state = 1321}, - [4829] = {.lex_state = 1321}, - [4830] = {.lex_state = 1321}, - [4831] = {.lex_state = 1321}, - [4832] = {.lex_state = 40}, - [4833] = {.lex_state = 1321}, - [4834] = {.lex_state = 1321}, - [4835] = {.lex_state = 1321}, - [4836] = {.lex_state = 1321, .external_lex_state = 7}, - [4837] = {.lex_state = 1321}, - [4838] = {.lex_state = 1321}, - [4839] = {.lex_state = 1321}, - [4840] = {.lex_state = 1321}, - [4841] = {.lex_state = 1321}, - [4842] = {.lex_state = 1321}, - [4843] = {.lex_state = 1321}, - [4844] = {.lex_state = 1321}, - [4845] = {.lex_state = 1321}, - [4846] = {.lex_state = 1321}, - [4847] = {.lex_state = 203}, - [4848] = {.lex_state = 1321, .external_lex_state = 11}, - [4849] = {.lex_state = 1321}, - [4850] = {.lex_state = 1321}, - [4851] = {.lex_state = 203}, - [4852] = {.lex_state = 1321}, - [4853] = {.lex_state = 204}, - [4854] = {.lex_state = 1321}, - [4855] = {.lex_state = 1321}, - [4856] = {.lex_state = 1321}, - [4857] = {.lex_state = 1321}, - [4858] = {.lex_state = 1321, .external_lex_state = 11}, - [4859] = {.lex_state = 1321, .external_lex_state = 11}, - [4860] = {.lex_state = 1321}, - [4861] = {.lex_state = 1321}, - [4862] = {.lex_state = 1321}, - [4863] = {.lex_state = 40}, - [4864] = {.lex_state = 1321}, - [4865] = {.lex_state = 1321}, - [4866] = {.lex_state = 1321, .external_lex_state = 11}, - [4867] = {.lex_state = 1321}, - [4868] = {.lex_state = 1321}, - [4869] = {.lex_state = 1321}, - [4870] = {.lex_state = 203}, - [4871] = {.lex_state = 30}, - [4872] = {.lex_state = 1321}, - [4873] = {.lex_state = 1321}, - [4874] = {.lex_state = 1321}, - [4875] = {.lex_state = 1321}, - [4876] = {.lex_state = 1321}, - [4877] = {.lex_state = 1321}, - [4878] = {.lex_state = 1321}, - [4879] = {.lex_state = 1321, .external_lex_state = 11}, - [4880] = {.lex_state = 1321}, - [4881] = {.lex_state = 1321}, - [4882] = {.lex_state = 1321, .external_lex_state = 11}, - [4883] = {.lex_state = 1321}, - [4884] = {.lex_state = 1321}, - [4885] = {.lex_state = 1321}, - [4886] = {.lex_state = 1321}, - [4887] = {.lex_state = 1321}, - [4888] = {.lex_state = 1321}, - [4889] = {.lex_state = 203}, - [4890] = {.lex_state = 1321}, - [4891] = {.lex_state = 1321}, - [4892] = {.lex_state = 1321}, - [4893] = {.lex_state = 1321}, - [4894] = {.lex_state = 203}, - [4895] = {.lex_state = 1321}, - [4896] = {.lex_state = 1321}, - [4897] = {.lex_state = 1321}, - [4898] = {.lex_state = 1321}, - [4899] = {.lex_state = 1321}, - [4900] = {.lex_state = 1321}, - [4901] = {.lex_state = 1321}, - [4902] = {.lex_state = 1321}, - [4903] = {.lex_state = 1321}, - [4904] = {.lex_state = 1321}, - [4905] = {.lex_state = 1321}, - [4906] = {.lex_state = 1321}, - [4907] = {.lex_state = 1321, .external_lex_state = 11}, - [4908] = {.lex_state = 1321}, - [4909] = {.lex_state = 1321}, - [4910] = {.lex_state = 1321}, - [4911] = {.lex_state = 1321}, - [4912] = {.lex_state = 1321}, - [4913] = {.lex_state = 30}, - [4914] = {.lex_state = 203}, - [4915] = {.lex_state = 1321}, - [4916] = {.lex_state = 1321}, - [4917] = {.lex_state = 1321}, - [4918] = {.lex_state = 1321}, - [4919] = {.lex_state = 1321}, - [4920] = {.lex_state = 1321, .external_lex_state = 11}, - [4921] = {.lex_state = 30}, - [4922] = {.lex_state = 1321}, - [4923] = {.lex_state = 1321}, - [4924] = {.lex_state = 1321}, - [4925] = {.lex_state = 1321}, - [4926] = {.lex_state = 1321}, - [4927] = {.lex_state = 1321}, - [4928] = {.lex_state = 1321}, - [4929] = {.lex_state = 1321}, - [4930] = {.lex_state = 1321}, - [4931] = {.lex_state = 1321, .external_lex_state = 11}, - [4932] = {.lex_state = 1321, .external_lex_state = 11}, - [4933] = {.lex_state = 1321}, - [4934] = {.lex_state = 1321}, - [4935] = {.lex_state = 1321}, - [4936] = {.lex_state = 1321}, - [4937] = {.lex_state = 1321}, - [4938] = {.lex_state = 1321}, - [4939] = {.lex_state = 1321}, - [4940] = {.lex_state = 1321}, - [4941] = {.lex_state = 39}, - [4942] = {.lex_state = 1321, .external_lex_state = 11}, - [4943] = {.lex_state = 1321}, - [4944] = {.lex_state = 1321}, - [4945] = {.lex_state = 1321}, - [4946] = {.lex_state = 1321}, - [4947] = {.lex_state = 1321}, - [4948] = {.lex_state = 1321}, - [4949] = {.lex_state = 1321}, - [4950] = {.lex_state = 1321}, - [4951] = {.lex_state = 1321}, - [4952] = {.lex_state = 40}, - [4953] = {.lex_state = 1321}, - [4954] = {.lex_state = 1321}, - [4955] = {.lex_state = 1321}, - [4956] = {.lex_state = 1321}, - [4957] = {.lex_state = 1321}, - [4958] = {.lex_state = 1321}, - [4959] = {.lex_state = 30}, - [4960] = {.lex_state = 1321}, - [4961] = {.lex_state = 1321}, - [4962] = {.lex_state = 1321}, - [4963] = {.lex_state = 1321}, - [4964] = {.lex_state = 1321}, - [4965] = {.lex_state = 1321}, - [4966] = {.lex_state = 1321}, - [4967] = {.lex_state = 1321}, - [4968] = {.lex_state = 1321}, - [4969] = {.lex_state = 1321}, - [4970] = {.lex_state = 1321}, - [4971] = {.lex_state = 1321}, - [4972] = {.lex_state = 1321}, - [4973] = {.lex_state = 1321}, - [4974] = {.lex_state = 1321, .external_lex_state = 11}, - [4975] = {.lex_state = 1321}, - [4976] = {.lex_state = 1321}, - [4977] = {.lex_state = 1321}, - [4978] = {.lex_state = 1321}, - [4979] = {.lex_state = 1321}, - [4980] = {.lex_state = 1321}, - [4981] = {.lex_state = 1321}, - [4982] = {.lex_state = 1321}, - [4983] = {.lex_state = 1321}, - [4984] = {.lex_state = 1321}, - [4985] = {.lex_state = 1321}, - [4986] = {.lex_state = 1321}, - [4987] = {.lex_state = 1321}, - [4988] = {.lex_state = 1321}, - [4989] = {.lex_state = 1321}, - [4990] = {.lex_state = 1321}, - [4991] = {.lex_state = 1321}, - [4992] = {.lex_state = 1321}, - [4993] = {.lex_state = 1321}, - [4994] = {.lex_state = 1321}, - [4995] = {.lex_state = 1321}, - [4996] = {.lex_state = 1321, .external_lex_state = 11}, - [4997] = {.lex_state = 1321}, - [4998] = {.lex_state = 1321}, - [4999] = {.lex_state = 1321}, - [5000] = {.lex_state = 1321}, - [5001] = {.lex_state = 1321}, - [5002] = {.lex_state = 203}, - [5003] = {.lex_state = 185}, - [5004] = {.lex_state = 1321}, - [5005] = {.lex_state = 1321}, - [5006] = {.lex_state = 1321}, - [5007] = {.lex_state = 1321}, - [5008] = {.lex_state = 1321, .external_lex_state = 11}, - [5009] = {.lex_state = 1321}, - [5010] = {.lex_state = 1321}, - [5011] = {.lex_state = 1321}, - [5012] = {.lex_state = 1321}, - [5013] = {.lex_state = 1321}, - [5014] = {.lex_state = 1321}, - [5015] = {.lex_state = 1321}, - [5016] = {.lex_state = 1321}, - [5017] = {.lex_state = 1321}, - [5018] = {.lex_state = 1321}, - [5019] = {.lex_state = 1321}, - [5020] = {.lex_state = 1321, .external_lex_state = 11}, - [5021] = {.lex_state = 1321}, - [5022] = {.lex_state = 1321}, - [5023] = {.lex_state = 1321, .external_lex_state = 11}, - [5024] = {.lex_state = 1321}, - [5025] = {.lex_state = 1321}, - [5026] = {.lex_state = 1321}, - [5027] = {.lex_state = 1321}, - [5028] = {.lex_state = 1321, .external_lex_state = 11}, - [5029] = {.lex_state = 1321}, - [5030] = {.lex_state = 1321}, - [5031] = {.lex_state = 1321}, - [5032] = {.lex_state = 30}, - [5033] = {.lex_state = 1321}, - [5034] = {.lex_state = 1321}, - [5035] = {.lex_state = 1321}, - [5036] = {.lex_state = 1321}, - [5037] = {.lex_state = 1321}, - [5038] = {.lex_state = 1321}, - [5039] = {.lex_state = 33, .external_lex_state = 19}, - [5040] = {.lex_state = 1321}, - [5041] = {.lex_state = 1321, .external_lex_state = 11}, - [5042] = {.lex_state = 40}, - [5043] = {.lex_state = 1321}, - [5044] = {.lex_state = 1321}, - [5045] = {.lex_state = 1321}, - [5046] = {.lex_state = 1321}, - [5047] = {.lex_state = 1321}, - [5048] = {.lex_state = 1321}, - [5049] = {.lex_state = 1321}, - [5050] = {.lex_state = 1321}, - [5051] = {.lex_state = 40}, - [5052] = {.lex_state = 1321}, - [5053] = {.lex_state = 189}, - [5054] = {.lex_state = 1321}, - [5055] = {.lex_state = 1321}, - [5056] = {.lex_state = 40}, - [5057] = {.lex_state = 1321}, - [5058] = {.lex_state = 1321}, - [5059] = {.lex_state = 1321}, - [5060] = {.lex_state = 1321}, - [5061] = {.lex_state = 1321}, - [5062] = {.lex_state = 1321}, - [5063] = {.lex_state = 1321}, - [5064] = {.lex_state = 1321}, - [5065] = {.lex_state = 1321}, - [5066] = {.lex_state = 1321}, - [5067] = {.lex_state = 1321}, - [5068] = {.lex_state = 1321}, - [5069] = {.lex_state = 1321}, - [5070] = {.lex_state = 1321}, - [5071] = {.lex_state = 1321, .external_lex_state = 11}, - [5072] = {.lex_state = 1321, .external_lex_state = 11}, - [5073] = {.lex_state = 1321}, - [5074] = {.lex_state = 1321}, - [5075] = {.lex_state = 1321, .external_lex_state = 11}, - [5076] = {.lex_state = 1321}, - [5077] = {.lex_state = 1321, .external_lex_state = 7}, - [5078] = {.lex_state = 1321}, - [5079] = {.lex_state = 1321}, - [5080] = {.lex_state = 1321}, - [5081] = {.lex_state = 1321}, - [5082] = {.lex_state = 1321}, - [5083] = {.lex_state = 1321}, - [5084] = {.lex_state = 1321}, - [5085] = {.lex_state = 1321}, - [5086] = {.lex_state = 1321}, - [5087] = {.lex_state = 1321}, - [5088] = {.lex_state = 1321}, - [5089] = {.lex_state = 30}, - [5090] = {.lex_state = 1321, .external_lex_state = 20}, - [5091] = {.lex_state = 1321}, - [5092] = {.lex_state = 1321}, - [5093] = {.lex_state = 207}, - [5094] = {.lex_state = 1321, .external_lex_state = 11}, - [5095] = {.lex_state = 1321}, - [5096] = {.lex_state = 1321}, - [5097] = {.lex_state = 30}, - [5098] = {.lex_state = 1321}, - [5099] = {.lex_state = 1321}, - [5100] = {.lex_state = 39}, - [5101] = {.lex_state = 1321}, - [5102] = {.lex_state = 30}, - [5103] = {.lex_state = 1321, .external_lex_state = 11}, - [5104] = {.lex_state = 37}, - [5105] = {.lex_state = 1321}, - [5106] = {.lex_state = 1321}, - [5107] = {.lex_state = 26}, - [5108] = {.lex_state = 1321}, - [5109] = {.lex_state = 30}, - [5110] = {.lex_state = 1321, .external_lex_state = 11}, - [5111] = {.lex_state = 1321}, - [5112] = {.lex_state = 1321}, - [5113] = {.lex_state = 1321}, - [5114] = {.lex_state = 1321}, - [5115] = {.lex_state = 30}, - [5116] = {.lex_state = 1321}, - [5117] = {.lex_state = 34}, - [5118] = {.lex_state = 1321}, - [5119] = {.lex_state = 1321}, - [5120] = {.lex_state = 1321}, - [5121] = {.lex_state = 1321}, - [5122] = {.lex_state = 1321}, - [5123] = {.lex_state = 30}, - [5124] = {.lex_state = 1321, .external_lex_state = 11}, - [5125] = {.lex_state = 1321}, - [5126] = {.lex_state = 37}, - [5127] = {.lex_state = 1321}, - [5128] = {.lex_state = 1321}, - [5129] = {.lex_state = 1321}, - [5130] = {.lex_state = 1321}, - [5131] = {.lex_state = 1321}, - [5132] = {.lex_state = 1321, .external_lex_state = 11}, - [5133] = {.lex_state = 30}, - [5134] = {.lex_state = 30}, - [5135] = {.lex_state = 1321, .external_lex_state = 11}, - [5136] = {.lex_state = 1321}, - [5137] = {.lex_state = 207}, - [5138] = {.lex_state = 1321}, - [5139] = {.lex_state = 1321, .external_lex_state = 11}, - [5140] = {.lex_state = 1321}, - [5141] = {.lex_state = 30}, - [5142] = {.lex_state = 1321, .external_lex_state = 11}, - [5143] = {.lex_state = 1321}, - [5144] = {.lex_state = 1321}, - [5145] = {.lex_state = 1321}, - [5146] = {.lex_state = 1321}, - [5147] = {.lex_state = 207}, - [5148] = {.lex_state = 1321}, - [5149] = {.lex_state = 1321}, - [5150] = {.lex_state = 1321}, - [5151] = {.lex_state = 184}, - [5152] = {.lex_state = 1321}, - [5153] = {.lex_state = 1321}, - [5154] = {.lex_state = 1321}, - [5155] = {.lex_state = 39}, - [5156] = {.lex_state = 1321}, - [5157] = {.lex_state = 30}, - [5158] = {.lex_state = 30}, - [5159] = {.lex_state = 1321}, - [5160] = {.lex_state = 1321}, - [5161] = {.lex_state = 26}, - [5162] = {.lex_state = 30}, - [5163] = {.lex_state = 1321}, - [5164] = {.lex_state = 207}, - [5165] = {.lex_state = 1321}, - [5166] = {.lex_state = 1321}, - [5167] = {.lex_state = 1321}, - [5168] = {.lex_state = 1321}, - [5169] = {.lex_state = 1321}, - [5170] = {.lex_state = 26}, - [5171] = {.lex_state = 1321}, - [5172] = {.lex_state = 1321, .external_lex_state = 11}, - [5173] = {.lex_state = 30}, - [5174] = {.lex_state = 1321}, - [5175] = {.lex_state = 37}, - [5176] = {.lex_state = 34}, - [5177] = {.lex_state = 26}, - [5178] = {.lex_state = 30}, - [5179] = {.lex_state = 30}, - [5180] = {.lex_state = 1321}, - [5181] = {.lex_state = 1321, .external_lex_state = 11}, - [5182] = {.lex_state = 26}, - [5183] = {.lex_state = 184}, - [5184] = {.lex_state = 34}, - [5185] = {.lex_state = 1321}, + [4690] = {.lex_state = 30, .external_lex_state = 7}, + [4691] = {.lex_state = 1329}, + [4692] = {.lex_state = 1329}, + [4693] = {.lex_state = 1329, .external_lex_state = 11}, + [4694] = {.lex_state = 137}, + [4695] = {.lex_state = 1329}, + [4696] = {.lex_state = 192}, + [4697] = {.lex_state = 1329}, + [4698] = {.lex_state = 40}, + [4699] = {.lex_state = 1329}, + [4700] = {.lex_state = 1329}, + [4701] = {.lex_state = 1329}, + [4702] = {.lex_state = 1329}, + [4703] = {.lex_state = 1329}, + [4704] = {.lex_state = 1329}, + [4705] = {.lex_state = 137}, + [4706] = {.lex_state = 137}, + [4707] = {.lex_state = 1329}, + [4708] = {.lex_state = 1329}, + [4709] = {.lex_state = 1329, .external_lex_state = 11}, + [4710] = {.lex_state = 1329, .external_lex_state = 11}, + [4711] = {.lex_state = 1329}, + [4712] = {.lex_state = 1329, .external_lex_state = 11}, + [4713] = {.lex_state = 1329}, + [4714] = {.lex_state = 1329}, + [4715] = {.lex_state = 1329}, + [4716] = {.lex_state = 1329, .external_lex_state = 21}, + [4717] = {.lex_state = 1329}, + [4718] = {.lex_state = 1329}, + [4719] = {.lex_state = 1329}, + [4720] = {.lex_state = 1329}, + [4721] = {.lex_state = 1329}, + [4722] = {.lex_state = 1329}, + [4723] = {.lex_state = 1329}, + [4724] = {.lex_state = 1329}, + [4725] = {.lex_state = 1329}, + [4726] = {.lex_state = 1329}, + [4727] = {.lex_state = 1329}, + [4728] = {.lex_state = 1329}, + [4729] = {.lex_state = 1329, .external_lex_state = 22}, + [4730] = {.lex_state = 1329}, + [4731] = {.lex_state = 1329}, + [4732] = {.lex_state = 1329}, + [4733] = {.lex_state = 1329, .external_lex_state = 11}, + [4734] = {.lex_state = 1329, .external_lex_state = 11}, + [4735] = {.lex_state = 1329}, + [4736] = {.lex_state = 1329}, + [4737] = {.lex_state = 1329}, + [4738] = {.lex_state = 1329}, + [4739] = {.lex_state = 1329}, + [4740] = {.lex_state = 1329}, + [4741] = {.lex_state = 1329}, + [4742] = {.lex_state = 211}, + [4743] = {.lex_state = 137}, + [4744] = {.lex_state = 1329}, + [4745] = {.lex_state = 1329}, + [4746] = {.lex_state = 137}, + [4747] = {.lex_state = 1329}, + [4748] = {.lex_state = 1329}, + [4749] = {.lex_state = 1329}, + [4750] = {.lex_state = 1329, .external_lex_state = 7}, + [4751] = {.lex_state = 1329, .external_lex_state = 23}, + [4752] = {.lex_state = 1329, .external_lex_state = 11}, + [4753] = {.lex_state = 1329, .external_lex_state = 11}, + [4754] = {.lex_state = 1329}, + [4755] = {.lex_state = 1329}, + [4756] = {.lex_state = 1329}, + [4757] = {.lex_state = 1329}, + [4758] = {.lex_state = 1329}, + [4759] = {.lex_state = 1329, .external_lex_state = 11}, + [4760] = {.lex_state = 196}, + [4761] = {.lex_state = 40}, + [4762] = {.lex_state = 196}, + [4763] = {.lex_state = 1329}, + [4764] = {.lex_state = 1329, .external_lex_state = 11}, + [4765] = {.lex_state = 1329, .external_lex_state = 11}, + [4766] = {.lex_state = 1329, .external_lex_state = 11}, + [4767] = {.lex_state = 1329, .external_lex_state = 11}, + [4768] = {.lex_state = 1329}, + [4769] = {.lex_state = 1329}, + [4770] = {.lex_state = 1329, .external_lex_state = 11}, + [4771] = {.lex_state = 40}, + [4772] = {.lex_state = 1329}, + [4773] = {.lex_state = 1329}, + [4774] = {.lex_state = 1329}, + [4775] = {.lex_state = 1329, .external_lex_state = 7}, + [4776] = {.lex_state = 1329}, + [4777] = {.lex_state = 1329}, + [4778] = {.lex_state = 1329}, + [4779] = {.lex_state = 1329}, + [4780] = {.lex_state = 1329}, + [4781] = {.lex_state = 1329}, + [4782] = {.lex_state = 205}, + [4783] = {.lex_state = 1329}, + [4784] = {.lex_state = 1329}, + [4785] = {.lex_state = 1329}, + [4786] = {.lex_state = 1329}, + [4787] = {.lex_state = 1329}, + [4788] = {.lex_state = 1329}, + [4789] = {.lex_state = 1329}, + [4790] = {.lex_state = 1329}, + [4791] = {.lex_state = 1329}, + [4792] = {.lex_state = 1329}, + [4793] = {.lex_state = 1329}, + [4794] = {.lex_state = 68}, + [4795] = {.lex_state = 212}, + [4796] = {.lex_state = 1329}, + [4797] = {.lex_state = 211}, + [4798] = {.lex_state = 1329}, + [4799] = {.lex_state = 1329, .external_lex_state = 11}, + [4800] = {.lex_state = 211}, + [4801] = {.lex_state = 1329}, + [4802] = {.lex_state = 1329}, + [4803] = {.lex_state = 211}, + [4804] = {.lex_state = 1329}, + [4805] = {.lex_state = 211}, + [4806] = {.lex_state = 1329}, + [4807] = {.lex_state = 1329}, + [4808] = {.lex_state = 1329}, + [4809] = {.lex_state = 1329}, + [4810] = {.lex_state = 1329}, + [4811] = {.lex_state = 1329}, + [4812] = {.lex_state = 211}, + [4813] = {.lex_state = 1329}, + [4814] = {.lex_state = 1329}, + [4815] = {.lex_state = 1329}, + [4816] = {.lex_state = 1329}, + [4817] = {.lex_state = 211}, + [4818] = {.lex_state = 1329}, + [4819] = {.lex_state = 1329}, + [4820] = {.lex_state = 1329}, + [4821] = {.lex_state = 1329}, + [4822] = {.lex_state = 1329}, + [4823] = {.lex_state = 211}, + [4824] = {.lex_state = 1329}, + [4825] = {.lex_state = 1329}, + [4826] = {.lex_state = 1329, .external_lex_state = 11}, + [4827] = {.lex_state = 1329}, + [4828] = {.lex_state = 211}, + [4829] = {.lex_state = 1329}, + [4830] = {.lex_state = 1329}, + [4831] = {.lex_state = 1329}, + [4832] = {.lex_state = 1329}, + [4833] = {.lex_state = 1329}, + [4834] = {.lex_state = 1329}, + [4835] = {.lex_state = 1329}, + [4836] = {.lex_state = 1329}, + [4837] = {.lex_state = 1329}, + [4838] = {.lex_state = 1329}, + [4839] = {.lex_state = 1329}, + [4840] = {.lex_state = 1329}, + [4841] = {.lex_state = 1329}, + [4842] = {.lex_state = 1329}, + [4843] = {.lex_state = 1329}, + [4844] = {.lex_state = 1329}, + [4845] = {.lex_state = 1329}, + [4846] = {.lex_state = 40}, + [4847] = {.lex_state = 1329}, + [4848] = {.lex_state = 1329}, + [4849] = {.lex_state = 1329}, + [4850] = {.lex_state = 1329}, + [4851] = {.lex_state = 1329}, + [4852] = {.lex_state = 1329}, + [4853] = {.lex_state = 1329}, + [4854] = {.lex_state = 1329}, + [4855] = {.lex_state = 1329}, + [4856] = {.lex_state = 1329}, + [4857] = {.lex_state = 1329}, + [4858] = {.lex_state = 1329}, + [4859] = {.lex_state = 191}, + [4860] = {.lex_state = 1329}, + [4861] = {.lex_state = 1329}, + [4862] = {.lex_state = 1329}, + [4863] = {.lex_state = 1329, .external_lex_state = 11}, + [4864] = {.lex_state = 1329}, + [4865] = {.lex_state = 1329}, + [4866] = {.lex_state = 1329}, + [4867] = {.lex_state = 1329, .external_lex_state = 11}, + [4868] = {.lex_state = 1329}, + [4869] = {.lex_state = 1329}, + [4870] = {.lex_state = 1329}, + [4871] = {.lex_state = 1329}, + [4872] = {.lex_state = 1329}, + [4873] = {.lex_state = 1329}, + [4874] = {.lex_state = 1329}, + [4875] = {.lex_state = 1329}, + [4876] = {.lex_state = 1329}, + [4877] = {.lex_state = 205}, + [4878] = {.lex_state = 1329}, + [4879] = {.lex_state = 1329}, + [4880] = {.lex_state = 1329}, + [4881] = {.lex_state = 1329}, + [4882] = {.lex_state = 1329}, + [4883] = {.lex_state = 1329}, + [4884] = {.lex_state = 30}, + [4885] = {.lex_state = 1329}, + [4886] = {.lex_state = 1329, .external_lex_state = 11}, + [4887] = {.lex_state = 1329}, + [4888] = {.lex_state = 1329}, + [4889] = {.lex_state = 1329}, + [4890] = {.lex_state = 1329}, + [4891] = {.lex_state = 1329}, + [4892] = {.lex_state = 1329}, + [4893] = {.lex_state = 1329}, + [4894] = {.lex_state = 1329}, + [4895] = {.lex_state = 1329}, + [4896] = {.lex_state = 1329}, + [4897] = {.lex_state = 1329}, + [4898] = {.lex_state = 1329}, + [4899] = {.lex_state = 1329}, + [4900] = {.lex_state = 1329}, + [4901] = {.lex_state = 1329}, + [4902] = {.lex_state = 1329}, + [4903] = {.lex_state = 1329}, + [4904] = {.lex_state = 1329}, + [4905] = {.lex_state = 1329}, + [4906] = {.lex_state = 1329}, + [4907] = {.lex_state = 1329}, + [4908] = {.lex_state = 1329}, + [4909] = {.lex_state = 1329}, + [4910] = {.lex_state = 1329}, + [4911] = {.lex_state = 1329}, + [4912] = {.lex_state = 1329}, + [4913] = {.lex_state = 1329}, + [4914] = {.lex_state = 192}, + [4915] = {.lex_state = 68}, + [4916] = {.lex_state = 1329}, + [4917] = {.lex_state = 1329, .external_lex_state = 11}, + [4918] = {.lex_state = 1329}, + [4919] = {.lex_state = 1329}, + [4920] = {.lex_state = 1329}, + [4921] = {.lex_state = 1329}, + [4922] = {.lex_state = 212}, + [4923] = {.lex_state = 1329}, + [4924] = {.lex_state = 211}, + [4925] = {.lex_state = 1329}, + [4926] = {.lex_state = 1329}, + [4927] = {.lex_state = 1329}, + [4928] = {.lex_state = 1329}, + [4929] = {.lex_state = 30}, + [4930] = {.lex_state = 1329}, + [4931] = {.lex_state = 1329}, + [4932] = {.lex_state = 68}, + [4933] = {.lex_state = 1329}, + [4934] = {.lex_state = 1329}, + [4935] = {.lex_state = 1329}, + [4936] = {.lex_state = 1329}, + [4937] = {.lex_state = 68}, + [4938] = {.lex_state = 1329}, + [4939] = {.lex_state = 1329}, + [4940] = {.lex_state = 1329}, + [4941] = {.lex_state = 1329}, + [4942] = {.lex_state = 1329, .external_lex_state = 11}, + [4943] = {.lex_state = 1329}, + [4944] = {.lex_state = 1329}, + [4945] = {.lex_state = 1329}, + [4946] = {.lex_state = 1329}, + [4947] = {.lex_state = 1329}, + [4948] = {.lex_state = 1329}, + [4949] = {.lex_state = 1329}, + [4950] = {.lex_state = 1329}, + [4951] = {.lex_state = 1329}, + [4952] = {.lex_state = 1329}, + [4953] = {.lex_state = 1329}, + [4954] = {.lex_state = 1329}, + [4955] = {.lex_state = 1329}, + [4956] = {.lex_state = 1329}, + [4957] = {.lex_state = 1329}, + [4958] = {.lex_state = 1329}, + [4959] = {.lex_state = 1329}, + [4960] = {.lex_state = 39}, + [4961] = {.lex_state = 1329}, + [4962] = {.lex_state = 1329}, + [4963] = {.lex_state = 1329}, + [4964] = {.lex_state = 1329}, + [4965] = {.lex_state = 1329}, + [4966] = {.lex_state = 1329}, + [4967] = {.lex_state = 1329}, + [4968] = {.lex_state = 1329}, + [4969] = {.lex_state = 1329}, + [4970] = {.lex_state = 1329}, + [4971] = {.lex_state = 1329}, + [4972] = {.lex_state = 1329}, + [4973] = {.lex_state = 1329}, + [4974] = {.lex_state = 1329}, + [4975] = {.lex_state = 1329}, + [4976] = {.lex_state = 1329}, + [4977] = {.lex_state = 1329}, + [4978] = {.lex_state = 1329}, + [4979] = {.lex_state = 1329}, + [4980] = {.lex_state = 1329}, + [4981] = {.lex_state = 1329}, + [4982] = {.lex_state = 1329}, + [4983] = {.lex_state = 1329}, + [4984] = {.lex_state = 1329}, + [4985] = {.lex_state = 1329}, + [4986] = {.lex_state = 1329}, + [4987] = {.lex_state = 40}, + [4988] = {.lex_state = 1329}, + [4989] = {.lex_state = 1329}, + [4990] = {.lex_state = 1329}, + [4991] = {.lex_state = 1329}, + [4992] = {.lex_state = 1329}, + [4993] = {.lex_state = 1329}, + [4994] = {.lex_state = 1329}, + [4995] = {.lex_state = 1329, .external_lex_state = 11}, + [4996] = {.lex_state = 1329}, + [4997] = {.lex_state = 1329, .external_lex_state = 11}, + [4998] = {.lex_state = 1329}, + [4999] = {.lex_state = 1329}, + [5000] = {.lex_state = 1329}, + [5001] = {.lex_state = 1329, .external_lex_state = 11}, + [5002] = {.lex_state = 1329}, + [5003] = {.lex_state = 1329}, + [5004] = {.lex_state = 1329}, + [5005] = {.lex_state = 1329}, + [5006] = {.lex_state = 1329}, + [5007] = {.lex_state = 1329}, + [5008] = {.lex_state = 1329}, + [5009] = {.lex_state = 1329}, + [5010] = {.lex_state = 1329}, + [5011] = {.lex_state = 1329}, + [5012] = {.lex_state = 1329}, + [5013] = {.lex_state = 1329, .external_lex_state = 21}, + [5014] = {.lex_state = 30}, + [5015] = {.lex_state = 192}, + [5016] = {.lex_state = 1329, .external_lex_state = 11}, + [5017] = {.lex_state = 1329}, + [5018] = {.lex_state = 1329}, + [5019] = {.lex_state = 1329}, + [5020] = {.lex_state = 68}, + [5021] = {.lex_state = 40}, + [5022] = {.lex_state = 1329}, + [5023] = {.lex_state = 1329}, + [5024] = {.lex_state = 1329}, + [5025] = {.lex_state = 1329}, + [5026] = {.lex_state = 1329}, + [5027] = {.lex_state = 1329}, + [5028] = {.lex_state = 1329}, + [5029] = {.lex_state = 1329}, + [5030] = {.lex_state = 1329}, + [5031] = {.lex_state = 1329}, + [5032] = {.lex_state = 1329}, + [5033] = {.lex_state = 1329}, + [5034] = {.lex_state = 68}, + [5035] = {.lex_state = 1329}, + [5036] = {.lex_state = 1329}, + [5037] = {.lex_state = 1329}, + [5038] = {.lex_state = 1329}, + [5039] = {.lex_state = 1329}, + [5040] = {.lex_state = 1329}, + [5041] = {.lex_state = 1329}, + [5042] = {.lex_state = 1329}, + [5043] = {.lex_state = 211}, + [5044] = {.lex_state = 1329}, + [5045] = {.lex_state = 1329}, + [5046] = {.lex_state = 1329}, + [5047] = {.lex_state = 1329}, + [5048] = {.lex_state = 33, .external_lex_state = 20}, + [5049] = {.lex_state = 1329}, + [5050] = {.lex_state = 1329}, + [5051] = {.lex_state = 30}, + [5052] = {.lex_state = 1329, .external_lex_state = 11}, + [5053] = {.lex_state = 1329}, + [5054] = {.lex_state = 1329}, + [5055] = {.lex_state = 1329}, + [5056] = {.lex_state = 1329}, + [5057] = {.lex_state = 40}, + [5058] = {.lex_state = 40}, + [5059] = {.lex_state = 1329}, + [5060] = {.lex_state = 1329}, + [5061] = {.lex_state = 1329}, + [5062] = {.lex_state = 1329}, + [5063] = {.lex_state = 1329}, + [5064] = {.lex_state = 1329}, + [5065] = {.lex_state = 1329}, + [5066] = {.lex_state = 1329}, + [5067] = {.lex_state = 1329}, + [5068] = {.lex_state = 1329}, + [5069] = {.lex_state = 1329}, + [5070] = {.lex_state = 1329}, + [5071] = {.lex_state = 1329}, + [5072] = {.lex_state = 1329}, + [5073] = {.lex_state = 1329}, + [5074] = {.lex_state = 1329}, + [5075] = {.lex_state = 1329}, + [5076] = {.lex_state = 1329}, + [5077] = {.lex_state = 1329}, + [5078] = {.lex_state = 1329}, + [5079] = {.lex_state = 1329}, + [5080] = {.lex_state = 1329}, + [5081] = {.lex_state = 1329}, + [5082] = {.lex_state = 1329}, + [5083] = {.lex_state = 1329}, + [5084] = {.lex_state = 1329}, + [5085] = {.lex_state = 1329}, + [5086] = {.lex_state = 1329}, + [5087] = {.lex_state = 1329}, + [5088] = {.lex_state = 1329}, + [5089] = {.lex_state = 1329}, + [5090] = {.lex_state = 1329}, + [5091] = {.lex_state = 1329}, + [5092] = {.lex_state = 1329}, + [5093] = {.lex_state = 1329}, + [5094] = {.lex_state = 1329}, + [5095] = {.lex_state = 1329}, + [5096] = {.lex_state = 1329}, + [5097] = {.lex_state = 1329}, + [5098] = {.lex_state = 1329}, + [5099] = {.lex_state = 1329}, + [5100] = {.lex_state = 1329}, + [5101] = {.lex_state = 1329}, + [5102] = {.lex_state = 1329}, + [5103] = {.lex_state = 211}, + [5104] = {.lex_state = 1329, .external_lex_state = 11}, + [5105] = {.lex_state = 1329}, + [5106] = {.lex_state = 1329}, + [5107] = {.lex_state = 1329, .external_lex_state = 11}, + [5108] = {.lex_state = 1329}, + [5109] = {.lex_state = 1329}, + [5110] = {.lex_state = 40}, + [5111] = {.lex_state = 1329}, + [5112] = {.lex_state = 1329}, + [5113] = {.lex_state = 1329}, + [5114] = {.lex_state = 191}, + [5115] = {.lex_state = 1329}, + [5116] = {.lex_state = 1329}, + [5117] = {.lex_state = 1329, .external_lex_state = 21}, + [5118] = {.lex_state = 1329}, + [5119] = {.lex_state = 1329}, + [5120] = {.lex_state = 1329}, + [5121] = {.lex_state = 1329}, + [5122] = {.lex_state = 1329}, + [5123] = {.lex_state = 1329}, + [5124] = {.lex_state = 1329}, + [5125] = {.lex_state = 1329, .external_lex_state = 11}, + [5126] = {.lex_state = 1329}, + [5127] = {.lex_state = 1329}, + [5128] = {.lex_state = 1329}, + [5129] = {.lex_state = 1329}, + [5130] = {.lex_state = 1329}, + [5131] = {.lex_state = 1329}, + [5132] = {.lex_state = 1329}, + [5133] = {.lex_state = 40}, + [5134] = {.lex_state = 1329, .external_lex_state = 11}, + [5135] = {.lex_state = 1329}, + [5136] = {.lex_state = 30, .external_lex_state = 7}, + [5137] = {.lex_state = 1329}, + [5138] = {.lex_state = 1329}, + [5139] = {.lex_state = 1329}, + [5140] = {.lex_state = 1329}, + [5141] = {.lex_state = 1329}, + [5142] = {.lex_state = 1329}, + [5143] = {.lex_state = 1329}, + [5144] = {.lex_state = 1329}, + [5145] = {.lex_state = 1329}, + [5146] = {.lex_state = 1329}, + [5147] = {.lex_state = 1329}, + [5148] = {.lex_state = 1329}, + [5149] = {.lex_state = 1329}, + [5150] = {.lex_state = 1329}, + [5151] = {.lex_state = 1329}, + [5152] = {.lex_state = 1329}, + [5153] = {.lex_state = 1329}, + [5154] = {.lex_state = 1329}, + [5155] = {.lex_state = 1329, .external_lex_state = 11}, + [5156] = {.lex_state = 1329}, + [5157] = {.lex_state = 1329}, + [5158] = {.lex_state = 1329}, + [5159] = {.lex_state = 1329}, + [5160] = {.lex_state = 40}, + [5161] = {.lex_state = 40}, + [5162] = {.lex_state = 1329}, + [5163] = {.lex_state = 1329}, + [5164] = {.lex_state = 1329}, + [5165] = {.lex_state = 1329}, + [5166] = {.lex_state = 1329}, + [5167] = {.lex_state = 1329}, + [5168] = {.lex_state = 1329}, + [5169] = {.lex_state = 1329}, + [5170] = {.lex_state = 1329}, + [5171] = {.lex_state = 1329}, + [5172] = {.lex_state = 1329}, + [5173] = {.lex_state = 1329}, + [5174] = {.lex_state = 1329}, + [5175] = {.lex_state = 1329, .external_lex_state = 17}, + [5176] = {.lex_state = 1329}, + [5177] = {.lex_state = 1329}, + [5178] = {.lex_state = 1329, .external_lex_state = 11}, + [5179] = {.lex_state = 1329}, + [5180] = {.lex_state = 1329}, + [5181] = {.lex_state = 1329}, + [5182] = {.lex_state = 30}, + [5183] = {.lex_state = 1329, .external_lex_state = 11}, + [5184] = {.lex_state = 1329}, + [5185] = {.lex_state = 1329}, [5186] = {.lex_state = 30}, - [5187] = {.lex_state = 1321}, - [5188] = {.lex_state = 1321}, - [5189] = {.lex_state = 1321}, + [5187] = {.lex_state = 1329}, + [5188] = {.lex_state = 215}, + [5189] = {.lex_state = 1329}, [5190] = {.lex_state = 34}, - [5191] = {.lex_state = 1321}, - [5192] = {.lex_state = 1321}, - [5193] = {.lex_state = 34}, - [5194] = {.lex_state = 1321}, - [5195] = {.lex_state = 1321}, - [5196] = {.lex_state = 1321}, - [5197] = {.lex_state = 34}, - [5198] = {.lex_state = 30}, - [5199] = {.lex_state = 30}, - [5200] = {.lex_state = 1321}, - [5201] = {.lex_state = 1321}, - [5202] = {.lex_state = 207}, - [5203] = {.lex_state = 30}, - [5204] = {.lex_state = 1321, .external_lex_state = 11}, - [5205] = {.lex_state = 26}, - [5206] = {.lex_state = 1321}, - [5207] = {.lex_state = 1321}, - [5208] = {.lex_state = 1321}, - [5209] = {.lex_state = 1321}, - [5210] = {.lex_state = 1321}, - [5211] = {.lex_state = 1321}, - [5212] = {.lex_state = 1321}, - [5213] = {.lex_state = 30}, - [5214] = {.lex_state = 30}, - [5215] = {.lex_state = 1321}, - [5216] = {.lex_state = 1321}, - [5217] = {.lex_state = 34}, - [5218] = {.lex_state = 26}, - [5219] = {.lex_state = 30}, - [5220] = {.lex_state = 34}, - [5221] = {.lex_state = 1321}, - [5222] = {.lex_state = 34}, - [5223] = {.lex_state = 30}, - [5224] = {.lex_state = 30}, - [5225] = {.lex_state = 30}, - [5226] = {.lex_state = 30}, - [5227] = {.lex_state = 1321}, - [5228] = {.lex_state = 1321}, - [5229] = {.lex_state = 34}, - [5230] = {.lex_state = 1321}, - [5231] = {.lex_state = 1321}, - [5232] = {.lex_state = 1321}, - [5233] = {.lex_state = 1321, .external_lex_state = 11}, - [5234] = {.lex_state = 1321}, - [5235] = {.lex_state = 1321}, - [5236] = {.lex_state = 30}, - [5237] = {.lex_state = 1321}, - [5238] = {.lex_state = 196}, - [5239] = {.lex_state = 34}, - [5240] = {.lex_state = 1321}, - [5241] = {.lex_state = 1321}, - [5242] = {.lex_state = 1321}, - [5243] = {.lex_state = 1321}, - [5244] = {.lex_state = 1321}, - [5245] = {.lex_state = 207}, - [5246] = {.lex_state = 1321}, - [5247] = {.lex_state = 1321}, - [5248] = {.lex_state = 39}, - [5249] = {.lex_state = 1321}, - [5250] = {.lex_state = 1321}, - [5251] = {.lex_state = 208}, - [5252] = {.lex_state = 34}, - [5253] = {.lex_state = 26}, - [5254] = {.lex_state = 196}, - [5255] = {.lex_state = 207}, - [5256] = {.lex_state = 1321}, - [5257] = {.lex_state = 1321}, - [5258] = {.lex_state = 1321, .external_lex_state = 11}, - [5259] = {.lex_state = 1321}, - [5260] = {.lex_state = 26}, - [5261] = {.lex_state = 1321}, - [5262] = {.lex_state = 1321, .external_lex_state = 11}, - [5263] = {.lex_state = 1321}, - [5264] = {.lex_state = 1321}, - [5265] = {.lex_state = 1321}, - [5266] = {.lex_state = 1321}, - [5267] = {.lex_state = 1321, .external_lex_state = 11}, - [5268] = {.lex_state = 1321}, - [5269] = {.lex_state = 1321}, - [5270] = {.lex_state = 1321}, - [5271] = {.lex_state = 1321}, - [5272] = {.lex_state = 1321}, - [5273] = {.lex_state = 1321}, - [5274] = {.lex_state = 34}, - [5275] = {.lex_state = 1321, .external_lex_state = 11}, - [5276] = {.lex_state = 196}, - [5277] = {.lex_state = 1321, .external_lex_state = 11}, - [5278] = {.lex_state = 208}, - [5279] = {.lex_state = 1321}, - [5280] = {.lex_state = 30}, - [5281] = {.lex_state = 1321}, - [5282] = {.lex_state = 1321, .external_lex_state = 11}, - [5283] = {.lex_state = 1321}, - [5284] = {.lex_state = 1321}, - [5285] = {.lex_state = 1321}, - [5286] = {.lex_state = 1321}, - [5287] = {.lex_state = 1321}, - [5288] = {.lex_state = 1321}, - [5289] = {.lex_state = 196}, - [5290] = {.lex_state = 1321}, - [5291] = {.lex_state = 30}, - [5292] = {.lex_state = 1321}, - [5293] = {.lex_state = 1321}, - [5294] = {.lex_state = 1321}, - [5295] = {.lex_state = 1321}, - [5296] = {.lex_state = 1321}, - [5297] = {.lex_state = 1321, .external_lex_state = 11}, - [5298] = {.lex_state = 1321}, - [5299] = {.lex_state = 1321}, - [5300] = {.lex_state = 208}, - [5301] = {.lex_state = 34}, - [5302] = {.lex_state = 1321}, - [5303] = {.lex_state = 1321}, - [5304] = {.lex_state = 1321}, - [5305] = {.lex_state = 1321}, - [5306] = {.lex_state = 1321}, - [5307] = {.lex_state = 1321}, - [5308] = {.lex_state = 1321}, + [5191] = {.lex_state = 30}, + [5192] = {.lex_state = 1329}, + [5193] = {.lex_state = 1329}, + [5194] = {.lex_state = 1329}, + [5195] = {.lex_state = 1329}, + [5196] = {.lex_state = 1329}, + [5197] = {.lex_state = 30}, + [5198] = {.lex_state = 1329}, + [5199] = {.lex_state = 1329}, + [5200] = {.lex_state = 1329}, + [5201] = {.lex_state = 1329}, + [5202] = {.lex_state = 30}, + [5203] = {.lex_state = 1329}, + [5204] = {.lex_state = 1329}, + [5205] = {.lex_state = 1329}, + [5206] = {.lex_state = 1329}, + [5207] = {.lex_state = 1329}, + [5208] = {.lex_state = 26}, + [5209] = {.lex_state = 1329}, + [5210] = {.lex_state = 1329}, + [5211] = {.lex_state = 1329, .external_lex_state = 11}, + [5212] = {.lex_state = 1329}, + [5213] = {.lex_state = 1329}, + [5214] = {.lex_state = 1329}, + [5215] = {.lex_state = 1329}, + [5216] = {.lex_state = 215}, + [5217] = {.lex_state = 1329}, + [5218] = {.lex_state = 215}, + [5219] = {.lex_state = 1329, .external_lex_state = 11}, + [5220] = {.lex_state = 1329}, + [5221] = {.lex_state = 1329}, + [5222] = {.lex_state = 1329}, + [5223] = {.lex_state = 1329}, + [5224] = {.lex_state = 26}, + [5225] = {.lex_state = 1329}, + [5226] = {.lex_state = 1329}, + [5227] = {.lex_state = 1329}, + [5228] = {.lex_state = 1329}, + [5229] = {.lex_state = 1329}, + [5230] = {.lex_state = 26}, + [5231] = {.lex_state = 215}, + [5232] = {.lex_state = 1329}, + [5233] = {.lex_state = 30}, + [5234] = {.lex_state = 1329}, + [5235] = {.lex_state = 26}, + [5236] = {.lex_state = 215}, + [5237] = {.lex_state = 1329}, + [5238] = {.lex_state = 1329}, + [5239] = {.lex_state = 1329}, + [5240] = {.lex_state = 1329}, + [5241] = {.lex_state = 1329}, + [5242] = {.lex_state = 1329}, + [5243] = {.lex_state = 1329}, + [5244] = {.lex_state = 1329}, + [5245] = {.lex_state = 1329}, + [5246] = {.lex_state = 1329}, + [5247] = {.lex_state = 1329, .external_lex_state = 11}, + [5248] = {.lex_state = 1329}, + [5249] = {.lex_state = 1329}, + [5250] = {.lex_state = 30}, + [5251] = {.lex_state = 39}, + [5252] = {.lex_state = 1329}, + [5253] = {.lex_state = 34}, + [5254] = {.lex_state = 1329, .external_lex_state = 17}, + [5255] = {.lex_state = 1329}, + [5256] = {.lex_state = 1329}, + [5257] = {.lex_state = 1329}, + [5258] = {.lex_state = 1329}, + [5259] = {.lex_state = 30}, + [5260] = {.lex_state = 1329}, + [5261] = {.lex_state = 30}, + [5262] = {.lex_state = 1329}, + [5263] = {.lex_state = 1329}, + [5264] = {.lex_state = 1329}, + [5265] = {.lex_state = 1329, .external_lex_state = 17}, + [5266] = {.lex_state = 1329}, + [5267] = {.lex_state = 1329}, + [5268] = {.lex_state = 1329}, + [5269] = {.lex_state = 1329}, + [5270] = {.lex_state = 30}, + [5271] = {.lex_state = 206}, + [5272] = {.lex_state = 34}, + [5273] = {.lex_state = 1329}, + [5274] = {.lex_state = 1329}, + [5275] = {.lex_state = 1329}, + [5276] = {.lex_state = 1329}, + [5277] = {.lex_state = 1329}, + [5278] = {.lex_state = 215}, + [5279] = {.lex_state = 1329}, + [5280] = {.lex_state = 1329}, + [5281] = {.lex_state = 30}, + [5282] = {.lex_state = 1329}, + [5283] = {.lex_state = 1329}, + [5284] = {.lex_state = 26}, + [5285] = {.lex_state = 26}, + [5286] = {.lex_state = 203}, + [5287] = {.lex_state = 1329}, + [5288] = {.lex_state = 215}, + [5289] = {.lex_state = 1329}, + [5290] = {.lex_state = 1329}, + [5291] = {.lex_state = 1329}, + [5292] = {.lex_state = 26}, + [5293] = {.lex_state = 1329}, + [5294] = {.lex_state = 30}, + [5295] = {.lex_state = 1329}, + [5296] = {.lex_state = 1329}, + [5297] = {.lex_state = 1329}, + [5298] = {.lex_state = 1329}, + [5299] = {.lex_state = 26}, + [5300] = {.lex_state = 68}, + [5301] = {.lex_state = 1329}, + [5302] = {.lex_state = 1329}, + [5303] = {.lex_state = 1329}, + [5304] = {.lex_state = 1329}, + [5305] = {.lex_state = 1329}, + [5306] = {.lex_state = 30}, + [5307] = {.lex_state = 1329}, + [5308] = {.lex_state = 1329, .external_lex_state = 11}, [5309] = {.lex_state = 30}, - [5310] = {.lex_state = 196}, - [5311] = {.lex_state = 1321}, - [5312] = {.lex_state = 1321, .external_lex_state = 11}, - [5313] = {.lex_state = 1321}, - [5314] = {.lex_state = 1321}, - [5315] = {.lex_state = 1321}, - [5316] = {.lex_state = 1321}, - [5317] = {.lex_state = 1321}, - [5318] = {.lex_state = 1321}, - [5319] = {.lex_state = 1321}, - [5320] = {.lex_state = 1321}, - [5321] = {.lex_state = 1321}, - [5322] = {.lex_state = 1321}, - [5323] = {.lex_state = 1321}, - [5324] = {.lex_state = 1321}, - [5325] = {.lex_state = 1321}, - [5326] = {.lex_state = 1321}, - [5327] = {.lex_state = 1321}, - [5328] = {.lex_state = 1321}, - [5329] = {.lex_state = 1321}, - [5330] = {.lex_state = 1321}, - [5331] = {.lex_state = 1321}, - [5332] = {.lex_state = 34}, - [5333] = {.lex_state = 1321}, - [5334] = {.lex_state = 1321}, - [5335] = {.lex_state = 184}, - [5336] = {.lex_state = 1321}, - [5337] = {.lex_state = 30}, - [5338] = {.lex_state = 1321}, - [5339] = {.lex_state = 30}, - [5340] = {.lex_state = 1321}, - [5341] = {.lex_state = 30}, - [5342] = {.lex_state = 1321}, - [5343] = {.lex_state = 30}, - [5344] = {.lex_state = 26}, - [5345] = {.lex_state = 1321}, - [5346] = {.lex_state = 1321, .external_lex_state = 20}, - [5347] = {.lex_state = 1321}, - [5348] = {.lex_state = 30}, - [5349] = {.lex_state = 1321}, - [5350] = {.lex_state = 1321}, - [5351] = {.lex_state = 1321}, - [5352] = {.lex_state = 1321}, - [5353] = {.lex_state = 1321}, - [5354] = {.lex_state = 1321}, - [5355] = {.lex_state = 207}, - [5356] = {.lex_state = 30}, - [5357] = {.lex_state = 207}, - [5358] = {.lex_state = 1321}, - [5359] = {.lex_state = 1321}, - [5360] = {.lex_state = 1321}, - [5361] = {.lex_state = 1321}, - [5362] = {.lex_state = 1321}, - [5363] = {.lex_state = 1321}, - [5364] = {.lex_state = 207}, - [5365] = {.lex_state = 1321}, - [5366] = {.lex_state = 30}, - [5367] = {.lex_state = 30}, - [5368] = {.lex_state = 199}, - [5369] = {.lex_state = 1321}, - [5370] = {.lex_state = 1321}, - [5371] = {.lex_state = 26}, - [5372] = {.lex_state = 1321}, - [5373] = {.lex_state = 1321}, - [5374] = {.lex_state = 1321}, - [5375] = {.lex_state = 1321}, - [5376] = {.lex_state = 1321}, - [5377] = {.lex_state = 39}, - [5378] = {.lex_state = 1321}, - [5379] = {.lex_state = 39}, - [5380] = {.lex_state = 1321}, - [5381] = {.lex_state = 1321}, - [5382] = {.lex_state = 1321}, - [5383] = {.lex_state = 30}, - [5384] = {.lex_state = 1321}, - [5385] = {.lex_state = 30}, - [5386] = {.lex_state = 30}, - [5387] = {.lex_state = 38}, - [5388] = {.lex_state = 1321}, - [5389] = {.lex_state = 1321}, - [5390] = {.lex_state = 1321}, - [5391] = {.lex_state = 1321}, - [5392] = {.lex_state = 1321}, - [5393] = {.lex_state = 1321}, - [5394] = {.lex_state = 1321}, - [5395] = {.lex_state = 1321}, + [5310] = {.lex_state = 1329}, + [5311] = {.lex_state = 34}, + [5312] = {.lex_state = 1329}, + [5313] = {.lex_state = 34}, + [5314] = {.lex_state = 1329, .external_lex_state = 11}, + [5315] = {.lex_state = 34}, + [5316] = {.lex_state = 1329}, + [5317] = {.lex_state = 1329, .external_lex_state = 11}, + [5318] = {.lex_state = 1329}, + [5319] = {.lex_state = 34}, + [5320] = {.lex_state = 1329, .external_lex_state = 11}, + [5321] = {.lex_state = 34}, + [5322] = {.lex_state = 1329, .external_lex_state = 11}, + [5323] = {.lex_state = 1329}, + [5324] = {.lex_state = 1329}, + [5325] = {.lex_state = 34}, + [5326] = {.lex_state = 34}, + [5327] = {.lex_state = 26}, + [5328] = {.lex_state = 37}, + [5329] = {.lex_state = 34}, + [5330] = {.lex_state = 34}, + [5331] = {.lex_state = 34}, + [5332] = {.lex_state = 1329}, + [5333] = {.lex_state = 1329, .external_lex_state = 11}, + [5334] = {.lex_state = 1329}, + [5335] = {.lex_state = 30, .external_lex_state = 11}, + [5336] = {.lex_state = 1329, .external_lex_state = 17}, + [5337] = {.lex_state = 1329}, + [5338] = {.lex_state = 30}, + [5339] = {.lex_state = 215}, + [5340] = {.lex_state = 1329}, + [5341] = {.lex_state = 1329}, + [5342] = {.lex_state = 1329}, + [5343] = {.lex_state = 1329, .external_lex_state = 11}, + [5344] = {.lex_state = 30}, + [5345] = {.lex_state = 30}, + [5346] = {.lex_state = 1329, .external_lex_state = 11}, + [5347] = {.lex_state = 1329}, + [5348] = {.lex_state = 26}, + [5349] = {.lex_state = 37}, + [5350] = {.lex_state = 39}, + [5351] = {.lex_state = 1329}, + [5352] = {.lex_state = 30, .external_lex_state = 11}, + [5353] = {.lex_state = 215}, + [5354] = {.lex_state = 30}, + [5355] = {.lex_state = 1329, .external_lex_state = 11}, + [5356] = {.lex_state = 1329}, + [5357] = {.lex_state = 1329}, + [5358] = {.lex_state = 215}, + [5359] = {.lex_state = 1329}, + [5360] = {.lex_state = 1329, .external_lex_state = 11}, + [5361] = {.lex_state = 1329, .external_lex_state = 11}, + [5362] = {.lex_state = 39}, + [5363] = {.lex_state = 1329}, + [5364] = {.lex_state = 37}, + [5365] = {.lex_state = 1329}, + [5366] = {.lex_state = 1329}, + [5367] = {.lex_state = 1329}, + [5368] = {.lex_state = 1329}, + [5369] = {.lex_state = 1329}, + [5370] = {.lex_state = 1329}, + [5371] = {.lex_state = 30}, + [5372] = {.lex_state = 1329}, + [5373] = {.lex_state = 1329}, + [5374] = {.lex_state = 1329}, + [5375] = {.lex_state = 1329}, + [5376] = {.lex_state = 1329}, + [5377] = {.lex_state = 1329}, + [5378] = {.lex_state = 1329}, + [5379] = {.lex_state = 1329}, + [5380] = {.lex_state = 1329}, + [5381] = {.lex_state = 34}, + [5382] = {.lex_state = 1329, .external_lex_state = 11}, + [5383] = {.lex_state = 26}, + [5384] = {.lex_state = 30}, + [5385] = {.lex_state = 1329}, + [5386] = {.lex_state = 1329, .external_lex_state = 11}, + [5387] = {.lex_state = 1329, .external_lex_state = 17}, + [5388] = {.lex_state = 1329, .external_lex_state = 11}, + [5389] = {.lex_state = 30}, + [5390] = {.lex_state = 1329}, + [5391] = {.lex_state = 1329}, + [5392] = {.lex_state = 1329}, + [5393] = {.lex_state = 30}, + [5394] = {.lex_state = 1329}, + [5395] = {.lex_state = 1329}, [5396] = {.lex_state = 30}, - [5397] = {.lex_state = 30}, - [5398] = {.lex_state = 1321}, - [5399] = {.lex_state = 30}, - [5400] = {.lex_state = 1321}, - [5401] = {.lex_state = 30}, - [5402] = {.lex_state = 39}, + [5397] = {.lex_state = 1329}, + [5398] = {.lex_state = 1329}, + [5399] = {.lex_state = 1329}, + [5400] = {.lex_state = 1329}, + [5401] = {.lex_state = 1329}, + [5402] = {.lex_state = 1329}, [5403] = {.lex_state = 30}, - [5404] = {.lex_state = 1321}, - [5405] = {.lex_state = 1321}, - [5406] = {.lex_state = 1321}, - [5407] = {.lex_state = 1321}, - [5408] = {.lex_state = 1321}, - [5409] = {.lex_state = 1321}, - [5410] = {.lex_state = 1321}, - [5411] = {.lex_state = 1321}, - [5412] = {.lex_state = 1321}, - [5413] = {.lex_state = 1321}, - [5414] = {.lex_state = 1321}, - [5415] = {.lex_state = 1321}, - [5416] = {.lex_state = 1321}, - [5417] = {.lex_state = 1321}, - [5418] = {.lex_state = 30}, - [5419] = {.lex_state = 36}, - [5420] = {.lex_state = 1321}, - [5421] = {.lex_state = 1321}, - [5422] = {.lex_state = 1321}, - [5423] = {.lex_state = 30}, - [5424] = {.lex_state = 1321}, - [5425] = {.lex_state = 1321}, - [5426] = {.lex_state = 30}, - [5427] = {.lex_state = 1321}, - [5428] = {.lex_state = 30}, - [5429] = {.lex_state = 30}, - [5430] = {.lex_state = 1321}, - [5431] = {.lex_state = 1321}, - [5432] = {.lex_state = 1321}, - [5433] = {.lex_state = 1321}, - [5434] = {.lex_state = 1321, .external_lex_state = 20}, - [5435] = {.lex_state = 1321}, - [5436] = {.lex_state = 1321}, - [5437] = {.lex_state = 1321}, - [5438] = {.lex_state = 1321}, - [5439] = {.lex_state = 64}, - [5440] = {.lex_state = 1321}, - [5441] = {.lex_state = 37}, - [5442] = {.lex_state = 36}, - [5443] = {.lex_state = 1321}, - [5444] = {.lex_state = 1321}, - [5445] = {.lex_state = 39}, - [5446] = {.lex_state = 1321}, - [5447] = {.lex_state = 30}, - [5448] = {.lex_state = 1321}, - [5449] = {.lex_state = 1321}, - [5450] = {.lex_state = 30}, - [5451] = {.lex_state = 1321}, - [5452] = {.lex_state = 1321}, - [5453] = {.lex_state = 30}, - [5454] = {.lex_state = 1321}, - [5455] = {.lex_state = 1321}, - [5456] = {.lex_state = 30}, - [5457] = {.lex_state = 1321}, - [5458] = {.lex_state = 1321}, - [5459] = {.lex_state = 1321}, - [5460] = {.lex_state = 30}, - [5461] = {.lex_state = 1321}, + [5404] = {.lex_state = 30}, + [5405] = {.lex_state = 1329}, + [5406] = {.lex_state = 30, .external_lex_state = 11}, + [5407] = {.lex_state = 1329}, + [5408] = {.lex_state = 1329}, + [5409] = {.lex_state = 1329}, + [5410] = {.lex_state = 1329}, + [5411] = {.lex_state = 1329}, + [5412] = {.lex_state = 1329}, + [5413] = {.lex_state = 1329}, + [5414] = {.lex_state = 1329}, + [5415] = {.lex_state = 1329}, + [5416] = {.lex_state = 1329}, + [5417] = {.lex_state = 1329}, + [5418] = {.lex_state = 1329}, + [5419] = {.lex_state = 203}, + [5420] = {.lex_state = 1329}, + [5421] = {.lex_state = 1329}, + [5422] = {.lex_state = 1329}, + [5423] = {.lex_state = 1329}, + [5424] = {.lex_state = 1329}, + [5425] = {.lex_state = 203}, + [5426] = {.lex_state = 1329}, + [5427] = {.lex_state = 216}, + [5428] = {.lex_state = 1329}, + [5429] = {.lex_state = 1329}, + [5430] = {.lex_state = 1329, .external_lex_state = 23}, + [5431] = {.lex_state = 203}, + [5432] = {.lex_state = 1329}, + [5433] = {.lex_state = 1329}, + [5434] = {.lex_state = 1329, .external_lex_state = 22}, + [5435] = {.lex_state = 1329}, + [5436] = {.lex_state = 34}, + [5437] = {.lex_state = 216}, + [5438] = {.lex_state = 1329, .external_lex_state = 11}, + [5439] = {.lex_state = 1329}, + [5440] = {.lex_state = 1329}, + [5441] = {.lex_state = 1329}, + [5442] = {.lex_state = 1329}, + [5443] = {.lex_state = 1329}, + [5444] = {.lex_state = 1329}, + [5445] = {.lex_state = 203}, + [5446] = {.lex_state = 1329}, + [5447] = {.lex_state = 1329}, + [5448] = {.lex_state = 1329}, + [5449] = {.lex_state = 1329}, + [5450] = {.lex_state = 1329, .external_lex_state = 17}, + [5451] = {.lex_state = 30, .external_lex_state = 11}, + [5452] = {.lex_state = 1329}, + [5453] = {.lex_state = 1329}, + [5454] = {.lex_state = 1329}, + [5455] = {.lex_state = 1329}, + [5456] = {.lex_state = 216}, + [5457] = {.lex_state = 1329}, + [5458] = {.lex_state = 1329}, + [5459] = {.lex_state = 1329}, + [5460] = {.lex_state = 1329}, + [5461] = {.lex_state = 1329, .external_lex_state = 7}, [5462] = {.lex_state = 30}, - [5463] = {.lex_state = 1321}, - [5464] = {.lex_state = 1321}, - [5465] = {.lex_state = 1321}, - [5466] = {.lex_state = 36}, - [5467] = {.lex_state = 1321}, - [5468] = {.lex_state = 36}, - [5469] = {.lex_state = 39}, - [5470] = {.lex_state = 1321}, - [5471] = {.lex_state = 1321}, - [5472] = {.lex_state = 30}, - [5473] = {.lex_state = 30}, - [5474] = {.lex_state = 36}, - [5475] = {.lex_state = 1321}, + [5463] = {.lex_state = 1329}, + [5464] = {.lex_state = 1329}, + [5465] = {.lex_state = 30}, + [5466] = {.lex_state = 1329}, + [5467] = {.lex_state = 30}, + [5468] = {.lex_state = 1329}, + [5469] = {.lex_state = 36}, + [5470] = {.lex_state = 30}, + [5471] = {.lex_state = 30}, + [5472] = {.lex_state = 1329}, + [5473] = {.lex_state = 1329}, + [5474] = {.lex_state = 1329}, + [5475] = {.lex_state = 1329}, [5476] = {.lex_state = 30}, - [5477] = {.lex_state = 40}, - [5478] = {.lex_state = 1321}, - [5479] = {.lex_state = 1321}, - [5480] = {.lex_state = 1321}, + [5477] = {.lex_state = 1329, .external_lex_state = 21}, + [5478] = {.lex_state = 1329}, + [5479] = {.lex_state = 1329}, + [5480] = {.lex_state = 1329, .external_lex_state = 17}, [5481] = {.lex_state = 30}, - [5482] = {.lex_state = 1321}, - [5483] = {.lex_state = 1321}, - [5484] = {.lex_state = 1321}, - [5485] = {.lex_state = 39}, - [5486] = {.lex_state = 1321}, - [5487] = {.lex_state = 39}, - [5488] = {.lex_state = 30}, - [5489] = {.lex_state = 1321}, - [5490] = {.lex_state = 1321}, - [5491] = {.lex_state = 1321}, - [5492] = {.lex_state = 1321}, + [5482] = {.lex_state = 36, .external_lex_state = 17}, + [5483] = {.lex_state = 39}, + [5484] = {.lex_state = 1329}, + [5485] = {.lex_state = 30}, + [5486] = {.lex_state = 1329}, + [5487] = {.lex_state = 1329}, + [5488] = {.lex_state = 1329}, + [5489] = {.lex_state = 1329}, + [5490] = {.lex_state = 1329}, + [5491] = {.lex_state = 1329}, + [5492] = {.lex_state = 1329}, [5493] = {.lex_state = 30}, - [5494] = {.lex_state = 36}, - [5495] = {.lex_state = 1321}, - [5496] = {.lex_state = 30}, - [5497] = {.lex_state = 1321}, - [5498] = {.lex_state = 1321}, - [5499] = {.lex_state = 1321}, - [5500] = {.lex_state = 1321}, - [5501] = {.lex_state = 30}, - [5502] = {.lex_state = 30}, - [5503] = {.lex_state = 1321}, + [5494] = {.lex_state = 1329}, + [5495] = {.lex_state = 30}, + [5496] = {.lex_state = 1329}, + [5497] = {.lex_state = 30}, + [5498] = {.lex_state = 1329}, + [5499] = {.lex_state = 1329}, + [5500] = {.lex_state = 1329}, + [5501] = {.lex_state = 1329}, + [5502] = {.lex_state = 1329}, + [5503] = {.lex_state = 1329}, [5504] = {.lex_state = 30}, [5505] = {.lex_state = 30}, - [5506] = {.lex_state = 1321}, - [5507] = {.lex_state = 1321}, - [5508] = {.lex_state = 1321}, - [5509] = {.lex_state = 1321}, - [5510] = {.lex_state = 30}, - [5511] = {.lex_state = 39}, - [5512] = {.lex_state = 1321}, - [5513] = {.lex_state = 39}, - [5514] = {.lex_state = 1321}, - [5515] = {.lex_state = 30}, - [5516] = {.lex_state = 1321}, - [5517] = {.lex_state = 1321}, - [5518] = {.lex_state = 1321}, - [5519] = {.lex_state = 1321}, - [5520] = {.lex_state = 37}, - [5521] = {.lex_state = 1321}, - [5522] = {.lex_state = 36}, - [5523] = {.lex_state = 1321}, - [5524] = {.lex_state = 1321}, - [5525] = {.lex_state = 1321}, - [5526] = {.lex_state = 40}, - [5527] = {.lex_state = 1321}, - [5528] = {.lex_state = 1321}, - [5529] = {.lex_state = 1321}, - [5530] = {.lex_state = 1321}, - [5531] = {.lex_state = 30}, - [5532] = {.lex_state = 1321}, - [5533] = {.lex_state = 1321}, - [5534] = {.lex_state = 1321}, - [5535] = {.lex_state = 1321}, - [5536] = {.lex_state = 30}, - [5537] = {.lex_state = 1321}, - [5538] = {.lex_state = 1321}, + [5506] = {.lex_state = 1329}, + [5507] = {.lex_state = 1329}, + [5508] = {.lex_state = 1329}, + [5509] = {.lex_state = 30}, + [5510] = {.lex_state = 1329}, + [5511] = {.lex_state = 36, .external_lex_state = 17}, + [5512] = {.lex_state = 1329}, + [5513] = {.lex_state = 1329}, + [5514] = {.lex_state = 1329}, + [5515] = {.lex_state = 1329}, + [5516] = {.lex_state = 39}, + [5517] = {.lex_state = 1329}, + [5518] = {.lex_state = 1329}, + [5519] = {.lex_state = 30}, + [5520] = {.lex_state = 30}, + [5521] = {.lex_state = 1329}, + [5522] = {.lex_state = 30}, + [5523] = {.lex_state = 1329}, + [5524] = {.lex_state = 1329}, + [5525] = {.lex_state = 1329}, + [5526] = {.lex_state = 1329}, + [5527] = {.lex_state = 1329}, + [5528] = {.lex_state = 39}, + [5529] = {.lex_state = 36, .external_lex_state = 17}, + [5530] = {.lex_state = 1329}, + [5531] = {.lex_state = 1329}, + [5532] = {.lex_state = 1329}, + [5533] = {.lex_state = 30}, + [5534] = {.lex_state = 1329}, + [5535] = {.lex_state = 1329}, + [5536] = {.lex_state = 36}, + [5537] = {.lex_state = 1329}, + [5538] = {.lex_state = 1329}, [5539] = {.lex_state = 30}, - [5540] = {.lex_state = 30}, - [5541] = {.lex_state = 1321}, - [5542] = {.lex_state = 30}, - [5543] = {.lex_state = 1321, .external_lex_state = 7}, - [5544] = {.lex_state = 36}, - [5545] = {.lex_state = 1321}, - [5546] = {.lex_state = 1321}, - [5547] = {.lex_state = 1321}, - [5548] = {.lex_state = 1321}, - [5549] = {.lex_state = 1321}, - [5550] = {.lex_state = 39}, - [5551] = {.lex_state = 26}, - [5552] = {.lex_state = 1321}, - [5553] = {.lex_state = 1321}, - [5554] = {.lex_state = 30}, - [5555] = {.lex_state = 30}, - [5556] = {.lex_state = 30}, - [5557] = {.lex_state = 30}, - [5558] = {.lex_state = 1321}, - [5559] = {.lex_state = 1321}, - [5560] = {.lex_state = 40}, - [5561] = {.lex_state = 1321}, - [5562] = {.lex_state = 1321}, - [5563] = {.lex_state = 1321}, - [5564] = {.lex_state = 1321}, - [5565] = {.lex_state = 30}, - [5566] = {.lex_state = 1321}, - [5567] = {.lex_state = 64}, - [5568] = {.lex_state = 1321}, - [5569] = {.lex_state = 1321}, - [5570] = {.lex_state = 30}, + [5540] = {.lex_state = 1329}, + [5541] = {.lex_state = 30}, + [5542] = {.lex_state = 1329}, + [5543] = {.lex_state = 36, .external_lex_state = 17}, + [5544] = {.lex_state = 1329}, + [5545] = {.lex_state = 1329}, + [5546] = {.lex_state = 36}, + [5547] = {.lex_state = 1329}, + [5548] = {.lex_state = 1329}, + [5549] = {.lex_state = 1329}, + [5550] = {.lex_state = 30}, + [5551] = {.lex_state = 1329}, + [5552] = {.lex_state = 1329, .external_lex_state = 17}, + [5553] = {.lex_state = 30}, + [5554] = {.lex_state = 1329}, + [5555] = {.lex_state = 36}, + [5556] = {.lex_state = 1329}, + [5557] = {.lex_state = 1329}, + [5558] = {.lex_state = 1329}, + [5559] = {.lex_state = 1329}, + [5560] = {.lex_state = 1329}, + [5561] = {.lex_state = 66}, + [5562] = {.lex_state = 1329}, + [5563] = {.lex_state = 1329}, + [5564] = {.lex_state = 30}, + [5565] = {.lex_state = 1329}, + [5566] = {.lex_state = 30}, + [5567] = {.lex_state = 26}, + [5568] = {.lex_state = 1329}, + [5569] = {.lex_state = 1329}, + [5570] = {.lex_state = 1329}, [5571] = {.lex_state = 30}, [5572] = {.lex_state = 30}, - [5573] = {.lex_state = 1321}, - [5574] = {.lex_state = 1321}, - [5575] = {.lex_state = 1321}, - [5576] = {.lex_state = 1321}, - [5577] = {.lex_state = 30}, - [5578] = {.lex_state = 1321}, + [5573] = {.lex_state = 1329}, + [5574] = {.lex_state = 1329}, + [5575] = {.lex_state = 30}, + [5576] = {.lex_state = 1329}, + [5577] = {.lex_state = 1329}, + [5578] = {.lex_state = 1329}, [5579] = {.lex_state = 30}, - [5580] = {.lex_state = 1321, .external_lex_state = 7}, - [5581] = {.lex_state = 1321}, - [5582] = {.lex_state = 1321}, - [5583] = {.lex_state = 1321}, - [5584] = {.lex_state = 30}, - [5585] = {.lex_state = 1321}, - [5586] = {.lex_state = 1321}, - [5587] = {.lex_state = 1321}, - [5588] = {.lex_state = 1321}, - [5589] = {.lex_state = 1321}, - [5590] = {.lex_state = 1321}, - [5591] = {.lex_state = 1321}, - [5592] = {.lex_state = 30}, - [5593] = {.lex_state = 1321}, - [5594] = {.lex_state = 30}, - [5595] = {.lex_state = 1321}, + [5580] = {.lex_state = 1329}, + [5581] = {.lex_state = 30}, + [5582] = {.lex_state = 1329, .external_lex_state = 21}, + [5583] = {.lex_state = 1329}, + [5584] = {.lex_state = 37}, + [5585] = {.lex_state = 1329}, + [5586] = {.lex_state = 1329}, + [5587] = {.lex_state = 1329}, + [5588] = {.lex_state = 30}, + [5589] = {.lex_state = 1329}, + [5590] = {.lex_state = 1329}, + [5591] = {.lex_state = 1329}, + [5592] = {.lex_state = 1329}, + [5593] = {.lex_state = 36}, + [5594] = {.lex_state = 1329}, + [5595] = {.lex_state = 39}, [5596] = {.lex_state = 30}, - [5597] = {.lex_state = 1321}, - [5598] = {.lex_state = 1321}, - [5599] = {.lex_state = 1321}, - [5600] = {.lex_state = 1321}, - [5601] = {.lex_state = 1321}, - [5602] = {.lex_state = 30}, - [5603] = {.lex_state = 1321}, - [5604] = {.lex_state = 1321}, - [5605] = {.lex_state = 1321}, - [5606] = {.lex_state = 30}, - [5607] = {.lex_state = 1321}, - [5608] = {.lex_state = 1321}, + [5597] = {.lex_state = 1329}, + [5598] = {.lex_state = 1329}, + [5599] = {.lex_state = 1329}, + [5600] = {.lex_state = 30}, + [5601] = {.lex_state = 36}, + [5602] = {.lex_state = 1329}, + [5603] = {.lex_state = 1329}, + [5604] = {.lex_state = 1329}, + [5605] = {.lex_state = 30}, + [5606] = {.lex_state = 1329}, + [5607] = {.lex_state = 1329}, + [5608] = {.lex_state = 1329}, [5609] = {.lex_state = 30}, - [5610] = {.lex_state = 30}, - [5611] = {.lex_state = 1321}, - [5612] = {.lex_state = 1321}, - [5613] = {.lex_state = 30}, - [5614] = {.lex_state = 1321}, - [5615] = {.lex_state = 1321}, - [5616] = {.lex_state = 1321}, - [5617] = {.lex_state = 1321}, - [5618] = {.lex_state = 1321}, - [5619] = {.lex_state = 30}, - [5620] = {.lex_state = 30}, - [5621] = {.lex_state = 1321}, - [5622] = {.lex_state = 1321}, - [5623] = {.lex_state = 1321}, - [5624] = {.lex_state = 30}, - [5625] = {.lex_state = 1321}, - [5626] = {.lex_state = 1321}, - [5627] = {.lex_state = 1321}, - [5628] = {.lex_state = 38}, - [5629] = {.lex_state = 1321}, - [5630] = {.lex_state = 1321}, - [5631] = {.lex_state = 1321}, - [5632] = {.lex_state = 1321}, - [5633] = {.lex_state = 1321}, - [5634] = {.lex_state = 30}, - [5635] = {.lex_state = 1321}, - [5636] = {.lex_state = 1321}, - [5637] = {.lex_state = 1321}, - [5638] = {.lex_state = 30}, - [5639] = {.lex_state = 1321}, - [5640] = {.lex_state = 1321}, - [5641] = {.lex_state = 1321}, - [5642] = {.lex_state = 1321}, + [5610] = {.lex_state = 1329}, + [5611] = {.lex_state = 30}, + [5612] = {.lex_state = 1329}, + [5613] = {.lex_state = 1329}, + [5614] = {.lex_state = 1329}, + [5615] = {.lex_state = 1329}, + [5616] = {.lex_state = 1329}, + [5617] = {.lex_state = 1329}, + [5618] = {.lex_state = 1329}, + [5619] = {.lex_state = 1329}, + [5620] = {.lex_state = 1329}, + [5621] = {.lex_state = 1329}, + [5622] = {.lex_state = 1329}, + [5623] = {.lex_state = 1329}, + [5624] = {.lex_state = 37}, + [5625] = {.lex_state = 30}, + [5626] = {.lex_state = 36}, + [5627] = {.lex_state = 1329}, + [5628] = {.lex_state = 1329}, + [5629] = {.lex_state = 1329}, + [5630] = {.lex_state = 40}, + [5631] = {.lex_state = 1329}, + [5632] = {.lex_state = 1329}, + [5633] = {.lex_state = 1329}, + [5634] = {.lex_state = 1329}, + [5635] = {.lex_state = 30}, + [5636] = {.lex_state = 1329}, + [5637] = {.lex_state = 1329}, + [5638] = {.lex_state = 1329}, + [5639] = {.lex_state = 36}, + [5640] = {.lex_state = 30}, + [5641] = {.lex_state = 1329}, + [5642] = {.lex_state = 1329}, [5643] = {.lex_state = 30}, - [5644] = {.lex_state = 30}, - [5645] = {.lex_state = 1321}, - [5646] = {.lex_state = 30}, - [5647] = {.lex_state = 1321}, - [5648] = {.lex_state = 30}, - [5649] = {.lex_state = 1321}, - [5650] = {.lex_state = 1321}, - [5651] = {.lex_state = 30}, - [5652] = {.lex_state = 30}, - [5653] = {.lex_state = 26}, - [5654] = {.lex_state = 1321}, - [5655] = {.lex_state = 30}, - [5656] = {.lex_state = 1321}, - [5657] = {.lex_state = 1321}, + [5644] = {.lex_state = 1329}, + [5645] = {.lex_state = 1329}, + [5646] = {.lex_state = 1329}, + [5647] = {.lex_state = 30}, + [5648] = {.lex_state = 1329}, + [5649] = {.lex_state = 1329, .external_lex_state = 17}, + [5650] = {.lex_state = 30}, + [5651] = {.lex_state = 1329}, + [5652] = {.lex_state = 1329}, + [5653] = {.lex_state = 30}, + [5654] = {.lex_state = 1329}, + [5655] = {.lex_state = 1329}, + [5656] = {.lex_state = 1329}, + [5657] = {.lex_state = 1329}, [5658] = {.lex_state = 30}, [5659] = {.lex_state = 30}, [5660] = {.lex_state = 30}, - [5661] = {.lex_state = 30}, - [5662] = {.lex_state = 1321}, - [5663] = {.lex_state = 1321}, - [5664] = {.lex_state = 1321}, - [5665] = {.lex_state = 30}, - [5666] = {.lex_state = 1321}, - [5667] = {.lex_state = 64}, - [5668] = {.lex_state = 1321}, - [5669] = {.lex_state = 30}, - [5670] = {.lex_state = 30}, - [5671] = {.lex_state = 1321}, - [5672] = {.lex_state = 1321}, - [5673] = {.lex_state = 30}, + [5661] = {.lex_state = 1329}, + [5662] = {.lex_state = 1329}, + [5663] = {.lex_state = 1329}, + [5664] = {.lex_state = 40}, + [5665] = {.lex_state = 1329}, + [5666] = {.lex_state = 1329}, + [5667] = {.lex_state = 30}, + [5668] = {.lex_state = 40}, + [5669] = {.lex_state = 1329}, + [5670] = {.lex_state = 1329}, + [5671] = {.lex_state = 1329}, + [5672] = {.lex_state = 1329}, + [5673] = {.lex_state = 1329, .external_lex_state = 17}, [5674] = {.lex_state = 30}, [5675] = {.lex_state = 30}, - [5676] = {.lex_state = 30}, - [5677] = {.lex_state = 1321}, - [5678] = {.lex_state = 1321}, - [5679] = {.lex_state = 1321}, - [5680] = {.lex_state = 1321}, - [5681] = {.lex_state = 1321, .external_lex_state = 7}, - [5682] = {.lex_state = 1321}, - [5683] = {.lex_state = 30}, - [5684] = {.lex_state = 30}, - [5685] = {.lex_state = 1321}, - [5686] = {.lex_state = 1321}, + [5676] = {.lex_state = 39}, + [5677] = {.lex_state = 30}, + [5678] = {.lex_state = 1329}, + [5679] = {.lex_state = 30}, + [5680] = {.lex_state = 1329}, + [5681] = {.lex_state = 1329}, + [5682] = {.lex_state = 1329}, + [5683] = {.lex_state = 1329}, + [5684] = {.lex_state = 1329}, + [5685] = {.lex_state = 1329}, + [5686] = {.lex_state = 1329}, [5687] = {.lex_state = 30}, - [5688] = {.lex_state = 1321}, - [5689] = {.lex_state = 1321}, + [5688] = {.lex_state = 1329}, + [5689] = {.lex_state = 30}, [5690] = {.lex_state = 30}, - [5691] = {.lex_state = 1321}, - [5692] = {.lex_state = 30}, - [5693] = {.lex_state = 30}, - [5694] = {.lex_state = 1321}, - [5695] = {.lex_state = 1321}, - [5696] = {.lex_state = 30}, - [5697] = {.lex_state = 30}, - [5698] = {.lex_state = 1321}, - [5699] = {.lex_state = 1321}, - [5700] = {.lex_state = 30}, - [5701] = {.lex_state = 1321}, - [5702] = {.lex_state = 1321}, + [5691] = {.lex_state = 1329}, + [5692] = {.lex_state = 1329}, + [5693] = {.lex_state = 1329}, + [5694] = {.lex_state = 1329}, + [5695] = {.lex_state = 1329}, + [5696] = {.lex_state = 1329}, + [5697] = {.lex_state = 1329}, + [5698] = {.lex_state = 1329}, + [5699] = {.lex_state = 30}, + [5700] = {.lex_state = 1329}, + [5701] = {.lex_state = 1329, .external_lex_state = 17}, + [5702] = {.lex_state = 1329}, [5703] = {.lex_state = 30}, - [5704] = {.lex_state = 1321}, - [5705] = {.lex_state = 1321}, - [5706] = {.lex_state = 30}, - [5707] = {.lex_state = 30}, - [5708] = {.lex_state = 30}, - [5709] = {.lex_state = 1321}, + [5704] = {.lex_state = 1329}, + [5705] = {.lex_state = 1329}, + [5706] = {.lex_state = 1329}, + [5707] = {.lex_state = 1329}, + [5708] = {.lex_state = 1329}, + [5709] = {.lex_state = 1329}, [5710] = {.lex_state = 30}, - [5711] = {.lex_state = 1321}, - [5712] = {.lex_state = 1321}, - [5713] = {.lex_state = 30}, - [5714] = {.lex_state = 30}, - [5715] = {.lex_state = 1321, .external_lex_state = 7}, - [5716] = {.lex_state = 1321}, - [5717] = {.lex_state = 1321}, - [5718] = {.lex_state = 1321}, - [5719] = {.lex_state = 30}, - [5720] = {.lex_state = 1321}, - [5721] = {.lex_state = 30}, + [5711] = {.lex_state = 30}, + [5712] = {.lex_state = 1329}, + [5713] = {.lex_state = 1329}, + [5714] = {.lex_state = 1329}, + [5715] = {.lex_state = 1329}, + [5716] = {.lex_state = 30, .external_lex_state = 11}, + [5717] = {.lex_state = 1329}, + [5718] = {.lex_state = 1329}, + [5719] = {.lex_state = 1329}, + [5720] = {.lex_state = 1329}, + [5721] = {.lex_state = 1329}, [5722] = {.lex_state = 30}, - [5723] = {.lex_state = 1321}, - [5724] = {.lex_state = 1321}, + [5723] = {.lex_state = 1329}, + [5724] = {.lex_state = 1329}, [5725] = {.lex_state = 30}, - [5726] = {.lex_state = 1321}, - [5727] = {.lex_state = 1321}, - [5728] = {.lex_state = 1321}, - [5729] = {.lex_state = 1321}, - [5730] = {.lex_state = 36}, - [5731] = {.lex_state = 1321}, + [5726] = {.lex_state = 1329}, + [5727] = {.lex_state = 1329}, + [5728] = {.lex_state = 1329}, + [5729] = {.lex_state = 1329}, + [5730] = {.lex_state = 1329}, + [5731] = {.lex_state = 30}, [5732] = {.lex_state = 30}, - [5733] = {.lex_state = 1321}, - [5734] = {.lex_state = 40}, - [5735] = {.lex_state = 1321}, + [5733] = {.lex_state = 1329}, + [5734] = {.lex_state = 1329}, + [5735] = {.lex_state = 1329}, [5736] = {.lex_state = 30}, - [5737] = {.lex_state = 1321}, - [5738] = {.lex_state = 1321}, - [5739] = {.lex_state = 1321}, - [5740] = {.lex_state = 1321}, - [5741] = {.lex_state = 1321}, - [5742] = {.lex_state = 1321}, - [5743] = {.lex_state = 1321}, - [5744] = {.lex_state = 30}, - [5745] = {.lex_state = 1321}, - [5746] = {.lex_state = 1321}, - [5747] = {.lex_state = 30}, - [5748] = {.lex_state = 1321}, - [5749] = {.lex_state = 1321}, - [5750] = {.lex_state = 1321}, - [5751] = {.lex_state = 1321}, - [5752] = {.lex_state = 1321}, - [5753] = {.lex_state = 1321}, - [5754] = {.lex_state = 1321}, - [5755] = {.lex_state = 1321}, - [5756] = {.lex_state = 1321}, - [5757] = {.lex_state = 1321}, - [5758] = {.lex_state = 1321}, - [5759] = {.lex_state = 1321}, - [5760] = {.lex_state = 30}, - [5761] = {.lex_state = 1321}, - [5762] = {.lex_state = 30}, - [5763] = {.lex_state = 30}, - [5764] = {.lex_state = 1321}, - [5765] = {.lex_state = 1321}, - [5766] = {.lex_state = 1321}, - [5767] = {.lex_state = 40}, - [5768] = {.lex_state = 1321}, - [5769] = {.lex_state = 1321}, - [5770] = {.lex_state = 1321}, - [5771] = {.lex_state = 1321}, - [5772] = {.lex_state = 1321}, - [5773] = {.lex_state = 30}, - [5774] = {.lex_state = 1321}, - [5775] = {.lex_state = 1321}, - [5776] = {.lex_state = 36}, + [5737] = {.lex_state = 1329}, + [5738] = {.lex_state = 1329, .external_lex_state = 17}, + [5739] = {.lex_state = 1329}, + [5740] = {.lex_state = 1329}, + [5741] = {.lex_state = 1329}, + [5742] = {.lex_state = 1329}, + [5743] = {.lex_state = 1329}, + [5744] = {.lex_state = 1329}, + [5745] = {.lex_state = 1329}, + [5746] = {.lex_state = 1329}, + [5747] = {.lex_state = 1329}, + [5748] = {.lex_state = 30}, + [5749] = {.lex_state = 1329}, + [5750] = {.lex_state = 1329}, + [5751] = {.lex_state = 1329}, + [5752] = {.lex_state = 30}, + [5753] = {.lex_state = 1329}, + [5754] = {.lex_state = 1329}, + [5755] = {.lex_state = 1329}, + [5756] = {.lex_state = 1329}, + [5757] = {.lex_state = 30}, + [5758] = {.lex_state = 1329}, + [5759] = {.lex_state = 36}, + [5760] = {.lex_state = 1329}, + [5761] = {.lex_state = 30}, + [5762] = {.lex_state = 1329}, + [5763] = {.lex_state = 1329}, + [5764] = {.lex_state = 1329}, + [5765] = {.lex_state = 30}, + [5766] = {.lex_state = 1329}, + [5767] = {.lex_state = 1329}, + [5768] = {.lex_state = 30}, + [5769] = {.lex_state = 30}, + [5770] = {.lex_state = 1329}, + [5771] = {.lex_state = 30}, + [5772] = {.lex_state = 1329}, + [5773] = {.lex_state = 1329}, + [5774] = {.lex_state = 1329}, + [5775] = {.lex_state = 1329}, + [5776] = {.lex_state = 1329}, [5777] = {.lex_state = 30}, [5778] = {.lex_state = 30}, - [5779] = {.lex_state = 1321}, - [5780] = {.lex_state = 1321}, + [5779] = {.lex_state = 1329}, + [5780] = {.lex_state = 1329}, [5781] = {.lex_state = 30}, [5782] = {.lex_state = 30}, [5783] = {.lex_state = 30}, - [5784] = {.lex_state = 30}, - [5785] = {.lex_state = 1321}, - [5786] = {.lex_state = 1321}, - [5787] = {.lex_state = 1321}, - [5788] = {.lex_state = 1321}, - [5789] = {.lex_state = 1321}, - [5790] = {.lex_state = 1321}, - [5791] = {.lex_state = 1321}, + [5784] = {.lex_state = 1329}, + [5785] = {.lex_state = 30}, + [5786] = {.lex_state = 1329}, + [5787] = {.lex_state = 30}, + [5788] = {.lex_state = 30}, + [5789] = {.lex_state = 1329}, + [5790] = {.lex_state = 1329}, + [5791] = {.lex_state = 1329}, [5792] = {.lex_state = 30}, - [5793] = {.lex_state = 1321}, - [5794] = {.lex_state = 1321}, - [5795] = {.lex_state = 1321}, - [5796] = {.lex_state = 1321}, - [5797] = {.lex_state = 1321}, - [5798] = {.lex_state = 1321}, - [5799] = {.lex_state = 39}, - [5800] = {.lex_state = 1321}, - [5801] = {.lex_state = 1321}, - [5802] = {.lex_state = 1321}, - [5803] = {.lex_state = 1321}, - [5804] = {.lex_state = 1321}, - [5805] = {.lex_state = 1321}, - [5806] = {.lex_state = 1321}, - [5807] = {.lex_state = 1321}, - [5808] = {.lex_state = 1321}, - [5809] = {.lex_state = 1321}, - [5810] = {.lex_state = 1321}, + [5793] = {.lex_state = 30}, + [5794] = {.lex_state = 1329}, + [5795] = {.lex_state = 1329, .external_lex_state = 21}, + [5796] = {.lex_state = 30}, + [5797] = {.lex_state = 1329}, + [5798] = {.lex_state = 1329}, + [5799] = {.lex_state = 30}, + [5800] = {.lex_state = 30}, + [5801] = {.lex_state = 1329}, + [5802] = {.lex_state = 30}, + [5803] = {.lex_state = 1329}, + [5804] = {.lex_state = 30}, + [5805] = {.lex_state = 30}, + [5806] = {.lex_state = 1329}, + [5807] = {.lex_state = 1329}, + [5808] = {.lex_state = 1329}, + [5809] = {.lex_state = 1329}, + [5810] = {.lex_state = 1329, .external_lex_state = 7}, [5811] = {.lex_state = 30}, - [5812] = {.lex_state = 30}, - [5813] = {.lex_state = 1321}, - [5814] = {.lex_state = 1321}, - [5815] = {.lex_state = 1321}, - [5816] = {.lex_state = 1321}, - [5817] = {.lex_state = 1321}, - [5818] = {.lex_state = 1321}, - [5819] = {.lex_state = 1321}, - [5820] = {.lex_state = 1321}, - [5821] = {.lex_state = 1321}, - [5822] = {.lex_state = 30}, - [5823] = {.lex_state = 30}, - [5824] = {.lex_state = 1321}, + [5812] = {.lex_state = 1329}, + [5813] = {.lex_state = 1329}, + [5814] = {.lex_state = 1329}, + [5815] = {.lex_state = 1329}, + [5816] = {.lex_state = 30}, + [5817] = {.lex_state = 30}, + [5818] = {.lex_state = 66}, + [5819] = {.lex_state = 1329}, + [5820] = {.lex_state = 30}, + [5821] = {.lex_state = 30}, + [5822] = {.lex_state = 1329, .external_lex_state = 17}, + [5823] = {.lex_state = 1329}, + [5824] = {.lex_state = 1329}, [5825] = {.lex_state = 30}, - [5826] = {.lex_state = 1321}, - [5827] = {.lex_state = 1321}, - [5828] = {.lex_state = 30}, - [5829] = {.lex_state = 40}, - [5830] = {.lex_state = 1321}, - [5831] = {.lex_state = 1321}, - [5832] = {.lex_state = 1321}, - [5833] = {.lex_state = 1321}, - [5834] = {.lex_state = 1321}, - [5835] = {.lex_state = 1321}, - [5836] = {.lex_state = 30}, - [5837] = {.lex_state = 1321}, - [5838] = {.lex_state = 1321}, - [5839] = {.lex_state = 1321}, - [5840] = {.lex_state = 39}, - [5841] = {.lex_state = 30}, - [5842] = {.lex_state = 1321}, - [5843] = {.lex_state = 30}, - [5844] = {.lex_state = 1321}, - [5845] = {.lex_state = 64}, - [5846] = {.lex_state = 1321}, - [5847] = {.lex_state = 1321}, - [5848] = {.lex_state = 36}, - [5849] = {.lex_state = 1321}, - [5850] = {.lex_state = 1321}, - [5851] = {.lex_state = 1321}, - [5852] = {.lex_state = 40}, - [5853] = {.lex_state = 1321}, + [5826] = {.lex_state = 1329, .external_lex_state = 7}, + [5827] = {.lex_state = 30}, + [5828] = {.lex_state = 1329}, + [5829] = {.lex_state = 30}, + [5830] = {.lex_state = 30}, + [5831] = {.lex_state = 1329}, + [5832] = {.lex_state = 1329}, + [5833] = {.lex_state = 1329}, + [5834] = {.lex_state = 1329}, + [5835] = {.lex_state = 1329}, + [5836] = {.lex_state = 36}, + [5837] = {.lex_state = 1329}, + [5838] = {.lex_state = 1329}, + [5839] = {.lex_state = 1329}, + [5840] = {.lex_state = 40}, + [5841] = {.lex_state = 1329}, + [5842] = {.lex_state = 1329}, + [5843] = {.lex_state = 1329}, + [5844] = {.lex_state = 1329}, + [5845] = {.lex_state = 1329}, + [5846] = {.lex_state = 1329}, + [5847] = {.lex_state = 1329}, + [5848] = {.lex_state = 30}, + [5849] = {.lex_state = 1329}, + [5850] = {.lex_state = 30}, + [5851] = {.lex_state = 1329}, + [5852] = {.lex_state = 1329}, + [5853] = {.lex_state = 30}, [5854] = {.lex_state = 30}, - [5855] = {.lex_state = 1321}, - [5856] = {.lex_state = 1321}, - [5857] = {.lex_state = 1321}, - [5858] = {.lex_state = 1321}, - [5859] = {.lex_state = 1321}, - [5860] = {.lex_state = 36}, - [5861] = {.lex_state = 1321}, - [5862] = {.lex_state = 1321}, - [5863] = {.lex_state = 1321}, - [5864] = {.lex_state = 39}, - [5865] = {.lex_state = 1321}, - [5866] = {.lex_state = 1321}, - [5867] = {.lex_state = 1321}, - [5868] = {.lex_state = 1321}, + [5855] = {.lex_state = 30}, + [5856] = {.lex_state = 1329}, + [5857] = {.lex_state = 1329}, + [5858] = {.lex_state = 1329}, + [5859] = {.lex_state = 1329}, + [5860] = {.lex_state = 1329}, + [5861] = {.lex_state = 1329}, + [5862] = {.lex_state = 1329}, + [5863] = {.lex_state = 1329}, + [5864] = {.lex_state = 1329}, + [5865] = {.lex_state = 1329}, + [5866] = {.lex_state = 1329}, + [5867] = {.lex_state = 1329}, + [5868] = {.lex_state = 30}, [5869] = {.lex_state = 30}, - [5870] = {.lex_state = 30}, - [5871] = {.lex_state = 30}, - [5872] = {.lex_state = 30}, - [5873] = {.lex_state = 1321}, - [5874] = {.lex_state = 30}, - [5875] = {.lex_state = 1321}, - [5876] = {.lex_state = 1321}, - [5877] = {.lex_state = 1321}, - [5878] = {.lex_state = 30}, - [5879] = {.lex_state = 1321}, - [5880] = {.lex_state = 30}, - [5881] = {.lex_state = 1321}, - [5882] = {.lex_state = 1321}, - [5883] = {.lex_state = 1321}, + [5870] = {.lex_state = 1329}, + [5871] = {.lex_state = 1329}, + [5872] = {.lex_state = 1329}, + [5873] = {.lex_state = 40}, + [5874] = {.lex_state = 1329}, + [5875] = {.lex_state = 1329}, + [5876] = {.lex_state = 1329}, + [5877] = {.lex_state = 1329}, + [5878] = {.lex_state = 1329}, + [5879] = {.lex_state = 1329}, + [5880] = {.lex_state = 1329}, + [5881] = {.lex_state = 1329}, + [5882] = {.lex_state = 1329}, + [5883] = {.lex_state = 30}, [5884] = {.lex_state = 30}, - [5885] = {.lex_state = 1321}, - [5886] = {.lex_state = 1321}, - [5887] = {.lex_state = 1321}, + [5885] = {.lex_state = 1329}, + [5886] = {.lex_state = 1329}, + [5887] = {.lex_state = 1329}, [5888] = {.lex_state = 30}, - [5889] = {.lex_state = 40}, - [5890] = {.lex_state = 1321}, - [5891] = {.lex_state = 1321}, - [5892] = {.lex_state = 30}, - [5893] = {.lex_state = 1321}, - [5894] = {.lex_state = 1321}, - [5895] = {.lex_state = 30}, - [5896] = {.lex_state = 1321}, + [5889] = {.lex_state = 1329}, + [5890] = {.lex_state = 1329}, + [5891] = {.lex_state = 1329}, + [5892] = {.lex_state = 1329}, + [5893] = {.lex_state = 38}, + [5894] = {.lex_state = 1329}, + [5895] = {.lex_state = 1329}, + [5896] = {.lex_state = 1329}, [5897] = {.lex_state = 30}, - [5898] = {.lex_state = 30}, - [5899] = {.lex_state = 36}, - [5900] = {.lex_state = 1321}, - [5901] = {.lex_state = 1321}, - [5902] = {.lex_state = 1321}, - [5903] = {.lex_state = 30}, - [5904] = {.lex_state = 1321}, - [5905] = {.lex_state = 1321}, - [5906] = {.lex_state = 1321}, - [5907] = {.lex_state = 1321}, - [5908] = {.lex_state = 1321}, - [5909] = {.lex_state = 1321}, - [5910] = {.lex_state = 1321}, - [5911] = {.lex_state = 1321}, - [5912] = {.lex_state = 1321}, - [5913] = {.lex_state = 1321}, - [5914] = {.lex_state = 1321}, - [5915] = {.lex_state = 30}, - [5916] = {.lex_state = 1321}, + [5898] = {.lex_state = 1329}, + [5899] = {.lex_state = 1329}, + [5900] = {.lex_state = 1329}, + [5901] = {.lex_state = 1329}, + [5902] = {.lex_state = 1329}, + [5903] = {.lex_state = 1329}, + [5904] = {.lex_state = 1329}, + [5905] = {.lex_state = 66}, + [5906] = {.lex_state = 1329}, + [5907] = {.lex_state = 1329}, + [5908] = {.lex_state = 1329}, + [5909] = {.lex_state = 1329}, + [5910] = {.lex_state = 1329}, + [5911] = {.lex_state = 1329}, + [5912] = {.lex_state = 1329}, + [5913] = {.lex_state = 1329, .external_lex_state = 17}, + [5914] = {.lex_state = 1329}, + [5915] = {.lex_state = 1329}, + [5916] = {.lex_state = 1329}, [5917] = {.lex_state = 30}, - [5918] = {.lex_state = 30}, - [5919] = {.lex_state = 30}, - [5920] = {.lex_state = 30}, - [5921] = {.lex_state = 1321}, - [5922] = {.lex_state = 1321}, - [5923] = {.lex_state = 1321}, - [5924] = {.lex_state = 1321}, - [5925] = {.lex_state = 1321}, - [5926] = {.lex_state = 1321}, - [5927] = {.lex_state = 1321}, - [5928] = {.lex_state = 1321}, - [5929] = {.lex_state = 1321}, - [5930] = {.lex_state = 1321}, - [5931] = {.lex_state = 1321}, - [5932] = {.lex_state = 1321}, - [5933] = {.lex_state = 1321}, - [5934] = {.lex_state = 36}, - [5935] = {.lex_state = 30}, - [5936] = {.lex_state = 1321}, - [5937] = {.lex_state = 1321}, - [5938] = {.lex_state = 40}, - [5939] = {.lex_state = 1321}, - [5940] = {.lex_state = 1321}, - [5941] = {.lex_state = 30}, - [5942] = {.lex_state = 1321}, - [5943] = {.lex_state = 1321}, - [5944] = {.lex_state = 1321}, - [5945] = {.lex_state = 1321}, - [5946] = {.lex_state = 1321}, - [5947] = {.lex_state = 30}, - [5948] = {.lex_state = 30}, - [5949] = {.lex_state = 1321}, - [5950] = {.lex_state = 1321}, - [5951] = {.lex_state = 30}, - [5952] = {.lex_state = 1321}, - [5953] = {.lex_state = 1321}, - [5954] = {.lex_state = 1321}, - [5955] = {.lex_state = 1321}, - [5956] = {.lex_state = 1321}, - [5957] = {.lex_state = 1321}, - [5958] = {.lex_state = 1321}, - [5959] = {.lex_state = 1321}, - [5960] = {.lex_state = 1321}, - [5961] = {.lex_state = 1321}, - [5962] = {.lex_state = 1321}, - [5963] = {.lex_state = 1321}, - [5964] = {.lex_state = 1321}, - [5965] = {.lex_state = 1321}, - [5966] = {.lex_state = 1321}, - [5967] = {.lex_state = 1321}, - [5968] = {.lex_state = 1321}, - [5969] = {.lex_state = 40}, - [5970] = {.lex_state = 1321}, - [5971] = {.lex_state = 1321}, - [5972] = {.lex_state = 1321}, - [5973] = {.lex_state = 1321}, - [5974] = {.lex_state = 1321}, - [5975] = {.lex_state = 1321}, - [5976] = {.lex_state = 1321}, - [5977] = {.lex_state = 1321}, - [5978] = {.lex_state = 1321}, + [5918] = {.lex_state = 1329}, + [5919] = {.lex_state = 1329}, + [5920] = {.lex_state = 1329}, + [5921] = {.lex_state = 1329}, + [5922] = {.lex_state = 1329}, + [5923] = {.lex_state = 1329}, + [5924] = {.lex_state = 1329}, + [5925] = {.lex_state = 1329}, + [5926] = {.lex_state = 30}, + [5927] = {.lex_state = 30}, + [5928] = {.lex_state = 1329}, + [5929] = {.lex_state = 1329, .external_lex_state = 17}, + [5930] = {.lex_state = 1329}, + [5931] = {.lex_state = 30}, + [5932] = {.lex_state = 1329}, + [5933] = {.lex_state = 1329}, + [5934] = {.lex_state = 1329}, + [5935] = {.lex_state = 1329}, + [5936] = {.lex_state = 1329}, + [5937] = {.lex_state = 1329}, + [5938] = {.lex_state = 30}, + [5939] = {.lex_state = 1329}, + [5940] = {.lex_state = 1329}, + [5941] = {.lex_state = 1329}, + [5942] = {.lex_state = 1329}, + [5943] = {.lex_state = 1329}, + [5944] = {.lex_state = 1329}, + [5945] = {.lex_state = 39}, + [5946] = {.lex_state = 1329}, + [5947] = {.lex_state = 1329}, + [5948] = {.lex_state = 1329}, + [5949] = {.lex_state = 1329, .external_lex_state = 17}, + [5950] = {.lex_state = 30}, + [5951] = {.lex_state = 1329, .external_lex_state = 17}, + [5952] = {.lex_state = 1329}, + [5953] = {.lex_state = 1329}, + [5954] = {.lex_state = 30}, + [5955] = {.lex_state = 30}, + [5956] = {.lex_state = 39}, + [5957] = {.lex_state = 1329}, + [5958] = {.lex_state = 1329}, + [5959] = {.lex_state = 30}, + [5960] = {.lex_state = 1329}, + [5961] = {.lex_state = 1329}, + [5962] = {.lex_state = 1329}, + [5963] = {.lex_state = 1329}, + [5964] = {.lex_state = 39}, + [5965] = {.lex_state = 1329}, + [5966] = {.lex_state = 1329}, + [5967] = {.lex_state = 1329}, + [5968] = {.lex_state = 1329}, + [5969] = {.lex_state = 1329}, + [5970] = {.lex_state = 1329}, + [5971] = {.lex_state = 1329}, + [5972] = {.lex_state = 1329}, + [5973] = {.lex_state = 1329}, + [5974] = {.lex_state = 1329}, + [5975] = {.lex_state = 30}, + [5976] = {.lex_state = 1329}, + [5977] = {.lex_state = 1329}, + [5978] = {.lex_state = 1329}, [5979] = {.lex_state = 30}, - [5980] = {.lex_state = 30}, - [5981] = {.lex_state = 1321}, - [5982] = {.lex_state = 1321}, - [5983] = {.lex_state = 1321}, - [5984] = {.lex_state = 1321}, - [5985] = {.lex_state = 1321}, - [5986] = {.lex_state = 1321}, - [5987] = {.lex_state = 1321}, - [5988] = {.lex_state = 1321}, - [5989] = {.lex_state = 1321}, - [5990] = {.lex_state = 1321}, - [5991] = {.lex_state = 1321}, - [5992] = {.lex_state = 1321}, - [5993] = {.lex_state = 1321}, - [5994] = {.lex_state = 1321}, - [5995] = {.lex_state = 1321}, - [5996] = {.lex_state = 1321}, - [5997] = {.lex_state = 1321}, - [5998] = {.lex_state = 1321}, - [5999] = {.lex_state = 1321}, - [6000] = {.lex_state = 1321}, - [6001] = {.lex_state = 1321}, - [6002] = {.lex_state = 1321}, - [6003] = {.lex_state = 1321}, - [6004] = {.lex_state = 1321}, - [6005] = {.lex_state = 1321}, - [6006] = {.lex_state = 1321}, - [6007] = {.lex_state = 39}, - [6008] = {.lex_state = 1321}, - [6009] = {.lex_state = 1321}, - [6010] = {.lex_state = 1321}, - [6011] = {.lex_state = 30}, - [6012] = {.lex_state = 1321}, - [6013] = {.lex_state = 1321}, - [6014] = {.lex_state = 1321}, - [6015] = {.lex_state = 1321}, - [6016] = {.lex_state = 1321}, - [6017] = {.lex_state = 1321}, - [6018] = {.lex_state = 1321}, - [6019] = {.lex_state = 1321}, - [6020] = {.lex_state = 1321}, - [6021] = {.lex_state = 1321}, - [6022] = {.lex_state = 39}, - [6023] = {.lex_state = 1321}, - [6024] = {.lex_state = 1321}, - [6025] = {.lex_state = 1321}, - [6026] = {.lex_state = 1321}, - [6027] = {.lex_state = 1321}, - [6028] = {.lex_state = 1321}, - [6029] = {.lex_state = 1321}, - [6030] = {.lex_state = 1321}, - [6031] = {.lex_state = 1321}, - [6032] = {.lex_state = 1321}, - [6033] = {.lex_state = 1321}, - [6034] = {.lex_state = 1321}, - [6035] = {.lex_state = 1321}, - [6036] = {.lex_state = 1321}, - [6037] = {.lex_state = 1321}, - [6038] = {.lex_state = 1321}, - [6039] = {.lex_state = 1321}, - [6040] = {.lex_state = 38}, - [6041] = {.lex_state = 1321}, - [6042] = {.lex_state = 1321}, - [6043] = {.lex_state = 1321}, - [6044] = {.lex_state = 1321}, - [6045] = {.lex_state = 1321}, - [6046] = {.lex_state = 1321}, - [6047] = {.lex_state = 1321}, - [6048] = {.lex_state = 1321}, - [6049] = {.lex_state = 1321}, - [6050] = {.lex_state = 1321}, - [6051] = {.lex_state = 1321}, - [6052] = {.lex_state = 1321}, - [6053] = {.lex_state = 1321}, - [6054] = {.lex_state = 1321}, - [6055] = {.lex_state = 1321}, - [6056] = {.lex_state = 1321}, - [6057] = {.lex_state = 1321}, - [6058] = {.lex_state = 1321}, + [5980] = {.lex_state = 1329}, + [5981] = {.lex_state = 1329}, + [5982] = {.lex_state = 1329}, + [5983] = {.lex_state = 39}, + [5984] = {.lex_state = 30}, + [5985] = {.lex_state = 1329}, + [5986] = {.lex_state = 30}, + [5987] = {.lex_state = 30}, + [5988] = {.lex_state = 30}, + [5989] = {.lex_state = 39}, + [5990] = {.lex_state = 1329}, + [5991] = {.lex_state = 1329}, + [5992] = {.lex_state = 30}, + [5993] = {.lex_state = 1329}, + [5994] = {.lex_state = 1329}, + [5995] = {.lex_state = 30}, + [5996] = {.lex_state = 1329}, + [5997] = {.lex_state = 30}, + [5998] = {.lex_state = 1329}, + [5999] = {.lex_state = 30}, + [6000] = {.lex_state = 30}, + [6001] = {.lex_state = 1329}, + [6002] = {.lex_state = 1329, .external_lex_state = 21}, + [6003] = {.lex_state = 1329}, + [6004] = {.lex_state = 40}, + [6005] = {.lex_state = 1329}, + [6006] = {.lex_state = 1329}, + [6007] = {.lex_state = 1329}, + [6008] = {.lex_state = 1329}, + [6009] = {.lex_state = 39}, + [6010] = {.lex_state = 1329}, + [6011] = {.lex_state = 39}, + [6012] = {.lex_state = 1329}, + [6013] = {.lex_state = 1329}, + [6014] = {.lex_state = 30}, + [6015] = {.lex_state = 1329}, + [6016] = {.lex_state = 1329}, + [6017] = {.lex_state = 1329}, + [6018] = {.lex_state = 1329}, + [6019] = {.lex_state = 30}, + [6020] = {.lex_state = 30}, + [6021] = {.lex_state = 1329}, + [6022] = {.lex_state = 1329}, + [6023] = {.lex_state = 30}, + [6024] = {.lex_state = 1329}, + [6025] = {.lex_state = 1329}, + [6026] = {.lex_state = 38}, + [6027] = {.lex_state = 30}, + [6028] = {.lex_state = 40}, + [6029] = {.lex_state = 1329}, + [6030] = {.lex_state = 1329}, + [6031] = {.lex_state = 1329}, + [6032] = {.lex_state = 1329}, + [6033] = {.lex_state = 40}, + [6034] = {.lex_state = 1329}, + [6035] = {.lex_state = 1329}, + [6036] = {.lex_state = 30}, + [6037] = {.lex_state = 1329}, + [6038] = {.lex_state = 1329}, + [6039] = {.lex_state = 1329}, + [6040] = {.lex_state = 1329}, + [6041] = {.lex_state = 36}, + [6042] = {.lex_state = 36}, + [6043] = {.lex_state = 1329}, + [6044] = {.lex_state = 30}, + [6045] = {.lex_state = 1329}, + [6046] = {.lex_state = 40}, + [6047] = {.lex_state = 1329}, + [6048] = {.lex_state = 1329, .external_lex_state = 17}, + [6049] = {.lex_state = 1329}, + [6050] = {.lex_state = 1329}, + [6051] = {.lex_state = 39}, + [6052] = {.lex_state = 1329}, + [6053] = {.lex_state = 30}, + [6054] = {.lex_state = 30}, + [6055] = {.lex_state = 1329}, + [6056] = {.lex_state = 30}, + [6057] = {.lex_state = 1329}, + [6058] = {.lex_state = 1329}, [6059] = {.lex_state = 30}, - [6060] = {.lex_state = 1321}, - [6061] = {.lex_state = 1321}, - [6062] = {.lex_state = 1321}, - [6063] = {.lex_state = 39}, - [6064] = {.lex_state = 1321}, - [6065] = {.lex_state = 1321}, - [6066] = {.lex_state = 1321}, - [6067] = {.lex_state = 1321}, - [6068] = {.lex_state = 1321}, - [6069] = {.lex_state = 30}, - [6070] = {.lex_state = 30}, - [6071] = {.lex_state = 30}, - [6072] = {.lex_state = 1321}, - [6073] = {.lex_state = 1321}, - [6074] = {.lex_state = 1321}, - [6075] = {.lex_state = 1321}, - [6076] = {.lex_state = 1321}, - [6077] = {.lex_state = 1321}, - [6078] = {.lex_state = 1321}, - [6079] = {.lex_state = 30}, + [6060] = {.lex_state = 1329}, + [6061] = {.lex_state = 1329, .external_lex_state = 7}, + [6062] = {.lex_state = 30}, + [6063] = {.lex_state = 30}, + [6064] = {.lex_state = 1329}, + [6065] = {.lex_state = 1329}, + [6066] = {.lex_state = 1329}, + [6067] = {.lex_state = 1329}, + [6068] = {.lex_state = 1329}, + [6069] = {.lex_state = 1329}, + [6070] = {.lex_state = 39}, + [6071] = {.lex_state = 1329}, + [6072] = {.lex_state = 1329}, + [6073] = {.lex_state = 1329}, + [6074] = {.lex_state = 1329}, + [6075] = {.lex_state = 1329, .external_lex_state = 17}, + [6076] = {.lex_state = 1329}, + [6077] = {.lex_state = 40}, + [6078] = {.lex_state = 1329}, + [6079] = {.lex_state = 1329}, [6080] = {.lex_state = 30}, - [6081] = {.lex_state = 1321}, - [6082] = {.lex_state = 1321}, - [6083] = {.lex_state = 1321}, - [6084] = {.lex_state = 1321}, - [6085] = {.lex_state = 1321}, - [6086] = {.lex_state = 30}, - [6087] = {.lex_state = 1321}, + [6081] = {.lex_state = 30}, + [6082] = {.lex_state = 1329}, + [6083] = {.lex_state = 30}, + [6084] = {.lex_state = 36}, + [6085] = {.lex_state = 30}, + [6086] = {.lex_state = 1329}, + [6087] = {.lex_state = 30}, [6088] = {.lex_state = 30}, - [6089] = {.lex_state = 1321}, - [6090] = {.lex_state = 1321}, - [6091] = {.lex_state = 30}, - [6092] = {.lex_state = 1321}, - [6093] = {.lex_state = 30}, - [6094] = {.lex_state = 208}, - [6095] = {.lex_state = 1321}, - [6096] = {.lex_state = 1321}, - [6097] = {.lex_state = 30}, - [6098] = {.lex_state = 30}, + [6089] = {.lex_state = 1329}, + [6090] = {.lex_state = 39}, + [6091] = {.lex_state = 1329}, + [6092] = {.lex_state = 1329}, + [6093] = {.lex_state = 1329}, + [6094] = {.lex_state = 1329}, + [6095] = {.lex_state = 1329}, + [6096] = {.lex_state = 1329}, + [6097] = {.lex_state = 1329}, + [6098] = {.lex_state = 1329}, [6099] = {.lex_state = 30}, [6100] = {.lex_state = 30}, - [6101] = {.lex_state = 1321}, - [6102] = {.lex_state = 1321}, - [6103] = {.lex_state = 1321}, - [6104] = {.lex_state = 1321}, + [6101] = {.lex_state = 1329}, + [6102] = {.lex_state = 30}, + [6103] = {.lex_state = 1329}, + [6104] = {.lex_state = 1329}, [6105] = {.lex_state = 30}, - [6106] = {.lex_state = 30}, - [6107] = {.lex_state = 30}, - [6108] = {.lex_state = 30}, - [6109] = {.lex_state = 30}, - [6110] = {.lex_state = 1321}, - [6111] = {.lex_state = 1321}, - [6112] = {.lex_state = 1321}, - [6113] = {.lex_state = 1321}, - [6114] = {.lex_state = 1321}, - [6115] = {.lex_state = 1321}, - [6116] = {.lex_state = 1321}, - [6117] = {.lex_state = 1321}, - [6118] = {.lex_state = 30}, - [6119] = {.lex_state = 39}, - [6120] = {.lex_state = 1321}, - [6121] = {.lex_state = 1321}, - [6122] = {.lex_state = 1321}, - [6123] = {.lex_state = 1321}, - [6124] = {.lex_state = 30}, - [6125] = {.lex_state = 30}, - [6126] = {.lex_state = 30}, - [6127] = {.lex_state = 1321}, - [6128] = {.lex_state = 1321}, - [6129] = {.lex_state = 30}, - [6130] = {.lex_state = 30}, - [6131] = {.lex_state = 1321}, - [6132] = {.lex_state = 30}, - [6133] = {.lex_state = 30}, - [6134] = {.lex_state = 1321}, - [6135] = {.lex_state = 1321}, - [6136] = {.lex_state = 1321}, - [6137] = {.lex_state = 1321}, - [6138] = {.lex_state = 1321}, - [6139] = {.lex_state = 1321}, + [6106] = {.lex_state = 1329, .external_lex_state = 17}, + [6107] = {.lex_state = 1329}, + [6108] = {.lex_state = 1329}, + [6109] = {.lex_state = 1329, .external_lex_state = 17}, + [6110] = {.lex_state = 1329}, + [6111] = {.lex_state = 1329}, + [6112] = {.lex_state = 1329}, + [6113] = {.lex_state = 30}, + [6114] = {.lex_state = 30}, + [6115] = {.lex_state = 1329}, + [6116] = {.lex_state = 1329}, + [6117] = {.lex_state = 1329}, + [6118] = {.lex_state = 1329}, + [6119] = {.lex_state = 36}, + [6120] = {.lex_state = 30}, + [6121] = {.lex_state = 1329}, + [6122] = {.lex_state = 30}, + [6123] = {.lex_state = 1329}, + [6124] = {.lex_state = 1329}, + [6125] = {.lex_state = 1329}, + [6126] = {.lex_state = 1329}, + [6127] = {.lex_state = 1329}, + [6128] = {.lex_state = 1329}, + [6129] = {.lex_state = 26}, + [6130] = {.lex_state = 1329}, + [6131] = {.lex_state = 1329}, + [6132] = {.lex_state = 1329}, + [6133] = {.lex_state = 66}, + [6134] = {.lex_state = 1329}, + [6135] = {.lex_state = 1329}, + [6136] = {.lex_state = 30}, + [6137] = {.lex_state = 1329, .external_lex_state = 17}, + [6138] = {.lex_state = 1329}, + [6139] = {.lex_state = 1329}, [6140] = {.lex_state = 30}, - [6141] = {.lex_state = 30}, - [6142] = {.lex_state = 30}, - [6143] = {.lex_state = 1321}, - [6144] = {.lex_state = 1321}, - [6145] = {.lex_state = 1321}, - [6146] = {.lex_state = 1321}, + [6141] = {.lex_state = 1329}, + [6142] = {.lex_state = 1329}, + [6143] = {.lex_state = 37}, + [6144] = {.lex_state = 1329}, + [6145] = {.lex_state = 30}, + [6146] = {.lex_state = 1329}, [6147] = {.lex_state = 30}, - [6148] = {.lex_state = 1321}, - [6149] = {.lex_state = 1321}, - [6150] = {.lex_state = 1321}, - [6151] = {.lex_state = 30}, - [6152] = {.lex_state = 30}, - [6153] = {.lex_state = 30}, - [6154] = {.lex_state = 1321}, - [6155] = {.lex_state = 1321}, - [6156] = {.lex_state = 1321}, - [6157] = {.lex_state = 1321}, - [6158] = {.lex_state = 1321}, - [6159] = {.lex_state = 1321}, + [6148] = {.lex_state = 1329}, + [6149] = {.lex_state = 1329}, + [6150] = {.lex_state = 39}, + [6151] = {.lex_state = 1329}, + [6152] = {.lex_state = 1329}, + [6153] = {.lex_state = 1329}, + [6154] = {.lex_state = 1329}, + [6155] = {.lex_state = 1329}, + [6156] = {.lex_state = 30}, + [6157] = {.lex_state = 30}, + [6158] = {.lex_state = 1329}, + [6159] = {.lex_state = 1329}, [6160] = {.lex_state = 30}, - [6161] = {.lex_state = 1321}, - [6162] = {.lex_state = 1321}, - [6163] = {.lex_state = 1321}, - [6164] = {.lex_state = 1321}, - [6165] = {.lex_state = 30}, - [6166] = {.lex_state = 1321}, - [6167] = {.lex_state = 1321}, - [6168] = {.lex_state = 1321}, - [6169] = {.lex_state = 1321}, - [6170] = {.lex_state = 1321}, - [6171] = {.lex_state = 1321}, - [6172] = {.lex_state = 1321}, - [6173] = {.lex_state = 30}, - [6174] = {.lex_state = 1321}, - [6175] = {.lex_state = 1321}, - [6176] = {.lex_state = 1321}, - [6177] = {.lex_state = 1321}, - [6178] = {.lex_state = 30}, - [6179] = {.lex_state = 30}, - [6180] = {.lex_state = 30}, - [6181] = {.lex_state = 1321}, - [6182] = {.lex_state = 1321}, - [6183] = {.lex_state = 1321}, - [6184] = {.lex_state = 1321}, - [6185] = {.lex_state = 1321}, - [6186] = {.lex_state = 1321}, - [6187] = {.lex_state = 1321}, - [6188] = {.lex_state = 1321}, - [6189] = {.lex_state = 1321}, - [6190] = {.lex_state = 1321}, - [6191] = {.lex_state = 1321}, - [6192] = {.lex_state = 30}, - [6193] = {.lex_state = 1321}, - [6194] = {.lex_state = 30}, + [6161] = {.lex_state = 30}, + [6162] = {.lex_state = 30}, + [6163] = {.lex_state = 1329}, + [6164] = {.lex_state = 30}, + [6165] = {.lex_state = 1329}, + [6166] = {.lex_state = 1329}, + [6167] = {.lex_state = 1329}, + [6168] = {.lex_state = 38}, + [6169] = {.lex_state = 30}, + [6170] = {.lex_state = 30}, + [6171] = {.lex_state = 30}, + [6172] = {.lex_state = 1329}, + [6173] = {.lex_state = 1329}, + [6174] = {.lex_state = 1329}, + [6175] = {.lex_state = 1329}, + [6176] = {.lex_state = 1329}, + [6177] = {.lex_state = 30}, + [6178] = {.lex_state = 1329}, + [6179] = {.lex_state = 39}, + [6180] = {.lex_state = 38}, + [6181] = {.lex_state = 1329}, + [6182] = {.lex_state = 30}, + [6183] = {.lex_state = 1329}, + [6184] = {.lex_state = 1329}, + [6185] = {.lex_state = 1329}, + [6186] = {.lex_state = 1329}, + [6187] = {.lex_state = 1329}, + [6188] = {.lex_state = 30}, + [6189] = {.lex_state = 1329}, + [6190] = {.lex_state = 1329}, + [6191] = {.lex_state = 30}, + [6192] = {.lex_state = 1329}, + [6193] = {.lex_state = 1329}, + [6194] = {.lex_state = 39}, [6195] = {.lex_state = 30}, - [6196] = {.lex_state = 1321}, + [6196] = {.lex_state = 1329}, [6197] = {.lex_state = 30}, - [6198] = {.lex_state = 1321}, - [6199] = {.lex_state = 1321}, - [6200] = {.lex_state = 1321}, - [6201] = {.lex_state = 39}, - [6202] = {.lex_state = 1321}, - [6203] = {.lex_state = 1321}, - [6204] = {.lex_state = 1321}, - [6205] = {.lex_state = 1321}, - [6206] = {.lex_state = 1321}, + [6198] = {.lex_state = 1329}, + [6199] = {.lex_state = 38}, + [6200] = {.lex_state = 1329}, + [6201] = {.lex_state = 1329}, + [6202] = {.lex_state = 30}, + [6203] = {.lex_state = 30}, + [6204] = {.lex_state = 1329}, + [6205] = {.lex_state = 30}, + [6206] = {.lex_state = 30}, [6207] = {.lex_state = 30}, - [6208] = {.lex_state = 1321}, - [6209] = {.lex_state = 1321}, - [6210] = {.lex_state = 39}, - [6211] = {.lex_state = 30}, - [6212] = {.lex_state = 1321}, - [6213] = {.lex_state = 1321}, - [6214] = {.lex_state = 1321}, - [6215] = {.lex_state = 1321}, - [6216] = {.lex_state = 1321}, - [6217] = {.lex_state = 1321}, - [6218] = {.lex_state = 1321}, - [6219] = {.lex_state = 1321}, - [6220] = {.lex_state = 1321}, - [6221] = {.lex_state = 1321}, - [6222] = {.lex_state = 1321}, - [6223] = {.lex_state = 1321}, - [6224] = {.lex_state = 1321}, - [6225] = {.lex_state = 1321}, - [6226] = {.lex_state = 30}, - [6227] = {.lex_state = 30}, - [6228] = {.lex_state = 1321}, - [6229] = {.lex_state = 1321}, + [6208] = {.lex_state = 30}, + [6209] = {.lex_state = 1329}, + [6210] = {.lex_state = 30}, + [6211] = {.lex_state = 1329}, + [6212] = {.lex_state = 1329}, + [6213] = {.lex_state = 1329}, + [6214] = {.lex_state = 30}, + [6215] = {.lex_state = 1329}, + [6216] = {.lex_state = 38}, + [6217] = {.lex_state = 1329}, + [6218] = {.lex_state = 1329}, + [6219] = {.lex_state = 1329}, + [6220] = {.lex_state = 30}, + [6221] = {.lex_state = 1329}, + [6222] = {.lex_state = 1329}, + [6223] = {.lex_state = 1329}, + [6224] = {.lex_state = 1329}, + [6225] = {.lex_state = 1329}, + [6226] = {.lex_state = 1329}, + [6227] = {.lex_state = 1329}, + [6228] = {.lex_state = 1329}, + [6229] = {.lex_state = 30}, [6230] = {.lex_state = 30}, - [6231] = {.lex_state = 1321}, - [6232] = {.lex_state = 1321}, - [6233] = {.lex_state = 1321}, - [6234] = {.lex_state = 1321}, - [6235] = {.lex_state = 39}, - [6236] = {.lex_state = 1321}, - [6237] = {.lex_state = 39}, - [6238] = {.lex_state = 1321}, - [6239] = {.lex_state = 1321}, - [6240] = {.lex_state = 1321}, - [6241] = {.lex_state = 1321}, - [6242] = {.lex_state = 30}, - [6243] = {.lex_state = 1321}, - [6244] = {.lex_state = 1321}, + [6231] = {.lex_state = 1329}, + [6232] = {.lex_state = 1329}, + [6233] = {.lex_state = 30}, + [6234] = {.lex_state = 30}, + [6235] = {.lex_state = 30}, + [6236] = {.lex_state = 1329}, + [6237] = {.lex_state = 1329}, + [6238] = {.lex_state = 30}, + [6239] = {.lex_state = 1329}, + [6240] = {.lex_state = 1329}, + [6241] = {.lex_state = 1329}, + [6242] = {.lex_state = 1329}, + [6243] = {.lex_state = 30}, + [6244] = {.lex_state = 30}, [6245] = {.lex_state = 30}, - [6246] = {.lex_state = 38}, - [6247] = {.lex_state = 1321}, - [6248] = {.lex_state = 1321}, - [6249] = {.lex_state = 1321}, - [6250] = {.lex_state = 1321}, - [6251] = {.lex_state = 1321}, - [6252] = {.lex_state = 30}, - [6253] = {.lex_state = 1321}, - [6254] = {.lex_state = 38}, - [6255] = {.lex_state = 30}, - [6256] = {.lex_state = 1321}, - [6257] = {.lex_state = 1321}, - [6258] = {.lex_state = 30}, - [6259] = {.lex_state = 1321}, - [6260] = {.lex_state = 1321}, - [6261] = {.lex_state = 1321}, - [6262] = {.lex_state = 30}, - [6263] = {.lex_state = 1321}, - [6264] = {.lex_state = 1321}, - [6265] = {.lex_state = 1321}, - [6266] = {.lex_state = 1321}, - [6267] = {.lex_state = 1321}, - [6268] = {.lex_state = 1321}, - [6269] = {.lex_state = 1321}, - [6270] = {.lex_state = 1321}, - [6271] = {.lex_state = 30}, + [6246] = {.lex_state = 30}, + [6247] = {.lex_state = 1329}, + [6248] = {.lex_state = 1329}, + [6249] = {.lex_state = 1329}, + [6250] = {.lex_state = 30}, + [6251] = {.lex_state = 1329}, + [6252] = {.lex_state = 1329}, + [6253] = {.lex_state = 1329}, + [6254] = {.lex_state = 1329}, + [6255] = {.lex_state = 1329}, + [6256] = {.lex_state = 1329}, + [6257] = {.lex_state = 1329}, + [6258] = {.lex_state = 1329}, + [6259] = {.lex_state = 1329}, + [6260] = {.lex_state = 1329}, + [6261] = {.lex_state = 30}, + [6262] = {.lex_state = 1329}, + [6263] = {.lex_state = 39}, + [6264] = {.lex_state = 1329}, + [6265] = {.lex_state = 1329}, + [6266] = {.lex_state = 1329}, + [6267] = {.lex_state = 30}, + [6268] = {.lex_state = 1329}, + [6269] = {.lex_state = 30}, + [6270] = {.lex_state = 1329}, + [6271] = {.lex_state = 1329}, [6272] = {.lex_state = 30}, - [6273] = {.lex_state = 1321}, + [6273] = {.lex_state = 1329}, [6274] = {.lex_state = 30}, [6275] = {.lex_state = 30}, - [6276] = {.lex_state = 30}, - [6277] = {.lex_state = 39}, - [6278] = {.lex_state = 1321}, - [6279] = {.lex_state = 1321}, + [6276] = {.lex_state = 1329}, + [6277] = {.lex_state = 30}, + [6278] = {.lex_state = 1329}, + [6279] = {.lex_state = 1329}, [6280] = {.lex_state = 30}, - [6281] = {.lex_state = 1321}, - [6282] = {.lex_state = 1321}, - [6283] = {.lex_state = 1321}, - [6284] = {.lex_state = 1321}, - [6285] = {.lex_state = 1321}, - [6286] = {.lex_state = 1321}, - [6287] = {.lex_state = 1321}, - [6288] = {.lex_state = 37}, - [6289] = {.lex_state = 1321}, + [6281] = {.lex_state = 1329}, + [6282] = {.lex_state = 30}, + [6283] = {.lex_state = 1329}, + [6284] = {.lex_state = 30}, + [6285] = {.lex_state = 39}, + [6286] = {.lex_state = 1329}, + [6287] = {.lex_state = 1329}, + [6288] = {.lex_state = 1329}, + [6289] = {.lex_state = 30}, [6290] = {.lex_state = 30}, - [6291] = {.lex_state = 30}, - [6292] = {.lex_state = 30}, - [6293] = {.lex_state = 1321}, - [6294] = {.lex_state = 1321}, - [6295] = {.lex_state = 38}, - [6296] = {.lex_state = 1321}, - [6297] = {.lex_state = 38}, - [6298] = {.lex_state = 1321}, - [6299] = {.lex_state = 1321}, - [6300] = {.lex_state = 38}, + [6291] = {.lex_state = 1329}, + [6292] = {.lex_state = 1329}, + [6293] = {.lex_state = 1329}, + [6294] = {.lex_state = 1329}, + [6295] = {.lex_state = 1329}, + [6296] = {.lex_state = 30}, + [6297] = {.lex_state = 1329}, + [6298] = {.lex_state = 1329}, + [6299] = {.lex_state = 1329}, + [6300] = {.lex_state = 1329}, [6301] = {.lex_state = 30}, - [6302] = {.lex_state = 30}, - [6303] = {.lex_state = 1321}, - [6304] = {.lex_state = 1321}, - [6305] = {.lex_state = 1321}, - [6306] = {.lex_state = 1321}, - [6307] = {.lex_state = 30}, - [6308] = {.lex_state = 1321}, - [6309] = {.lex_state = 1321}, + [6302] = {.lex_state = 1329}, + [6303] = {.lex_state = 1329}, + [6304] = {.lex_state = 30}, + [6305] = {.lex_state = 1329}, + [6306] = {.lex_state = 1329}, + [6307] = {.lex_state = 1329}, + [6308] = {.lex_state = 1329}, + [6309] = {.lex_state = 30}, [6310] = {.lex_state = 30}, - [6311] = {.lex_state = 30}, - [6312] = {.lex_state = 1321}, - [6313] = {.lex_state = 30}, + [6311] = {.lex_state = 1329}, + [6312] = {.lex_state = 1329}, + [6313] = {.lex_state = 1329}, [6314] = {.lex_state = 30}, - [6315] = {.lex_state = 1321}, - [6316] = {.lex_state = 30}, - [6317] = {.lex_state = 1321}, - [6318] = {.lex_state = 38}, - [6319] = {.lex_state = 1321}, - [6320] = {.lex_state = 30}, - [6321] = {.lex_state = 1321}, - [6322] = {.lex_state = 30}, - [6323] = {.lex_state = 1321}, - [6324] = {.lex_state = 30}, - [6325] = {.lex_state = 1321}, - [6326] = {.lex_state = 1321}, - [6327] = {.lex_state = 30}, - [6328] = {.lex_state = 1321}, - [6329] = {.lex_state = 1321}, - [6330] = {.lex_state = 30}, + [6315] = {.lex_state = 30}, + [6316] = {.lex_state = 1329}, + [6317] = {.lex_state = 30}, + [6318] = {.lex_state = 1329}, + [6319] = {.lex_state = 30}, + [6320] = {.lex_state = 1329, .external_lex_state = 17}, + [6321] = {.lex_state = 38}, + [6322] = {.lex_state = 1329}, + [6323] = {.lex_state = 1329}, + [6324] = {.lex_state = 1329}, + [6325] = {.lex_state = 30}, + [6326] = {.lex_state = 1329}, + [6327] = {.lex_state = 1329}, + [6328] = {.lex_state = 1329}, + [6329] = {.lex_state = 1329}, + [6330] = {.lex_state = 1329}, [6331] = {.lex_state = 30}, - [6332] = {.lex_state = 1321}, - [6333] = {.lex_state = 1321}, - [6334] = {.lex_state = 1321}, + [6332] = {.lex_state = 1329}, + [6333] = {.lex_state = 1329}, + [6334] = {.lex_state = 1329}, [6335] = {.lex_state = 30}, - [6336] = {.lex_state = 1321}, - [6337] = {.lex_state = 1321}, - [6338] = {.lex_state = 1321}, + [6336] = {.lex_state = 1329}, + [6337] = {.lex_state = 37}, + [6338] = {.lex_state = 1329}, [6339] = {.lex_state = 30}, - [6340] = {.lex_state = 1321}, - [6341] = {.lex_state = 1321}, - [6342] = {.lex_state = 1321}, - [6343] = {.lex_state = 30}, + [6340] = {.lex_state = 1329}, + [6341] = {.lex_state = 30}, + [6342] = {.lex_state = 1329}, + [6343] = {.lex_state = 38}, [6344] = {.lex_state = 30}, - [6345] = {.lex_state = 1321}, - [6346] = {.lex_state = 30}, - [6347] = {.lex_state = 1321}, - [6348] = {.lex_state = 1321}, - [6349] = {.lex_state = 1321}, - [6350] = {.lex_state = 1321}, + [6345] = {.lex_state = 1329}, + [6346] = {.lex_state = 1329}, + [6347] = {.lex_state = 1329}, + [6348] = {.lex_state = 1329}, + [6349] = {.lex_state = 1329}, + [6350] = {.lex_state = 1329}, [6351] = {.lex_state = 30}, - [6352] = {.lex_state = 30}, - [6353] = {.lex_state = 1321}, - [6354] = {.lex_state = 1321}, - [6355] = {.lex_state = 30}, - [6356] = {.lex_state = 1321}, - [6357] = {.lex_state = 1321}, - [6358] = {.lex_state = 39}, - [6359] = {.lex_state = 1321}, - [6360] = {.lex_state = 1321}, - [6361] = {.lex_state = 1321}, + [6352] = {.lex_state = 1329}, + [6353] = {.lex_state = 1329}, + [6354] = {.lex_state = 1329}, + [6355] = {.lex_state = 1329}, + [6356] = {.lex_state = 1329}, + [6357] = {.lex_state = 1329}, + [6358] = {.lex_state = 1329}, + [6359] = {.lex_state = 1329}, + [6360] = {.lex_state = 1329}, + [6361] = {.lex_state = 1329}, [6362] = {.lex_state = 30}, - [6363] = {.lex_state = 30}, - [6364] = {.lex_state = 1321}, - [6365] = {.lex_state = 1321}, - [6366] = {.lex_state = 1321}, - [6367] = {.lex_state = 1321}, - [6368] = {.lex_state = 1321}, - [6369] = {.lex_state = 38}, - [6370] = {.lex_state = 30}, - [6371] = {.lex_state = 1321}, - [6372] = {.lex_state = 1321}, + [6363] = {.lex_state = 1329}, + [6364] = {.lex_state = 1329}, + [6365] = {.lex_state = 1329}, + [6366] = {.lex_state = 1329}, + [6367] = {.lex_state = 1329}, + [6368] = {.lex_state = 38}, + [6369] = {.lex_state = 1329}, + [6370] = {.lex_state = 1329}, + [6371] = {.lex_state = 1329}, + [6372] = {.lex_state = 30}, [6373] = {.lex_state = 30}, - [6374] = {.lex_state = 30}, - [6375] = {.lex_state = 30}, - [6376] = {.lex_state = 30}, - [6377] = {.lex_state = 30}, - [6378] = {.lex_state = 1321}, - [6379] = {.lex_state = 1321}, - [6380] = {.lex_state = 1321}, - [6381] = {.lex_state = 1321}, - [6382] = {.lex_state = 30}, - [6383] = {.lex_state = 30}, - [6384] = {.lex_state = 208}, - [6385] = {.lex_state = 1321}, - [6386] = {.lex_state = 30}, - [6387] = {.lex_state = 1321}, - [6388] = {.lex_state = 1321}, - [6389] = {.lex_state = 1321}, + [6374] = {.lex_state = 1329}, + [6375] = {.lex_state = 1329}, + [6376] = {.lex_state = 216}, + [6377] = {.lex_state = 1329}, + [6378] = {.lex_state = 1329}, + [6379] = {.lex_state = 30}, + [6380] = {.lex_state = 1329}, + [6381] = {.lex_state = 1329}, + [6382] = {.lex_state = 1329}, + [6383] = {.lex_state = 1329}, + [6384] = {.lex_state = 1329}, + [6385] = {.lex_state = 1329}, + [6386] = {.lex_state = 1329}, + [6387] = {.lex_state = 1329}, + [6388] = {.lex_state = 1329}, + [6389] = {.lex_state = 1329}, [6390] = {.lex_state = 30}, - [6391] = {.lex_state = 30}, - [6392] = {.lex_state = 30}, - [6393] = {.lex_state = 1321}, - [6394] = {.lex_state = 1321}, - [6395] = {.lex_state = 1321}, + [6391] = {.lex_state = 1329}, + [6392] = {.lex_state = 1329}, + [6393] = {.lex_state = 1329}, + [6394] = {.lex_state = 1329}, + [6395] = {.lex_state = 1329}, [6396] = {.lex_state = 30}, - [6397] = {.lex_state = 1321}, - [6398] = {.lex_state = 1321}, - [6399] = {.lex_state = 30}, - [6400] = {.lex_state = 38}, - [6401] = {.lex_state = 30}, - [6402] = {.lex_state = 38}, - [6403] = {.lex_state = 38}, - [6404] = {.lex_state = 30}, - [6405] = {.lex_state = 1321}, - [6406] = {.lex_state = 1321}, - [6407] = {.lex_state = 37}, - [6408] = {.lex_state = 1321}, - [6409] = {.lex_state = 1321}, + [6397] = {.lex_state = 1329}, + [6398] = {.lex_state = 1329}, + [6399] = {.lex_state = 1329}, + [6400] = {.lex_state = 30}, + [6401] = {.lex_state = 1329}, + [6402] = {.lex_state = 30}, + [6403] = {.lex_state = 1329}, + [6404] = {.lex_state = 1329}, + [6405] = {.lex_state = 1329}, + [6406] = {.lex_state = 30}, + [6407] = {.lex_state = 1329}, + [6408] = {.lex_state = 1329}, + [6409] = {.lex_state = 30}, [6410] = {.lex_state = 30}, - [6411] = {.lex_state = 30}, - [6412] = {.lex_state = 1321}, - [6413] = {.lex_state = 1321}, - [6414] = {.lex_state = 38}, - [6415] = {.lex_state = 38}, - [6416] = {.lex_state = 38}, - [6417] = {.lex_state = 1321}, - [6418] = {.lex_state = 1321}, - [6419] = {.lex_state = 1321}, - [6420] = {.lex_state = 1321}, - [6421] = {.lex_state = 1321}, - [6422] = {.lex_state = 30}, - [6423] = {.lex_state = 1321}, - [6424] = {.lex_state = 1321}, - [6425] = {.lex_state = 1321}, - [6426] = {.lex_state = 30}, - [6427] = {.lex_state = 1321}, - [6428] = {.lex_state = 1321}, - [6429] = {.lex_state = 1321}, - [6430] = {.lex_state = 1321}, - [6431] = {.lex_state = 30}, - [6432] = {.lex_state = 30}, - [6433] = {.lex_state = 1321}, - [6434] = {.lex_state = 1321}, - [6435] = {.lex_state = 30}, - [6436] = {.lex_state = 1321}, - [6437] = {.lex_state = 1321}, - [6438] = {.lex_state = 1321}, - [6439] = {.lex_state = 1321}, + [6411] = {.lex_state = 1329}, + [6412] = {.lex_state = 1329}, + [6413] = {.lex_state = 1329}, + [6414] = {.lex_state = 1329}, + [6415] = {.lex_state = 1329}, + [6416] = {.lex_state = 1329}, + [6417] = {.lex_state = 30}, + [6418] = {.lex_state = 30}, + [6419] = {.lex_state = 30}, + [6420] = {.lex_state = 30}, + [6421] = {.lex_state = 1329}, + [6422] = {.lex_state = 1329}, + [6423] = {.lex_state = 1329}, + [6424] = {.lex_state = 1329}, + [6425] = {.lex_state = 1329}, + [6426] = {.lex_state = 1329}, + [6427] = {.lex_state = 1329}, + [6428] = {.lex_state = 30}, + [6429] = {.lex_state = 1329}, + [6430] = {.lex_state = 30}, + [6431] = {.lex_state = 1329}, + [6432] = {.lex_state = 1329}, + [6433] = {.lex_state = 1329}, + [6434] = {.lex_state = 1329}, + [6435] = {.lex_state = 1329}, + [6436] = {.lex_state = 1329}, + [6437] = {.lex_state = 30}, + [6438] = {.lex_state = 1329}, + [6439] = {.lex_state = 1329}, [6440] = {.lex_state = 30}, - [6441] = {.lex_state = 30}, - [6442] = {.lex_state = 1321}, - [6443] = {.lex_state = 1321}, - [6444] = {.lex_state = 1321}, - [6445] = {.lex_state = 1321}, - [6446] = {.lex_state = 1321}, - [6447] = {.lex_state = 1321}, - [6448] = {.lex_state = 1321}, - [6449] = {.lex_state = 38}, - [6450] = {.lex_state = 30}, - [6451] = {.lex_state = 38}, - [6452] = {.lex_state = 38}, - [6453] = {.lex_state = 30}, - [6454] = {.lex_state = 1321}, - [6455] = {.lex_state = 1321}, - [6456] = {.lex_state = 1321}, - [6457] = {.lex_state = 1321}, - [6458] = {.lex_state = 1321}, - [6459] = {.lex_state = 1321}, - [6460] = {.lex_state = 1321}, - [6461] = {.lex_state = 38}, - [6462] = {.lex_state = 38}, - [6463] = {.lex_state = 38}, - [6464] = {.lex_state = 1321}, - [6465] = {.lex_state = 1321}, - [6466] = {.lex_state = 30}, - [6467] = {.lex_state = 1321}, - [6468] = {.lex_state = 30}, - [6469] = {.lex_state = 30}, - [6470] = {.lex_state = 1321}, - [6471] = {.lex_state = 1321}, - [6472] = {.lex_state = 30}, - [6473] = {.lex_state = 30}, - [6474] = {.lex_state = 1321}, - [6475] = {.lex_state = 1321}, - [6476] = {.lex_state = 1321}, + [6441] = {.lex_state = 1329}, + [6442] = {.lex_state = 1329}, + [6443] = {.lex_state = 1329}, + [6444] = {.lex_state = 1329}, + [6445] = {.lex_state = 39}, + [6446] = {.lex_state = 1329}, + [6447] = {.lex_state = 1329}, + [6448] = {.lex_state = 1329}, + [6449] = {.lex_state = 1329}, + [6450] = {.lex_state = 1329}, + [6451] = {.lex_state = 1329}, + [6452] = {.lex_state = 1329}, + [6453] = {.lex_state = 1329}, + [6454] = {.lex_state = 30}, + [6455] = {.lex_state = 1329}, + [6456] = {.lex_state = 1329}, + [6457] = {.lex_state = 1329}, + [6458] = {.lex_state = 30}, + [6459] = {.lex_state = 1329}, + [6460] = {.lex_state = 1329}, + [6461] = {.lex_state = 1329}, + [6462] = {.lex_state = 30}, + [6463] = {.lex_state = 30}, + [6464] = {.lex_state = 1329}, + [6465] = {.lex_state = 30}, + [6466] = {.lex_state = 1329}, + [6467] = {.lex_state = 1329}, + [6468] = {.lex_state = 1329}, + [6469] = {.lex_state = 1329}, + [6470] = {.lex_state = 1329}, + [6471] = {.lex_state = 1329}, + [6472] = {.lex_state = 1329}, + [6473] = {.lex_state = 1329}, + [6474] = {.lex_state = 30}, + [6475] = {.lex_state = 30}, + [6476] = {.lex_state = 30}, [6477] = {.lex_state = 30}, - [6478] = {.lex_state = 30}, - [6479] = {.lex_state = 1321}, - [6480] = {.lex_state = 38}, - [6481] = {.lex_state = 30}, - [6482] = {.lex_state = 30}, - [6483] = {.lex_state = 1321}, - [6484] = {.lex_state = 1321}, + [6478] = {.lex_state = 1329}, + [6479] = {.lex_state = 30}, + [6480] = {.lex_state = 1329}, + [6481] = {.lex_state = 1329}, + [6482] = {.lex_state = 1329}, + [6483] = {.lex_state = 30}, + [6484] = {.lex_state = 30}, [6485] = {.lex_state = 30}, [6486] = {.lex_state = 30}, - [6487] = {.lex_state = 30}, - [6488] = {.lex_state = 1321}, - [6489] = {.lex_state = 1321}, - [6490] = {.lex_state = 1321}, - [6491] = {.lex_state = 1321}, + [6487] = {.lex_state = 1329}, + [6488] = {.lex_state = 1329}, + [6489] = {.lex_state = 30}, + [6490] = {.lex_state = 1329}, + [6491] = {.lex_state = 30}, [6492] = {.lex_state = 30}, - [6493] = {.lex_state = 1321}, - [6494] = {.lex_state = 38}, + [6493] = {.lex_state = 1329}, + [6494] = {.lex_state = 1329}, [6495] = {.lex_state = 30}, - [6496] = {.lex_state = 38}, - [6497] = {.lex_state = 38}, - [6498] = {.lex_state = 30}, - [6499] = {.lex_state = 1321}, - [6500] = {.lex_state = 1321}, + [6496] = {.lex_state = 1329}, + [6497] = {.lex_state = 30}, + [6498] = {.lex_state = 1329}, + [6499] = {.lex_state = 1329}, + [6500] = {.lex_state = 30}, [6501] = {.lex_state = 30}, - [6502] = {.lex_state = 30}, - [6503] = {.lex_state = 1321}, - [6504] = {.lex_state = 30}, - [6505] = {.lex_state = 38}, - [6506] = {.lex_state = 38}, - [6507] = {.lex_state = 38}, - [6508] = {.lex_state = 1321}, - [6509] = {.lex_state = 1321}, + [6502] = {.lex_state = 1329}, + [6503] = {.lex_state = 1329}, + [6504] = {.lex_state = 1329}, + [6505] = {.lex_state = 1329}, + [6506] = {.lex_state = 1329}, + [6507] = {.lex_state = 1329}, + [6508] = {.lex_state = 30}, + [6509] = {.lex_state = 38}, [6510] = {.lex_state = 30}, - [6511] = {.lex_state = 1321}, - [6512] = {.lex_state = 30}, + [6511] = {.lex_state = 38}, + [6512] = {.lex_state = 38}, [6513] = {.lex_state = 30}, - [6514] = {.lex_state = 1321}, - [6515] = {.lex_state = 30}, - [6516] = {.lex_state = 1321}, - [6517] = {.lex_state = 1321}, - [6518] = {.lex_state = 30}, - [6519] = {.lex_state = 1321}, - [6520] = {.lex_state = 30}, - [6521] = {.lex_state = 30}, - [6522] = {.lex_state = 1321}, - [6523] = {.lex_state = 1321}, - [6524] = {.lex_state = 30}, - [6525] = {.lex_state = 30}, - [6526] = {.lex_state = 30}, - [6527] = {.lex_state = 1321}, - [6528] = {.lex_state = 1321}, - [6529] = {.lex_state = 30}, - [6530] = {.lex_state = 30}, - [6531] = {.lex_state = 1321}, - [6532] = {.lex_state = 1321}, + [6514] = {.lex_state = 1329}, + [6515] = {.lex_state = 1329}, + [6516] = {.lex_state = 37}, + [6517] = {.lex_state = 30}, + [6518] = {.lex_state = 1329}, + [6519] = {.lex_state = 1329}, + [6520] = {.lex_state = 1329}, + [6521] = {.lex_state = 1329}, + [6522] = {.lex_state = 1329}, + [6523] = {.lex_state = 38}, + [6524] = {.lex_state = 38}, + [6525] = {.lex_state = 38}, + [6526] = {.lex_state = 1329}, + [6527] = {.lex_state = 1329}, + [6528] = {.lex_state = 30}, + [6529] = {.lex_state = 1329}, + [6530] = {.lex_state = 1329}, + [6531] = {.lex_state = 1329}, + [6532] = {.lex_state = 1329}, [6533] = {.lex_state = 30}, - [6534] = {.lex_state = 1321}, - [6535] = {.lex_state = 1321}, - [6536] = {.lex_state = 1321}, - [6537] = {.lex_state = 38}, - [6538] = {.lex_state = 30}, - [6539] = {.lex_state = 38}, - [6540] = {.lex_state = 38}, + [6534] = {.lex_state = 30}, + [6535] = {.lex_state = 30}, + [6536] = {.lex_state = 1329}, + [6537] = {.lex_state = 1329}, + [6538] = {.lex_state = 1329}, + [6539] = {.lex_state = 1329}, + [6540] = {.lex_state = 30}, [6541] = {.lex_state = 30}, - [6542] = {.lex_state = 1321}, - [6543] = {.lex_state = 1321}, + [6542] = {.lex_state = 1329}, + [6543] = {.lex_state = 1329}, [6544] = {.lex_state = 30}, - [6545] = {.lex_state = 1321}, - [6546] = {.lex_state = 30}, - [6547] = {.lex_state = 30}, - [6548] = {.lex_state = 38}, - [6549] = {.lex_state = 38}, - [6550] = {.lex_state = 38}, - [6551] = {.lex_state = 1321}, - [6552] = {.lex_state = 1321}, + [6545] = {.lex_state = 30}, + [6546] = {.lex_state = 1329}, + [6547] = {.lex_state = 1329}, + [6548] = {.lex_state = 30}, + [6549] = {.lex_state = 30}, + [6550] = {.lex_state = 30}, + [6551] = {.lex_state = 1329}, + [6552] = {.lex_state = 30}, [6553] = {.lex_state = 30}, [6554] = {.lex_state = 30}, - [6555] = {.lex_state = 1321}, - [6556] = {.lex_state = 1321}, - [6557] = {.lex_state = 1321}, - [6558] = {.lex_state = 1321}, - [6559] = {.lex_state = 1321}, - [6560] = {.lex_state = 1321}, - [6561] = {.lex_state = 1321}, + [6555] = {.lex_state = 1329}, + [6556] = {.lex_state = 30}, + [6557] = {.lex_state = 1329}, + [6558] = {.lex_state = 38}, + [6559] = {.lex_state = 30}, + [6560] = {.lex_state = 38}, + [6561] = {.lex_state = 38}, [6562] = {.lex_state = 30}, - [6563] = {.lex_state = 1321}, - [6564] = {.lex_state = 1321}, - [6565] = {.lex_state = 1321}, + [6563] = {.lex_state = 1329}, + [6564] = {.lex_state = 1329}, + [6565] = {.lex_state = 1329}, [6566] = {.lex_state = 39}, - [6567] = {.lex_state = 1321}, - [6568] = {.lex_state = 1321}, - [6569] = {.lex_state = 1321}, - [6570] = {.lex_state = 30}, - [6571] = {.lex_state = 1321}, - [6572] = {.lex_state = 30}, - [6573] = {.lex_state = 30}, - [6574] = {.lex_state = 30}, - [6575] = {.lex_state = 1321}, - [6576] = {.lex_state = 1321}, - [6577] = {.lex_state = 1321}, - [6578] = {.lex_state = 1321}, - [6579] = {.lex_state = 37}, + [6567] = {.lex_state = 1329}, + [6568] = {.lex_state = 1329}, + [6569] = {.lex_state = 1329}, + [6570] = {.lex_state = 38}, + [6571] = {.lex_state = 38}, + [6572] = {.lex_state = 38}, + [6573] = {.lex_state = 1329}, + [6574] = {.lex_state = 1329}, + [6575] = {.lex_state = 30}, + [6576] = {.lex_state = 1329}, + [6577] = {.lex_state = 30}, + [6578] = {.lex_state = 30}, + [6579] = {.lex_state = 30}, [6580] = {.lex_state = 30}, - [6581] = {.lex_state = 1321}, - [6582] = {.lex_state = 1321}, - [6583] = {.lex_state = 30}, - [6584] = {.lex_state = 30}, - [6585] = {.lex_state = 1321}, - [6586] = {.lex_state = 1321}, + [6581] = {.lex_state = 30}, + [6582] = {.lex_state = 1329}, + [6583] = {.lex_state = 1329}, + [6584] = {.lex_state = 1329}, + [6585] = {.lex_state = 1329}, + [6586] = {.lex_state = 30}, [6587] = {.lex_state = 30}, - [6588] = {.lex_state = 30}, - [6589] = {.lex_state = 1321}, - [6590] = {.lex_state = 1321}, - [6591] = {.lex_state = 1321}, - [6592] = {.lex_state = 1321}, + [6588] = {.lex_state = 1329}, + [6589] = {.lex_state = 1329}, + [6590] = {.lex_state = 30}, + [6591] = {.lex_state = 1329}, + [6592] = {.lex_state = 1329}, [6593] = {.lex_state = 30}, - [6594] = {.lex_state = 1321}, - [6595] = {.lex_state = 37}, - [6596] = {.lex_state = 1321}, - [6597] = {.lex_state = 1335}, - [6598] = {.lex_state = 1321}, - [6599] = {.lex_state = 30}, - [6600] = {.lex_state = 30}, - [6601] = {.lex_state = 30}, - [6602] = {.lex_state = 30}, - [6603] = {.lex_state = 30}, - [6604] = {.lex_state = 1321}, - [6605] = {.lex_state = 1321}, - [6606] = {.lex_state = 30}, + [6594] = {.lex_state = 1329}, + [6595] = {.lex_state = 30}, + [6596] = {.lex_state = 30}, + [6597] = {.lex_state = 1329}, + [6598] = {.lex_state = 1329}, + [6599] = {.lex_state = 1329}, + [6600] = {.lex_state = 1329}, + [6601] = {.lex_state = 1329}, + [6602] = {.lex_state = 1329}, + [6603] = {.lex_state = 38}, + [6604] = {.lex_state = 30}, + [6605] = {.lex_state = 38}, + [6606] = {.lex_state = 38}, [6607] = {.lex_state = 30}, - [6608] = {.lex_state = 30}, - [6609] = {.lex_state = 30}, - [6610] = {.lex_state = 30}, - [6611] = {.lex_state = 30}, - [6612] = {.lex_state = 1321}, - [6613] = {.lex_state = 1321}, - [6614] = {.lex_state = 30}, - [6615] = {.lex_state = 37}, - [6616] = {.lex_state = 1321}, - [6617] = {.lex_state = 30}, + [6608] = {.lex_state = 37}, + [6609] = {.lex_state = 1329}, + [6610] = {.lex_state = 1329}, + [6611] = {.lex_state = 1329}, + [6612] = {.lex_state = 1329}, + [6613] = {.lex_state = 30}, + [6614] = {.lex_state = 38}, + [6615] = {.lex_state = 38}, + [6616] = {.lex_state = 38}, + [6617] = {.lex_state = 1329}, [6618] = {.lex_state = 30}, [6619] = {.lex_state = 30}, - [6620] = {.lex_state = 30}, - [6621] = {.lex_state = 1321}, - [6622] = {.lex_state = 30}, - [6623] = {.lex_state = 30}, + [6620] = {.lex_state = 1329}, + [6621] = {.lex_state = 30}, + [6622] = {.lex_state = 1329}, + [6623] = {.lex_state = 1329}, [6624] = {.lex_state = 30}, - [6625] = {.lex_state = 30}, + [6625] = {.lex_state = 1329}, [6626] = {.lex_state = 30}, - [6627] = {.lex_state = 1321}, - [6628] = {.lex_state = 30}, - [6629] = {.lex_state = 1321}, - [6630] = {.lex_state = 1321}, - [6631] = {.lex_state = 1321}, + [6627] = {.lex_state = 1329}, + [6628] = {.lex_state = 1329}, + [6629] = {.lex_state = 30}, + [6630] = {.lex_state = 30}, + [6631] = {.lex_state = 1329}, [6632] = {.lex_state = 30}, [6633] = {.lex_state = 30}, - [6634] = {.lex_state = 30}, - [6635] = {.lex_state = 30}, + [6634] = {.lex_state = 1329}, + [6635] = {.lex_state = 1329}, [6636] = {.lex_state = 30}, - [6637] = {.lex_state = 30}, + [6637] = {.lex_state = 1329}, [6638] = {.lex_state = 30}, - [6639] = {.lex_state = 38}, - [6640] = {.lex_state = 30}, - [6641] = {.lex_state = 30}, + [6639] = {.lex_state = 30}, + [6640] = {.lex_state = 1329}, + [6641] = {.lex_state = 1329}, [6642] = {.lex_state = 30}, - [6643] = {.lex_state = 30}, + [6643] = {.lex_state = 1329}, [6644] = {.lex_state = 30}, - [6645] = {.lex_state = 1321}, - [6646] = {.lex_state = 30}, - [6647] = {.lex_state = 1321}, - [6648] = {.lex_state = 1321}, - [6649] = {.lex_state = 1321}, - [6650] = {.lex_state = 208}, - [6651] = {.lex_state = 30}, - [6652] = {.lex_state = 30}, + [6645] = {.lex_state = 30}, + [6646] = {.lex_state = 38}, + [6647] = {.lex_state = 30}, + [6648] = {.lex_state = 38}, + [6649] = {.lex_state = 38}, + [6650] = {.lex_state = 30}, + [6651] = {.lex_state = 1329}, + [6652] = {.lex_state = 1329}, [6653] = {.lex_state = 30}, - [6654] = {.lex_state = 30}, - [6655] = {.lex_state = 1321}, - [6656] = {.lex_state = 1321}, - [6657] = {.lex_state = 30}, - [6658] = {.lex_state = 30}, - [6659] = {.lex_state = 30}, - [6660] = {.lex_state = 30}, - [6661] = {.lex_state = 30}, - [6662] = {.lex_state = 1321}, - [6663] = {.lex_state = 30}, - [6664] = {.lex_state = 1321}, - [6665] = {.lex_state = 1321}, - [6666] = {.lex_state = 30}, - [6667] = {.lex_state = 30}, - [6668] = {.lex_state = 1321}, - [6669] = {.lex_state = 1321}, - [6670] = {.lex_state = 1321}, - [6671] = {.lex_state = 30}, - [6672] = {.lex_state = 1321}, - [6673] = {.lex_state = 1321}, - [6674] = {.lex_state = 1321}, - [6675] = {.lex_state = 30}, - [6676] = {.lex_state = 30}, - [6677] = {.lex_state = 30}, + [6654] = {.lex_state = 1329}, + [6655] = {.lex_state = 1329}, + [6656] = {.lex_state = 30}, + [6657] = {.lex_state = 38}, + [6658] = {.lex_state = 38}, + [6659] = {.lex_state = 38}, + [6660] = {.lex_state = 1329}, + [6661] = {.lex_state = 1329}, + [6662] = {.lex_state = 30}, + [6663] = {.lex_state = 1329}, + [6664] = {.lex_state = 30}, + [6665] = {.lex_state = 1329}, + [6666] = {.lex_state = 1329}, + [6667] = {.lex_state = 1329}, + [6668] = {.lex_state = 1329}, + [6669] = {.lex_state = 1329}, + [6670] = {.lex_state = 30}, + [6671] = {.lex_state = 1329}, + [6672] = {.lex_state = 1329}, + [6673] = {.lex_state = 1329}, + [6674] = {.lex_state = 1329}, + [6675] = {.lex_state = 1329}, + [6676] = {.lex_state = 1329}, + [6677] = {.lex_state = 1329}, [6678] = {.lex_state = 30}, - [6679] = {.lex_state = 30}, - [6680] = {.lex_state = 30}, - [6681] = {.lex_state = 39}, - [6682] = {.lex_state = 1321}, - [6683] = {.lex_state = 1321}, - [6684] = {.lex_state = 38}, - [6685] = {.lex_state = 1321}, - [6686] = {.lex_state = 1321}, - [6687] = {.lex_state = 30}, + [6679] = {.lex_state = 1329}, + [6680] = {.lex_state = 37}, + [6681] = {.lex_state = 1329}, + [6682] = {.lex_state = 1329}, + [6683] = {.lex_state = 30}, + [6684] = {.lex_state = 30}, + [6685] = {.lex_state = 1329}, + [6686] = {.lex_state = 30}, + [6687] = {.lex_state = 1329}, [6688] = {.lex_state = 30}, - [6689] = {.lex_state = 1321}, - [6690] = {.lex_state = 1321}, - [6691] = {.lex_state = 1321}, + [6689] = {.lex_state = 1329}, + [6690] = {.lex_state = 1329}, + [6691] = {.lex_state = 1329}, [6692] = {.lex_state = 30}, - [6693] = {.lex_state = 38}, - [6694] = {.lex_state = 1321}, - [6695] = {.lex_state = 1321}, - [6696] = {.lex_state = 30}, - [6697] = {.lex_state = 1321}, - [6698] = {.lex_state = 30}, - [6699] = {.lex_state = 1321}, - [6700] = {.lex_state = 1321}, - [6701] = {.lex_state = 127}, - [6702] = {.lex_state = 1321}, - [6703] = {(TSStateId)(-1)}, - [6704] = {(TSStateId)(-1)}, - [6705] = {(TSStateId)(-1)}, - [6706] = {(TSStateId)(-1)}, - [6707] = {(TSStateId)(-1)}, + [6693] = {.lex_state = 1329}, + [6694] = {.lex_state = 1329}, + [6695] = {.lex_state = 1329}, + [6696] = {.lex_state = 1329}, + [6697] = {.lex_state = 38}, + [6698] = {.lex_state = 1329}, + [6699] = {.lex_state = 30}, + [6700] = {.lex_state = 30}, + [6701] = {.lex_state = 30}, + [6702] = {.lex_state = 30}, + [6703] = {.lex_state = 1329}, + [6704] = {.lex_state = 39}, + [6705] = {.lex_state = 1343}, + [6706] = {.lex_state = 30}, + [6707] = {.lex_state = 30}, + [6708] = {.lex_state = 1329}, + [6709] = {.lex_state = 30}, + [6710] = {.lex_state = 30}, + [6711] = {.lex_state = 30}, + [6712] = {.lex_state = 30}, + [6713] = {.lex_state = 1329}, + [6714] = {.lex_state = 30}, + [6715] = {.lex_state = 30}, + [6716] = {.lex_state = 30}, + [6717] = {.lex_state = 1329}, + [6718] = {.lex_state = 30}, + [6719] = {.lex_state = 30}, + [6720] = {.lex_state = 1329}, + [6721] = {.lex_state = 1329}, + [6722] = {.lex_state = 1329}, + [6723] = {.lex_state = 1329}, + [6724] = {.lex_state = 30}, + [6725] = {.lex_state = 30}, + [6726] = {.lex_state = 1329}, + [6727] = {.lex_state = 30}, + [6728] = {.lex_state = 30}, + [6729] = {.lex_state = 30}, + [6730] = {.lex_state = 1329}, + [6731] = {.lex_state = 39}, + [6732] = {.lex_state = 30}, + [6733] = {.lex_state = 30}, + [6734] = {.lex_state = 30}, + [6735] = {.lex_state = 30}, + [6736] = {.lex_state = 30}, + [6737] = {.lex_state = 39}, + [6738] = {.lex_state = 1329}, + [6739] = {.lex_state = 1329}, + [6740] = {.lex_state = 30}, + [6741] = {.lex_state = 1329}, + [6742] = {.lex_state = 30}, + [6743] = {.lex_state = 1329}, + [6744] = {.lex_state = 30}, + [6745] = {.lex_state = 30}, + [6746] = {.lex_state = 216}, + [6747] = {.lex_state = 1329}, + [6748] = {.lex_state = 1329}, + [6749] = {.lex_state = 30}, + [6750] = {.lex_state = 30}, + [6751] = {.lex_state = 30}, + [6752] = {.lex_state = 1329}, + [6753] = {.lex_state = 1329}, + [6754] = {.lex_state = 1329}, + [6755] = {.lex_state = 30}, + [6756] = {.lex_state = 30}, + [6757] = {.lex_state = 30}, + [6758] = {.lex_state = 30}, + [6759] = {.lex_state = 1329}, + [6760] = {.lex_state = 1329}, + [6761] = {.lex_state = 30}, + [6762] = {.lex_state = 1329}, + [6763] = {.lex_state = 30}, + [6764] = {.lex_state = 30}, + [6765] = {.lex_state = 1329}, + [6766] = {.lex_state = 1329}, + [6767] = {.lex_state = 1329}, + [6768] = {.lex_state = 30}, + [6769] = {.lex_state = 30}, + [6770] = {.lex_state = 30}, + [6771] = {.lex_state = 1329}, + [6772] = {.lex_state = 1329}, + [6773] = {.lex_state = 1329}, + [6774] = {.lex_state = 1329}, + [6775] = {.lex_state = 1329}, + [6776] = {.lex_state = 1329}, + [6777] = {.lex_state = 30}, + [6778] = {.lex_state = 216}, + [6779] = {.lex_state = 1329}, + [6780] = {.lex_state = 38}, + [6781] = {.lex_state = 1329}, + [6782] = {.lex_state = 30}, + [6783] = {.lex_state = 1329}, + [6784] = {.lex_state = 1329}, + [6785] = {.lex_state = 38}, + [6786] = {.lex_state = 38}, + [6787] = {.lex_state = 1329}, + [6788] = {.lex_state = 30}, + [6789] = {.lex_state = 30}, + [6790] = {.lex_state = 30}, + [6791] = {.lex_state = 1329}, + [6792] = {.lex_state = 30}, + [6793] = {.lex_state = 30}, + [6794] = {.lex_state = 30}, + [6795] = {.lex_state = 1329}, + [6796] = {.lex_state = 30}, + [6797] = {.lex_state = 30}, + [6798] = {.lex_state = 30}, + [6799] = {.lex_state = 1329}, + [6800] = {.lex_state = 30}, + [6801] = {.lex_state = 30}, + [6802] = {.lex_state = 1329}, + [6803] = {.lex_state = 1329}, + [6804] = {.lex_state = 1329}, + [6805] = {.lex_state = 30}, + [6806] = {.lex_state = 1329}, + [6807] = {.lex_state = 1329}, + [6808] = {.lex_state = 30}, + [6809] = {.lex_state = 1329}, + [6810] = {.lex_state = 1329}, + [6811] = {.lex_state = 134}, + [6812] = {.lex_state = 38}, + [6813] = {(TSStateId)(-1)}, + [6814] = {(TSStateId)(-1)}, + [6815] = {(TSStateId)(-1)}, + [6816] = {(TSStateId)(-1)}, + [6817] = {(TSStateId)(-1)}, }; enum { @@ -43683,8 +44245,9 @@ enum { ts_external_token__namedoublecolon = 2, ts_external_token__or_operator = 3, ts_external_token__and_operator = 4, - ts_external_token__escaped_string = 5, - ts_external_token__special_character = 6, + ts_external_token__augmented_assignment = 5, + ts_external_token__escaped_string = 6, + ts_external_token__special_character = 7, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -43693,17 +44256,19 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__namedoublecolon] = sym__namedoublecolon, [ts_external_token__or_operator] = sym__or_operator, [ts_external_token__and_operator] = sym__and_operator, + [ts_external_token__augmented_assignment] = sym__augmented_assignment, [ts_external_token__escaped_string] = sym__escaped_string, [ts_external_token__special_character] = sym__special_character, }; -static const bool ts_external_scanner_states[21][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[24][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__namedot] = true, [ts_external_token__namecolon] = true, [ts_external_token__namedoublecolon] = true, [ts_external_token__or_operator] = true, [ts_external_token__and_operator] = true, + [ts_external_token__augmented_assignment] = true, [ts_external_token__escaped_string] = true, [ts_external_token__special_character] = true, }, @@ -43725,11 +44290,11 @@ static const bool ts_external_scanner_states[21][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__and_operator] = true, }, [5] = { + [ts_external_token__namedoublecolon] = true, [ts_external_token__or_operator] = true, [ts_external_token__and_operator] = true, }, [6] = { - [ts_external_token__namedoublecolon] = true, [ts_external_token__or_operator] = true, [ts_external_token__and_operator] = true, }, @@ -43744,6 +44309,7 @@ static const bool ts_external_scanner_states[21][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__namedot] = true, [ts_external_token__namecolon] = true, [ts_external_token__namedoublecolon] = true, + [ts_external_token__augmented_assignment] = true, [ts_external_token__escaped_string] = true, }, [10] = { @@ -43791,12 +44357,25 @@ static const bool ts_external_scanner_states[21][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__namedot] = true, [ts_external_token__namecolon] = true, [ts_external_token__namedoublecolon] = true, + [ts_external_token__augmented_assignment] = true, }, [19] = { - [ts_external_token__special_character] = true, + [ts_external_token__namecolon] = true, + [ts_external_token__augmented_assignment] = true, }, [20] = { + [ts_external_token__special_character] = true, + }, + [21] = { + [ts_external_token__augmented_assignment] = true, + }, + [22] = { + [ts_external_token__namedot] = true, + [ts_external_token__augmented_assignment] = true, + }, + [23] = { [ts_external_token__namedoublecolon] = true, + [ts_external_token__augmented_assignment] = true, }, }; @@ -44070,60 +44649,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__namedoublecolon] = ACTIONS(1), [sym__or_operator] = ACTIONS(1), [sym__and_operator] = ACTIONS(1), + [sym__augmented_assignment] = ACTIONS(1), [sym__escaped_string] = ACTIONS(1), [sym__special_character] = ACTIONS(1), }, [1] = { - [sym_source_code] = STATE(6674), + [sym_source_code] = STATE(6783), [sym_comment] = STATE(1), - [sym_qualified_name] = STATE(6673), + [sym_qualified_name] = STATE(5477), [sym_include] = STATE(1), - [sym_assignment] = STATE(6672), - [sym_variable_definition] = STATE(2025), - [sym_variable_assignment] = STATE(2025), - [sym_buffer_definition] = STATE(2025), - [sym_query_definition] = STATE(2025), - [sym_function_call_statement] = STATE(2025), - [sym_function_call] = STATE(6670), - [sym_if_statement] = STATE(2025), - [sym_label] = STATE(2028), - [sym_repeat_statement] = STATE(2025), - [sym_procedure_statement] = STATE(2025), - [sym_procedure_parameter_definition] = STATE(2025), - [sym_function_statement] = STATE(2025), - [sym_return_statement] = STATE(2025), - [sym_interface_statement] = STATE(2025), - [sym_dataset_definition] = STATE(2025), - [sym_using_statement] = STATE(2025), - [sym_class_statement] = STATE(2025), - [sym_object_access] = STATE(5325), - [sym_member_access] = STATE(6673), - [sym_stream_definition] = STATE(2025), - [sym_input_close_statement] = STATE(2025), - [sym_output_close_statement] = STATE(2025), - [sym__stream_statement] = STATE(2025), - [sym_input_stream_statement] = STATE(2029), - [sym_output_stream_statement] = STATE(2029), - [sym_do_block] = STATE(2025), - [sym_case_statement] = STATE(2025), - [sym_for_statement] = STATE(2025), - [sym_find_statement] = STATE(2025), - [sym_abl_statement] = STATE(2025), - [sym_assign_statement] = STATE(2025), - [sym_catch_statement] = STATE(2025), - [sym_finally_statement] = STATE(2025), - [sym_accumulate_statement] = STATE(2025), - [sym_undo_statement] = STATE(2025), - [sym_error_scope_statement] = STATE(2025), - [sym_workfile_definition] = STATE(2025), - [sym_temp_table_definition] = STATE(2025), - [sym_on_statement] = STATE(2025), - [sym_prompt_for_statement] = STATE(2025), - [sym_var_statement] = STATE(2025), - [sym_button_definition] = STATE(2025), - [sym_run_statement] = STATE(2025), - [sym__statement] = STATE(2030), - [aux_sym_source_code_repeat1] = STATE(54), + [sym_assignment] = STATE(6781), + [sym_variable_assignment] = STATE(1978), + [sym_variable_definition] = STATE(1978), + [sym_buffer_definition] = STATE(1978), + [sym_query_definition] = STATE(1978), + [sym_function_call_statement] = STATE(1978), + [sym_function_call] = STATE(5450), + [sym_if_statement] = STATE(1978), + [sym_label] = STATE(1979), + [sym_repeat_statement] = STATE(1978), + [sym_procedure_statement] = STATE(1978), + [sym_procedure_parameter_definition] = STATE(1978), + [sym_function_statement] = STATE(1978), + [sym_return_statement] = STATE(1978), + [sym_interface_statement] = STATE(1978), + [sym_dataset_definition] = STATE(1978), + [sym_using_statement] = STATE(1978), + [sym_class_statement] = STATE(1978), + [sym_new_expression] = STATE(5480), + [sym_object_access] = STATE(4649), + [sym_member_access] = STATE(5477), + [sym_stream_definition] = STATE(1978), + [sym_input_close_statement] = STATE(1978), + [sym_output_close_statement] = STATE(1978), + [sym__stream_statement] = STATE(1978), + [sym_input_stream_statement] = STATE(1980), + [sym_output_stream_statement] = STATE(1980), + [sym_do_block] = STATE(1978), + [sym_case_statement] = STATE(1978), + [sym_for_statement] = STATE(1978), + [sym_find_statement] = STATE(1978), + [sym_abl_statement] = STATE(1978), + [sym_assign_statement] = STATE(1978), + [sym_catch_statement] = STATE(1978), + [sym_finally_statement] = STATE(1978), + [sym_accumulate_statement] = STATE(1978), + [sym_undo_statement] = STATE(1978), + [sym_error_scope_statement] = STATE(1978), + [sym_workfile_definition] = STATE(1978), + [sym_temp_table_definition] = STATE(1978), + [sym_on_statement] = STATE(1978), + [sym_prompt_for_statement] = STATE(1978), + [sym_var_statement] = STATE(1978), + [sym_button_definition] = STATE(1978), + [sym_run_statement] = STATE(1978), + [sym__statement] = STATE(1981), + [aux_sym_source_code_repeat1] = STATE(53), [ts_builtin_sym_end] = ACTIONS(9), [sym_identifier] = ACTIONS(11), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -44131,1353 +44712,1636 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(7), [aux_sym_input_expression_token1] = ACTIONS(13), [aux_sym_class_type_token1] = ACTIONS(15), - [aux_sym_variable_definition_token1] = ACTIONS(17), - [aux_sym_variable_definition_token2] = ACTIONS(17), - [aux_sym_buffer_definition_token2] = ACTIONS(19), - [aux_sym_return_type_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__function_terminator_token1] = ACTIONS(31), - [aux_sym_interface_statement_token1] = ACTIONS(33), - [aux_sym_using_statement_token1] = ACTIONS(35), - [aux_sym_on_error_phrase_token1] = ACTIONS(37), - [aux_sym_on_error_phrase_token3] = ACTIONS(39), - [aux_sym_do_block_token1] = ACTIONS(41), - [aux_sym__case_terminator_token1] = ACTIONS(43), - [aux_sym_find_statement_token1] = ACTIONS(45), - [aux_sym_assign_statement_token1] = ACTIONS(47), - [aux_sym_catch_statement_token1] = ACTIONS(49), - [aux_sym_finally_statement_token1] = ACTIONS(51), - [aux_sym_accumulate_statement_token1] = ACTIONS(53), - [aux_sym_error_scope_statement_token1] = ACTIONS(55), - [aux_sym_error_scope_statement_token2] = ACTIONS(55), - [aux_sym_prompt_for_statement_token1] = ACTIONS(57), - [aux_sym_var_statement_token1] = ACTIONS(59), - [aux_sym_run_statement_token1] = ACTIONS(61), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(19), + [aux_sym_variable_definition_token2] = ACTIONS(19), + [aux_sym_buffer_definition_token2] = ACTIONS(21), + [aux_sym_return_type_token2] = ACTIONS(23), + [aux_sym_argument_mode_token1] = ACTIONS(25), + [aux_sym_if_statement_token1] = ACTIONS(27), + [aux_sym_repeat_statement_token1] = ACTIONS(29), + [aux_sym__procedure_terminator_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), + [aux_sym_error_scope_statement_token1] = ACTIONS(57), + [aux_sym_error_scope_statement_token2] = ACTIONS(57), + [aux_sym_prompt_for_statement_token1] = ACTIONS(59), + [aux_sym_var_statement_token1] = ACTIONS(61), + [aux_sym_run_statement_token1] = ACTIONS(63), }, [2] = { [sym_comment] = STATE(2), [sym_include] = STATE(2), - [sym_function_arguments] = STATE(44), - [aux_sym_qualified_name_repeat1] = STATE(6), - [aux_sym_object_access_repeat1] = STATE(5), - [aux_sym_member_access_repeat1] = STATE(13), - [anon_sym_COLON] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(63), - [sym__terminator] = ACTIONS(63), - [aux_sym__block_terminator_token1] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(73), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_RBRACK] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(75), - [anon_sym_RPAREN] = ACTIONS(63), - [aux_sym_unary_expression_token2] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [aux_sym__multiplicative_operator_token1] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(69), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_LT_GT] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(69), - [anon_sym_GT_EQ] = ACTIONS(63), - [aux_sym__comparison_operator_token1] = ACTIONS(63), - [aux_sym__comparison_operator_token2] = ACTIONS(63), - [aux_sym__comparison_operator_token3] = ACTIONS(63), - [aux_sym__comparison_operator_token4] = ACTIONS(63), - [aux_sym__comparison_operator_token5] = ACTIONS(63), - [aux_sym__comparison_operator_token6] = ACTIONS(63), - [aux_sym__comparison_operator_token7] = ACTIONS(63), - [aux_sym__comparison_operator_token8] = ACTIONS(63), - [aux_sym__comparison_operator_token9] = ACTIONS(63), - [aux_sym_when_expression_token1] = ACTIONS(63), - [aux_sym_variable_tuning_token1] = ACTIONS(63), - [aux_sym_variable_tuning_token2] = ACTIONS(69), - [aux_sym_variable_tuning_token3] = ACTIONS(63), - [aux_sym_variable_tuning_token4] = ACTIONS(63), - [aux_sym_variable_tuning_token5] = ACTIONS(63), - [aux_sym_variable_tuning_token6] = ACTIONS(63), - [aux_sym_variable_tuning_token7] = ACTIONS(63), - [aux_sym_variable_tuning_token8] = ACTIONS(63), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(63), - [aux_sym_function_call_token1] = ACTIONS(63), - [aux_sym_if_statement_token2] = ACTIONS(63), - [aux_sym_else_statement_token1] = ACTIONS(63), - [aux_sym_while_phrase_token1] = ACTIONS(63), - [aux_sym_repeat_tuning_token1] = ACTIONS(63), - [aux_sym_using_statement_token1] = ACTIONS(63), - [aux_sym_input_stream_tuning_token1] = ACTIONS(63), - [aux_sym_input_stream_tuning_token2] = ACTIONS(63), - [aux_sym_input_stream_tuning_token3] = ACTIONS(63), - [aux_sym_input_stream_tuning_token4] = ACTIONS(63), - [aux_sym_input_stream_tuning_token5] = ACTIONS(63), - [aux_sym_input_stream_tuning_token6] = ACTIONS(63), - [aux_sym_input_stream_tuning_token7] = ACTIONS(63), - [aux_sym_input_stream_tuning_token8] = ACTIONS(63), - [aux_sym_input_stream_tuning_token9] = ACTIONS(63), - [aux_sym_input_stream_tuning_token11] = ACTIONS(63), - [aux_sym_output_stream_tuning_token1] = ACTIONS(63), - [aux_sym_output_stream_tuning_token2] = ACTIONS(63), - [aux_sym_output_stream_tuning_token3] = ACTIONS(63), - [aux_sym_output_stream_tuning_token4] = ACTIONS(63), - [aux_sym_output_stream_tuning_token5] = ACTIONS(63), - [aux_sym_output_stream_tuning_token6] = ACTIONS(63), - [aux_sym_output_stream_tuning_token7] = ACTIONS(63), - [aux_sym_output_stream_statement_token1] = ACTIONS(63), - [aux_sym_on_error_phrase_token1] = ACTIONS(63), - [aux_sym_stop_after_phrase_token1] = ACTIONS(63), - [aux_sym_do_tuning_token1] = ACTIONS(63), - [anon_sym_BY] = ACTIONS(63), - [aux_sym_where_clause_token1] = ACTIONS(63), - [aux_sym_query_tuning_token1] = ACTIONS(63), - [aux_sym_query_tuning_token2] = ACTIONS(63), - [aux_sym_query_tuning_token3] = ACTIONS(63), - [aux_sym_query_tuning_token4] = ACTIONS(63), - [aux_sym_query_tuning_token5] = ACTIONS(63), - [aux_sym_of_token1] = ACTIONS(63), - [aux_sym_field_option_token1] = ACTIONS(63), - [aux_sym_field_option_token2] = ACTIONS(63), - [aux_sym_field_option_token3] = ACTIONS(63), - [aux_sym_field_option_token4] = ACTIONS(63), - [aux_sym_field_option_token5] = ACTIONS(63), - [aux_sym_field_option_token6] = ACTIONS(63), - [aux_sym_field_definition_token1] = ACTIONS(63), - [aux_sym_index_definition_token1] = ACTIONS(63), - [aux_sym_on_statement_token1] = ACTIONS(63), - [sym__namedot] = ACTIONS(77), - [sym__namecolon] = ACTIONS(79), - [sym__namedoublecolon] = ACTIONS(81), - [sym__or_operator] = ACTIONS(63), - [sym__and_operator] = ACTIONS(63), + [sym_function_arguments] = STATE(24), + [aux_sym_qualified_name_repeat1] = STATE(8), + [aux_sym_object_access_repeat1] = STATE(4), + [aux_sym_member_access_repeat1] = STATE(12), + [anon_sym_COLON] = ACTIONS(65), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(65), + [sym__terminator] = ACTIONS(65), + [aux_sym__block_terminator_token1] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_COMMA] = ACTIONS(65), + [anon_sym_RBRACK] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(77), + [anon_sym_RPAREN] = ACTIONS(65), + [aux_sym_unary_expression_token2] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [aux_sym__multiplicative_operator_token1] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_LT_EQ] = ACTIONS(65), + [anon_sym_LT_GT] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(71), + [anon_sym_GT_EQ] = ACTIONS(65), + [aux_sym__comparison_operator_token1] = ACTIONS(65), + [aux_sym__comparison_operator_token2] = ACTIONS(65), + [aux_sym__comparison_operator_token3] = ACTIONS(65), + [aux_sym__comparison_operator_token4] = ACTIONS(65), + [aux_sym__comparison_operator_token5] = ACTIONS(65), + [aux_sym__comparison_operator_token6] = ACTIONS(65), + [aux_sym__comparison_operator_token7] = ACTIONS(65), + [aux_sym__comparison_operator_token8] = ACTIONS(65), + [aux_sym__comparison_operator_token9] = ACTIONS(65), + [aux_sym_when_expression_token1] = ACTIONS(65), + [aux_sym_variable_tuning_token1] = ACTIONS(65), + [aux_sym_variable_tuning_token2] = ACTIONS(71), + [aux_sym_variable_tuning_token3] = ACTIONS(65), + [aux_sym_variable_tuning_token4] = ACTIONS(65), + [aux_sym_variable_tuning_token5] = ACTIONS(65), + [aux_sym_variable_tuning_token6] = ACTIONS(65), + [aux_sym_variable_tuning_token7] = ACTIONS(65), + [aux_sym_variable_tuning_token8] = ACTIONS(65), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(65), + [aux_sym_function_call_token1] = ACTIONS(65), + [aux_sym_if_statement_token2] = ACTIONS(65), + [aux_sym_else_statement_token1] = ACTIONS(65), + [aux_sym_while_phrase_token1] = ACTIONS(65), + [aux_sym_repeat_tuning_token1] = ACTIONS(65), + [aux_sym_using_statement_token1] = ACTIONS(65), + [aux_sym_input_stream_tuning_token1] = ACTIONS(65), + [aux_sym_input_stream_tuning_token2] = ACTIONS(65), + [aux_sym_input_stream_tuning_token3] = ACTIONS(65), + [aux_sym_input_stream_tuning_token4] = ACTIONS(65), + [aux_sym_input_stream_tuning_token5] = ACTIONS(65), + [aux_sym_input_stream_tuning_token6] = ACTIONS(65), + [aux_sym_input_stream_tuning_token7] = ACTIONS(65), + [aux_sym_input_stream_tuning_token8] = ACTIONS(65), + [aux_sym_input_stream_tuning_token9] = ACTIONS(65), + [aux_sym_input_stream_tuning_token11] = ACTIONS(65), + [aux_sym_output_stream_tuning_token1] = ACTIONS(65), + [aux_sym_output_stream_tuning_token2] = ACTIONS(65), + [aux_sym_output_stream_tuning_token3] = ACTIONS(65), + [aux_sym_output_stream_tuning_token4] = ACTIONS(65), + [aux_sym_output_stream_tuning_token5] = ACTIONS(65), + [aux_sym_output_stream_tuning_token6] = ACTIONS(65), + [aux_sym_output_stream_tuning_token7] = ACTIONS(65), + [aux_sym_output_stream_statement_token1] = ACTIONS(65), + [aux_sym_on_error_phrase_token1] = ACTIONS(65), + [aux_sym_stop_after_phrase_token1] = ACTIONS(65), + [aux_sym_do_tuning_token1] = ACTIONS(65), + [anon_sym_BY] = ACTIONS(65), + [aux_sym_where_clause_token1] = ACTIONS(65), + [aux_sym_query_tuning_token1] = ACTIONS(65), + [aux_sym_query_tuning_token2] = ACTIONS(65), + [aux_sym_query_tuning_token3] = ACTIONS(65), + [aux_sym_query_tuning_token4] = ACTIONS(65), + [aux_sym_query_tuning_token5] = ACTIONS(65), + [aux_sym_of_token1] = ACTIONS(65), + [aux_sym_field_option_token1] = ACTIONS(65), + [aux_sym_field_option_token2] = ACTIONS(65), + [aux_sym_field_option_token3] = ACTIONS(65), + [aux_sym_field_option_token4] = ACTIONS(65), + [aux_sym_field_option_token5] = ACTIONS(65), + [aux_sym_field_option_token6] = ACTIONS(65), + [aux_sym_field_definition_token1] = ACTIONS(65), + [aux_sym_index_definition_token1] = ACTIONS(65), + [aux_sym_on_statement_token1] = ACTIONS(65), + [sym__namedot] = ACTIONS(79), + [sym__namecolon] = ACTIONS(81), + [sym__namedoublecolon] = ACTIONS(83), + [sym__or_operator] = ACTIONS(65), + [sym__and_operator] = ACTIONS(65), }, [3] = { [sym_comment] = STATE(3), [sym_include] = STATE(3), - [sym_function_arguments] = STATE(44), - [aux_sym_qualified_name_repeat1] = STATE(6), - [aux_sym_object_access_repeat1] = STATE(5), - [aux_sym_member_access_repeat1] = STATE(13), - [anon_sym_COLON] = ACTIONS(83), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(83), - [sym__terminator] = ACTIONS(83), - [aux_sym__block_terminator_token1] = ACTIONS(83), - [anon_sym_COMMA] = ACTIONS(83), - [anon_sym_RBRACK] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(75), - [anon_sym_RPAREN] = ACTIONS(83), - [aux_sym_unary_expression_token2] = ACTIONS(83), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [aux_sym__multiplicative_operator_token1] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_LT_GT] = ACTIONS(83), - [anon_sym_EQ] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [aux_sym__comparison_operator_token1] = ACTIONS(83), - [aux_sym__comparison_operator_token2] = ACTIONS(83), - [aux_sym__comparison_operator_token3] = ACTIONS(83), - [aux_sym__comparison_operator_token4] = ACTIONS(83), - [aux_sym__comparison_operator_token5] = ACTIONS(83), - [aux_sym__comparison_operator_token6] = ACTIONS(83), - [aux_sym__comparison_operator_token7] = ACTIONS(83), - [aux_sym__comparison_operator_token8] = ACTIONS(83), - [aux_sym__comparison_operator_token9] = ACTIONS(83), - [aux_sym_when_expression_token1] = ACTIONS(83), - [aux_sym_variable_tuning_token1] = ACTIONS(83), - [aux_sym_variable_tuning_token2] = ACTIONS(85), - [aux_sym_variable_tuning_token3] = ACTIONS(83), - [aux_sym_variable_tuning_token4] = ACTIONS(83), - [aux_sym_variable_tuning_token5] = ACTIONS(83), - [aux_sym_variable_tuning_token6] = ACTIONS(83), - [aux_sym_variable_tuning_token7] = ACTIONS(83), - [aux_sym_variable_tuning_token8] = ACTIONS(83), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(83), - [aux_sym_function_call_token1] = ACTIONS(83), - [aux_sym_if_statement_token2] = ACTIONS(83), - [aux_sym_else_statement_token1] = ACTIONS(83), - [aux_sym_while_phrase_token1] = ACTIONS(83), - [aux_sym_repeat_tuning_token1] = ACTIONS(83), - [aux_sym_using_statement_token1] = ACTIONS(83), - [aux_sym_input_stream_tuning_token1] = ACTIONS(83), - [aux_sym_input_stream_tuning_token2] = ACTIONS(83), - [aux_sym_input_stream_tuning_token3] = ACTIONS(83), - [aux_sym_input_stream_tuning_token4] = ACTIONS(83), - [aux_sym_input_stream_tuning_token5] = ACTIONS(83), - [aux_sym_input_stream_tuning_token6] = ACTIONS(83), - [aux_sym_input_stream_tuning_token7] = ACTIONS(83), - [aux_sym_input_stream_tuning_token8] = ACTIONS(83), - [aux_sym_input_stream_tuning_token9] = ACTIONS(83), - [aux_sym_input_stream_tuning_token11] = ACTIONS(83), - [aux_sym_output_stream_tuning_token1] = ACTIONS(83), - [aux_sym_output_stream_tuning_token2] = ACTIONS(83), - [aux_sym_output_stream_tuning_token3] = ACTIONS(83), - [aux_sym_output_stream_tuning_token4] = ACTIONS(83), - [aux_sym_output_stream_tuning_token5] = ACTIONS(83), - [aux_sym_output_stream_tuning_token6] = ACTIONS(83), - [aux_sym_output_stream_tuning_token7] = ACTIONS(83), - [aux_sym_output_stream_statement_token1] = ACTIONS(83), - [aux_sym_on_error_phrase_token1] = ACTIONS(83), - [aux_sym_stop_after_phrase_token1] = ACTIONS(83), - [aux_sym_do_tuning_token1] = ACTIONS(83), - [anon_sym_BY] = ACTIONS(83), - [aux_sym_where_clause_token1] = ACTIONS(83), - [aux_sym_query_tuning_token1] = ACTIONS(83), - [aux_sym_query_tuning_token2] = ACTIONS(83), - [aux_sym_query_tuning_token3] = ACTIONS(83), - [aux_sym_query_tuning_token4] = ACTIONS(83), - [aux_sym_query_tuning_token5] = ACTIONS(83), - [aux_sym_of_token1] = ACTIONS(83), - [aux_sym_field_option_token1] = ACTIONS(83), - [aux_sym_field_option_token2] = ACTIONS(83), - [aux_sym_field_option_token3] = ACTIONS(83), - [aux_sym_field_option_token4] = ACTIONS(83), - [aux_sym_field_option_token5] = ACTIONS(83), - [aux_sym_field_option_token6] = ACTIONS(83), - [aux_sym_field_definition_token1] = ACTIONS(83), - [aux_sym_index_definition_token1] = ACTIONS(83), - [aux_sym_on_statement_token1] = ACTIONS(83), - [sym__namedot] = ACTIONS(77), - [sym__namecolon] = ACTIONS(79), - [sym__namedoublecolon] = ACTIONS(81), - [sym__or_operator] = ACTIONS(83), - [sym__and_operator] = ACTIONS(83), + [sym_function_arguments] = STATE(24), + [aux_sym_qualified_name_repeat1] = STATE(8), + [aux_sym_object_access_repeat1] = STATE(4), + [aux_sym_member_access_repeat1] = STATE(12), + [anon_sym_COLON] = ACTIONS(85), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(87), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(85), + [sym__terminator] = ACTIONS(85), + [aux_sym__block_terminator_token1] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(77), + [anon_sym_RPAREN] = ACTIONS(85), + [aux_sym_unary_expression_token2] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(85), + [aux_sym__multiplicative_operator_token1] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(87), + [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_when_expression_token1] = ACTIONS(85), + [aux_sym_variable_tuning_token1] = ACTIONS(85), + [aux_sym_variable_tuning_token2] = ACTIONS(87), + [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), + [aux_sym_variable_tuning_token7] = ACTIONS(85), + [aux_sym_variable_tuning_token8] = ACTIONS(85), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(85), + [aux_sym_function_call_token1] = ACTIONS(85), + [aux_sym_if_statement_token2] = ACTIONS(85), + [aux_sym_else_statement_token1] = ACTIONS(85), + [aux_sym_while_phrase_token1] = ACTIONS(85), + [aux_sym_repeat_tuning_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_statement_token1] = ACTIONS(85), + [aux_sym_on_error_phrase_token1] = ACTIONS(85), + [aux_sym_stop_after_phrase_token1] = ACTIONS(85), + [aux_sym_do_tuning_token1] = ACTIONS(85), + [anon_sym_BY] = ACTIONS(85), + [aux_sym_where_clause_token1] = ACTIONS(85), + [aux_sym_query_tuning_token1] = ACTIONS(85), + [aux_sym_query_tuning_token2] = ACTIONS(85), + [aux_sym_query_tuning_token3] = ACTIONS(85), + [aux_sym_query_tuning_token4] = ACTIONS(85), + [aux_sym_query_tuning_token5] = ACTIONS(85), + [aux_sym_of_token1] = ACTIONS(85), + [aux_sym_field_option_token1] = ACTIONS(85), + [aux_sym_field_option_token2] = ACTIONS(85), + [aux_sym_field_option_token3] = ACTIONS(85), + [aux_sym_field_option_token4] = ACTIONS(85), + [aux_sym_field_option_token5] = ACTIONS(85), + [aux_sym_field_option_token6] = 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(79), + [sym__namecolon] = ACTIONS(81), + [sym__namedoublecolon] = ACTIONS(83), + [sym__or_operator] = ACTIONS(85), + [sym__and_operator] = ACTIONS(85), }, [4] = { [sym_comment] = STATE(4), [sym_include] = STATE(4), - [aux_sym_object_access_repeat1] = STATE(4), - [anon_sym_COLON] = ACTIONS(87), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(89), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(87), - [sym__terminator] = ACTIONS(87), - [aux_sym__block_terminator_token1] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_COMMA] = ACTIONS(87), - [anon_sym_RBRACK] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_RPAREN] = ACTIONS(87), - [aux_sym_unary_expression_token2] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [aux_sym__multiplicative_operator_token1] = ACTIONS(87), - [anon_sym_LT] = ACTIONS(89), - [anon_sym_LT_EQ] = ACTIONS(87), - [anon_sym_LT_GT] = ACTIONS(87), - [anon_sym_EQ] = ACTIONS(87), - [anon_sym_GT] = ACTIONS(89), - [anon_sym_GT_EQ] = ACTIONS(87), - [aux_sym__comparison_operator_token1] = ACTIONS(87), - [aux_sym__comparison_operator_token2] = ACTIONS(87), - [aux_sym__comparison_operator_token3] = ACTIONS(87), - [aux_sym__comparison_operator_token4] = ACTIONS(87), - [aux_sym__comparison_operator_token5] = ACTIONS(87), - [aux_sym__comparison_operator_token6] = ACTIONS(87), - [aux_sym__comparison_operator_token7] = ACTIONS(87), - [aux_sym__comparison_operator_token8] = ACTIONS(87), - [aux_sym__comparison_operator_token9] = ACTIONS(87), - [aux_sym_when_expression_token1] = ACTIONS(87), - [aux_sym_variable_tuning_token1] = ACTIONS(87), - [aux_sym_variable_tuning_token2] = ACTIONS(89), - [aux_sym_variable_tuning_token3] = ACTIONS(87), - [aux_sym_variable_tuning_token4] = ACTIONS(87), - [aux_sym_variable_tuning_token5] = ACTIONS(87), - [aux_sym_variable_tuning_token6] = ACTIONS(87), - [aux_sym_variable_tuning_token7] = ACTIONS(87), - [aux_sym_variable_tuning_token8] = ACTIONS(87), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(87), - [aux_sym_function_call_token1] = ACTIONS(87), - [aux_sym_if_statement_token2] = ACTIONS(87), - [aux_sym_else_statement_token1] = ACTIONS(87), - [aux_sym_while_phrase_token1] = ACTIONS(87), - [aux_sym_repeat_tuning_token1] = ACTIONS(87), - [aux_sym_using_statement_token1] = ACTIONS(87), - [aux_sym_input_stream_tuning_token1] = ACTIONS(87), - [aux_sym_input_stream_tuning_token2] = ACTIONS(87), - [aux_sym_input_stream_tuning_token3] = ACTIONS(87), - [aux_sym_input_stream_tuning_token4] = ACTIONS(87), - [aux_sym_input_stream_tuning_token5] = ACTIONS(87), - [aux_sym_input_stream_tuning_token6] = ACTIONS(87), - [aux_sym_input_stream_tuning_token7] = ACTIONS(87), - [aux_sym_input_stream_tuning_token8] = ACTIONS(87), - [aux_sym_input_stream_tuning_token9] = ACTIONS(87), - [aux_sym_input_stream_tuning_token11] = ACTIONS(87), - [aux_sym_output_stream_tuning_token1] = ACTIONS(87), - [aux_sym_output_stream_tuning_token2] = ACTIONS(87), - [aux_sym_output_stream_tuning_token3] = ACTIONS(87), - [aux_sym_output_stream_tuning_token4] = ACTIONS(87), - [aux_sym_output_stream_tuning_token5] = ACTIONS(87), - [aux_sym_output_stream_tuning_token6] = ACTIONS(87), - [aux_sym_output_stream_tuning_token7] = ACTIONS(87), - [aux_sym_output_stream_statement_token1] = ACTIONS(87), - [aux_sym_on_error_phrase_token1] = ACTIONS(87), - [aux_sym_stop_after_phrase_token1] = ACTIONS(87), - [aux_sym_do_tuning_token1] = ACTIONS(87), - [anon_sym_BY] = ACTIONS(87), - [aux_sym_where_clause_token1] = ACTIONS(87), - [aux_sym_query_tuning_token1] = ACTIONS(87), - [aux_sym_query_tuning_token2] = ACTIONS(87), - [aux_sym_query_tuning_token3] = ACTIONS(87), - [aux_sym_query_tuning_token4] = ACTIONS(87), - [aux_sym_query_tuning_token5] = ACTIONS(87), - [aux_sym_of_token1] = ACTIONS(87), - [aux_sym_field_option_token1] = ACTIONS(87), - [aux_sym_field_option_token2] = ACTIONS(87), - [aux_sym_field_option_token3] = ACTIONS(87), - [aux_sym_field_option_token4] = ACTIONS(87), - [aux_sym_field_option_token5] = ACTIONS(87), - [aux_sym_field_option_token6] = ACTIONS(87), - [aux_sym_field_definition_token1] = ACTIONS(87), - [aux_sym_index_definition_token1] = ACTIONS(87), - [aux_sym_on_statement_token1] = ACTIONS(87), - [sym__namecolon] = ACTIONS(91), - [sym__or_operator] = ACTIONS(87), - [sym__and_operator] = ACTIONS(87), + [aux_sym_object_access_repeat1] = STATE(6), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(89), + [sym__terminator] = ACTIONS(89), + [aux_sym__block_terminator_token1] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_RPAREN] = ACTIONS(89), + [aux_sym_unary_expression_token2] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [aux_sym__multiplicative_operator_token1] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(91), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(91), + [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_when_expression_token1] = ACTIONS(89), + [aux_sym_variable_tuning_token1] = ACTIONS(89), + [aux_sym_variable_tuning_token2] = ACTIONS(91), + [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), + [aux_sym_variable_tuning_token7] = ACTIONS(89), + [aux_sym_variable_tuning_token8] = ACTIONS(89), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(89), + [aux_sym_function_call_token1] = ACTIONS(89), + [aux_sym_if_statement_token2] = ACTIONS(89), + [aux_sym_else_statement_token1] = ACTIONS(89), + [aux_sym_while_phrase_token1] = ACTIONS(89), + [aux_sym_repeat_tuning_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_statement_token1] = ACTIONS(89), + [aux_sym_on_error_phrase_token1] = ACTIONS(89), + [aux_sym_stop_after_phrase_token1] = ACTIONS(89), + [aux_sym_do_tuning_token1] = ACTIONS(89), + [anon_sym_BY] = ACTIONS(89), + [aux_sym_where_clause_token1] = ACTIONS(89), + [aux_sym_query_tuning_token1] = ACTIONS(89), + [aux_sym_query_tuning_token2] = ACTIONS(89), + [aux_sym_query_tuning_token3] = ACTIONS(89), + [aux_sym_query_tuning_token4] = ACTIONS(89), + [aux_sym_query_tuning_token5] = ACTIONS(89), + [aux_sym_of_token1] = ACTIONS(89), + [aux_sym_field_option_token1] = ACTIONS(89), + [aux_sym_field_option_token2] = ACTIONS(89), + [aux_sym_field_option_token3] = ACTIONS(89), + [aux_sym_field_option_token4] = ACTIONS(89), + [aux_sym_field_option_token5] = ACTIONS(89), + [aux_sym_field_option_token6] = ACTIONS(89), + [aux_sym_field_definition_token1] = ACTIONS(89), + [aux_sym_index_definition_token1] = ACTIONS(89), + [aux_sym_on_statement_token1] = ACTIONS(89), + [sym__namecolon] = ACTIONS(81), + [sym__or_operator] = ACTIONS(89), + [sym__and_operator] = ACTIONS(89), }, [5] = { [sym_comment] = STATE(5), [sym_include] = STATE(5), - [aux_sym_object_access_repeat1] = STATE(4), - [anon_sym_COLON] = ACTIONS(94), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(96), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(94), - [sym__terminator] = ACTIONS(94), - [aux_sym__block_terminator_token1] = ACTIONS(94), - [anon_sym_LBRACK] = ACTIONS(94), - [anon_sym_COMMA] = ACTIONS(94), - [anon_sym_RBRACK] = ACTIONS(94), - [anon_sym_LPAREN] = ACTIONS(94), - [anon_sym_RPAREN] = ACTIONS(94), - [aux_sym_unary_expression_token2] = ACTIONS(94), - [anon_sym_PLUS] = ACTIONS(94), - [anon_sym_DASH] = ACTIONS(94), - [aux_sym__multiplicative_operator_token1] = ACTIONS(94), - [anon_sym_LT] = ACTIONS(96), - [anon_sym_LT_EQ] = ACTIONS(94), - [anon_sym_LT_GT] = ACTIONS(94), - [anon_sym_EQ] = ACTIONS(94), - [anon_sym_GT] = ACTIONS(96), - [anon_sym_GT_EQ] = ACTIONS(94), - [aux_sym__comparison_operator_token1] = ACTIONS(94), - [aux_sym__comparison_operator_token2] = ACTIONS(94), - [aux_sym__comparison_operator_token3] = ACTIONS(94), - [aux_sym__comparison_operator_token4] = ACTIONS(94), - [aux_sym__comparison_operator_token5] = ACTIONS(94), - [aux_sym__comparison_operator_token6] = ACTIONS(94), - [aux_sym__comparison_operator_token7] = ACTIONS(94), - [aux_sym__comparison_operator_token8] = ACTIONS(94), - [aux_sym__comparison_operator_token9] = ACTIONS(94), - [aux_sym_when_expression_token1] = ACTIONS(94), - [aux_sym_variable_tuning_token1] = ACTIONS(94), - [aux_sym_variable_tuning_token2] = ACTIONS(96), - [aux_sym_variable_tuning_token3] = ACTIONS(94), - [aux_sym_variable_tuning_token4] = ACTIONS(94), - [aux_sym_variable_tuning_token5] = ACTIONS(94), - [aux_sym_variable_tuning_token6] = ACTIONS(94), - [aux_sym_variable_tuning_token7] = ACTIONS(94), - [aux_sym_variable_tuning_token8] = ACTIONS(94), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(94), - [aux_sym_function_call_token1] = ACTIONS(94), - [aux_sym_if_statement_token2] = ACTIONS(94), - [aux_sym_else_statement_token1] = ACTIONS(94), - [aux_sym_while_phrase_token1] = ACTIONS(94), - [aux_sym_repeat_tuning_token1] = ACTIONS(94), - [aux_sym_using_statement_token1] = ACTIONS(94), - [aux_sym_input_stream_tuning_token1] = ACTIONS(94), - [aux_sym_input_stream_tuning_token2] = ACTIONS(94), - [aux_sym_input_stream_tuning_token3] = ACTIONS(94), - [aux_sym_input_stream_tuning_token4] = ACTIONS(94), - [aux_sym_input_stream_tuning_token5] = ACTIONS(94), - [aux_sym_input_stream_tuning_token6] = ACTIONS(94), - [aux_sym_input_stream_tuning_token7] = ACTIONS(94), - [aux_sym_input_stream_tuning_token8] = ACTIONS(94), - [aux_sym_input_stream_tuning_token9] = ACTIONS(94), - [aux_sym_input_stream_tuning_token11] = ACTIONS(94), - [aux_sym_output_stream_tuning_token1] = ACTIONS(94), - [aux_sym_output_stream_tuning_token2] = ACTIONS(94), - [aux_sym_output_stream_tuning_token3] = ACTIONS(94), - [aux_sym_output_stream_tuning_token4] = ACTIONS(94), - [aux_sym_output_stream_tuning_token5] = ACTIONS(94), - [aux_sym_output_stream_tuning_token6] = ACTIONS(94), - [aux_sym_output_stream_tuning_token7] = ACTIONS(94), - [aux_sym_output_stream_statement_token1] = ACTIONS(94), - [aux_sym_on_error_phrase_token1] = ACTIONS(94), - [aux_sym_stop_after_phrase_token1] = ACTIONS(94), - [aux_sym_do_tuning_token1] = ACTIONS(94), - [anon_sym_BY] = ACTIONS(94), - [aux_sym_where_clause_token1] = ACTIONS(94), - [aux_sym_query_tuning_token1] = ACTIONS(94), - [aux_sym_query_tuning_token2] = ACTIONS(94), - [aux_sym_query_tuning_token3] = ACTIONS(94), - [aux_sym_query_tuning_token4] = ACTIONS(94), - [aux_sym_query_tuning_token5] = ACTIONS(94), - [aux_sym_of_token1] = ACTIONS(94), - [aux_sym_field_option_token1] = ACTIONS(94), - [aux_sym_field_option_token2] = ACTIONS(94), - [aux_sym_field_option_token3] = ACTIONS(94), - [aux_sym_field_option_token4] = ACTIONS(94), - [aux_sym_field_option_token5] = ACTIONS(94), - [aux_sym_field_option_token6] = ACTIONS(94), - [aux_sym_field_definition_token1] = ACTIONS(94), - [aux_sym_index_definition_token1] = ACTIONS(94), - [aux_sym_on_statement_token1] = ACTIONS(94), - [sym__namecolon] = ACTIONS(79), - [sym__or_operator] = ACTIONS(94), - [sym__and_operator] = ACTIONS(94), + [aux_sym_object_access_repeat1] = STATE(6), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(89), + [sym__terminator] = ACTIONS(89), + [aux_sym__block_terminator_token1] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_RPAREN] = ACTIONS(89), + [aux_sym_unary_expression_token2] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [aux_sym__multiplicative_operator_token1] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(91), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(91), + [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_when_expression_token1] = ACTIONS(89), + [aux_sym_variable_tuning_token1] = ACTIONS(89), + [aux_sym_variable_tuning_token2] = ACTIONS(91), + [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), + [aux_sym_variable_tuning_token7] = ACTIONS(89), + [aux_sym_variable_tuning_token8] = ACTIONS(89), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(89), + [aux_sym_function_call_token1] = ACTIONS(89), + [aux_sym_if_statement_token2] = ACTIONS(89), + [aux_sym_else_statement_token1] = ACTIONS(89), + [aux_sym_while_phrase_token1] = ACTIONS(89), + [aux_sym_repeat_tuning_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_statement_token1] = ACTIONS(89), + [aux_sym_on_error_phrase_token1] = ACTIONS(89), + [aux_sym_stop_after_phrase_token1] = ACTIONS(89), + [aux_sym_do_tuning_token1] = ACTIONS(89), + [anon_sym_BY] = ACTIONS(89), + [aux_sym_where_clause_token1] = ACTIONS(89), + [aux_sym_query_tuning_token1] = ACTIONS(89), + [aux_sym_query_tuning_token2] = ACTIONS(89), + [aux_sym_query_tuning_token3] = ACTIONS(89), + [aux_sym_query_tuning_token4] = ACTIONS(89), + [aux_sym_query_tuning_token5] = ACTIONS(89), + [aux_sym_of_token1] = ACTIONS(89), + [aux_sym_field_option_token1] = ACTIONS(89), + [aux_sym_field_option_token2] = ACTIONS(89), + [aux_sym_field_option_token3] = ACTIONS(89), + [aux_sym_field_option_token4] = ACTIONS(89), + [aux_sym_field_option_token5] = ACTIONS(89), + [aux_sym_field_option_token6] = ACTIONS(89), + [aux_sym_field_definition_token1] = ACTIONS(89), + [aux_sym_index_definition_token1] = ACTIONS(89), + [aux_sym_on_statement_token1] = ACTIONS(89), + [sym__namecolon] = ACTIONS(81), + [sym__or_operator] = ACTIONS(89), + [sym__and_operator] = ACTIONS(89), }, [6] = { [sym_comment] = STATE(6), [sym_include] = STATE(6), - [aux_sym_qualified_name_repeat1] = STATE(11), - [anon_sym_COLON] = ACTIONS(98), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(100), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(98), - [sym__terminator] = ACTIONS(98), - [aux_sym__block_terminator_token1] = ACTIONS(98), - [anon_sym_COMMA] = ACTIONS(98), - [anon_sym_RBRACK] = ACTIONS(98), - [anon_sym_LPAREN] = ACTIONS(98), - [anon_sym_RPAREN] = ACTIONS(98), - [aux_sym_unary_expression_token2] = ACTIONS(98), - [anon_sym_PLUS] = ACTIONS(98), - [anon_sym_DASH] = ACTIONS(98), - [aux_sym__multiplicative_operator_token1] = ACTIONS(98), - [anon_sym_LT] = ACTIONS(100), - [anon_sym_LT_EQ] = ACTIONS(98), - [anon_sym_LT_GT] = ACTIONS(98), - [anon_sym_EQ] = ACTIONS(98), - [anon_sym_GT] = ACTIONS(100), - [anon_sym_GT_EQ] = ACTIONS(98), - [aux_sym__comparison_operator_token1] = ACTIONS(98), - [aux_sym__comparison_operator_token2] = ACTIONS(98), - [aux_sym__comparison_operator_token3] = ACTIONS(98), - [aux_sym__comparison_operator_token4] = ACTIONS(98), - [aux_sym__comparison_operator_token5] = ACTIONS(98), - [aux_sym__comparison_operator_token6] = ACTIONS(98), - [aux_sym__comparison_operator_token7] = ACTIONS(98), - [aux_sym__comparison_operator_token8] = ACTIONS(98), - [aux_sym__comparison_operator_token9] = ACTIONS(98), - [aux_sym_when_expression_token1] = ACTIONS(98), - [aux_sym_variable_tuning_token1] = ACTIONS(98), - [aux_sym_variable_tuning_token2] = ACTIONS(100), - [aux_sym_variable_tuning_token3] = ACTIONS(98), - [aux_sym_variable_tuning_token4] = ACTIONS(98), - [aux_sym_variable_tuning_token5] = ACTIONS(98), - [aux_sym_variable_tuning_token6] = ACTIONS(98), - [aux_sym_variable_tuning_token7] = ACTIONS(98), - [aux_sym_variable_tuning_token8] = ACTIONS(98), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(98), - [aux_sym_function_call_token1] = ACTIONS(98), - [aux_sym_if_statement_token2] = ACTIONS(98), - [aux_sym_else_statement_token1] = ACTIONS(98), - [aux_sym_while_phrase_token1] = ACTIONS(98), - [aux_sym_repeat_tuning_token1] = ACTIONS(98), - [aux_sym_using_statement_token1] = ACTIONS(98), - [aux_sym_input_stream_tuning_token1] = ACTIONS(98), - [aux_sym_input_stream_tuning_token2] = ACTIONS(98), - [aux_sym_input_stream_tuning_token3] = ACTIONS(98), - [aux_sym_input_stream_tuning_token4] = ACTIONS(98), - [aux_sym_input_stream_tuning_token5] = ACTIONS(98), - [aux_sym_input_stream_tuning_token6] = ACTIONS(98), - [aux_sym_input_stream_tuning_token7] = ACTIONS(98), - [aux_sym_input_stream_tuning_token8] = ACTIONS(98), - [aux_sym_input_stream_tuning_token9] = ACTIONS(98), - [aux_sym_input_stream_tuning_token11] = ACTIONS(98), - [aux_sym_output_stream_tuning_token1] = ACTIONS(98), - [aux_sym_output_stream_tuning_token2] = ACTIONS(98), - [aux_sym_output_stream_tuning_token3] = ACTIONS(98), - [aux_sym_output_stream_tuning_token4] = ACTIONS(98), - [aux_sym_output_stream_tuning_token5] = ACTIONS(98), - [aux_sym_output_stream_tuning_token6] = ACTIONS(98), - [aux_sym_output_stream_tuning_token7] = ACTIONS(98), - [aux_sym_output_stream_statement_token1] = ACTIONS(98), - [aux_sym_on_error_phrase_token1] = ACTIONS(98), - [aux_sym_stop_after_phrase_token1] = ACTIONS(98), - [aux_sym_do_tuning_token1] = ACTIONS(98), - [anon_sym_BY] = ACTIONS(98), - [aux_sym_where_clause_token1] = ACTIONS(98), - [aux_sym_query_tuning_token1] = ACTIONS(98), - [aux_sym_query_tuning_token2] = ACTIONS(98), - [aux_sym_query_tuning_token3] = ACTIONS(98), - [aux_sym_query_tuning_token4] = ACTIONS(98), - [aux_sym_query_tuning_token5] = ACTIONS(98), - [aux_sym_of_token1] = ACTIONS(98), - [aux_sym_field_option_token1] = ACTIONS(98), - [aux_sym_field_option_token2] = ACTIONS(98), - [aux_sym_field_option_token3] = ACTIONS(98), - [aux_sym_field_option_token4] = ACTIONS(98), - [aux_sym_field_option_token5] = ACTIONS(98), - [aux_sym_field_option_token6] = ACTIONS(98), - [aux_sym_field_definition_token1] = ACTIONS(98), - [aux_sym_index_definition_token1] = ACTIONS(98), - [aux_sym_on_statement_token1] = ACTIONS(98), - [sym__namedot] = ACTIONS(77), - [sym__or_operator] = ACTIONS(98), - [sym__and_operator] = ACTIONS(98), + [aux_sym_object_access_repeat1] = STATE(6), + [anon_sym_COLON] = ACTIONS(93), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(93), + [sym__terminator] = ACTIONS(93), + [aux_sym__block_terminator_token1] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_RBRACK] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_RPAREN] = ACTIONS(93), + [aux_sym_unary_expression_token2] = ACTIONS(93), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [aux_sym__multiplicative_operator_token1] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(93), + [anon_sym_LT_GT] = ACTIONS(93), + [anon_sym_EQ] = ACTIONS(93), + [anon_sym_GT] = ACTIONS(95), + [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_when_expression_token1] = ACTIONS(93), + [aux_sym_variable_tuning_token1] = ACTIONS(93), + [aux_sym_variable_tuning_token2] = ACTIONS(95), + [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), + [aux_sym_variable_tuning_token7] = ACTIONS(93), + [aux_sym_variable_tuning_token8] = ACTIONS(93), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(93), + [aux_sym_function_call_token1] = ACTIONS(93), + [aux_sym_if_statement_token2] = ACTIONS(93), + [aux_sym_else_statement_token1] = ACTIONS(93), + [aux_sym_while_phrase_token1] = ACTIONS(93), + [aux_sym_repeat_tuning_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_statement_token1] = ACTIONS(93), + [aux_sym_on_error_phrase_token1] = ACTIONS(93), + [aux_sym_stop_after_phrase_token1] = ACTIONS(93), + [aux_sym_do_tuning_token1] = ACTIONS(93), + [anon_sym_BY] = ACTIONS(93), + [aux_sym_where_clause_token1] = ACTIONS(93), + [aux_sym_query_tuning_token1] = ACTIONS(93), + [aux_sym_query_tuning_token2] = ACTIONS(93), + [aux_sym_query_tuning_token3] = ACTIONS(93), + [aux_sym_query_tuning_token4] = ACTIONS(93), + [aux_sym_query_tuning_token5] = ACTIONS(93), + [aux_sym_of_token1] = ACTIONS(93), + [aux_sym_field_option_token1] = ACTIONS(93), + [aux_sym_field_option_token2] = ACTIONS(93), + [aux_sym_field_option_token3] = ACTIONS(93), + [aux_sym_field_option_token4] = ACTIONS(93), + [aux_sym_field_option_token5] = ACTIONS(93), + [aux_sym_field_option_token6] = ACTIONS(93), + [aux_sym_field_definition_token1] = ACTIONS(93), + [aux_sym_index_definition_token1] = ACTIONS(93), + [aux_sym_on_statement_token1] = ACTIONS(93), + [sym__namecolon] = ACTIONS(97), + [sym__or_operator] = ACTIONS(93), + [sym__and_operator] = ACTIONS(93), }, [7] = { [sym_comment] = STATE(7), [sym_include] = STATE(7), - [aux_sym_qualified_name_repeat1] = STATE(6), - [anon_sym_COLON] = ACTIONS(102), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(104), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(102), - [sym__terminator] = ACTIONS(102), - [aux_sym__block_terminator_token1] = ACTIONS(102), - [anon_sym_COMMA] = ACTIONS(102), - [anon_sym_RBRACK] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(102), - [anon_sym_RPAREN] = ACTIONS(102), - [aux_sym_unary_expression_token2] = ACTIONS(102), - [anon_sym_PLUS] = ACTIONS(102), - [anon_sym_DASH] = ACTIONS(102), - [aux_sym__multiplicative_operator_token1] = ACTIONS(102), - [anon_sym_LT] = ACTIONS(104), - [anon_sym_LT_EQ] = ACTIONS(102), - [anon_sym_LT_GT] = ACTIONS(102), - [anon_sym_EQ] = ACTIONS(102), - [anon_sym_GT] = ACTIONS(104), - [anon_sym_GT_EQ] = ACTIONS(102), - [aux_sym__comparison_operator_token1] = ACTIONS(102), - [aux_sym__comparison_operator_token2] = ACTIONS(102), - [aux_sym__comparison_operator_token3] = ACTIONS(102), - [aux_sym__comparison_operator_token4] = ACTIONS(102), - [aux_sym__comparison_operator_token5] = ACTIONS(102), - [aux_sym__comparison_operator_token6] = ACTIONS(102), - [aux_sym__comparison_operator_token7] = ACTIONS(102), - [aux_sym__comparison_operator_token8] = ACTIONS(102), - [aux_sym__comparison_operator_token9] = ACTIONS(102), - [aux_sym_when_expression_token1] = ACTIONS(102), - [aux_sym_variable_tuning_token1] = ACTIONS(102), - [aux_sym_variable_tuning_token2] = ACTIONS(104), - [aux_sym_variable_tuning_token3] = ACTIONS(102), - [aux_sym_variable_tuning_token4] = ACTIONS(102), - [aux_sym_variable_tuning_token5] = ACTIONS(102), - [aux_sym_variable_tuning_token6] = ACTIONS(102), - [aux_sym_variable_tuning_token7] = ACTIONS(102), - [aux_sym_variable_tuning_token8] = ACTIONS(102), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(102), - [aux_sym_function_call_token1] = ACTIONS(102), - [aux_sym_if_statement_token2] = ACTIONS(102), - [aux_sym_else_statement_token1] = ACTIONS(102), - [aux_sym_while_phrase_token1] = ACTIONS(102), - [aux_sym_repeat_tuning_token1] = ACTIONS(102), - [aux_sym_using_statement_token1] = ACTIONS(102), - [aux_sym_input_stream_tuning_token1] = ACTIONS(102), - [aux_sym_input_stream_tuning_token2] = ACTIONS(102), - [aux_sym_input_stream_tuning_token3] = ACTIONS(102), - [aux_sym_input_stream_tuning_token4] = ACTIONS(102), - [aux_sym_input_stream_tuning_token5] = ACTIONS(102), - [aux_sym_input_stream_tuning_token6] = ACTIONS(102), - [aux_sym_input_stream_tuning_token7] = ACTIONS(102), - [aux_sym_input_stream_tuning_token8] = ACTIONS(102), - [aux_sym_input_stream_tuning_token9] = ACTIONS(102), - [aux_sym_input_stream_tuning_token11] = ACTIONS(102), - [aux_sym_output_stream_tuning_token1] = ACTIONS(102), - [aux_sym_output_stream_tuning_token2] = ACTIONS(102), - [aux_sym_output_stream_tuning_token3] = ACTIONS(102), - [aux_sym_output_stream_tuning_token4] = ACTIONS(102), - [aux_sym_output_stream_tuning_token5] = ACTIONS(102), - [aux_sym_output_stream_tuning_token6] = ACTIONS(102), - [aux_sym_output_stream_tuning_token7] = ACTIONS(102), - [aux_sym_output_stream_statement_token1] = ACTIONS(102), - [aux_sym_on_error_phrase_token1] = ACTIONS(102), - [aux_sym_stop_after_phrase_token1] = ACTIONS(102), - [aux_sym_do_tuning_token1] = ACTIONS(102), - [anon_sym_BY] = ACTIONS(102), - [aux_sym_where_clause_token1] = ACTIONS(102), - [aux_sym_query_tuning_token1] = ACTIONS(102), - [aux_sym_query_tuning_token2] = ACTIONS(102), - [aux_sym_query_tuning_token3] = ACTIONS(102), - [aux_sym_query_tuning_token4] = ACTIONS(102), - [aux_sym_query_tuning_token5] = ACTIONS(102), - [aux_sym_of_token1] = ACTIONS(102), - [aux_sym_field_option_token1] = ACTIONS(102), - [aux_sym_field_option_token2] = ACTIONS(102), - [aux_sym_field_option_token3] = ACTIONS(102), - [aux_sym_field_option_token4] = ACTIONS(102), - [aux_sym_field_option_token5] = ACTIONS(102), - [aux_sym_field_option_token6] = ACTIONS(102), - [aux_sym_field_definition_token1] = ACTIONS(102), - [aux_sym_index_definition_token1] = ACTIONS(102), - [aux_sym_on_statement_token1] = ACTIONS(102), - [sym__namedot] = ACTIONS(77), - [sym__or_operator] = ACTIONS(102), - [sym__and_operator] = ACTIONS(102), + [anon_sym_COLON] = ACTIONS(100), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(100), + [sym__terminator] = ACTIONS(100), + [aux_sym__block_terminator_token1] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_COMMA] = ACTIONS(100), + [anon_sym_RBRACK] = ACTIONS(100), + [anon_sym_LPAREN] = ACTIONS(100), + [anon_sym_RPAREN] = ACTIONS(100), + [aux_sym_unary_expression_token2] = ACTIONS(100), + [anon_sym_PLUS] = ACTIONS(100), + [anon_sym_DASH] = ACTIONS(100), + [aux_sym__multiplicative_operator_token1] = ACTIONS(100), + [anon_sym_LT] = ACTIONS(102), + [anon_sym_LT_EQ] = ACTIONS(100), + [anon_sym_LT_GT] = ACTIONS(100), + [anon_sym_EQ] = ACTIONS(100), + [anon_sym_GT] = ACTIONS(102), + [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_when_expression_token1] = ACTIONS(100), + [aux_sym_variable_tuning_token1] = ACTIONS(100), + [aux_sym_variable_tuning_token2] = ACTIONS(102), + [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_variable_tuning_token7] = ACTIONS(100), + [aux_sym_variable_tuning_token8] = ACTIONS(100), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(100), + [aux_sym_function_call_token1] = ACTIONS(100), + [aux_sym_if_statement_token2] = ACTIONS(100), + [aux_sym_else_statement_token1] = ACTIONS(100), + [aux_sym_while_phrase_token1] = ACTIONS(100), + [aux_sym_repeat_tuning_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_statement_token1] = ACTIONS(100), + [aux_sym_on_error_phrase_token1] = ACTIONS(100), + [aux_sym_stop_after_phrase_token1] = ACTIONS(100), + [aux_sym_do_tuning_token1] = ACTIONS(100), + [anon_sym_BY] = ACTIONS(100), + [aux_sym_where_clause_token1] = ACTIONS(100), + [aux_sym_query_tuning_token1] = ACTIONS(100), + [aux_sym_query_tuning_token2] = ACTIONS(100), + [aux_sym_query_tuning_token3] = ACTIONS(100), + [aux_sym_query_tuning_token4] = ACTIONS(100), + [aux_sym_query_tuning_token5] = ACTIONS(100), + [aux_sym_of_token1] = ACTIONS(100), + [aux_sym_field_option_token1] = ACTIONS(100), + [aux_sym_field_option_token2] = ACTIONS(100), + [aux_sym_field_option_token3] = ACTIONS(100), + [aux_sym_field_option_token4] = ACTIONS(100), + [aux_sym_field_option_token5] = ACTIONS(100), + [aux_sym_field_option_token6] = ACTIONS(100), + [aux_sym_field_definition_token1] = ACTIONS(100), + [aux_sym_index_definition_token1] = ACTIONS(100), + [aux_sym_on_statement_token1] = ACTIONS(100), + [sym__namecolon] = ACTIONS(100), + [sym__or_operator] = ACTIONS(100), + [sym__and_operator] = ACTIONS(100), }, [8] = { [sym_comment] = STATE(8), [sym_include] = STATE(8), - [aux_sym_qualified_name_repeat1] = STATE(6), - [anon_sym_COLON] = ACTIONS(106), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(108), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(106), - [sym__terminator] = ACTIONS(106), - [aux_sym__block_terminator_token1] = ACTIONS(106), - [anon_sym_COMMA] = ACTIONS(106), - [anon_sym_RBRACK] = ACTIONS(106), - [anon_sym_LPAREN] = ACTIONS(106), - [anon_sym_RPAREN] = ACTIONS(106), - [aux_sym_unary_expression_token2] = ACTIONS(106), - [anon_sym_PLUS] = ACTIONS(106), - [anon_sym_DASH] = ACTIONS(106), - [aux_sym__multiplicative_operator_token1] = ACTIONS(106), - [anon_sym_LT] = ACTIONS(108), - [anon_sym_LT_EQ] = ACTIONS(106), - [anon_sym_LT_GT] = ACTIONS(106), - [anon_sym_EQ] = ACTIONS(106), - [anon_sym_GT] = ACTIONS(108), - [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_when_expression_token1] = ACTIONS(106), - [aux_sym_variable_tuning_token1] = ACTIONS(106), - [aux_sym_variable_tuning_token2] = ACTIONS(108), - [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_variable_tuning_token7] = ACTIONS(106), - [aux_sym_variable_tuning_token8] = ACTIONS(106), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(106), - [aux_sym_function_call_token1] = ACTIONS(106), - [aux_sym_if_statement_token2] = ACTIONS(106), - [aux_sym_else_statement_token1] = ACTIONS(106), - [aux_sym_while_phrase_token1] = ACTIONS(106), - [aux_sym_repeat_tuning_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_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_of_token1] = ACTIONS(106), - [aux_sym_field_option_token1] = ACTIONS(106), - [aux_sym_field_option_token2] = ACTIONS(106), - [aux_sym_field_option_token3] = ACTIONS(106), - [aux_sym_field_option_token4] = ACTIONS(106), - [aux_sym_field_option_token5] = ACTIONS(106), - [aux_sym_field_option_token6] = ACTIONS(106), - [aux_sym_field_definition_token1] = ACTIONS(106), - [aux_sym_index_definition_token1] = ACTIONS(106), - [aux_sym_on_statement_token1] = ACTIONS(106), - [sym__namedot] = ACTIONS(77), - [sym__or_operator] = ACTIONS(106), - [sym__and_operator] = ACTIONS(106), + [aux_sym_qualified_name_repeat1] = STATE(9), + [anon_sym_COLON] = ACTIONS(104), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(106), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(104), + [sym__terminator] = ACTIONS(104), + [aux_sym__block_terminator_token1] = ACTIONS(104), + [anon_sym_COMMA] = ACTIONS(104), + [anon_sym_RBRACK] = ACTIONS(104), + [anon_sym_LPAREN] = ACTIONS(104), + [anon_sym_RPAREN] = ACTIONS(104), + [aux_sym_unary_expression_token2] = ACTIONS(104), + [anon_sym_PLUS] = ACTIONS(104), + [anon_sym_DASH] = ACTIONS(104), + [aux_sym__multiplicative_operator_token1] = ACTIONS(104), + [anon_sym_LT] = ACTIONS(106), + [anon_sym_LT_EQ] = ACTIONS(104), + [anon_sym_LT_GT] = ACTIONS(104), + [anon_sym_EQ] = ACTIONS(104), + [anon_sym_GT] = ACTIONS(106), + [anon_sym_GT_EQ] = ACTIONS(104), + [aux_sym__comparison_operator_token1] = ACTIONS(104), + [aux_sym__comparison_operator_token2] = ACTIONS(104), + [aux_sym__comparison_operator_token3] = ACTIONS(104), + [aux_sym__comparison_operator_token4] = ACTIONS(104), + [aux_sym__comparison_operator_token5] = ACTIONS(104), + [aux_sym__comparison_operator_token6] = ACTIONS(104), + [aux_sym__comparison_operator_token7] = ACTIONS(104), + [aux_sym__comparison_operator_token8] = ACTIONS(104), + [aux_sym__comparison_operator_token9] = ACTIONS(104), + [aux_sym_when_expression_token1] = ACTIONS(104), + [aux_sym_variable_tuning_token1] = ACTIONS(104), + [aux_sym_variable_tuning_token2] = ACTIONS(106), + [aux_sym_variable_tuning_token3] = ACTIONS(104), + [aux_sym_variable_tuning_token4] = ACTIONS(104), + [aux_sym_variable_tuning_token5] = ACTIONS(104), + [aux_sym_variable_tuning_token6] = ACTIONS(104), + [aux_sym_variable_tuning_token7] = ACTIONS(104), + [aux_sym_variable_tuning_token8] = ACTIONS(104), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(104), + [aux_sym_function_call_token1] = ACTIONS(104), + [aux_sym_if_statement_token2] = ACTIONS(104), + [aux_sym_else_statement_token1] = ACTIONS(104), + [aux_sym_while_phrase_token1] = ACTIONS(104), + [aux_sym_repeat_tuning_token1] = ACTIONS(104), + [aux_sym_using_statement_token1] = ACTIONS(104), + [aux_sym_input_stream_tuning_token1] = ACTIONS(104), + [aux_sym_input_stream_tuning_token2] = ACTIONS(104), + [aux_sym_input_stream_tuning_token3] = ACTIONS(104), + [aux_sym_input_stream_tuning_token4] = ACTIONS(104), + [aux_sym_input_stream_tuning_token5] = ACTIONS(104), + [aux_sym_input_stream_tuning_token6] = ACTIONS(104), + [aux_sym_input_stream_tuning_token7] = ACTIONS(104), + [aux_sym_input_stream_tuning_token8] = ACTIONS(104), + [aux_sym_input_stream_tuning_token9] = ACTIONS(104), + [aux_sym_input_stream_tuning_token11] = ACTIONS(104), + [aux_sym_output_stream_tuning_token1] = ACTIONS(104), + [aux_sym_output_stream_tuning_token2] = ACTIONS(104), + [aux_sym_output_stream_tuning_token3] = ACTIONS(104), + [aux_sym_output_stream_tuning_token4] = ACTIONS(104), + [aux_sym_output_stream_tuning_token5] = ACTIONS(104), + [aux_sym_output_stream_tuning_token6] = ACTIONS(104), + [aux_sym_output_stream_tuning_token7] = ACTIONS(104), + [aux_sym_output_stream_statement_token1] = ACTIONS(104), + [aux_sym_on_error_phrase_token1] = ACTIONS(104), + [aux_sym_stop_after_phrase_token1] = ACTIONS(104), + [aux_sym_do_tuning_token1] = ACTIONS(104), + [anon_sym_BY] = ACTIONS(104), + [aux_sym_where_clause_token1] = ACTIONS(104), + [aux_sym_query_tuning_token1] = ACTIONS(104), + [aux_sym_query_tuning_token2] = ACTIONS(104), + [aux_sym_query_tuning_token3] = ACTIONS(104), + [aux_sym_query_tuning_token4] = ACTIONS(104), + [aux_sym_query_tuning_token5] = ACTIONS(104), + [aux_sym_of_token1] = ACTIONS(104), + [aux_sym_field_option_token1] = ACTIONS(104), + [aux_sym_field_option_token2] = ACTIONS(104), + [aux_sym_field_option_token3] = ACTIONS(104), + [aux_sym_field_option_token4] = ACTIONS(104), + [aux_sym_field_option_token5] = ACTIONS(104), + [aux_sym_field_option_token6] = ACTIONS(104), + [aux_sym_field_definition_token1] = ACTIONS(104), + [aux_sym_index_definition_token1] = ACTIONS(104), + [aux_sym_on_statement_token1] = ACTIONS(104), + [sym__namedot] = ACTIONS(79), + [sym__or_operator] = ACTIONS(104), + [sym__and_operator] = ACTIONS(104), }, [9] = { [sym_comment] = STATE(9), [sym_include] = STATE(9), - [sym_function_arguments] = STATE(44), - [anon_sym_COLON] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(63), - [sym__terminator] = ACTIONS(63), - [aux_sym__block_terminator_token1] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(73), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_RBRACK] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(75), - [anon_sym_RPAREN] = ACTIONS(63), - [aux_sym_unary_expression_token2] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [aux_sym__multiplicative_operator_token1] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(69), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_LT_GT] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(69), - [anon_sym_GT_EQ] = ACTIONS(63), - [aux_sym__comparison_operator_token1] = ACTIONS(63), - [aux_sym__comparison_operator_token2] = ACTIONS(63), - [aux_sym__comparison_operator_token3] = ACTIONS(63), - [aux_sym__comparison_operator_token4] = ACTIONS(63), - [aux_sym__comparison_operator_token5] = ACTIONS(63), - [aux_sym__comparison_operator_token6] = ACTIONS(63), - [aux_sym__comparison_operator_token7] = ACTIONS(63), - [aux_sym__comparison_operator_token8] = ACTIONS(63), - [aux_sym__comparison_operator_token9] = ACTIONS(63), - [aux_sym_when_expression_token1] = ACTIONS(63), - [aux_sym_variable_tuning_token1] = ACTIONS(63), - [aux_sym_variable_tuning_token2] = ACTIONS(69), - [aux_sym_variable_tuning_token3] = ACTIONS(63), - [aux_sym_variable_tuning_token4] = ACTIONS(63), - [aux_sym_variable_tuning_token5] = ACTIONS(63), - [aux_sym_variable_tuning_token6] = ACTIONS(63), - [aux_sym_variable_tuning_token7] = ACTIONS(63), - [aux_sym_variable_tuning_token8] = ACTIONS(63), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(63), - [aux_sym_function_call_token1] = ACTIONS(63), - [aux_sym_if_statement_token2] = ACTIONS(63), - [aux_sym_else_statement_token1] = ACTIONS(63), - [aux_sym_while_phrase_token1] = ACTIONS(63), - [aux_sym_repeat_tuning_token1] = ACTIONS(63), - [aux_sym_using_statement_token1] = ACTIONS(63), - [aux_sym_input_stream_tuning_token1] = ACTIONS(63), - [aux_sym_input_stream_tuning_token2] = ACTIONS(63), - [aux_sym_input_stream_tuning_token3] = ACTIONS(63), - [aux_sym_input_stream_tuning_token4] = ACTIONS(63), - [aux_sym_input_stream_tuning_token5] = ACTIONS(63), - [aux_sym_input_stream_tuning_token6] = ACTIONS(63), - [aux_sym_input_stream_tuning_token7] = ACTIONS(63), - [aux_sym_input_stream_tuning_token8] = ACTIONS(63), - [aux_sym_input_stream_tuning_token9] = ACTIONS(63), - [aux_sym_input_stream_tuning_token11] = ACTIONS(63), - [aux_sym_output_stream_tuning_token1] = ACTIONS(63), - [aux_sym_output_stream_tuning_token2] = ACTIONS(63), - [aux_sym_output_stream_tuning_token3] = ACTIONS(63), - [aux_sym_output_stream_tuning_token4] = ACTIONS(63), - [aux_sym_output_stream_tuning_token5] = ACTIONS(63), - [aux_sym_output_stream_tuning_token6] = ACTIONS(63), - [aux_sym_output_stream_tuning_token7] = ACTIONS(63), - [aux_sym_output_stream_statement_token1] = ACTIONS(63), - [aux_sym_on_error_phrase_token1] = ACTIONS(63), - [aux_sym_stop_after_phrase_token1] = ACTIONS(63), - [aux_sym_do_tuning_token1] = ACTIONS(63), - [anon_sym_BY] = ACTIONS(63), - [aux_sym_where_clause_token1] = ACTIONS(63), - [aux_sym_query_tuning_token1] = ACTIONS(63), - [aux_sym_query_tuning_token2] = ACTIONS(63), - [aux_sym_query_tuning_token3] = ACTIONS(63), - [aux_sym_query_tuning_token4] = ACTIONS(63), - [aux_sym_query_tuning_token5] = ACTIONS(63), - [aux_sym_of_token1] = ACTIONS(63), - [aux_sym_field_option_token1] = ACTIONS(63), - [aux_sym_field_option_token2] = ACTIONS(63), - [aux_sym_field_option_token3] = ACTIONS(63), - [aux_sym_field_option_token4] = ACTIONS(63), - [aux_sym_field_option_token5] = ACTIONS(63), - [aux_sym_field_option_token6] = ACTIONS(63), - [aux_sym_field_definition_token1] = ACTIONS(63), - [aux_sym_index_definition_token1] = ACTIONS(63), - [aux_sym_on_statement_token1] = ACTIONS(63), - [sym__or_operator] = ACTIONS(63), - [sym__and_operator] = ACTIONS(63), + [aux_sym_qualified_name_repeat1] = STATE(9), + [anon_sym_COLON] = ACTIONS(108), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(110), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(108), + [sym__terminator] = ACTIONS(108), + [aux_sym__block_terminator_token1] = ACTIONS(108), + [anon_sym_COMMA] = ACTIONS(108), + [anon_sym_RBRACK] = ACTIONS(108), + [anon_sym_LPAREN] = ACTIONS(108), + [anon_sym_RPAREN] = ACTIONS(108), + [aux_sym_unary_expression_token2] = ACTIONS(108), + [anon_sym_PLUS] = ACTIONS(108), + [anon_sym_DASH] = ACTIONS(108), + [aux_sym__multiplicative_operator_token1] = ACTIONS(108), + [anon_sym_LT] = ACTIONS(110), + [anon_sym_LT_EQ] = ACTIONS(108), + [anon_sym_LT_GT] = ACTIONS(108), + [anon_sym_EQ] = ACTIONS(108), + [anon_sym_GT] = ACTIONS(110), + [anon_sym_GT_EQ] = ACTIONS(108), + [aux_sym__comparison_operator_token1] = ACTIONS(108), + [aux_sym__comparison_operator_token2] = ACTIONS(108), + [aux_sym__comparison_operator_token3] = ACTIONS(108), + [aux_sym__comparison_operator_token4] = ACTIONS(108), + [aux_sym__comparison_operator_token5] = ACTIONS(108), + [aux_sym__comparison_operator_token6] = ACTIONS(108), + [aux_sym__comparison_operator_token7] = ACTIONS(108), + [aux_sym__comparison_operator_token8] = ACTIONS(108), + [aux_sym__comparison_operator_token9] = ACTIONS(108), + [aux_sym_when_expression_token1] = ACTIONS(108), + [aux_sym_variable_tuning_token1] = ACTIONS(108), + [aux_sym_variable_tuning_token2] = ACTIONS(110), + [aux_sym_variable_tuning_token3] = ACTIONS(108), + [aux_sym_variable_tuning_token4] = ACTIONS(108), + [aux_sym_variable_tuning_token5] = ACTIONS(108), + [aux_sym_variable_tuning_token6] = ACTIONS(108), + [aux_sym_variable_tuning_token7] = ACTIONS(108), + [aux_sym_variable_tuning_token8] = ACTIONS(108), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(108), + [aux_sym_function_call_token1] = ACTIONS(108), + [aux_sym_if_statement_token2] = ACTIONS(108), + [aux_sym_else_statement_token1] = ACTIONS(108), + [aux_sym_while_phrase_token1] = ACTIONS(108), + [aux_sym_repeat_tuning_token1] = ACTIONS(108), + [aux_sym_using_statement_token1] = ACTIONS(108), + [aux_sym_input_stream_tuning_token1] = ACTIONS(108), + [aux_sym_input_stream_tuning_token2] = ACTIONS(108), + [aux_sym_input_stream_tuning_token3] = ACTIONS(108), + [aux_sym_input_stream_tuning_token4] = ACTIONS(108), + [aux_sym_input_stream_tuning_token5] = ACTIONS(108), + [aux_sym_input_stream_tuning_token6] = ACTIONS(108), + [aux_sym_input_stream_tuning_token7] = ACTIONS(108), + [aux_sym_input_stream_tuning_token8] = ACTIONS(108), + [aux_sym_input_stream_tuning_token9] = ACTIONS(108), + [aux_sym_input_stream_tuning_token11] = ACTIONS(108), + [aux_sym_output_stream_tuning_token1] = ACTIONS(108), + [aux_sym_output_stream_tuning_token2] = ACTIONS(108), + [aux_sym_output_stream_tuning_token3] = ACTIONS(108), + [aux_sym_output_stream_tuning_token4] = ACTIONS(108), + [aux_sym_output_stream_tuning_token5] = ACTIONS(108), + [aux_sym_output_stream_tuning_token6] = ACTIONS(108), + [aux_sym_output_stream_tuning_token7] = ACTIONS(108), + [aux_sym_output_stream_statement_token1] = ACTIONS(108), + [aux_sym_on_error_phrase_token1] = ACTIONS(108), + [aux_sym_stop_after_phrase_token1] = ACTIONS(108), + [aux_sym_do_tuning_token1] = ACTIONS(108), + [anon_sym_BY] = ACTIONS(108), + [aux_sym_where_clause_token1] = ACTIONS(108), + [aux_sym_query_tuning_token1] = ACTIONS(108), + [aux_sym_query_tuning_token2] = ACTIONS(108), + [aux_sym_query_tuning_token3] = ACTIONS(108), + [aux_sym_query_tuning_token4] = ACTIONS(108), + [aux_sym_query_tuning_token5] = ACTIONS(108), + [aux_sym_of_token1] = ACTIONS(108), + [aux_sym_field_option_token1] = ACTIONS(108), + [aux_sym_field_option_token2] = ACTIONS(108), + [aux_sym_field_option_token3] = ACTIONS(108), + [aux_sym_field_option_token4] = ACTIONS(108), + [aux_sym_field_option_token5] = ACTIONS(108), + [aux_sym_field_option_token6] = ACTIONS(108), + [aux_sym_field_definition_token1] = ACTIONS(108), + [aux_sym_index_definition_token1] = ACTIONS(108), + [aux_sym_on_statement_token1] = ACTIONS(108), + [sym__namedot] = ACTIONS(112), + [sym__or_operator] = ACTIONS(108), + [sym__and_operator] = ACTIONS(108), }, [10] = { [sym_comment] = STATE(10), [sym_include] = STATE(10), - [aux_sym_member_access_repeat1] = STATE(10), - [anon_sym_COLON] = ACTIONS(110), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(112), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(110), - [sym__terminator] = ACTIONS(110), - [aux_sym__block_terminator_token1] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(110), - [anon_sym_RBRACK] = ACTIONS(110), - [anon_sym_LPAREN] = ACTIONS(110), - [anon_sym_RPAREN] = ACTIONS(110), - [aux_sym_unary_expression_token2] = ACTIONS(110), - [anon_sym_PLUS] = ACTIONS(110), - [anon_sym_DASH] = ACTIONS(110), - [aux_sym__multiplicative_operator_token1] = ACTIONS(110), - [anon_sym_LT] = ACTIONS(112), - [anon_sym_LT_EQ] = ACTIONS(110), - [anon_sym_LT_GT] = ACTIONS(110), - [anon_sym_EQ] = ACTIONS(110), - [anon_sym_GT] = ACTIONS(112), - [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_when_expression_token1] = ACTIONS(110), - [aux_sym_variable_tuning_token1] = ACTIONS(110), - [aux_sym_variable_tuning_token2] = ACTIONS(112), - [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), - [aux_sym_variable_tuning_token7] = ACTIONS(110), - [aux_sym_variable_tuning_token8] = ACTIONS(110), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(110), - [aux_sym_function_call_token1] = ACTIONS(110), - [aux_sym_if_statement_token2] = ACTIONS(110), - [aux_sym_else_statement_token1] = ACTIONS(110), - [aux_sym_while_phrase_token1] = ACTIONS(110), - [aux_sym_repeat_tuning_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_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_of_token1] = ACTIONS(110), - [aux_sym_field_option_token1] = ACTIONS(110), - [aux_sym_field_option_token2] = ACTIONS(110), - [aux_sym_field_option_token3] = ACTIONS(110), - [aux_sym_field_option_token4] = ACTIONS(110), - [aux_sym_field_option_token5] = ACTIONS(110), - [aux_sym_field_option_token6] = ACTIONS(110), - [aux_sym_field_definition_token1] = ACTIONS(110), - [aux_sym_index_definition_token1] = ACTIONS(110), - [aux_sym_on_statement_token1] = ACTIONS(110), - [sym__namedoublecolon] = ACTIONS(114), - [sym__or_operator] = ACTIONS(110), - [sym__and_operator] = ACTIONS(110), + [aux_sym_object_access_repeat1] = STATE(6), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(89), + [sym__terminator] = ACTIONS(89), + [aux_sym__block_terminator_token1] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_RPAREN] = ACTIONS(89), + [aux_sym_unary_expression_token2] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [aux_sym__multiplicative_operator_token1] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(91), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(91), + [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_when_expression_token1] = ACTIONS(89), + [aux_sym_variable_tuning_token1] = ACTIONS(89), + [aux_sym_variable_tuning_token2] = ACTIONS(91), + [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), + [aux_sym_variable_tuning_token7] = ACTIONS(89), + [aux_sym_variable_tuning_token8] = ACTIONS(89), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(89), + [aux_sym_function_call_token1] = ACTIONS(89), + [aux_sym_if_statement_token2] = ACTIONS(89), + [aux_sym_else_statement_token1] = ACTIONS(89), + [aux_sym_while_phrase_token1] = ACTIONS(89), + [aux_sym_repeat_tuning_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_statement_token1] = ACTIONS(89), + [aux_sym_on_error_phrase_token1] = ACTIONS(89), + [aux_sym_stop_after_phrase_token1] = ACTIONS(89), + [aux_sym_do_tuning_token1] = ACTIONS(89), + [anon_sym_BY] = ACTIONS(89), + [aux_sym_where_clause_token1] = ACTIONS(89), + [aux_sym_query_tuning_token1] = ACTIONS(89), + [aux_sym_query_tuning_token2] = ACTIONS(89), + [aux_sym_query_tuning_token3] = ACTIONS(89), + [aux_sym_query_tuning_token4] = ACTIONS(89), + [aux_sym_query_tuning_token5] = ACTIONS(89), + [aux_sym_of_token1] = ACTIONS(89), + [aux_sym_field_option_token1] = ACTIONS(89), + [aux_sym_field_option_token2] = ACTIONS(89), + [aux_sym_field_option_token3] = ACTIONS(89), + [aux_sym_field_option_token4] = ACTIONS(89), + [aux_sym_field_option_token5] = ACTIONS(89), + [aux_sym_field_option_token6] = ACTIONS(89), + [aux_sym_field_definition_token1] = ACTIONS(89), + [aux_sym_index_definition_token1] = ACTIONS(89), + [aux_sym_on_statement_token1] = ACTIONS(89), + [sym__namecolon] = ACTIONS(81), + [sym__or_operator] = ACTIONS(89), + [sym__and_operator] = ACTIONS(89), }, [11] = { [sym_comment] = STATE(11), [sym_include] = STATE(11), - [aux_sym_qualified_name_repeat1] = STATE(11), - [anon_sym_COLON] = ACTIONS(117), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(117), - [sym__terminator] = ACTIONS(117), - [aux_sym__block_terminator_token1] = ACTIONS(117), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACK] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_RPAREN] = ACTIONS(117), - [aux_sym_unary_expression_token2] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(117), - [anon_sym_DASH] = ACTIONS(117), - [aux_sym__multiplicative_operator_token1] = ACTIONS(117), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_LT_GT] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(117), - [anon_sym_GT] = ACTIONS(119), - [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_when_expression_token1] = ACTIONS(117), - [aux_sym_variable_tuning_token1] = ACTIONS(117), - [aux_sym_variable_tuning_token2] = ACTIONS(119), - [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), - [aux_sym_variable_tuning_token7] = ACTIONS(117), - [aux_sym_variable_tuning_token8] = ACTIONS(117), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(117), - [aux_sym_function_call_token1] = ACTIONS(117), - [aux_sym_if_statement_token2] = ACTIONS(117), - [aux_sym_else_statement_token1] = ACTIONS(117), - [aux_sym_while_phrase_token1] = ACTIONS(117), - [aux_sym_repeat_tuning_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_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_of_token1] = ACTIONS(117), - [aux_sym_field_option_token1] = ACTIONS(117), - [aux_sym_field_option_token2] = ACTIONS(117), - [aux_sym_field_option_token3] = ACTIONS(117), - [aux_sym_field_option_token4] = ACTIONS(117), - [aux_sym_field_option_token5] = ACTIONS(117), - [aux_sym_field_option_token6] = ACTIONS(117), - [aux_sym_field_definition_token1] = ACTIONS(117), - [aux_sym_index_definition_token1] = ACTIONS(117), - [aux_sym_on_statement_token1] = ACTIONS(117), - [sym__namedot] = ACTIONS(121), - [sym__or_operator] = ACTIONS(117), - [sym__and_operator] = ACTIONS(117), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(115), + [sym__terminator] = ACTIONS(115), + [aux_sym__block_terminator_token1] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(115), + [aux_sym_unary_expression_token2] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [aux_sym__multiplicative_operator_token1] = ACTIONS(115), + [anon_sym_LT] = ACTIONS(117), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_LT_GT] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(115), + [aux_sym__comparison_operator_token1] = ACTIONS(115), + [aux_sym__comparison_operator_token2] = ACTIONS(115), + [aux_sym__comparison_operator_token3] = ACTIONS(115), + [aux_sym__comparison_operator_token4] = ACTIONS(115), + [aux_sym__comparison_operator_token5] = ACTIONS(115), + [aux_sym__comparison_operator_token6] = ACTIONS(115), + [aux_sym__comparison_operator_token7] = ACTIONS(115), + [aux_sym__comparison_operator_token8] = ACTIONS(115), + [aux_sym__comparison_operator_token9] = ACTIONS(115), + [aux_sym_when_expression_token1] = ACTIONS(115), + [aux_sym_variable_tuning_token1] = ACTIONS(115), + [aux_sym_variable_tuning_token2] = ACTIONS(117), + [aux_sym_variable_tuning_token3] = ACTIONS(115), + [aux_sym_variable_tuning_token4] = ACTIONS(115), + [aux_sym_variable_tuning_token5] = ACTIONS(115), + [aux_sym_variable_tuning_token6] = ACTIONS(115), + [aux_sym_variable_tuning_token7] = ACTIONS(115), + [aux_sym_variable_tuning_token8] = ACTIONS(115), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(115), + [aux_sym_function_call_token1] = ACTIONS(115), + [aux_sym_if_statement_token2] = ACTIONS(115), + [aux_sym_else_statement_token1] = ACTIONS(115), + [aux_sym_while_phrase_token1] = ACTIONS(115), + [aux_sym_repeat_tuning_token1] = ACTIONS(115), + [aux_sym_using_statement_token1] = ACTIONS(115), + [anon_sym_NO_DASHERROR] = ACTIONS(117), + [aux_sym_input_stream_tuning_token1] = ACTIONS(115), + [aux_sym_input_stream_tuning_token2] = ACTIONS(115), + [aux_sym_input_stream_tuning_token3] = ACTIONS(115), + [aux_sym_input_stream_tuning_token4] = ACTIONS(115), + [aux_sym_input_stream_tuning_token5] = ACTIONS(115), + [aux_sym_input_stream_tuning_token6] = ACTIONS(115), + [aux_sym_input_stream_tuning_token7] = ACTIONS(115), + [aux_sym_input_stream_tuning_token8] = ACTIONS(115), + [aux_sym_input_stream_tuning_token9] = ACTIONS(115), + [aux_sym_input_stream_tuning_token11] = ACTIONS(115), + [aux_sym_output_stream_tuning_token1] = ACTIONS(115), + [aux_sym_output_stream_tuning_token2] = ACTIONS(115), + [aux_sym_output_stream_tuning_token3] = ACTIONS(115), + [aux_sym_output_stream_tuning_token4] = ACTIONS(115), + [aux_sym_output_stream_tuning_token5] = ACTIONS(115), + [aux_sym_output_stream_tuning_token6] = ACTIONS(115), + [aux_sym_output_stream_tuning_token7] = ACTIONS(115), + [aux_sym_output_stream_statement_token1] = ACTIONS(115), + [aux_sym_on_error_phrase_token1] = ACTIONS(115), + [aux_sym_stop_after_phrase_token1] = ACTIONS(115), + [aux_sym_do_tuning_token1] = ACTIONS(115), + [anon_sym_BY] = ACTIONS(115), + [aux_sym_where_clause_token1] = ACTIONS(115), + [aux_sym_query_tuning_token1] = ACTIONS(115), + [aux_sym_query_tuning_token2] = ACTIONS(115), + [aux_sym_query_tuning_token3] = ACTIONS(115), + [aux_sym_query_tuning_token4] = ACTIONS(115), + [aux_sym_query_tuning_token5] = ACTIONS(115), + [aux_sym_of_token1] = ACTIONS(115), + [aux_sym_field_option_token1] = ACTIONS(115), + [aux_sym_field_option_token2] = ACTIONS(115), + [aux_sym_field_option_token3] = ACTIONS(115), + [aux_sym_field_option_token4] = ACTIONS(115), + [aux_sym_field_option_token5] = ACTIONS(115), + [aux_sym_field_option_token6] = ACTIONS(115), + [aux_sym_field_definition_token1] = ACTIONS(115), + [aux_sym_index_definition_token1] = ACTIONS(115), + [aux_sym_on_statement_token1] = ACTIONS(115), + [sym__namecolon] = ACTIONS(115), + [sym__or_operator] = ACTIONS(115), + [sym__and_operator] = ACTIONS(115), }, [12] = { [sym_comment] = STATE(12), [sym_include] = STATE(12), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(124), - [sym__terminator] = ACTIONS(124), - [aux_sym__block_terminator_token1] = ACTIONS(124), - [anon_sym_LBRACK] = ACTIONS(124), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_LPAREN] = ACTIONS(124), - [anon_sym_RPAREN] = ACTIONS(124), - [aux_sym_unary_expression_token2] = ACTIONS(124), - [anon_sym_PLUS] = ACTIONS(124), - [anon_sym_DASH] = ACTIONS(124), - [aux_sym__multiplicative_operator_token1] = ACTIONS(124), - [anon_sym_LT] = ACTIONS(126), - [anon_sym_LT_EQ] = ACTIONS(124), - [anon_sym_LT_GT] = ACTIONS(124), - [anon_sym_EQ] = ACTIONS(124), - [anon_sym_GT] = ACTIONS(126), - [anon_sym_GT_EQ] = ACTIONS(124), - [aux_sym__comparison_operator_token1] = ACTIONS(124), - [aux_sym__comparison_operator_token2] = ACTIONS(124), - [aux_sym__comparison_operator_token3] = ACTIONS(124), - [aux_sym__comparison_operator_token4] = ACTIONS(124), - [aux_sym__comparison_operator_token5] = ACTIONS(124), - [aux_sym__comparison_operator_token6] = ACTIONS(124), - [aux_sym__comparison_operator_token7] = ACTIONS(124), - [aux_sym__comparison_operator_token8] = ACTIONS(124), - [aux_sym__comparison_operator_token9] = ACTIONS(124), - [aux_sym_when_expression_token1] = ACTIONS(124), - [aux_sym_variable_tuning_token1] = ACTIONS(124), - [aux_sym_variable_tuning_token2] = ACTIONS(126), - [aux_sym_variable_tuning_token3] = ACTIONS(124), - [aux_sym_variable_tuning_token4] = ACTIONS(124), - [aux_sym_variable_tuning_token5] = ACTIONS(124), - [aux_sym_variable_tuning_token6] = ACTIONS(124), - [aux_sym_variable_tuning_token7] = ACTIONS(124), - [aux_sym_variable_tuning_token8] = ACTIONS(124), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(124), - [aux_sym_function_call_token1] = ACTIONS(124), - [aux_sym_if_statement_token2] = ACTIONS(124), - [aux_sym_else_statement_token1] = ACTIONS(124), - [aux_sym_while_phrase_token1] = ACTIONS(124), - [aux_sym_repeat_tuning_token1] = ACTIONS(124), - [aux_sym_using_statement_token1] = ACTIONS(124), - [aux_sym_input_stream_tuning_token1] = ACTIONS(124), - [aux_sym_input_stream_tuning_token2] = ACTIONS(124), - [aux_sym_input_stream_tuning_token3] = ACTIONS(124), - [aux_sym_input_stream_tuning_token4] = ACTIONS(124), - [aux_sym_input_stream_tuning_token5] = ACTIONS(124), - [aux_sym_input_stream_tuning_token6] = ACTIONS(124), - [aux_sym_input_stream_tuning_token7] = ACTIONS(124), - [aux_sym_input_stream_tuning_token8] = ACTIONS(124), - [aux_sym_input_stream_tuning_token9] = ACTIONS(124), - [aux_sym_input_stream_tuning_token11] = ACTIONS(124), - [aux_sym_output_stream_tuning_token1] = ACTIONS(124), - [aux_sym_output_stream_tuning_token2] = ACTIONS(124), - [aux_sym_output_stream_tuning_token3] = ACTIONS(124), - [aux_sym_output_stream_tuning_token4] = ACTIONS(124), - [aux_sym_output_stream_tuning_token5] = ACTIONS(124), - [aux_sym_output_stream_tuning_token6] = ACTIONS(124), - [aux_sym_output_stream_tuning_token7] = ACTIONS(124), - [aux_sym_output_stream_statement_token1] = ACTIONS(124), - [aux_sym_on_error_phrase_token1] = ACTIONS(124), - [aux_sym_stop_after_phrase_token1] = ACTIONS(124), - [aux_sym_do_tuning_token1] = ACTIONS(124), - [anon_sym_BY] = ACTIONS(124), - [aux_sym_where_clause_token1] = ACTIONS(124), - [aux_sym_query_tuning_token1] = ACTIONS(124), - [aux_sym_query_tuning_token2] = ACTIONS(124), - [aux_sym_query_tuning_token3] = ACTIONS(124), - [aux_sym_query_tuning_token4] = ACTIONS(124), - [aux_sym_query_tuning_token5] = ACTIONS(124), - [aux_sym_of_token1] = ACTIONS(124), - [aux_sym_field_option_token1] = ACTIONS(124), - [aux_sym_field_option_token2] = ACTIONS(124), - [aux_sym_field_option_token3] = ACTIONS(124), - [aux_sym_field_option_token4] = ACTIONS(124), - [aux_sym_field_option_token5] = ACTIONS(124), - [aux_sym_field_option_token6] = ACTIONS(124), - [aux_sym_field_definition_token1] = ACTIONS(124), - [aux_sym_index_definition_token1] = ACTIONS(124), - [aux_sym_on_statement_token1] = ACTIONS(124), - [sym__namecolon] = ACTIONS(124), - [sym__or_operator] = ACTIONS(124), - [sym__and_operator] = ACTIONS(124), + [aux_sym_member_access_repeat1] = STATE(16), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(119), + [sym__terminator] = ACTIONS(119), + [aux_sym__block_terminator_token1] = ACTIONS(119), + [anon_sym_COMMA] = ACTIONS(119), + [anon_sym_RBRACK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_RPAREN] = ACTIONS(119), + [aux_sym_unary_expression_token2] = ACTIONS(119), + [anon_sym_PLUS] = ACTIONS(119), + [anon_sym_DASH] = ACTIONS(119), + [aux_sym__multiplicative_operator_token1] = ACTIONS(119), + [anon_sym_LT] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(119), + [anon_sym_LT_GT] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_GT] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(119), + [aux_sym__comparison_operator_token1] = ACTIONS(119), + [aux_sym__comparison_operator_token2] = ACTIONS(119), + [aux_sym__comparison_operator_token3] = ACTIONS(119), + [aux_sym__comparison_operator_token4] = ACTIONS(119), + [aux_sym__comparison_operator_token5] = ACTIONS(119), + [aux_sym__comparison_operator_token6] = ACTIONS(119), + [aux_sym__comparison_operator_token7] = ACTIONS(119), + [aux_sym__comparison_operator_token8] = ACTIONS(119), + [aux_sym__comparison_operator_token9] = ACTIONS(119), + [aux_sym_when_expression_token1] = ACTIONS(119), + [aux_sym_variable_tuning_token1] = ACTIONS(119), + [aux_sym_variable_tuning_token2] = ACTIONS(121), + [aux_sym_variable_tuning_token3] = ACTIONS(119), + [aux_sym_variable_tuning_token4] = ACTIONS(119), + [aux_sym_variable_tuning_token5] = ACTIONS(119), + [aux_sym_variable_tuning_token6] = ACTIONS(119), + [aux_sym_variable_tuning_token7] = ACTIONS(119), + [aux_sym_variable_tuning_token8] = ACTIONS(119), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(119), + [aux_sym_function_call_token1] = ACTIONS(119), + [aux_sym_if_statement_token2] = ACTIONS(119), + [aux_sym_else_statement_token1] = ACTIONS(119), + [aux_sym_while_phrase_token1] = ACTIONS(119), + [aux_sym_repeat_tuning_token1] = ACTIONS(119), + [aux_sym_using_statement_token1] = ACTIONS(119), + [aux_sym_input_stream_tuning_token1] = ACTIONS(119), + [aux_sym_input_stream_tuning_token2] = ACTIONS(119), + [aux_sym_input_stream_tuning_token3] = ACTIONS(119), + [aux_sym_input_stream_tuning_token4] = ACTIONS(119), + [aux_sym_input_stream_tuning_token5] = ACTIONS(119), + [aux_sym_input_stream_tuning_token6] = ACTIONS(119), + [aux_sym_input_stream_tuning_token7] = ACTIONS(119), + [aux_sym_input_stream_tuning_token8] = ACTIONS(119), + [aux_sym_input_stream_tuning_token9] = ACTIONS(119), + [aux_sym_input_stream_tuning_token11] = ACTIONS(119), + [aux_sym_output_stream_tuning_token1] = ACTIONS(119), + [aux_sym_output_stream_tuning_token2] = ACTIONS(119), + [aux_sym_output_stream_tuning_token3] = ACTIONS(119), + [aux_sym_output_stream_tuning_token4] = ACTIONS(119), + [aux_sym_output_stream_tuning_token5] = ACTIONS(119), + [aux_sym_output_stream_tuning_token6] = ACTIONS(119), + [aux_sym_output_stream_tuning_token7] = ACTIONS(119), + [aux_sym_output_stream_statement_token1] = ACTIONS(119), + [aux_sym_on_error_phrase_token1] = ACTIONS(119), + [aux_sym_stop_after_phrase_token1] = ACTIONS(119), + [aux_sym_do_tuning_token1] = ACTIONS(119), + [anon_sym_BY] = ACTIONS(119), + [aux_sym_where_clause_token1] = ACTIONS(119), + [aux_sym_query_tuning_token1] = ACTIONS(119), + [aux_sym_query_tuning_token2] = ACTIONS(119), + [aux_sym_query_tuning_token3] = ACTIONS(119), + [aux_sym_query_tuning_token4] = ACTIONS(119), + [aux_sym_query_tuning_token5] = ACTIONS(119), + [aux_sym_of_token1] = ACTIONS(119), + [aux_sym_field_option_token1] = ACTIONS(119), + [aux_sym_field_option_token2] = ACTIONS(119), + [aux_sym_field_option_token3] = ACTIONS(119), + [aux_sym_field_option_token4] = ACTIONS(119), + [aux_sym_field_option_token5] = ACTIONS(119), + [aux_sym_field_option_token6] = ACTIONS(119), + [aux_sym_field_definition_token1] = ACTIONS(119), + [aux_sym_index_definition_token1] = ACTIONS(119), + [aux_sym_on_statement_token1] = ACTIONS(119), + [sym__namedoublecolon] = ACTIONS(83), + [sym__or_operator] = ACTIONS(119), + [sym__and_operator] = ACTIONS(119), }, [13] = { [sym_comment] = STATE(13), [sym_include] = STATE(13), - [aux_sym_member_access_repeat1] = STATE(10), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(130), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(128), - [sym__terminator] = ACTIONS(128), - [aux_sym__block_terminator_token1] = ACTIONS(128), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACK] = ACTIONS(128), - [anon_sym_LPAREN] = ACTIONS(128), - [anon_sym_RPAREN] = ACTIONS(128), - [aux_sym_unary_expression_token2] = ACTIONS(128), - [anon_sym_PLUS] = ACTIONS(128), - [anon_sym_DASH] = ACTIONS(128), - [aux_sym__multiplicative_operator_token1] = ACTIONS(128), - [anon_sym_LT] = ACTIONS(130), - [anon_sym_LT_EQ] = ACTIONS(128), - [anon_sym_LT_GT] = ACTIONS(128), - [anon_sym_EQ] = ACTIONS(128), - [anon_sym_GT] = ACTIONS(130), - [anon_sym_GT_EQ] = ACTIONS(128), - [aux_sym__comparison_operator_token1] = ACTIONS(128), - [aux_sym__comparison_operator_token2] = ACTIONS(128), - [aux_sym__comparison_operator_token3] = ACTIONS(128), - [aux_sym__comparison_operator_token4] = ACTIONS(128), - [aux_sym__comparison_operator_token5] = ACTIONS(128), - [aux_sym__comparison_operator_token6] = ACTIONS(128), - [aux_sym__comparison_operator_token7] = ACTIONS(128), - [aux_sym__comparison_operator_token8] = ACTIONS(128), - [aux_sym__comparison_operator_token9] = ACTIONS(128), - [aux_sym_when_expression_token1] = ACTIONS(128), - [aux_sym_variable_tuning_token1] = ACTIONS(128), - [aux_sym_variable_tuning_token2] = ACTIONS(130), - [aux_sym_variable_tuning_token3] = ACTIONS(128), - [aux_sym_variable_tuning_token4] = ACTIONS(128), - [aux_sym_variable_tuning_token5] = ACTIONS(128), - [aux_sym_variable_tuning_token6] = ACTIONS(128), - [aux_sym_variable_tuning_token7] = ACTIONS(128), - [aux_sym_variable_tuning_token8] = ACTIONS(128), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(128), - [aux_sym_function_call_token1] = ACTIONS(128), - [aux_sym_if_statement_token2] = ACTIONS(128), - [aux_sym_else_statement_token1] = ACTIONS(128), - [aux_sym_while_phrase_token1] = ACTIONS(128), - [aux_sym_repeat_tuning_token1] = ACTIONS(128), - [aux_sym_using_statement_token1] = ACTIONS(128), - [aux_sym_input_stream_tuning_token1] = ACTIONS(128), - [aux_sym_input_stream_tuning_token2] = ACTIONS(128), - [aux_sym_input_stream_tuning_token3] = ACTIONS(128), - [aux_sym_input_stream_tuning_token4] = ACTIONS(128), - [aux_sym_input_stream_tuning_token5] = ACTIONS(128), - [aux_sym_input_stream_tuning_token6] = ACTIONS(128), - [aux_sym_input_stream_tuning_token7] = ACTIONS(128), - [aux_sym_input_stream_tuning_token8] = ACTIONS(128), - [aux_sym_input_stream_tuning_token9] = ACTIONS(128), - [aux_sym_input_stream_tuning_token11] = ACTIONS(128), - [aux_sym_output_stream_tuning_token1] = ACTIONS(128), - [aux_sym_output_stream_tuning_token2] = ACTIONS(128), - [aux_sym_output_stream_tuning_token3] = ACTIONS(128), - [aux_sym_output_stream_tuning_token4] = ACTIONS(128), - [aux_sym_output_stream_tuning_token5] = ACTIONS(128), - [aux_sym_output_stream_tuning_token6] = ACTIONS(128), - [aux_sym_output_stream_tuning_token7] = ACTIONS(128), - [aux_sym_output_stream_statement_token1] = ACTIONS(128), - [aux_sym_on_error_phrase_token1] = ACTIONS(128), - [aux_sym_stop_after_phrase_token1] = ACTIONS(128), - [aux_sym_do_tuning_token1] = ACTIONS(128), - [anon_sym_BY] = ACTIONS(128), - [aux_sym_where_clause_token1] = ACTIONS(128), - [aux_sym_query_tuning_token1] = ACTIONS(128), - [aux_sym_query_tuning_token2] = ACTIONS(128), - [aux_sym_query_tuning_token3] = ACTIONS(128), - [aux_sym_query_tuning_token4] = ACTIONS(128), - [aux_sym_query_tuning_token5] = ACTIONS(128), - [aux_sym_of_token1] = ACTIONS(128), - [aux_sym_field_option_token1] = ACTIONS(128), - [aux_sym_field_option_token2] = ACTIONS(128), - [aux_sym_field_option_token3] = ACTIONS(128), - [aux_sym_field_option_token4] = ACTIONS(128), - [aux_sym_field_option_token5] = ACTIONS(128), - [aux_sym_field_option_token6] = ACTIONS(128), - [aux_sym_field_definition_token1] = ACTIONS(128), - [aux_sym_index_definition_token1] = ACTIONS(128), - [aux_sym_on_statement_token1] = ACTIONS(128), - [sym__namedoublecolon] = ACTIONS(81), - [sym__or_operator] = ACTIONS(128), - [sym__and_operator] = ACTIONS(128), + [aux_sym_object_access_repeat1] = STATE(5), + [anon_sym_COLON] = ACTIONS(65), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(65), + [sym__terminator] = ACTIONS(65), + [aux_sym__block_terminator_token1] = ACTIONS(65), + [anon_sym_COMMA] = ACTIONS(65), + [anon_sym_RBRACK] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(65), + [aux_sym_unary_expression_token2] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [aux_sym__multiplicative_operator_token1] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_LT_EQ] = ACTIONS(65), + [anon_sym_LT_GT] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(71), + [anon_sym_GT_EQ] = ACTIONS(65), + [aux_sym__comparison_operator_token1] = ACTIONS(65), + [aux_sym__comparison_operator_token2] = ACTIONS(65), + [aux_sym__comparison_operator_token3] = ACTIONS(65), + [aux_sym__comparison_operator_token4] = ACTIONS(65), + [aux_sym__comparison_operator_token5] = ACTIONS(65), + [aux_sym__comparison_operator_token6] = ACTIONS(65), + [aux_sym__comparison_operator_token7] = ACTIONS(65), + [aux_sym__comparison_operator_token8] = ACTIONS(65), + [aux_sym__comparison_operator_token9] = ACTIONS(65), + [aux_sym_when_expression_token1] = ACTIONS(65), + [aux_sym_variable_tuning_token1] = ACTIONS(65), + [aux_sym_variable_tuning_token2] = ACTIONS(71), + [aux_sym_variable_tuning_token3] = ACTIONS(65), + [aux_sym_variable_tuning_token4] = ACTIONS(65), + [aux_sym_variable_tuning_token5] = ACTIONS(65), + [aux_sym_variable_tuning_token6] = ACTIONS(65), + [aux_sym_variable_tuning_token7] = ACTIONS(65), + [aux_sym_variable_tuning_token8] = ACTIONS(65), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(65), + [aux_sym_function_call_token1] = ACTIONS(65), + [aux_sym_if_statement_token2] = ACTIONS(65), + [aux_sym_else_statement_token1] = ACTIONS(65), + [aux_sym_while_phrase_token1] = ACTIONS(65), + [aux_sym_repeat_tuning_token1] = ACTIONS(65), + [aux_sym_using_statement_token1] = ACTIONS(65), + [aux_sym_input_stream_tuning_token1] = ACTIONS(65), + [aux_sym_input_stream_tuning_token2] = ACTIONS(65), + [aux_sym_input_stream_tuning_token3] = ACTIONS(65), + [aux_sym_input_stream_tuning_token4] = ACTIONS(65), + [aux_sym_input_stream_tuning_token5] = ACTIONS(65), + [aux_sym_input_stream_tuning_token6] = ACTIONS(65), + [aux_sym_input_stream_tuning_token7] = ACTIONS(65), + [aux_sym_input_stream_tuning_token8] = ACTIONS(65), + [aux_sym_input_stream_tuning_token9] = ACTIONS(65), + [aux_sym_input_stream_tuning_token11] = ACTIONS(65), + [aux_sym_output_stream_tuning_token1] = ACTIONS(65), + [aux_sym_output_stream_tuning_token2] = ACTIONS(65), + [aux_sym_output_stream_tuning_token3] = ACTIONS(65), + [aux_sym_output_stream_tuning_token4] = ACTIONS(65), + [aux_sym_output_stream_tuning_token5] = ACTIONS(65), + [aux_sym_output_stream_tuning_token6] = ACTIONS(65), + [aux_sym_output_stream_tuning_token7] = ACTIONS(65), + [aux_sym_output_stream_statement_token1] = ACTIONS(65), + [aux_sym_on_error_phrase_token1] = ACTIONS(65), + [aux_sym_stop_after_phrase_token1] = ACTIONS(65), + [aux_sym_do_tuning_token1] = ACTIONS(65), + [anon_sym_BY] = ACTIONS(65), + [aux_sym_where_clause_token1] = ACTIONS(65), + [aux_sym_query_tuning_token1] = ACTIONS(65), + [aux_sym_query_tuning_token2] = ACTIONS(65), + [aux_sym_query_tuning_token3] = ACTIONS(65), + [aux_sym_query_tuning_token4] = ACTIONS(65), + [aux_sym_query_tuning_token5] = ACTIONS(65), + [aux_sym_of_token1] = ACTIONS(65), + [aux_sym_field_option_token1] = ACTIONS(65), + [aux_sym_field_option_token2] = ACTIONS(65), + [aux_sym_field_option_token3] = ACTIONS(65), + [aux_sym_field_option_token4] = ACTIONS(65), + [aux_sym_field_option_token5] = ACTIONS(65), + [aux_sym_field_option_token6] = ACTIONS(65), + [aux_sym_field_definition_token1] = ACTIONS(65), + [aux_sym_index_definition_token1] = ACTIONS(65), + [aux_sym_on_statement_token1] = ACTIONS(65), + [sym__namecolon] = ACTIONS(81), + [sym__or_operator] = ACTIONS(65), + [sym__and_operator] = ACTIONS(65), }, [14] = { [sym_comment] = STATE(14), [sym_include] = STATE(14), - [anon_sym_COLON] = ACTIONS(132), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(134), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(132), - [sym__terminator] = ACTIONS(132), - [aux_sym__block_terminator_token1] = ACTIONS(132), - [anon_sym_COMMA] = ACTIONS(132), - [anon_sym_RBRACK] = ACTIONS(132), - [anon_sym_LPAREN] = ACTIONS(132), - [anon_sym_RPAREN] = ACTIONS(132), - [aux_sym_unary_expression_token2] = ACTIONS(132), - [anon_sym_PLUS] = ACTIONS(132), - [anon_sym_DASH] = ACTIONS(132), - [aux_sym__multiplicative_operator_token1] = ACTIONS(132), - [anon_sym_LT] = ACTIONS(134), - [anon_sym_LT_EQ] = ACTIONS(132), - [anon_sym_LT_GT] = ACTIONS(132), - [anon_sym_EQ] = ACTIONS(132), - [anon_sym_GT] = ACTIONS(134), - [anon_sym_GT_EQ] = ACTIONS(132), - [aux_sym__comparison_operator_token1] = ACTIONS(132), - [aux_sym__comparison_operator_token2] = ACTIONS(132), - [aux_sym__comparison_operator_token3] = ACTIONS(132), - [aux_sym__comparison_operator_token4] = ACTIONS(132), - [aux_sym__comparison_operator_token5] = ACTIONS(132), - [aux_sym__comparison_operator_token6] = ACTIONS(132), - [aux_sym__comparison_operator_token7] = ACTIONS(132), - [aux_sym__comparison_operator_token8] = ACTIONS(132), - [aux_sym__comparison_operator_token9] = ACTIONS(132), - [aux_sym_when_expression_token1] = ACTIONS(132), - [aux_sym_variable_tuning_token1] = ACTIONS(132), - [aux_sym_variable_tuning_token2] = ACTIONS(134), - [aux_sym_variable_tuning_token3] = ACTIONS(132), - [aux_sym_variable_tuning_token4] = ACTIONS(132), - [aux_sym_variable_tuning_token5] = ACTIONS(132), - [aux_sym_variable_tuning_token6] = ACTIONS(132), - [aux_sym_variable_tuning_token7] = ACTIONS(132), - [aux_sym_variable_tuning_token8] = ACTIONS(132), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(132), - [aux_sym_function_call_token1] = ACTIONS(132), - [aux_sym_if_statement_token2] = ACTIONS(132), - [aux_sym_else_statement_token1] = ACTIONS(132), - [aux_sym_while_phrase_token1] = ACTIONS(132), - [aux_sym_repeat_tuning_token1] = ACTIONS(132), - [aux_sym_using_statement_token1] = ACTIONS(132), - [aux_sym_input_stream_tuning_token1] = ACTIONS(132), - [aux_sym_input_stream_tuning_token2] = ACTIONS(132), - [aux_sym_input_stream_tuning_token3] = ACTIONS(132), - [aux_sym_input_stream_tuning_token4] = ACTIONS(132), - [aux_sym_input_stream_tuning_token5] = ACTIONS(132), - [aux_sym_input_stream_tuning_token6] = ACTIONS(132), - [aux_sym_input_stream_tuning_token7] = ACTIONS(132), - [aux_sym_input_stream_tuning_token8] = ACTIONS(132), - [aux_sym_input_stream_tuning_token9] = ACTIONS(132), - [aux_sym_input_stream_tuning_token11] = ACTIONS(132), - [aux_sym_output_stream_tuning_token1] = ACTIONS(132), - [aux_sym_output_stream_tuning_token2] = ACTIONS(132), - [aux_sym_output_stream_tuning_token3] = ACTIONS(132), - [aux_sym_output_stream_tuning_token4] = ACTIONS(132), - [aux_sym_output_stream_tuning_token5] = ACTIONS(132), - [aux_sym_output_stream_tuning_token6] = ACTIONS(132), - [aux_sym_output_stream_tuning_token7] = ACTIONS(132), - [aux_sym_output_stream_statement_token1] = ACTIONS(132), - [aux_sym_on_error_phrase_token1] = ACTIONS(132), - [aux_sym_stop_after_phrase_token1] = ACTIONS(132), - [aux_sym_do_tuning_token1] = ACTIONS(132), - [anon_sym_BY] = ACTIONS(132), - [aux_sym_where_clause_token1] = ACTIONS(132), - [aux_sym_query_tuning_token1] = ACTIONS(132), - [aux_sym_query_tuning_token2] = ACTIONS(132), - [aux_sym_query_tuning_token3] = ACTIONS(132), - [aux_sym_query_tuning_token4] = ACTIONS(132), - [aux_sym_query_tuning_token5] = ACTIONS(132), - [aux_sym_of_token1] = ACTIONS(132), - [aux_sym_field_option_token1] = ACTIONS(132), - [aux_sym_field_option_token2] = ACTIONS(132), - [aux_sym_field_option_token3] = ACTIONS(132), - [aux_sym_field_option_token4] = ACTIONS(132), - [aux_sym_field_option_token5] = ACTIONS(132), - [aux_sym_field_option_token6] = ACTIONS(132), - [aux_sym_field_definition_token1] = ACTIONS(132), - [aux_sym_index_definition_token1] = ACTIONS(132), - [aux_sym_on_statement_token1] = ACTIONS(132), - [sym__namedot] = ACTIONS(136), - [sym__or_operator] = ACTIONS(132), - [sym__and_operator] = ACTIONS(132), + [aux_sym_qualified_name_repeat1] = STATE(8), + [anon_sym_COLON] = ACTIONS(123), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(123), + [sym__terminator] = ACTIONS(123), + [aux_sym__block_terminator_token1] = ACTIONS(123), + [anon_sym_COMMA] = ACTIONS(123), + [anon_sym_RBRACK] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(123), + [anon_sym_RPAREN] = ACTIONS(123), + [aux_sym_unary_expression_token2] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [aux_sym__multiplicative_operator_token1] = ACTIONS(123), + [anon_sym_LT] = ACTIONS(125), + [anon_sym_LT_EQ] = ACTIONS(123), + [anon_sym_LT_GT] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(125), + [anon_sym_GT_EQ] = ACTIONS(123), + [aux_sym__comparison_operator_token1] = ACTIONS(123), + [aux_sym__comparison_operator_token2] = ACTIONS(123), + [aux_sym__comparison_operator_token3] = ACTIONS(123), + [aux_sym__comparison_operator_token4] = ACTIONS(123), + [aux_sym__comparison_operator_token5] = ACTIONS(123), + [aux_sym__comparison_operator_token6] = ACTIONS(123), + [aux_sym__comparison_operator_token7] = ACTIONS(123), + [aux_sym__comparison_operator_token8] = ACTIONS(123), + [aux_sym__comparison_operator_token9] = ACTIONS(123), + [aux_sym_when_expression_token1] = ACTIONS(123), + [aux_sym_variable_tuning_token1] = ACTIONS(123), + [aux_sym_variable_tuning_token2] = ACTIONS(125), + [aux_sym_variable_tuning_token3] = ACTIONS(123), + [aux_sym_variable_tuning_token4] = ACTIONS(123), + [aux_sym_variable_tuning_token5] = ACTIONS(123), + [aux_sym_variable_tuning_token6] = ACTIONS(123), + [aux_sym_variable_tuning_token7] = ACTIONS(123), + [aux_sym_variable_tuning_token8] = ACTIONS(123), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(123), + [aux_sym_function_call_token1] = ACTIONS(123), + [aux_sym_if_statement_token2] = ACTIONS(123), + [aux_sym_else_statement_token1] = ACTIONS(123), + [aux_sym_while_phrase_token1] = ACTIONS(123), + [aux_sym_repeat_tuning_token1] = ACTIONS(123), + [aux_sym_using_statement_token1] = ACTIONS(123), + [aux_sym_input_stream_tuning_token1] = ACTIONS(123), + [aux_sym_input_stream_tuning_token2] = ACTIONS(123), + [aux_sym_input_stream_tuning_token3] = ACTIONS(123), + [aux_sym_input_stream_tuning_token4] = ACTIONS(123), + [aux_sym_input_stream_tuning_token5] = ACTIONS(123), + [aux_sym_input_stream_tuning_token6] = ACTIONS(123), + [aux_sym_input_stream_tuning_token7] = ACTIONS(123), + [aux_sym_input_stream_tuning_token8] = ACTIONS(123), + [aux_sym_input_stream_tuning_token9] = ACTIONS(123), + [aux_sym_input_stream_tuning_token11] = ACTIONS(123), + [aux_sym_output_stream_tuning_token1] = ACTIONS(123), + [aux_sym_output_stream_tuning_token2] = ACTIONS(123), + [aux_sym_output_stream_tuning_token3] = ACTIONS(123), + [aux_sym_output_stream_tuning_token4] = ACTIONS(123), + [aux_sym_output_stream_tuning_token5] = ACTIONS(123), + [aux_sym_output_stream_tuning_token6] = ACTIONS(123), + [aux_sym_output_stream_tuning_token7] = ACTIONS(123), + [aux_sym_output_stream_statement_token1] = ACTIONS(123), + [aux_sym_on_error_phrase_token1] = ACTIONS(123), + [aux_sym_stop_after_phrase_token1] = ACTIONS(123), + [aux_sym_do_tuning_token1] = ACTIONS(123), + [anon_sym_BY] = ACTIONS(123), + [aux_sym_where_clause_token1] = ACTIONS(123), + [aux_sym_query_tuning_token1] = ACTIONS(123), + [aux_sym_query_tuning_token2] = ACTIONS(123), + [aux_sym_query_tuning_token3] = ACTIONS(123), + [aux_sym_query_tuning_token4] = ACTIONS(123), + [aux_sym_query_tuning_token5] = ACTIONS(123), + [aux_sym_of_token1] = ACTIONS(123), + [aux_sym_field_option_token1] = ACTIONS(123), + [aux_sym_field_option_token2] = ACTIONS(123), + [aux_sym_field_option_token3] = ACTIONS(123), + [aux_sym_field_option_token4] = ACTIONS(123), + [aux_sym_field_option_token5] = ACTIONS(123), + [aux_sym_field_option_token6] = ACTIONS(123), + [aux_sym_field_definition_token1] = ACTIONS(123), + [aux_sym_index_definition_token1] = ACTIONS(123), + [aux_sym_on_statement_token1] = ACTIONS(123), + [sym__namedot] = ACTIONS(79), + [sym__or_operator] = ACTIONS(123), + [sym__and_operator] = ACTIONS(123), }, [15] = { [sym_comment] = STATE(15), [sym_include] = STATE(15), - [anon_sym_COLON] = ACTIONS(117), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(117), - [sym__terminator] = ACTIONS(117), - [aux_sym__block_terminator_token1] = ACTIONS(117), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACK] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_RPAREN] = ACTIONS(117), - [aux_sym_unary_expression_token2] = ACTIONS(117), - [anon_sym_PLUS] = ACTIONS(117), - [anon_sym_DASH] = ACTIONS(117), - [aux_sym__multiplicative_operator_token1] = ACTIONS(117), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_LT_EQ] = ACTIONS(117), - [anon_sym_LT_GT] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(117), - [anon_sym_GT] = ACTIONS(119), - [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_when_expression_token1] = ACTIONS(117), - [aux_sym_variable_tuning_token1] = ACTIONS(117), - [aux_sym_variable_tuning_token2] = ACTIONS(119), - [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), - [aux_sym_variable_tuning_token7] = ACTIONS(117), - [aux_sym_variable_tuning_token8] = ACTIONS(117), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(117), - [aux_sym_function_call_token1] = ACTIONS(117), - [aux_sym_if_statement_token2] = ACTIONS(117), - [aux_sym_else_statement_token1] = ACTIONS(117), - [aux_sym_while_phrase_token1] = ACTIONS(117), - [aux_sym_repeat_tuning_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_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_of_token1] = ACTIONS(117), - [aux_sym_field_option_token1] = ACTIONS(117), - [aux_sym_field_option_token2] = ACTIONS(117), - [aux_sym_field_option_token3] = ACTIONS(117), - [aux_sym_field_option_token4] = ACTIONS(117), - [aux_sym_field_option_token5] = ACTIONS(117), - [aux_sym_field_option_token6] = ACTIONS(117), - [aux_sym_field_definition_token1] = ACTIONS(117), - [aux_sym_index_definition_token1] = ACTIONS(117), - [aux_sym_on_statement_token1] = ACTIONS(117), - [sym__namedot] = ACTIONS(117), - [sym__or_operator] = ACTIONS(117), - [sym__and_operator] = ACTIONS(117), + [sym_function_arguments] = STATE(24), + [anon_sym_COLON] = ACTIONS(65), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(65), + [sym__terminator] = ACTIONS(65), + [aux_sym__block_terminator_token1] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_COMMA] = ACTIONS(65), + [anon_sym_RBRACK] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(77), + [anon_sym_RPAREN] = ACTIONS(65), + [aux_sym_unary_expression_token2] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [aux_sym__multiplicative_operator_token1] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_LT_EQ] = ACTIONS(65), + [anon_sym_LT_GT] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(71), + [anon_sym_GT_EQ] = ACTIONS(65), + [aux_sym__comparison_operator_token1] = ACTIONS(65), + [aux_sym__comparison_operator_token2] = ACTIONS(65), + [aux_sym__comparison_operator_token3] = ACTIONS(65), + [aux_sym__comparison_operator_token4] = ACTIONS(65), + [aux_sym__comparison_operator_token5] = ACTIONS(65), + [aux_sym__comparison_operator_token6] = ACTIONS(65), + [aux_sym__comparison_operator_token7] = ACTIONS(65), + [aux_sym__comparison_operator_token8] = ACTIONS(65), + [aux_sym__comparison_operator_token9] = ACTIONS(65), + [aux_sym_when_expression_token1] = ACTIONS(65), + [aux_sym_variable_tuning_token1] = ACTIONS(65), + [aux_sym_variable_tuning_token2] = ACTIONS(71), + [aux_sym_variable_tuning_token3] = ACTIONS(65), + [aux_sym_variable_tuning_token4] = ACTIONS(65), + [aux_sym_variable_tuning_token5] = ACTIONS(65), + [aux_sym_variable_tuning_token6] = ACTIONS(65), + [aux_sym_variable_tuning_token7] = ACTIONS(65), + [aux_sym_variable_tuning_token8] = ACTIONS(65), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(65), + [aux_sym_function_call_token1] = ACTIONS(65), + [aux_sym_if_statement_token2] = ACTIONS(65), + [aux_sym_else_statement_token1] = ACTIONS(65), + [aux_sym_while_phrase_token1] = ACTIONS(65), + [aux_sym_repeat_tuning_token1] = ACTIONS(65), + [aux_sym_using_statement_token1] = ACTIONS(65), + [aux_sym_input_stream_tuning_token1] = ACTIONS(65), + [aux_sym_input_stream_tuning_token2] = ACTIONS(65), + [aux_sym_input_stream_tuning_token3] = ACTIONS(65), + [aux_sym_input_stream_tuning_token4] = ACTIONS(65), + [aux_sym_input_stream_tuning_token5] = ACTIONS(65), + [aux_sym_input_stream_tuning_token6] = ACTIONS(65), + [aux_sym_input_stream_tuning_token7] = ACTIONS(65), + [aux_sym_input_stream_tuning_token8] = ACTIONS(65), + [aux_sym_input_stream_tuning_token9] = ACTIONS(65), + [aux_sym_input_stream_tuning_token11] = ACTIONS(65), + [aux_sym_output_stream_tuning_token1] = ACTIONS(65), + [aux_sym_output_stream_tuning_token2] = ACTIONS(65), + [aux_sym_output_stream_tuning_token3] = ACTIONS(65), + [aux_sym_output_stream_tuning_token4] = ACTIONS(65), + [aux_sym_output_stream_tuning_token5] = ACTIONS(65), + [aux_sym_output_stream_tuning_token6] = ACTIONS(65), + [aux_sym_output_stream_tuning_token7] = ACTIONS(65), + [aux_sym_output_stream_statement_token1] = ACTIONS(65), + [aux_sym_on_error_phrase_token1] = ACTIONS(65), + [aux_sym_stop_after_phrase_token1] = ACTIONS(65), + [aux_sym_do_tuning_token1] = ACTIONS(65), + [anon_sym_BY] = ACTIONS(65), + [aux_sym_where_clause_token1] = ACTIONS(65), + [aux_sym_query_tuning_token1] = ACTIONS(65), + [aux_sym_query_tuning_token2] = ACTIONS(65), + [aux_sym_query_tuning_token3] = ACTIONS(65), + [aux_sym_query_tuning_token4] = ACTIONS(65), + [aux_sym_query_tuning_token5] = ACTIONS(65), + [aux_sym_of_token1] = ACTIONS(65), + [aux_sym_field_option_token1] = ACTIONS(65), + [aux_sym_field_option_token2] = ACTIONS(65), + [aux_sym_field_option_token3] = ACTIONS(65), + [aux_sym_field_option_token4] = ACTIONS(65), + [aux_sym_field_option_token5] = ACTIONS(65), + [aux_sym_field_option_token6] = ACTIONS(65), + [aux_sym_field_definition_token1] = ACTIONS(65), + [aux_sym_index_definition_token1] = ACTIONS(65), + [aux_sym_on_statement_token1] = ACTIONS(65), + [sym__or_operator] = ACTIONS(65), + [sym__and_operator] = ACTIONS(65), }, [16] = { [sym_comment] = STATE(16), [sym_include] = STATE(16), + [aux_sym_member_access_repeat1] = STATE(16), + [anon_sym_COLON] = ACTIONS(127), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(127), + [sym__terminator] = ACTIONS(127), + [aux_sym__block_terminator_token1] = ACTIONS(127), + [anon_sym_COMMA] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(127), + [anon_sym_RPAREN] = ACTIONS(127), + [aux_sym_unary_expression_token2] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(127), + [aux_sym__multiplicative_operator_token1] = ACTIONS(127), + [anon_sym_LT] = ACTIONS(129), + [anon_sym_LT_EQ] = ACTIONS(127), + [anon_sym_LT_GT] = ACTIONS(127), + [anon_sym_EQ] = ACTIONS(127), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_GT_EQ] = ACTIONS(127), + [aux_sym__comparison_operator_token1] = ACTIONS(127), + [aux_sym__comparison_operator_token2] = ACTIONS(127), + [aux_sym__comparison_operator_token3] = ACTIONS(127), + [aux_sym__comparison_operator_token4] = ACTIONS(127), + [aux_sym__comparison_operator_token5] = ACTIONS(127), + [aux_sym__comparison_operator_token6] = ACTIONS(127), + [aux_sym__comparison_operator_token7] = ACTIONS(127), + [aux_sym__comparison_operator_token8] = ACTIONS(127), + [aux_sym__comparison_operator_token9] = ACTIONS(127), + [aux_sym_when_expression_token1] = ACTIONS(127), + [aux_sym_variable_tuning_token1] = ACTIONS(127), + [aux_sym_variable_tuning_token2] = ACTIONS(129), + [aux_sym_variable_tuning_token3] = ACTIONS(127), + [aux_sym_variable_tuning_token4] = ACTIONS(127), + [aux_sym_variable_tuning_token5] = ACTIONS(127), + [aux_sym_variable_tuning_token6] = ACTIONS(127), + [aux_sym_variable_tuning_token7] = ACTIONS(127), + [aux_sym_variable_tuning_token8] = ACTIONS(127), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(127), + [aux_sym_function_call_token1] = ACTIONS(127), + [aux_sym_if_statement_token2] = ACTIONS(127), + [aux_sym_else_statement_token1] = ACTIONS(127), + [aux_sym_while_phrase_token1] = ACTIONS(127), + [aux_sym_repeat_tuning_token1] = ACTIONS(127), + [aux_sym_using_statement_token1] = ACTIONS(127), + [aux_sym_input_stream_tuning_token1] = ACTIONS(127), + [aux_sym_input_stream_tuning_token2] = ACTIONS(127), + [aux_sym_input_stream_tuning_token3] = ACTIONS(127), + [aux_sym_input_stream_tuning_token4] = ACTIONS(127), + [aux_sym_input_stream_tuning_token5] = ACTIONS(127), + [aux_sym_input_stream_tuning_token6] = ACTIONS(127), + [aux_sym_input_stream_tuning_token7] = ACTIONS(127), + [aux_sym_input_stream_tuning_token8] = ACTIONS(127), + [aux_sym_input_stream_tuning_token9] = ACTIONS(127), + [aux_sym_input_stream_tuning_token11] = ACTIONS(127), + [aux_sym_output_stream_tuning_token1] = ACTIONS(127), + [aux_sym_output_stream_tuning_token2] = ACTIONS(127), + [aux_sym_output_stream_tuning_token3] = ACTIONS(127), + [aux_sym_output_stream_tuning_token4] = ACTIONS(127), + [aux_sym_output_stream_tuning_token5] = ACTIONS(127), + [aux_sym_output_stream_tuning_token6] = ACTIONS(127), + [aux_sym_output_stream_tuning_token7] = ACTIONS(127), + [aux_sym_output_stream_statement_token1] = ACTIONS(127), + [aux_sym_on_error_phrase_token1] = ACTIONS(127), + [aux_sym_stop_after_phrase_token1] = ACTIONS(127), + [aux_sym_do_tuning_token1] = ACTIONS(127), + [anon_sym_BY] = ACTIONS(127), + [aux_sym_where_clause_token1] = ACTIONS(127), + [aux_sym_query_tuning_token1] = ACTIONS(127), + [aux_sym_query_tuning_token2] = ACTIONS(127), + [aux_sym_query_tuning_token3] = ACTIONS(127), + [aux_sym_query_tuning_token4] = ACTIONS(127), + [aux_sym_query_tuning_token5] = ACTIONS(127), + [aux_sym_of_token1] = ACTIONS(127), + [aux_sym_field_option_token1] = ACTIONS(127), + [aux_sym_field_option_token2] = ACTIONS(127), + [aux_sym_field_option_token3] = ACTIONS(127), + [aux_sym_field_option_token4] = ACTIONS(127), + [aux_sym_field_option_token5] = ACTIONS(127), + [aux_sym_field_option_token6] = ACTIONS(127), + [aux_sym_field_definition_token1] = ACTIONS(127), + [aux_sym_index_definition_token1] = ACTIONS(127), + [aux_sym_on_statement_token1] = ACTIONS(127), + [sym__namedoublecolon] = ACTIONS(131), + [sym__or_operator] = ACTIONS(127), + [sym__and_operator] = ACTIONS(127), + }, + [17] = { + [sym_comment] = STATE(17), + [sym_include] = STATE(17), + [aux_sym_object_access_repeat1] = STATE(5), + [anon_sym_COLON] = ACTIONS(85), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(87), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(85), + [sym__terminator] = ACTIONS(85), + [aux_sym__block_terminator_token1] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_RPAREN] = ACTIONS(85), + [aux_sym_unary_expression_token2] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(85), + [aux_sym__multiplicative_operator_token1] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(87), + [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_when_expression_token1] = ACTIONS(85), + [aux_sym_variable_tuning_token1] = ACTIONS(85), + [aux_sym_variable_tuning_token2] = ACTIONS(87), + [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), + [aux_sym_variable_tuning_token7] = ACTIONS(85), + [aux_sym_variable_tuning_token8] = ACTIONS(85), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(85), + [aux_sym_function_call_token1] = ACTIONS(85), + [aux_sym_if_statement_token2] = ACTIONS(85), + [aux_sym_else_statement_token1] = ACTIONS(85), + [aux_sym_while_phrase_token1] = ACTIONS(85), + [aux_sym_repeat_tuning_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_statement_token1] = ACTIONS(85), + [aux_sym_on_error_phrase_token1] = ACTIONS(85), + [aux_sym_stop_after_phrase_token1] = ACTIONS(85), + [aux_sym_do_tuning_token1] = ACTIONS(85), + [anon_sym_BY] = ACTIONS(85), + [aux_sym_where_clause_token1] = ACTIONS(85), + [aux_sym_query_tuning_token1] = ACTIONS(85), + [aux_sym_query_tuning_token2] = ACTIONS(85), + [aux_sym_query_tuning_token3] = ACTIONS(85), + [aux_sym_query_tuning_token4] = ACTIONS(85), + [aux_sym_query_tuning_token5] = ACTIONS(85), + [aux_sym_of_token1] = ACTIONS(85), + [aux_sym_field_option_token1] = ACTIONS(85), + [aux_sym_field_option_token2] = ACTIONS(85), + [aux_sym_field_option_token3] = ACTIONS(85), + [aux_sym_field_option_token4] = ACTIONS(85), + [aux_sym_field_option_token5] = ACTIONS(85), + [aux_sym_field_option_token6] = ACTIONS(85), + [aux_sym_field_definition_token1] = ACTIONS(85), + [aux_sym_index_definition_token1] = ACTIONS(85), + [aux_sym_on_statement_token1] = ACTIONS(85), + [sym__namecolon] = ACTIONS(81), + [sym__or_operator] = ACTIONS(85), + [sym__and_operator] = ACTIONS(85), + }, + [18] = { + [sym_comment] = STATE(18), + [sym_include] = STATE(18), + [aux_sym_qualified_name_repeat1] = STATE(8), + [anon_sym_COLON] = ACTIONS(134), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(136), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(134), + [sym__terminator] = ACTIONS(134), + [aux_sym__block_terminator_token1] = ACTIONS(134), + [anon_sym_COMMA] = ACTIONS(134), + [anon_sym_RBRACK] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(134), + [anon_sym_RPAREN] = ACTIONS(134), + [aux_sym_unary_expression_token2] = ACTIONS(134), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [aux_sym__multiplicative_operator_token1] = ACTIONS(134), + [anon_sym_LT] = ACTIONS(136), + [anon_sym_LT_EQ] = ACTIONS(134), + [anon_sym_LT_GT] = ACTIONS(134), + [anon_sym_EQ] = ACTIONS(134), + [anon_sym_GT] = ACTIONS(136), + [anon_sym_GT_EQ] = ACTIONS(134), + [aux_sym__comparison_operator_token1] = ACTIONS(134), + [aux_sym__comparison_operator_token2] = ACTIONS(134), + [aux_sym__comparison_operator_token3] = ACTIONS(134), + [aux_sym__comparison_operator_token4] = ACTIONS(134), + [aux_sym__comparison_operator_token5] = ACTIONS(134), + [aux_sym__comparison_operator_token6] = ACTIONS(134), + [aux_sym__comparison_operator_token7] = ACTIONS(134), + [aux_sym__comparison_operator_token8] = ACTIONS(134), + [aux_sym__comparison_operator_token9] = ACTIONS(134), + [aux_sym_when_expression_token1] = ACTIONS(134), + [aux_sym_variable_tuning_token1] = ACTIONS(134), + [aux_sym_variable_tuning_token2] = ACTIONS(136), + [aux_sym_variable_tuning_token3] = ACTIONS(134), + [aux_sym_variable_tuning_token4] = ACTIONS(134), + [aux_sym_variable_tuning_token5] = ACTIONS(134), + [aux_sym_variable_tuning_token6] = ACTIONS(134), + [aux_sym_variable_tuning_token7] = ACTIONS(134), + [aux_sym_variable_tuning_token8] = ACTIONS(134), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(134), + [aux_sym_function_call_token1] = ACTIONS(134), + [aux_sym_if_statement_token2] = ACTIONS(134), + [aux_sym_else_statement_token1] = ACTIONS(134), + [aux_sym_while_phrase_token1] = ACTIONS(134), + [aux_sym_repeat_tuning_token1] = ACTIONS(134), + [aux_sym_using_statement_token1] = ACTIONS(134), + [aux_sym_input_stream_tuning_token1] = ACTIONS(134), + [aux_sym_input_stream_tuning_token2] = ACTIONS(134), + [aux_sym_input_stream_tuning_token3] = ACTIONS(134), + [aux_sym_input_stream_tuning_token4] = ACTIONS(134), + [aux_sym_input_stream_tuning_token5] = ACTIONS(134), + [aux_sym_input_stream_tuning_token6] = ACTIONS(134), + [aux_sym_input_stream_tuning_token7] = ACTIONS(134), + [aux_sym_input_stream_tuning_token8] = ACTIONS(134), + [aux_sym_input_stream_tuning_token9] = ACTIONS(134), + [aux_sym_input_stream_tuning_token11] = ACTIONS(134), + [aux_sym_output_stream_tuning_token1] = ACTIONS(134), + [aux_sym_output_stream_tuning_token2] = ACTIONS(134), + [aux_sym_output_stream_tuning_token3] = ACTIONS(134), + [aux_sym_output_stream_tuning_token4] = ACTIONS(134), + [aux_sym_output_stream_tuning_token5] = ACTIONS(134), + [aux_sym_output_stream_tuning_token6] = ACTIONS(134), + [aux_sym_output_stream_tuning_token7] = ACTIONS(134), + [aux_sym_output_stream_statement_token1] = ACTIONS(134), + [aux_sym_on_error_phrase_token1] = ACTIONS(134), + [aux_sym_stop_after_phrase_token1] = ACTIONS(134), + [aux_sym_do_tuning_token1] = ACTIONS(134), + [anon_sym_BY] = ACTIONS(134), + [aux_sym_where_clause_token1] = ACTIONS(134), + [aux_sym_query_tuning_token1] = ACTIONS(134), + [aux_sym_query_tuning_token2] = ACTIONS(134), + [aux_sym_query_tuning_token3] = ACTIONS(134), + [aux_sym_query_tuning_token4] = ACTIONS(134), + [aux_sym_query_tuning_token5] = ACTIONS(134), + [aux_sym_of_token1] = ACTIONS(134), + [aux_sym_field_option_token1] = ACTIONS(134), + [aux_sym_field_option_token2] = ACTIONS(134), + [aux_sym_field_option_token3] = ACTIONS(134), + [aux_sym_field_option_token4] = ACTIONS(134), + [aux_sym_field_option_token5] = ACTIONS(134), + [aux_sym_field_option_token6] = ACTIONS(134), + [aux_sym_field_definition_token1] = ACTIONS(134), + [aux_sym_index_definition_token1] = ACTIONS(134), + [aux_sym_on_statement_token1] = ACTIONS(134), + [sym__namedot] = ACTIONS(79), + [sym__or_operator] = ACTIONS(134), + [sym__and_operator] = ACTIONS(134), + }, + [19] = { + [sym_comment] = STATE(19), + [sym_include] = STATE(19), [anon_sym_COLON] = ACTIONS(138), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), [anon_sym_SLASH] = ACTIONS(140), - [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_STAR] = ACTIONS(138), [sym__terminator] = ACTIONS(138), [aux_sym__block_terminator_token1] = ACTIONS(138), @@ -45559,17 +46423,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_field_definition_token1] = ACTIONS(138), [aux_sym_index_definition_token1] = ACTIONS(138), [aux_sym_on_statement_token1] = ACTIONS(138), + [sym__namecolon] = ACTIONS(138), [sym__or_operator] = ACTIONS(138), [sym__and_operator] = ACTIONS(138), }, - [17] = { - [sym_comment] = STATE(17), - [sym_include] = STATE(17), + [20] = { + [sym_comment] = STATE(20), + [sym_include] = STATE(20), [anon_sym_COLON] = ACTIONS(142), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), [anon_sym_SLASH] = ACTIONS(144), - [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_STAR] = ACTIONS(142), [sym__terminator] = ACTIONS(142), [aux_sym__block_terminator_token1] = ACTIONS(142), @@ -45612,6 +46477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_while_phrase_token1] = ACTIONS(142), [aux_sym_repeat_tuning_token1] = ACTIONS(142), [aux_sym_using_statement_token1] = ACTIONS(142), + [anon_sym_NO_DASHERROR] = ACTIONS(144), [aux_sym_input_stream_tuning_token1] = ACTIONS(142), [aux_sym_input_stream_tuning_token2] = ACTIONS(142), [aux_sym_input_stream_tuning_token3] = ACTIONS(142), @@ -45650,110 +46516,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_field_definition_token1] = ACTIONS(142), [aux_sym_index_definition_token1] = ACTIONS(142), [aux_sym_on_statement_token1] = ACTIONS(142), - [sym__namedoublecolon] = ACTIONS(142), + [sym__namecolon] = ACTIONS(142), [sym__or_operator] = ACTIONS(142), [sym__and_operator] = ACTIONS(142), }, - [18] = { - [sym_comment] = STATE(18), - [sym_include] = STATE(18), - [sym_function_arguments] = STATE(44), - [anon_sym_COLON] = ACTIONS(83), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(83), - [sym__terminator] = ACTIONS(83), - [aux_sym__block_terminator_token1] = ACTIONS(83), - [anon_sym_COMMA] = ACTIONS(83), - [anon_sym_RBRACK] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(75), - [anon_sym_RPAREN] = ACTIONS(83), - [aux_sym_unary_expression_token2] = ACTIONS(83), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [aux_sym__multiplicative_operator_token1] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_LT_GT] = ACTIONS(83), - [anon_sym_EQ] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [aux_sym__comparison_operator_token1] = ACTIONS(83), - [aux_sym__comparison_operator_token2] = ACTIONS(83), - [aux_sym__comparison_operator_token3] = ACTIONS(83), - [aux_sym__comparison_operator_token4] = ACTIONS(83), - [aux_sym__comparison_operator_token5] = ACTIONS(83), - [aux_sym__comparison_operator_token6] = ACTIONS(83), - [aux_sym__comparison_operator_token7] = ACTIONS(83), - [aux_sym__comparison_operator_token8] = ACTIONS(83), - [aux_sym__comparison_operator_token9] = ACTIONS(83), - [aux_sym_when_expression_token1] = ACTIONS(83), - [aux_sym_variable_tuning_token1] = ACTIONS(83), - [aux_sym_variable_tuning_token2] = ACTIONS(85), - [aux_sym_variable_tuning_token3] = ACTIONS(83), - [aux_sym_variable_tuning_token4] = ACTIONS(83), - [aux_sym_variable_tuning_token5] = ACTIONS(83), - [aux_sym_variable_tuning_token6] = ACTIONS(83), - [aux_sym_variable_tuning_token7] = ACTIONS(83), - [aux_sym_variable_tuning_token8] = ACTIONS(83), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(83), - [aux_sym_function_call_token1] = ACTIONS(83), - [aux_sym_if_statement_token2] = ACTIONS(83), - [aux_sym_else_statement_token1] = ACTIONS(83), - [aux_sym_while_phrase_token1] = ACTIONS(83), - [aux_sym_repeat_tuning_token1] = ACTIONS(83), - [aux_sym_using_statement_token1] = ACTIONS(83), - [aux_sym_input_stream_tuning_token1] = ACTIONS(83), - [aux_sym_input_stream_tuning_token2] = ACTIONS(83), - [aux_sym_input_stream_tuning_token3] = ACTIONS(83), - [aux_sym_input_stream_tuning_token4] = ACTIONS(83), - [aux_sym_input_stream_tuning_token5] = ACTIONS(83), - [aux_sym_input_stream_tuning_token6] = ACTIONS(83), - [aux_sym_input_stream_tuning_token7] = ACTIONS(83), - [aux_sym_input_stream_tuning_token8] = ACTIONS(83), - [aux_sym_input_stream_tuning_token9] = ACTIONS(83), - [aux_sym_input_stream_tuning_token11] = ACTIONS(83), - [aux_sym_output_stream_tuning_token1] = ACTIONS(83), - [aux_sym_output_stream_tuning_token2] = ACTIONS(83), - [aux_sym_output_stream_tuning_token3] = ACTIONS(83), - [aux_sym_output_stream_tuning_token4] = ACTIONS(83), - [aux_sym_output_stream_tuning_token5] = ACTIONS(83), - [aux_sym_output_stream_tuning_token6] = ACTIONS(83), - [aux_sym_output_stream_tuning_token7] = ACTIONS(83), - [aux_sym_output_stream_statement_token1] = ACTIONS(83), - [aux_sym_on_error_phrase_token1] = ACTIONS(83), - [aux_sym_stop_after_phrase_token1] = ACTIONS(83), - [aux_sym_do_tuning_token1] = ACTIONS(83), - [anon_sym_BY] = ACTIONS(83), - [aux_sym_where_clause_token1] = ACTIONS(83), - [aux_sym_query_tuning_token1] = ACTIONS(83), - [aux_sym_query_tuning_token2] = ACTIONS(83), - [aux_sym_query_tuning_token3] = ACTIONS(83), - [aux_sym_query_tuning_token4] = ACTIONS(83), - [aux_sym_query_tuning_token5] = ACTIONS(83), - [aux_sym_of_token1] = ACTIONS(83), - [aux_sym_field_option_token1] = ACTIONS(83), - [aux_sym_field_option_token2] = ACTIONS(83), - [aux_sym_field_option_token3] = ACTIONS(83), - [aux_sym_field_option_token4] = ACTIONS(83), - [aux_sym_field_option_token5] = ACTIONS(83), - [aux_sym_field_option_token6] = ACTIONS(83), - [aux_sym_field_definition_token1] = ACTIONS(83), - [aux_sym_index_definition_token1] = ACTIONS(83), - [aux_sym_on_statement_token1] = ACTIONS(83), - [sym__or_operator] = ACTIONS(83), - [sym__and_operator] = ACTIONS(83), - }, - [19] = { - [sym_comment] = STATE(19), - [sym_include] = STATE(19), + [21] = { + [sym_comment] = STATE(21), + [sym_include] = STATE(21), [anon_sym_COLON] = ACTIONS(146), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_STAR] = ACTIONS(146), [sym__terminator] = ACTIONS(146), [aux_sym__block_terminator_token1] = ACTIONS(146), @@ -45796,7 +46570,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_while_phrase_token1] = ACTIONS(146), [aux_sym_repeat_tuning_token1] = ACTIONS(146), [aux_sym_using_statement_token1] = ACTIONS(146), - [anon_sym_NO_DASHERROR] = ACTIONS(148), [aux_sym_input_stream_tuning_token1] = ACTIONS(146), [aux_sym_input_stream_tuning_token2] = ACTIONS(146), [aux_sym_input_stream_tuning_token3] = ACTIONS(146), @@ -45835,17 +46608,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_field_definition_token1] = ACTIONS(146), [aux_sym_index_definition_token1] = ACTIONS(146), [aux_sym_on_statement_token1] = ACTIONS(146), + [sym__namecolon] = ACTIONS(146), [sym__or_operator] = ACTIONS(146), [sym__and_operator] = ACTIONS(146), }, - [20] = { - [sym_comment] = STATE(20), - [sym_include] = STATE(20), + [22] = { + [sym_comment] = STATE(22), + [sym_include] = STATE(22), + [sym_function_arguments] = STATE(24), + [anon_sym_COLON] = ACTIONS(85), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(87), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(85), + [sym__terminator] = ACTIONS(85), + [aux_sym__block_terminator_token1] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(77), + [anon_sym_RPAREN] = ACTIONS(85), + [aux_sym_unary_expression_token2] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(85), + [aux_sym__multiplicative_operator_token1] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(87), + [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_when_expression_token1] = ACTIONS(85), + [aux_sym_variable_tuning_token1] = ACTIONS(85), + [aux_sym_variable_tuning_token2] = ACTIONS(87), + [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), + [aux_sym_variable_tuning_token7] = ACTIONS(85), + [aux_sym_variable_tuning_token8] = ACTIONS(85), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(85), + [aux_sym_function_call_token1] = ACTIONS(85), + [aux_sym_if_statement_token2] = ACTIONS(85), + [aux_sym_else_statement_token1] = ACTIONS(85), + [aux_sym_while_phrase_token1] = ACTIONS(85), + [aux_sym_repeat_tuning_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_statement_token1] = ACTIONS(85), + [aux_sym_on_error_phrase_token1] = ACTIONS(85), + [aux_sym_stop_after_phrase_token1] = ACTIONS(85), + [aux_sym_do_tuning_token1] = ACTIONS(85), + [anon_sym_BY] = ACTIONS(85), + [aux_sym_where_clause_token1] = ACTIONS(85), + [aux_sym_query_tuning_token1] = ACTIONS(85), + [aux_sym_query_tuning_token2] = ACTIONS(85), + [aux_sym_query_tuning_token3] = ACTIONS(85), + [aux_sym_query_tuning_token4] = ACTIONS(85), + [aux_sym_query_tuning_token5] = ACTIONS(85), + [aux_sym_of_token1] = ACTIONS(85), + [aux_sym_field_option_token1] = ACTIONS(85), + [aux_sym_field_option_token2] = ACTIONS(85), + [aux_sym_field_option_token3] = ACTIONS(85), + [aux_sym_field_option_token4] = ACTIONS(85), + [aux_sym_field_option_token5] = ACTIONS(85), + [aux_sym_field_option_token6] = 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), + }, + [23] = { + [sym_comment] = STATE(23), + [sym_include] = STATE(23), [anon_sym_COLON] = ACTIONS(150), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_STAR] = ACTIONS(150), [sym__terminator] = ACTIONS(150), [aux_sym__block_terminator_token1] = ACTIONS(150), @@ -45888,7 +46754,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_while_phrase_token1] = ACTIONS(150), [aux_sym_repeat_tuning_token1] = ACTIONS(150), [aux_sym_using_statement_token1] = ACTIONS(150), - [anon_sym_NO_DASHERROR] = ACTIONS(152), [aux_sym_input_stream_tuning_token1] = ACTIONS(150), [aux_sym_input_stream_tuning_token2] = ACTIONS(150), [aux_sym_input_stream_tuning_token3] = ACTIONS(150), @@ -45927,472 +46792,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_field_definition_token1] = ACTIONS(150), [aux_sym_index_definition_token1] = ACTIONS(150), [aux_sym_on_statement_token1] = ACTIONS(150), + [sym__namedot] = ACTIONS(154), [sym__or_operator] = ACTIONS(150), [sym__and_operator] = ACTIONS(150), }, - [21] = { - [sym_comment] = STATE(21), - [sym_include] = STATE(21), - [anon_sym_COLON] = ACTIONS(132), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(134), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(132), - [sym__terminator] = ACTIONS(132), - [aux_sym__block_terminator_token1] = ACTIONS(132), - [anon_sym_COMMA] = ACTIONS(132), - [anon_sym_RBRACK] = ACTIONS(132), - [anon_sym_LPAREN] = ACTIONS(132), - [anon_sym_RPAREN] = ACTIONS(132), - [aux_sym_unary_expression_token2] = ACTIONS(132), - [anon_sym_PLUS] = ACTIONS(132), - [anon_sym_DASH] = ACTIONS(132), - [aux_sym__multiplicative_operator_token1] = ACTIONS(132), - [anon_sym_LT] = ACTIONS(134), - [anon_sym_LT_EQ] = ACTIONS(132), - [anon_sym_LT_GT] = ACTIONS(132), - [anon_sym_EQ] = ACTIONS(132), - [anon_sym_GT] = ACTIONS(134), - [anon_sym_GT_EQ] = ACTIONS(132), - [aux_sym__comparison_operator_token1] = ACTIONS(132), - [aux_sym__comparison_operator_token2] = ACTIONS(132), - [aux_sym__comparison_operator_token3] = ACTIONS(132), - [aux_sym__comparison_operator_token4] = ACTIONS(132), - [aux_sym__comparison_operator_token5] = ACTIONS(132), - [aux_sym__comparison_operator_token6] = ACTIONS(132), - [aux_sym__comparison_operator_token7] = ACTIONS(132), - [aux_sym__comparison_operator_token8] = ACTIONS(132), - [aux_sym__comparison_operator_token9] = ACTIONS(132), - [aux_sym_when_expression_token1] = ACTIONS(132), - [aux_sym_variable_tuning_token1] = ACTIONS(132), - [aux_sym_variable_tuning_token2] = ACTIONS(134), - [aux_sym_variable_tuning_token3] = ACTIONS(132), - [aux_sym_variable_tuning_token4] = ACTIONS(132), - [aux_sym_variable_tuning_token5] = ACTIONS(132), - [aux_sym_variable_tuning_token6] = ACTIONS(132), - [aux_sym_variable_tuning_token7] = ACTIONS(132), - [aux_sym_variable_tuning_token8] = ACTIONS(132), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(132), - [aux_sym_function_call_token1] = ACTIONS(132), - [aux_sym_if_statement_token2] = ACTIONS(132), - [aux_sym_else_statement_token1] = ACTIONS(132), - [aux_sym_while_phrase_token1] = ACTIONS(132), - [aux_sym_repeat_tuning_token1] = ACTIONS(132), - [aux_sym_using_statement_token1] = ACTIONS(132), - [aux_sym_input_stream_tuning_token1] = ACTIONS(132), - [aux_sym_input_stream_tuning_token2] = ACTIONS(132), - [aux_sym_input_stream_tuning_token3] = ACTIONS(132), - [aux_sym_input_stream_tuning_token4] = ACTIONS(132), - [aux_sym_input_stream_tuning_token5] = ACTIONS(132), - [aux_sym_input_stream_tuning_token6] = ACTIONS(132), - [aux_sym_input_stream_tuning_token7] = ACTIONS(132), - [aux_sym_input_stream_tuning_token8] = ACTIONS(132), - [aux_sym_input_stream_tuning_token9] = ACTIONS(132), - [aux_sym_input_stream_tuning_token11] = ACTIONS(132), - [aux_sym_output_stream_tuning_token1] = ACTIONS(132), - [aux_sym_output_stream_tuning_token2] = ACTIONS(132), - [aux_sym_output_stream_tuning_token3] = ACTIONS(132), - [aux_sym_output_stream_tuning_token4] = ACTIONS(132), - [aux_sym_output_stream_tuning_token5] = ACTIONS(132), - [aux_sym_output_stream_tuning_token6] = ACTIONS(132), - [aux_sym_output_stream_tuning_token7] = ACTIONS(132), - [aux_sym_output_stream_statement_token1] = ACTIONS(132), - [aux_sym_on_error_phrase_token1] = ACTIONS(132), - [aux_sym_stop_after_phrase_token1] = ACTIONS(132), - [aux_sym_do_tuning_token1] = ACTIONS(132), - [anon_sym_BY] = ACTIONS(132), - [aux_sym_where_clause_token1] = ACTIONS(132), - [aux_sym_query_tuning_token1] = ACTIONS(132), - [aux_sym_query_tuning_token2] = ACTIONS(132), - [aux_sym_query_tuning_token3] = ACTIONS(132), - [aux_sym_query_tuning_token4] = ACTIONS(132), - [aux_sym_query_tuning_token5] = ACTIONS(132), - [aux_sym_of_token1] = ACTIONS(132), - [aux_sym_field_option_token1] = ACTIONS(132), - [aux_sym_field_option_token2] = ACTIONS(132), - [aux_sym_field_option_token3] = ACTIONS(132), - [aux_sym_field_option_token4] = ACTIONS(132), - [aux_sym_field_option_token5] = ACTIONS(132), - [aux_sym_field_option_token6] = ACTIONS(132), - [aux_sym_field_definition_token1] = ACTIONS(132), - [aux_sym_index_definition_token1] = ACTIONS(132), - [aux_sym_on_statement_token1] = ACTIONS(132), - [sym__or_operator] = ACTIONS(132), - [sym__and_operator] = ACTIONS(132), - }, - [22] = { - [sym_comment] = STATE(22), - [sym_include] = STATE(22), - [anon_sym_COLON] = ACTIONS(102), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(104), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(102), - [sym__terminator] = ACTIONS(102), - [aux_sym__block_terminator_token1] = ACTIONS(102), - [anon_sym_COMMA] = ACTIONS(102), - [anon_sym_RBRACK] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(102), - [anon_sym_RPAREN] = ACTIONS(102), - [aux_sym_unary_expression_token2] = ACTIONS(102), - [anon_sym_PLUS] = ACTIONS(102), - [anon_sym_DASH] = ACTIONS(102), - [aux_sym__multiplicative_operator_token1] = ACTIONS(102), - [anon_sym_LT] = ACTIONS(104), - [anon_sym_LT_EQ] = ACTIONS(102), - [anon_sym_LT_GT] = ACTIONS(102), - [anon_sym_EQ] = ACTIONS(102), - [anon_sym_GT] = ACTIONS(104), - [anon_sym_GT_EQ] = ACTIONS(102), - [aux_sym__comparison_operator_token1] = ACTIONS(102), - [aux_sym__comparison_operator_token2] = ACTIONS(102), - [aux_sym__comparison_operator_token3] = ACTIONS(102), - [aux_sym__comparison_operator_token4] = ACTIONS(102), - [aux_sym__comparison_operator_token5] = ACTIONS(102), - [aux_sym__comparison_operator_token6] = ACTIONS(102), - [aux_sym__comparison_operator_token7] = ACTIONS(102), - [aux_sym__comparison_operator_token8] = ACTIONS(102), - [aux_sym__comparison_operator_token9] = ACTIONS(102), - [aux_sym_when_expression_token1] = ACTIONS(102), - [aux_sym_variable_tuning_token1] = ACTIONS(102), - [aux_sym_variable_tuning_token2] = ACTIONS(104), - [aux_sym_variable_tuning_token3] = ACTIONS(102), - [aux_sym_variable_tuning_token4] = ACTIONS(102), - [aux_sym_variable_tuning_token5] = ACTIONS(102), - [aux_sym_variable_tuning_token6] = ACTIONS(102), - [aux_sym_variable_tuning_token7] = ACTIONS(102), - [aux_sym_variable_tuning_token8] = ACTIONS(102), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(102), - [aux_sym_function_call_token1] = ACTIONS(102), - [aux_sym_if_statement_token2] = ACTIONS(102), - [aux_sym_else_statement_token1] = ACTIONS(102), - [aux_sym_while_phrase_token1] = ACTIONS(102), - [aux_sym_repeat_tuning_token1] = ACTIONS(102), - [aux_sym_using_statement_token1] = ACTIONS(102), - [aux_sym_input_stream_tuning_token1] = ACTIONS(102), - [aux_sym_input_stream_tuning_token2] = ACTIONS(102), - [aux_sym_input_stream_tuning_token3] = ACTIONS(102), - [aux_sym_input_stream_tuning_token4] = ACTIONS(102), - [aux_sym_input_stream_tuning_token5] = ACTIONS(102), - [aux_sym_input_stream_tuning_token6] = ACTIONS(102), - [aux_sym_input_stream_tuning_token7] = ACTIONS(102), - [aux_sym_input_stream_tuning_token8] = ACTIONS(102), - [aux_sym_input_stream_tuning_token9] = ACTIONS(102), - [aux_sym_input_stream_tuning_token11] = ACTIONS(102), - [aux_sym_output_stream_tuning_token1] = ACTIONS(102), - [aux_sym_output_stream_tuning_token2] = ACTIONS(102), - [aux_sym_output_stream_tuning_token3] = ACTIONS(102), - [aux_sym_output_stream_tuning_token4] = ACTIONS(102), - [aux_sym_output_stream_tuning_token5] = ACTIONS(102), - [aux_sym_output_stream_tuning_token6] = ACTIONS(102), - [aux_sym_output_stream_tuning_token7] = ACTIONS(102), - [aux_sym_output_stream_statement_token1] = ACTIONS(102), - [aux_sym_on_error_phrase_token1] = ACTIONS(102), - [aux_sym_stop_after_phrase_token1] = ACTIONS(102), - [aux_sym_do_tuning_token1] = ACTIONS(102), - [anon_sym_BY] = ACTIONS(102), - [aux_sym_where_clause_token1] = ACTIONS(102), - [aux_sym_query_tuning_token1] = ACTIONS(102), - [aux_sym_query_tuning_token2] = ACTIONS(102), - [aux_sym_query_tuning_token3] = ACTIONS(102), - [aux_sym_query_tuning_token4] = ACTIONS(102), - [aux_sym_query_tuning_token5] = ACTIONS(102), - [aux_sym_of_token1] = ACTIONS(102), - [aux_sym_field_option_token1] = ACTIONS(102), - [aux_sym_field_option_token2] = ACTIONS(102), - [aux_sym_field_option_token3] = ACTIONS(102), - [aux_sym_field_option_token4] = ACTIONS(102), - [aux_sym_field_option_token5] = ACTIONS(102), - [aux_sym_field_option_token6] = ACTIONS(102), - [aux_sym_field_definition_token1] = ACTIONS(102), - [aux_sym_index_definition_token1] = ACTIONS(102), - [aux_sym_on_statement_token1] = ACTIONS(102), - [sym__or_operator] = ACTIONS(102), - [sym__and_operator] = ACTIONS(102), - }, - [23] = { - [sym_comment] = STATE(23), - [sym_include] = STATE(23), - [anon_sym_COLON] = ACTIONS(154), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(156), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(154), - [sym__terminator] = ACTIONS(154), - [aux_sym__block_terminator_token1] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_RBRACK] = ACTIONS(154), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_RPAREN] = ACTIONS(154), - [aux_sym_unary_expression_token2] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [aux_sym__multiplicative_operator_token1] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(154), - [anon_sym_LT_GT] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(154), - [aux_sym__comparison_operator_token1] = ACTIONS(154), - [aux_sym__comparison_operator_token2] = ACTIONS(154), - [aux_sym__comparison_operator_token3] = ACTIONS(154), - [aux_sym__comparison_operator_token4] = ACTIONS(154), - [aux_sym__comparison_operator_token5] = ACTIONS(154), - [aux_sym__comparison_operator_token6] = ACTIONS(154), - [aux_sym__comparison_operator_token7] = ACTIONS(154), - [aux_sym__comparison_operator_token8] = ACTIONS(154), - [aux_sym__comparison_operator_token9] = ACTIONS(154), - [aux_sym_when_expression_token1] = ACTIONS(154), - [aux_sym_variable_tuning_token1] = ACTIONS(154), - [aux_sym_variable_tuning_token2] = ACTIONS(156), - [aux_sym_variable_tuning_token3] = ACTIONS(154), - [aux_sym_variable_tuning_token4] = ACTIONS(154), - [aux_sym_variable_tuning_token5] = ACTIONS(154), - [aux_sym_variable_tuning_token6] = ACTIONS(154), - [aux_sym_variable_tuning_token7] = ACTIONS(154), - [aux_sym_variable_tuning_token8] = ACTIONS(154), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(154), - [aux_sym_function_call_token1] = ACTIONS(154), - [aux_sym_if_statement_token2] = ACTIONS(154), - [aux_sym_else_statement_token1] = ACTIONS(154), - [aux_sym_while_phrase_token1] = ACTIONS(154), - [aux_sym_repeat_tuning_token1] = ACTIONS(154), - [aux_sym_using_statement_token1] = ACTIONS(154), - [aux_sym_input_stream_tuning_token1] = ACTIONS(154), - [aux_sym_input_stream_tuning_token2] = ACTIONS(154), - [aux_sym_input_stream_tuning_token3] = ACTIONS(154), - [aux_sym_input_stream_tuning_token4] = ACTIONS(154), - [aux_sym_input_stream_tuning_token5] = ACTIONS(154), - [aux_sym_input_stream_tuning_token6] = ACTIONS(154), - [aux_sym_input_stream_tuning_token7] = ACTIONS(154), - [aux_sym_input_stream_tuning_token8] = ACTIONS(154), - [aux_sym_input_stream_tuning_token9] = ACTIONS(154), - [aux_sym_input_stream_tuning_token11] = ACTIONS(154), - [aux_sym_output_stream_tuning_token1] = ACTIONS(154), - [aux_sym_output_stream_tuning_token2] = ACTIONS(154), - [aux_sym_output_stream_tuning_token3] = ACTIONS(154), - [aux_sym_output_stream_tuning_token4] = ACTIONS(154), - [aux_sym_output_stream_tuning_token5] = ACTIONS(154), - [aux_sym_output_stream_tuning_token6] = ACTIONS(154), - [aux_sym_output_stream_tuning_token7] = ACTIONS(154), - [aux_sym_output_stream_statement_token1] = ACTIONS(154), - [aux_sym_on_error_phrase_token1] = ACTIONS(154), - [aux_sym_stop_after_phrase_token1] = ACTIONS(154), - [aux_sym_do_tuning_token1] = ACTIONS(154), - [anon_sym_BY] = ACTIONS(154), - [aux_sym_where_clause_token1] = ACTIONS(154), - [aux_sym_query_tuning_token1] = ACTIONS(154), - [aux_sym_query_tuning_token2] = ACTIONS(154), - [aux_sym_query_tuning_token3] = ACTIONS(154), - [aux_sym_query_tuning_token4] = ACTIONS(154), - [aux_sym_query_tuning_token5] = ACTIONS(154), - [aux_sym_of_token1] = ACTIONS(154), - [aux_sym_field_option_token1] = ACTIONS(154), - [aux_sym_field_option_token2] = ACTIONS(154), - [aux_sym_field_option_token3] = ACTIONS(154), - [aux_sym_field_option_token4] = ACTIONS(154), - [aux_sym_field_option_token5] = ACTIONS(154), - [aux_sym_field_option_token6] = ACTIONS(154), - [aux_sym_field_definition_token1] = ACTIONS(154), - [aux_sym_index_definition_token1] = ACTIONS(154), - [aux_sym_on_statement_token1] = ACTIONS(154), - [sym__or_operator] = ACTIONS(154), - [sym__and_operator] = ACTIONS(154), - }, [24] = { [sym_comment] = STATE(24), [sym_include] = STATE(24), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(158), - [sym__terminator] = ACTIONS(158), - [aux_sym__block_terminator_token1] = ACTIONS(158), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(158), - [aux_sym_unary_expression_token2] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(158), - [anon_sym_DASH] = ACTIONS(158), - [aux_sym__multiplicative_operator_token1] = ACTIONS(158), - [anon_sym_LT] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_LT_GT] = ACTIONS(158), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_GT] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(158), - [aux_sym__comparison_operator_token1] = ACTIONS(158), - [aux_sym__comparison_operator_token2] = ACTIONS(158), - [aux_sym__comparison_operator_token3] = ACTIONS(158), - [aux_sym__comparison_operator_token4] = ACTIONS(158), - [aux_sym__comparison_operator_token5] = ACTIONS(158), - [aux_sym__comparison_operator_token6] = ACTIONS(158), - [aux_sym__comparison_operator_token7] = ACTIONS(158), - [aux_sym__comparison_operator_token8] = ACTIONS(158), - [aux_sym__comparison_operator_token9] = ACTIONS(158), - [aux_sym_when_expression_token1] = ACTIONS(158), - [aux_sym_variable_tuning_token1] = ACTIONS(158), - [aux_sym_variable_tuning_token2] = ACTIONS(160), - [aux_sym_variable_tuning_token3] = ACTIONS(158), - [aux_sym_variable_tuning_token4] = ACTIONS(158), - [aux_sym_variable_tuning_token5] = ACTIONS(158), - [aux_sym_variable_tuning_token6] = ACTIONS(158), - [aux_sym_variable_tuning_token7] = ACTIONS(158), - [aux_sym_variable_tuning_token8] = ACTIONS(158), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(158), - [aux_sym_function_call_token1] = ACTIONS(158), - [aux_sym_if_statement_token2] = ACTIONS(158), - [aux_sym_else_statement_token1] = ACTIONS(158), - [aux_sym_while_phrase_token1] = ACTIONS(158), - [aux_sym_repeat_tuning_token1] = ACTIONS(158), - [aux_sym_using_statement_token1] = ACTIONS(158), - [aux_sym_input_stream_tuning_token1] = ACTIONS(158), - [aux_sym_input_stream_tuning_token2] = ACTIONS(158), - [aux_sym_input_stream_tuning_token3] = ACTIONS(158), - [aux_sym_input_stream_tuning_token4] = ACTIONS(158), - [aux_sym_input_stream_tuning_token5] = ACTIONS(158), - [aux_sym_input_stream_tuning_token6] = ACTIONS(158), - [aux_sym_input_stream_tuning_token7] = ACTIONS(158), - [aux_sym_input_stream_tuning_token8] = ACTIONS(158), - [aux_sym_input_stream_tuning_token9] = ACTIONS(158), - [aux_sym_input_stream_tuning_token11] = ACTIONS(158), - [aux_sym_output_stream_tuning_token1] = ACTIONS(158), - [aux_sym_output_stream_tuning_token2] = ACTIONS(158), - [aux_sym_output_stream_tuning_token3] = ACTIONS(158), - [aux_sym_output_stream_tuning_token4] = ACTIONS(158), - [aux_sym_output_stream_tuning_token5] = ACTIONS(158), - [aux_sym_output_stream_tuning_token6] = ACTIONS(158), - [aux_sym_output_stream_tuning_token7] = ACTIONS(158), - [aux_sym_output_stream_statement_token1] = ACTIONS(158), - [aux_sym_on_error_phrase_token1] = ACTIONS(158), - [aux_sym_stop_after_phrase_token1] = ACTIONS(158), - [aux_sym_do_tuning_token1] = ACTIONS(158), - [anon_sym_BY] = ACTIONS(158), - [aux_sym_where_clause_token1] = ACTIONS(158), - [aux_sym_query_tuning_token1] = ACTIONS(158), - [aux_sym_query_tuning_token2] = ACTIONS(158), - [aux_sym_query_tuning_token3] = ACTIONS(158), - [aux_sym_query_tuning_token4] = ACTIONS(158), - [aux_sym_query_tuning_token5] = ACTIONS(158), - [aux_sym_of_token1] = ACTIONS(158), - [aux_sym_field_option_token1] = ACTIONS(158), - [aux_sym_field_option_token2] = ACTIONS(158), - [aux_sym_field_option_token3] = ACTIONS(158), - [aux_sym_field_option_token4] = ACTIONS(158), - [aux_sym_field_option_token5] = ACTIONS(158), - [aux_sym_field_option_token6] = ACTIONS(158), - [aux_sym_field_definition_token1] = ACTIONS(158), - [aux_sym_index_definition_token1] = ACTIONS(158), - [aux_sym_on_statement_token1] = ACTIONS(158), - [sym__or_operator] = ACTIONS(158), - [sym__and_operator] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(156), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(156), + [sym__terminator] = ACTIONS(156), + [aux_sym__block_terminator_token1] = ACTIONS(156), + [anon_sym_COMMA] = ACTIONS(156), + [anon_sym_RBRACK] = ACTIONS(156), + [anon_sym_LPAREN] = ACTIONS(156), + [anon_sym_RPAREN] = ACTIONS(156), + [aux_sym_unary_expression_token2] = ACTIONS(156), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [aux_sym__multiplicative_operator_token1] = ACTIONS(156), + [anon_sym_LT] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(156), + [anon_sym_LT_GT] = ACTIONS(156), + [anon_sym_EQ] = ACTIONS(156), + [anon_sym_GT] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(156), + [aux_sym__comparison_operator_token1] = ACTIONS(156), + [aux_sym__comparison_operator_token2] = ACTIONS(156), + [aux_sym__comparison_operator_token3] = ACTIONS(156), + [aux_sym__comparison_operator_token4] = ACTIONS(156), + [aux_sym__comparison_operator_token5] = ACTIONS(156), + [aux_sym__comparison_operator_token6] = ACTIONS(156), + [aux_sym__comparison_operator_token7] = ACTIONS(156), + [aux_sym__comparison_operator_token8] = ACTIONS(156), + [aux_sym__comparison_operator_token9] = ACTIONS(156), + [aux_sym_when_expression_token1] = ACTIONS(156), + [aux_sym_variable_tuning_token1] = ACTIONS(156), + [aux_sym_variable_tuning_token2] = ACTIONS(158), + [aux_sym_variable_tuning_token3] = ACTIONS(156), + [aux_sym_variable_tuning_token4] = ACTIONS(156), + [aux_sym_variable_tuning_token5] = ACTIONS(156), + [aux_sym_variable_tuning_token6] = ACTIONS(156), + [aux_sym_variable_tuning_token7] = ACTIONS(156), + [aux_sym_variable_tuning_token8] = ACTIONS(156), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(156), + [aux_sym_function_call_token1] = ACTIONS(160), + [aux_sym_if_statement_token2] = ACTIONS(156), + [aux_sym_else_statement_token1] = ACTIONS(156), + [aux_sym_while_phrase_token1] = ACTIONS(156), + [aux_sym_repeat_tuning_token1] = ACTIONS(156), + [aux_sym_using_statement_token1] = ACTIONS(156), + [aux_sym_input_stream_tuning_token1] = ACTIONS(156), + [aux_sym_input_stream_tuning_token2] = ACTIONS(156), + [aux_sym_input_stream_tuning_token3] = ACTIONS(156), + [aux_sym_input_stream_tuning_token4] = ACTIONS(156), + [aux_sym_input_stream_tuning_token5] = ACTIONS(156), + [aux_sym_input_stream_tuning_token6] = ACTIONS(156), + [aux_sym_input_stream_tuning_token7] = ACTIONS(156), + [aux_sym_input_stream_tuning_token8] = ACTIONS(156), + [aux_sym_input_stream_tuning_token9] = ACTIONS(156), + [aux_sym_input_stream_tuning_token11] = ACTIONS(156), + [aux_sym_output_stream_tuning_token1] = ACTIONS(156), + [aux_sym_output_stream_tuning_token2] = ACTIONS(156), + [aux_sym_output_stream_tuning_token3] = ACTIONS(156), + [aux_sym_output_stream_tuning_token4] = ACTIONS(156), + [aux_sym_output_stream_tuning_token5] = ACTIONS(156), + [aux_sym_output_stream_tuning_token6] = ACTIONS(156), + [aux_sym_output_stream_tuning_token7] = ACTIONS(156), + [aux_sym_output_stream_statement_token1] = ACTIONS(156), + [aux_sym_on_error_phrase_token1] = ACTIONS(156), + [aux_sym_stop_after_phrase_token1] = ACTIONS(156), + [aux_sym_do_tuning_token1] = ACTIONS(156), + [anon_sym_BY] = ACTIONS(156), + [aux_sym_where_clause_token1] = ACTIONS(156), + [aux_sym_query_tuning_token1] = ACTIONS(156), + [aux_sym_query_tuning_token2] = ACTIONS(156), + [aux_sym_query_tuning_token3] = ACTIONS(156), + [aux_sym_query_tuning_token4] = ACTIONS(156), + [aux_sym_query_tuning_token5] = ACTIONS(156), + [aux_sym_of_token1] = ACTIONS(156), + [aux_sym_field_option_token1] = ACTIONS(156), + [aux_sym_field_option_token2] = ACTIONS(156), + [aux_sym_field_option_token3] = ACTIONS(156), + [aux_sym_field_option_token4] = ACTIONS(156), + [aux_sym_field_option_token5] = ACTIONS(156), + [aux_sym_field_option_token6] = ACTIONS(156), + [aux_sym_field_definition_token1] = ACTIONS(156), + [aux_sym_index_definition_token1] = ACTIONS(156), + [aux_sym_on_statement_token1] = ACTIONS(156), + [sym__namecolon] = ACTIONS(156), + [sym__or_operator] = ACTIONS(156), + [sym__and_operator] = ACTIONS(156), }, [25] = { [sym_comment] = STATE(25), [sym_include] = STATE(25), - [anon_sym_COLON] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(63), - [sym__terminator] = ACTIONS(63), - [aux_sym__block_terminator_token1] = ACTIONS(63), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_RBRACK] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(63), - [anon_sym_RPAREN] = ACTIONS(63), - [aux_sym_unary_expression_token2] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [aux_sym__multiplicative_operator_token1] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(69), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_LT_GT] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(69), - [anon_sym_GT_EQ] = ACTIONS(63), - [aux_sym__comparison_operator_token1] = ACTIONS(63), - [aux_sym__comparison_operator_token2] = ACTIONS(63), - [aux_sym__comparison_operator_token3] = ACTIONS(63), - [aux_sym__comparison_operator_token4] = ACTIONS(63), - [aux_sym__comparison_operator_token5] = ACTIONS(63), - [aux_sym__comparison_operator_token6] = ACTIONS(63), - [aux_sym__comparison_operator_token7] = ACTIONS(63), - [aux_sym__comparison_operator_token8] = ACTIONS(63), - [aux_sym__comparison_operator_token9] = ACTIONS(63), - [aux_sym_when_expression_token1] = ACTIONS(63), - [aux_sym_variable_tuning_token1] = ACTIONS(63), - [aux_sym_variable_tuning_token2] = ACTIONS(69), - [aux_sym_variable_tuning_token3] = ACTIONS(63), - [aux_sym_variable_tuning_token4] = ACTIONS(63), - [aux_sym_variable_tuning_token5] = ACTIONS(63), - [aux_sym_variable_tuning_token6] = ACTIONS(63), - [aux_sym_variable_tuning_token7] = ACTIONS(63), - [aux_sym_variable_tuning_token8] = ACTIONS(63), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(63), - [aux_sym_function_call_token1] = ACTIONS(63), - [aux_sym_if_statement_token2] = ACTIONS(63), - [aux_sym_else_statement_token1] = ACTIONS(63), - [aux_sym_while_phrase_token1] = ACTIONS(63), - [aux_sym_repeat_tuning_token1] = ACTIONS(63), - [aux_sym_using_statement_token1] = ACTIONS(63), - [aux_sym_input_stream_tuning_token1] = ACTIONS(63), - [aux_sym_input_stream_tuning_token2] = ACTIONS(63), - [aux_sym_input_stream_tuning_token3] = ACTIONS(63), - [aux_sym_input_stream_tuning_token4] = ACTIONS(63), - [aux_sym_input_stream_tuning_token5] = ACTIONS(63), - [aux_sym_input_stream_tuning_token6] = ACTIONS(63), - [aux_sym_input_stream_tuning_token7] = ACTIONS(63), - [aux_sym_input_stream_tuning_token8] = ACTIONS(63), - [aux_sym_input_stream_tuning_token9] = ACTIONS(63), - [aux_sym_input_stream_tuning_token11] = ACTIONS(63), - [aux_sym_output_stream_tuning_token1] = ACTIONS(63), - [aux_sym_output_stream_tuning_token2] = ACTIONS(63), - [aux_sym_output_stream_tuning_token3] = ACTIONS(63), - [aux_sym_output_stream_tuning_token4] = ACTIONS(63), - [aux_sym_output_stream_tuning_token5] = ACTIONS(63), - [aux_sym_output_stream_tuning_token6] = ACTIONS(63), - [aux_sym_output_stream_tuning_token7] = ACTIONS(63), - [aux_sym_output_stream_statement_token1] = ACTIONS(63), - [aux_sym_on_error_phrase_token1] = ACTIONS(63), - [aux_sym_stop_after_phrase_token1] = ACTIONS(63), - [aux_sym_do_tuning_token1] = ACTIONS(63), - [anon_sym_BY] = ACTIONS(63), - [aux_sym_where_clause_token1] = ACTIONS(63), - [aux_sym_query_tuning_token1] = ACTIONS(63), - [aux_sym_query_tuning_token2] = ACTIONS(63), - [aux_sym_query_tuning_token3] = ACTIONS(63), - [aux_sym_query_tuning_token4] = ACTIONS(63), - [aux_sym_query_tuning_token5] = ACTIONS(63), - [aux_sym_of_token1] = ACTIONS(63), - [aux_sym_field_option_token1] = ACTIONS(63), - [aux_sym_field_option_token2] = ACTIONS(63), - [aux_sym_field_option_token3] = ACTIONS(63), - [aux_sym_field_option_token4] = ACTIONS(63), - [aux_sym_field_option_token5] = ACTIONS(63), - [aux_sym_field_option_token6] = ACTIONS(63), - [aux_sym_field_definition_token1] = ACTIONS(63), - [aux_sym_index_definition_token1] = ACTIONS(63), - [aux_sym_on_statement_token1] = ACTIONS(63), - [sym__or_operator] = ACTIONS(63), - [sym__and_operator] = ACTIONS(63), - }, - [26] = { - [sym_comment] = STATE(26), - [sym_include] = STATE(26), [anon_sym_COLON] = ACTIONS(162), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), [anon_sym_SLASH] = ACTIONS(164), - [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_STAR] = ACTIONS(162), [sym__terminator] = ACTIONS(162), [aux_sym__block_terminator_token1] = ACTIONS(162), @@ -46473,17 +46976,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_field_definition_token1] = ACTIONS(162), [aux_sym_index_definition_token1] = ACTIONS(162), [aux_sym_on_statement_token1] = ACTIONS(162), + [sym__namedoublecolon] = ACTIONS(162), [sym__or_operator] = ACTIONS(162), [sym__and_operator] = ACTIONS(162), }, - [27] = { - [sym_comment] = STATE(27), - [sym_include] = STATE(27), + [26] = { + [sym_comment] = STATE(26), + [sym_include] = STATE(26), [anon_sym_COLON] = ACTIONS(166), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), [anon_sym_SLASH] = ACTIONS(168), - [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_STAR] = ACTIONS(166), [sym__terminator] = ACTIONS(166), [aux_sym__block_terminator_token1] = ACTIONS(166), @@ -46564,17 +47068,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_field_definition_token1] = ACTIONS(166), [aux_sym_index_definition_token1] = ACTIONS(166), [aux_sym_on_statement_token1] = ACTIONS(166), + [sym__namecolon] = ACTIONS(166), [sym__or_operator] = ACTIONS(166), [sym__and_operator] = ACTIONS(166), }, + [27] = { + [sym_comment] = STATE(27), + [sym_include] = STATE(27), + [anon_sym_COLON] = ACTIONS(108), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(110), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(108), + [sym__terminator] = ACTIONS(108), + [aux_sym__block_terminator_token1] = ACTIONS(108), + [anon_sym_COMMA] = ACTIONS(108), + [anon_sym_RBRACK] = ACTIONS(108), + [anon_sym_LPAREN] = ACTIONS(108), + [anon_sym_RPAREN] = ACTIONS(108), + [aux_sym_unary_expression_token2] = ACTIONS(108), + [anon_sym_PLUS] = ACTIONS(108), + [anon_sym_DASH] = ACTIONS(108), + [aux_sym__multiplicative_operator_token1] = ACTIONS(108), + [anon_sym_LT] = ACTIONS(110), + [anon_sym_LT_EQ] = ACTIONS(108), + [anon_sym_LT_GT] = ACTIONS(108), + [anon_sym_EQ] = ACTIONS(108), + [anon_sym_GT] = ACTIONS(110), + [anon_sym_GT_EQ] = ACTIONS(108), + [aux_sym__comparison_operator_token1] = ACTIONS(108), + [aux_sym__comparison_operator_token2] = ACTIONS(108), + [aux_sym__comparison_operator_token3] = ACTIONS(108), + [aux_sym__comparison_operator_token4] = ACTIONS(108), + [aux_sym__comparison_operator_token5] = ACTIONS(108), + [aux_sym__comparison_operator_token6] = ACTIONS(108), + [aux_sym__comparison_operator_token7] = ACTIONS(108), + [aux_sym__comparison_operator_token8] = ACTIONS(108), + [aux_sym__comparison_operator_token9] = ACTIONS(108), + [aux_sym_when_expression_token1] = ACTIONS(108), + [aux_sym_variable_tuning_token1] = ACTIONS(108), + [aux_sym_variable_tuning_token2] = ACTIONS(110), + [aux_sym_variable_tuning_token3] = ACTIONS(108), + [aux_sym_variable_tuning_token4] = ACTIONS(108), + [aux_sym_variable_tuning_token5] = ACTIONS(108), + [aux_sym_variable_tuning_token6] = ACTIONS(108), + [aux_sym_variable_tuning_token7] = ACTIONS(108), + [aux_sym_variable_tuning_token8] = ACTIONS(108), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(108), + [aux_sym_function_call_token1] = ACTIONS(108), + [aux_sym_if_statement_token2] = ACTIONS(108), + [aux_sym_else_statement_token1] = ACTIONS(108), + [aux_sym_while_phrase_token1] = ACTIONS(108), + [aux_sym_repeat_tuning_token1] = ACTIONS(108), + [aux_sym_using_statement_token1] = ACTIONS(108), + [aux_sym_input_stream_tuning_token1] = ACTIONS(108), + [aux_sym_input_stream_tuning_token2] = ACTIONS(108), + [aux_sym_input_stream_tuning_token3] = ACTIONS(108), + [aux_sym_input_stream_tuning_token4] = ACTIONS(108), + [aux_sym_input_stream_tuning_token5] = ACTIONS(108), + [aux_sym_input_stream_tuning_token6] = ACTIONS(108), + [aux_sym_input_stream_tuning_token7] = ACTIONS(108), + [aux_sym_input_stream_tuning_token8] = ACTIONS(108), + [aux_sym_input_stream_tuning_token9] = ACTIONS(108), + [aux_sym_input_stream_tuning_token11] = ACTIONS(108), + [aux_sym_output_stream_tuning_token1] = ACTIONS(108), + [aux_sym_output_stream_tuning_token2] = ACTIONS(108), + [aux_sym_output_stream_tuning_token3] = ACTIONS(108), + [aux_sym_output_stream_tuning_token4] = ACTIONS(108), + [aux_sym_output_stream_tuning_token5] = ACTIONS(108), + [aux_sym_output_stream_tuning_token6] = ACTIONS(108), + [aux_sym_output_stream_tuning_token7] = ACTIONS(108), + [aux_sym_output_stream_statement_token1] = ACTIONS(108), + [aux_sym_on_error_phrase_token1] = ACTIONS(108), + [aux_sym_stop_after_phrase_token1] = ACTIONS(108), + [aux_sym_do_tuning_token1] = ACTIONS(108), + [anon_sym_BY] = ACTIONS(108), + [aux_sym_where_clause_token1] = ACTIONS(108), + [aux_sym_query_tuning_token1] = ACTIONS(108), + [aux_sym_query_tuning_token2] = ACTIONS(108), + [aux_sym_query_tuning_token3] = ACTIONS(108), + [aux_sym_query_tuning_token4] = ACTIONS(108), + [aux_sym_query_tuning_token5] = ACTIONS(108), + [aux_sym_of_token1] = ACTIONS(108), + [aux_sym_field_option_token1] = ACTIONS(108), + [aux_sym_field_option_token2] = ACTIONS(108), + [aux_sym_field_option_token3] = ACTIONS(108), + [aux_sym_field_option_token4] = ACTIONS(108), + [aux_sym_field_option_token5] = ACTIONS(108), + [aux_sym_field_option_token6] = ACTIONS(108), + [aux_sym_field_definition_token1] = ACTIONS(108), + [aux_sym_index_definition_token1] = ACTIONS(108), + [aux_sym_on_statement_token1] = ACTIONS(108), + [sym__namedot] = ACTIONS(108), + [sym__or_operator] = ACTIONS(108), + [sym__and_operator] = ACTIONS(108), + }, [28] = { [sym_comment] = STATE(28), [sym_include] = STATE(28), + [anon_sym_COLON] = ACTIONS(134), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(136), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(134), + [sym__terminator] = ACTIONS(134), + [aux_sym__block_terminator_token1] = ACTIONS(134), + [anon_sym_COMMA] = ACTIONS(134), + [anon_sym_RBRACK] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(134), + [anon_sym_RPAREN] = ACTIONS(134), + [aux_sym_unary_expression_token2] = ACTIONS(134), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [aux_sym__multiplicative_operator_token1] = ACTIONS(134), + [anon_sym_LT] = ACTIONS(136), + [anon_sym_LT_EQ] = ACTIONS(134), + [anon_sym_LT_GT] = ACTIONS(134), + [anon_sym_EQ] = ACTIONS(134), + [anon_sym_GT] = ACTIONS(136), + [anon_sym_GT_EQ] = ACTIONS(134), + [aux_sym__comparison_operator_token1] = ACTIONS(134), + [aux_sym__comparison_operator_token2] = ACTIONS(134), + [aux_sym__comparison_operator_token3] = ACTIONS(134), + [aux_sym__comparison_operator_token4] = ACTIONS(134), + [aux_sym__comparison_operator_token5] = ACTIONS(134), + [aux_sym__comparison_operator_token6] = ACTIONS(134), + [aux_sym__comparison_operator_token7] = ACTIONS(134), + [aux_sym__comparison_operator_token8] = ACTIONS(134), + [aux_sym__comparison_operator_token9] = ACTIONS(134), + [aux_sym_when_expression_token1] = ACTIONS(134), + [aux_sym_variable_tuning_token1] = ACTIONS(134), + [aux_sym_variable_tuning_token2] = ACTIONS(136), + [aux_sym_variable_tuning_token3] = ACTIONS(134), + [aux_sym_variable_tuning_token4] = ACTIONS(134), + [aux_sym_variable_tuning_token5] = ACTIONS(134), + [aux_sym_variable_tuning_token6] = ACTIONS(134), + [aux_sym_variable_tuning_token7] = ACTIONS(134), + [aux_sym_variable_tuning_token8] = ACTIONS(134), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(134), + [aux_sym_function_call_token1] = ACTIONS(134), + [aux_sym_if_statement_token2] = ACTIONS(134), + [aux_sym_else_statement_token1] = ACTIONS(134), + [aux_sym_while_phrase_token1] = ACTIONS(134), + [aux_sym_repeat_tuning_token1] = ACTIONS(134), + [aux_sym_using_statement_token1] = ACTIONS(134), + [aux_sym_input_stream_tuning_token1] = ACTIONS(134), + [aux_sym_input_stream_tuning_token2] = ACTIONS(134), + [aux_sym_input_stream_tuning_token3] = ACTIONS(134), + [aux_sym_input_stream_tuning_token4] = ACTIONS(134), + [aux_sym_input_stream_tuning_token5] = ACTIONS(134), + [aux_sym_input_stream_tuning_token6] = ACTIONS(134), + [aux_sym_input_stream_tuning_token7] = ACTIONS(134), + [aux_sym_input_stream_tuning_token8] = ACTIONS(134), + [aux_sym_input_stream_tuning_token9] = ACTIONS(134), + [aux_sym_input_stream_tuning_token11] = ACTIONS(134), + [aux_sym_output_stream_tuning_token1] = ACTIONS(134), + [aux_sym_output_stream_tuning_token2] = ACTIONS(134), + [aux_sym_output_stream_tuning_token3] = ACTIONS(134), + [aux_sym_output_stream_tuning_token4] = ACTIONS(134), + [aux_sym_output_stream_tuning_token5] = ACTIONS(134), + [aux_sym_output_stream_tuning_token6] = ACTIONS(134), + [aux_sym_output_stream_tuning_token7] = ACTIONS(134), + [aux_sym_output_stream_statement_token1] = ACTIONS(134), + [aux_sym_on_error_phrase_token1] = ACTIONS(134), + [aux_sym_stop_after_phrase_token1] = ACTIONS(134), + [aux_sym_do_tuning_token1] = ACTIONS(134), + [anon_sym_BY] = ACTIONS(134), + [aux_sym_where_clause_token1] = ACTIONS(134), + [aux_sym_query_tuning_token1] = ACTIONS(134), + [aux_sym_query_tuning_token2] = ACTIONS(134), + [aux_sym_query_tuning_token3] = ACTIONS(134), + [aux_sym_query_tuning_token4] = ACTIONS(134), + [aux_sym_query_tuning_token5] = ACTIONS(134), + [aux_sym_of_token1] = ACTIONS(134), + [aux_sym_field_option_token1] = ACTIONS(134), + [aux_sym_field_option_token2] = ACTIONS(134), + [aux_sym_field_option_token3] = ACTIONS(134), + [aux_sym_field_option_token4] = ACTIONS(134), + [aux_sym_field_option_token5] = ACTIONS(134), + [aux_sym_field_option_token6] = ACTIONS(134), + [aux_sym_field_definition_token1] = ACTIONS(134), + [aux_sym_index_definition_token1] = ACTIONS(134), + [aux_sym_on_statement_token1] = ACTIONS(134), + [sym__or_operator] = ACTIONS(134), + [sym__and_operator] = ACTIONS(134), + }, + [29] = { + [sym_comment] = STATE(29), + [sym_include] = STATE(29), [anon_sym_COLON] = ACTIONS(170), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), [anon_sym_SLASH] = ACTIONS(172), - [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_STAR] = ACTIONS(170), [sym__terminator] = ACTIONS(170), [aux_sym__block_terminator_token1] = ACTIONS(170), @@ -46658,14 +47346,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(170), [sym__and_operator] = ACTIONS(170), }, - [29] = { - [sym_comment] = STATE(29), - [sym_include] = STATE(29), + [30] = { + [sym_comment] = STATE(30), + [sym_include] = STATE(30), + [anon_sym_COLON] = ACTIONS(65), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(65), + [sym__terminator] = ACTIONS(65), + [aux_sym__block_terminator_token1] = ACTIONS(65), + [anon_sym_COMMA] = ACTIONS(65), + [anon_sym_RBRACK] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(65), + [aux_sym_unary_expression_token2] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [aux_sym__multiplicative_operator_token1] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_LT_EQ] = ACTIONS(65), + [anon_sym_LT_GT] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(71), + [anon_sym_GT_EQ] = ACTIONS(65), + [aux_sym__comparison_operator_token1] = ACTIONS(65), + [aux_sym__comparison_operator_token2] = ACTIONS(65), + [aux_sym__comparison_operator_token3] = ACTIONS(65), + [aux_sym__comparison_operator_token4] = ACTIONS(65), + [aux_sym__comparison_operator_token5] = ACTIONS(65), + [aux_sym__comparison_operator_token6] = ACTIONS(65), + [aux_sym__comparison_operator_token7] = ACTIONS(65), + [aux_sym__comparison_operator_token8] = ACTIONS(65), + [aux_sym__comparison_operator_token9] = ACTIONS(65), + [aux_sym_when_expression_token1] = ACTIONS(65), + [aux_sym_variable_tuning_token1] = ACTIONS(65), + [aux_sym_variable_tuning_token2] = ACTIONS(71), + [aux_sym_variable_tuning_token3] = ACTIONS(65), + [aux_sym_variable_tuning_token4] = ACTIONS(65), + [aux_sym_variable_tuning_token5] = ACTIONS(65), + [aux_sym_variable_tuning_token6] = ACTIONS(65), + [aux_sym_variable_tuning_token7] = ACTIONS(65), + [aux_sym_variable_tuning_token8] = ACTIONS(65), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(65), + [aux_sym_function_call_token1] = ACTIONS(65), + [aux_sym_if_statement_token2] = ACTIONS(65), + [aux_sym_else_statement_token1] = ACTIONS(65), + [aux_sym_while_phrase_token1] = ACTIONS(65), + [aux_sym_repeat_tuning_token1] = ACTIONS(65), + [aux_sym_using_statement_token1] = ACTIONS(65), + [aux_sym_input_stream_tuning_token1] = ACTIONS(65), + [aux_sym_input_stream_tuning_token2] = ACTIONS(65), + [aux_sym_input_stream_tuning_token3] = ACTIONS(65), + [aux_sym_input_stream_tuning_token4] = ACTIONS(65), + [aux_sym_input_stream_tuning_token5] = ACTIONS(65), + [aux_sym_input_stream_tuning_token6] = ACTIONS(65), + [aux_sym_input_stream_tuning_token7] = ACTIONS(65), + [aux_sym_input_stream_tuning_token8] = ACTIONS(65), + [aux_sym_input_stream_tuning_token9] = ACTIONS(65), + [aux_sym_input_stream_tuning_token11] = ACTIONS(65), + [aux_sym_output_stream_tuning_token1] = ACTIONS(65), + [aux_sym_output_stream_tuning_token2] = ACTIONS(65), + [aux_sym_output_stream_tuning_token3] = ACTIONS(65), + [aux_sym_output_stream_tuning_token4] = ACTIONS(65), + [aux_sym_output_stream_tuning_token5] = ACTIONS(65), + [aux_sym_output_stream_tuning_token6] = ACTIONS(65), + [aux_sym_output_stream_tuning_token7] = ACTIONS(65), + [aux_sym_output_stream_statement_token1] = ACTIONS(65), + [aux_sym_on_error_phrase_token1] = ACTIONS(65), + [aux_sym_stop_after_phrase_token1] = ACTIONS(65), + [aux_sym_do_tuning_token1] = ACTIONS(65), + [anon_sym_BY] = ACTIONS(65), + [aux_sym_where_clause_token1] = ACTIONS(65), + [aux_sym_query_tuning_token1] = ACTIONS(65), + [aux_sym_query_tuning_token2] = ACTIONS(65), + [aux_sym_query_tuning_token3] = ACTIONS(65), + [aux_sym_query_tuning_token4] = ACTIONS(65), + [aux_sym_query_tuning_token5] = ACTIONS(65), + [aux_sym_of_token1] = ACTIONS(65), + [aux_sym_field_option_token1] = ACTIONS(65), + [aux_sym_field_option_token2] = ACTIONS(65), + [aux_sym_field_option_token3] = ACTIONS(65), + [aux_sym_field_option_token4] = ACTIONS(65), + [aux_sym_field_option_token5] = ACTIONS(65), + [aux_sym_field_option_token6] = ACTIONS(65), + [aux_sym_field_definition_token1] = ACTIONS(65), + [aux_sym_index_definition_token1] = ACTIONS(65), + [aux_sym_on_statement_token1] = ACTIONS(65), + [sym__or_operator] = ACTIONS(65), + [sym__and_operator] = ACTIONS(65), + }, + [31] = { + [sym_comment] = STATE(31), + [sym_include] = STATE(31), [anon_sym_COLON] = ACTIONS(174), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), [anon_sym_SLASH] = ACTIONS(176), - [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_STAR] = ACTIONS(174), [sym__terminator] = ACTIONS(174), [aux_sym__block_terminator_token1] = ACTIONS(174), @@ -46749,14 +47528,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(174), [sym__and_operator] = ACTIONS(174), }, - [30] = { - [sym_comment] = STATE(30), - [sym_include] = STATE(30), + [32] = { + [sym_comment] = STATE(32), + [sym_include] = STATE(32), + [anon_sym_COLON] = ACTIONS(123), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(123), + [sym__terminator] = ACTIONS(123), + [aux_sym__block_terminator_token1] = ACTIONS(123), + [anon_sym_COMMA] = ACTIONS(123), + [anon_sym_RBRACK] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(123), + [anon_sym_RPAREN] = ACTIONS(123), + [aux_sym_unary_expression_token2] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [aux_sym__multiplicative_operator_token1] = ACTIONS(123), + [anon_sym_LT] = ACTIONS(125), + [anon_sym_LT_EQ] = ACTIONS(123), + [anon_sym_LT_GT] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(125), + [anon_sym_GT_EQ] = ACTIONS(123), + [aux_sym__comparison_operator_token1] = ACTIONS(123), + [aux_sym__comparison_operator_token2] = ACTIONS(123), + [aux_sym__comparison_operator_token3] = ACTIONS(123), + [aux_sym__comparison_operator_token4] = ACTIONS(123), + [aux_sym__comparison_operator_token5] = ACTIONS(123), + [aux_sym__comparison_operator_token6] = ACTIONS(123), + [aux_sym__comparison_operator_token7] = ACTIONS(123), + [aux_sym__comparison_operator_token8] = ACTIONS(123), + [aux_sym__comparison_operator_token9] = ACTIONS(123), + [aux_sym_when_expression_token1] = ACTIONS(123), + [aux_sym_variable_tuning_token1] = ACTIONS(123), + [aux_sym_variable_tuning_token2] = ACTIONS(125), + [aux_sym_variable_tuning_token3] = ACTIONS(123), + [aux_sym_variable_tuning_token4] = ACTIONS(123), + [aux_sym_variable_tuning_token5] = ACTIONS(123), + [aux_sym_variable_tuning_token6] = ACTIONS(123), + [aux_sym_variable_tuning_token7] = ACTIONS(123), + [aux_sym_variable_tuning_token8] = ACTIONS(123), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(123), + [aux_sym_function_call_token1] = ACTIONS(123), + [aux_sym_if_statement_token2] = ACTIONS(123), + [aux_sym_else_statement_token1] = ACTIONS(123), + [aux_sym_while_phrase_token1] = ACTIONS(123), + [aux_sym_repeat_tuning_token1] = ACTIONS(123), + [aux_sym_using_statement_token1] = ACTIONS(123), + [aux_sym_input_stream_tuning_token1] = ACTIONS(123), + [aux_sym_input_stream_tuning_token2] = ACTIONS(123), + [aux_sym_input_stream_tuning_token3] = ACTIONS(123), + [aux_sym_input_stream_tuning_token4] = ACTIONS(123), + [aux_sym_input_stream_tuning_token5] = ACTIONS(123), + [aux_sym_input_stream_tuning_token6] = ACTIONS(123), + [aux_sym_input_stream_tuning_token7] = ACTIONS(123), + [aux_sym_input_stream_tuning_token8] = ACTIONS(123), + [aux_sym_input_stream_tuning_token9] = ACTIONS(123), + [aux_sym_input_stream_tuning_token11] = ACTIONS(123), + [aux_sym_output_stream_tuning_token1] = ACTIONS(123), + [aux_sym_output_stream_tuning_token2] = ACTIONS(123), + [aux_sym_output_stream_tuning_token3] = ACTIONS(123), + [aux_sym_output_stream_tuning_token4] = ACTIONS(123), + [aux_sym_output_stream_tuning_token5] = ACTIONS(123), + [aux_sym_output_stream_tuning_token6] = ACTIONS(123), + [aux_sym_output_stream_tuning_token7] = ACTIONS(123), + [aux_sym_output_stream_statement_token1] = ACTIONS(123), + [aux_sym_on_error_phrase_token1] = ACTIONS(123), + [aux_sym_stop_after_phrase_token1] = ACTIONS(123), + [aux_sym_do_tuning_token1] = ACTIONS(123), + [anon_sym_BY] = ACTIONS(123), + [aux_sym_where_clause_token1] = ACTIONS(123), + [aux_sym_query_tuning_token1] = ACTIONS(123), + [aux_sym_query_tuning_token2] = ACTIONS(123), + [aux_sym_query_tuning_token3] = ACTIONS(123), + [aux_sym_query_tuning_token4] = ACTIONS(123), + [aux_sym_query_tuning_token5] = ACTIONS(123), + [aux_sym_of_token1] = ACTIONS(123), + [aux_sym_field_option_token1] = ACTIONS(123), + [aux_sym_field_option_token2] = ACTIONS(123), + [aux_sym_field_option_token3] = ACTIONS(123), + [aux_sym_field_option_token4] = ACTIONS(123), + [aux_sym_field_option_token5] = ACTIONS(123), + [aux_sym_field_option_token6] = ACTIONS(123), + [aux_sym_field_definition_token1] = ACTIONS(123), + [aux_sym_index_definition_token1] = ACTIONS(123), + [aux_sym_on_statement_token1] = ACTIONS(123), + [sym__or_operator] = ACTIONS(123), + [sym__and_operator] = ACTIONS(123), + }, + [33] = { + [sym_comment] = STATE(33), + [sym_include] = STATE(33), [anon_sym_COLON] = ACTIONS(178), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), [anon_sym_SLASH] = ACTIONS(180), - [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_STAR] = ACTIONS(178), [sym__terminator] = ACTIONS(178), [aux_sym__block_terminator_token1] = ACTIONS(178), @@ -46840,14 +47710,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(178), [sym__and_operator] = ACTIONS(178), }, - [31] = { - [sym_comment] = STATE(31), - [sym_include] = STATE(31), + [34] = { + [sym_comment] = STATE(34), + [sym_include] = STATE(34), [anon_sym_COLON] = ACTIONS(182), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), [anon_sym_SLASH] = ACTIONS(184), - [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_STAR] = ACTIONS(182), [sym__terminator] = ACTIONS(182), [aux_sym__block_terminator_token1] = ACTIONS(182), @@ -46931,105 +47801,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(182), [sym__and_operator] = ACTIONS(182), }, - [32] = { - [sym_comment] = STATE(32), - [sym_include] = STATE(32), - [anon_sym_COLON] = ACTIONS(106), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(108), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(106), - [sym__terminator] = ACTIONS(106), - [aux_sym__block_terminator_token1] = ACTIONS(106), - [anon_sym_COMMA] = ACTIONS(106), - [anon_sym_RBRACK] = ACTIONS(106), - [anon_sym_LPAREN] = ACTIONS(106), - [anon_sym_RPAREN] = ACTIONS(106), - [aux_sym_unary_expression_token2] = ACTIONS(106), - [anon_sym_PLUS] = ACTIONS(106), - [anon_sym_DASH] = ACTIONS(106), - [aux_sym__multiplicative_operator_token1] = ACTIONS(106), - [anon_sym_LT] = ACTIONS(108), - [anon_sym_LT_EQ] = ACTIONS(106), - [anon_sym_LT_GT] = ACTIONS(106), - [anon_sym_EQ] = ACTIONS(106), - [anon_sym_GT] = ACTIONS(108), - [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_when_expression_token1] = ACTIONS(106), - [aux_sym_variable_tuning_token1] = ACTIONS(106), - [aux_sym_variable_tuning_token2] = ACTIONS(108), - [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_variable_tuning_token7] = ACTIONS(106), - [aux_sym_variable_tuning_token8] = ACTIONS(106), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(106), - [aux_sym_function_call_token1] = ACTIONS(106), - [aux_sym_if_statement_token2] = ACTIONS(106), - [aux_sym_else_statement_token1] = ACTIONS(106), - [aux_sym_while_phrase_token1] = ACTIONS(106), - [aux_sym_repeat_tuning_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_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_of_token1] = ACTIONS(106), - [aux_sym_field_option_token1] = ACTIONS(106), - [aux_sym_field_option_token2] = ACTIONS(106), - [aux_sym_field_option_token3] = ACTIONS(106), - [aux_sym_field_option_token4] = ACTIONS(106), - [aux_sym_field_option_token5] = ACTIONS(106), - [aux_sym_field_option_token6] = ACTIONS(106), - [aux_sym_field_definition_token1] = ACTIONS(106), - [aux_sym_index_definition_token1] = ACTIONS(106), - [aux_sym_on_statement_token1] = ACTIONS(106), - [sym__or_operator] = ACTIONS(106), - [sym__and_operator] = ACTIONS(106), - }, - [33] = { - [sym_comment] = STATE(33), - [sym_include] = STATE(33), + [35] = { + [sym_comment] = STATE(35), + [sym_include] = STATE(35), [anon_sym_COLON] = ACTIONS(186), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), [anon_sym_SLASH] = ACTIONS(188), - [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_STAR] = ACTIONS(186), [sym__terminator] = ACTIONS(186), [aux_sym__block_terminator_token1] = ACTIONS(186), @@ -47113,14 +47892,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(186), [sym__and_operator] = ACTIONS(186), }, - [34] = { - [sym_comment] = STATE(34), - [sym_include] = STATE(34), + [36] = { + [sym_comment] = STATE(36), + [sym_include] = STATE(36), [anon_sym_COLON] = ACTIONS(190), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), [anon_sym_SLASH] = ACTIONS(192), - [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_STAR] = ACTIONS(190), [sym__terminator] = ACTIONS(190), [aux_sym__block_terminator_token1] = ACTIONS(190), @@ -47204,14 +47983,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(190), [sym__and_operator] = ACTIONS(190), }, - [35] = { - [sym_comment] = STATE(35), - [sym_include] = STATE(35), + [37] = { + [sym_comment] = STATE(37), + [sym_include] = STATE(37), [anon_sym_COLON] = ACTIONS(194), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), [anon_sym_SLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_STAR] = ACTIONS(194), [sym__terminator] = ACTIONS(194), [aux_sym__block_terminator_token1] = ACTIONS(194), @@ -47295,14 +48074,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(194), [sym__and_operator] = ACTIONS(194), }, - [36] = { - [sym_comment] = STATE(36), - [sym_include] = STATE(36), + [38] = { + [sym_comment] = STATE(38), + [sym_include] = STATE(38), [anon_sym_COLON] = ACTIONS(198), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), [anon_sym_SLASH] = ACTIONS(200), - [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_STAR] = ACTIONS(198), [sym__terminator] = ACTIONS(198), [aux_sym__block_terminator_token1] = ACTIONS(198), @@ -47386,14 +48165,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(198), [sym__and_operator] = ACTIONS(198), }, - [37] = { - [sym_comment] = STATE(37), - [sym_include] = STATE(37), + [39] = { + [sym_comment] = STATE(39), + [sym_include] = STATE(39), [anon_sym_COLON] = ACTIONS(202), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), [anon_sym_SLASH] = ACTIONS(204), - [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_STAR] = ACTIONS(202), [sym__terminator] = ACTIONS(202), [aux_sym__block_terminator_token1] = ACTIONS(202), @@ -47477,14 +48256,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(202), [sym__and_operator] = ACTIONS(202), }, - [38] = { - [sym_comment] = STATE(38), - [sym_include] = STATE(38), + [40] = { + [sym_comment] = STATE(40), + [sym_include] = STATE(40), [anon_sym_COLON] = ACTIONS(206), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), [anon_sym_SLASH] = ACTIONS(208), - [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_STAR] = ACTIONS(206), [sym__terminator] = ACTIONS(206), [aux_sym__block_terminator_token1] = ACTIONS(206), @@ -47568,14 +48347,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(206), [sym__and_operator] = ACTIONS(206), }, - [39] = { - [sym_comment] = STATE(39), - [sym_include] = STATE(39), + [41] = { + [sym_comment] = STATE(41), + [sym_include] = STATE(41), [anon_sym_COLON] = ACTIONS(210), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), [anon_sym_SLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_STAR] = ACTIONS(210), [sym__terminator] = ACTIONS(210), [aux_sym__block_terminator_token1] = ACTIONS(210), @@ -47659,14 +48438,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(210), [sym__and_operator] = ACTIONS(210), }, - [40] = { - [sym_comment] = STATE(40), - [sym_include] = STATE(40), + [42] = { + [sym_comment] = STATE(42), + [sym_include] = STATE(42), [anon_sym_COLON] = ACTIONS(214), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), [anon_sym_SLASH] = ACTIONS(216), - [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_STAR] = ACTIONS(214), [sym__terminator] = ACTIONS(214), [aux_sym__block_terminator_token1] = ACTIONS(214), @@ -47750,14 +48529,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(214), [sym__and_operator] = ACTIONS(214), }, - [41] = { - [sym_comment] = STATE(41), - [sym_include] = STATE(41), + [43] = { + [sym_comment] = STATE(43), + [sym_include] = STATE(43), + [anon_sym_COLON] = ACTIONS(150), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(152), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(150), + [sym__terminator] = ACTIONS(150), + [aux_sym__block_terminator_token1] = ACTIONS(150), + [anon_sym_COMMA] = ACTIONS(150), + [anon_sym_RBRACK] = ACTIONS(150), + [anon_sym_LPAREN] = ACTIONS(150), + [anon_sym_RPAREN] = ACTIONS(150), + [aux_sym_unary_expression_token2] = ACTIONS(150), + [anon_sym_PLUS] = ACTIONS(150), + [anon_sym_DASH] = ACTIONS(150), + [aux_sym__multiplicative_operator_token1] = ACTIONS(150), + [anon_sym_LT] = ACTIONS(152), + [anon_sym_LT_EQ] = ACTIONS(150), + [anon_sym_LT_GT] = ACTIONS(150), + [anon_sym_EQ] = ACTIONS(150), + [anon_sym_GT] = ACTIONS(152), + [anon_sym_GT_EQ] = ACTIONS(150), + [aux_sym__comparison_operator_token1] = ACTIONS(150), + [aux_sym__comparison_operator_token2] = ACTIONS(150), + [aux_sym__comparison_operator_token3] = ACTIONS(150), + [aux_sym__comparison_operator_token4] = ACTIONS(150), + [aux_sym__comparison_operator_token5] = ACTIONS(150), + [aux_sym__comparison_operator_token6] = ACTIONS(150), + [aux_sym__comparison_operator_token7] = ACTIONS(150), + [aux_sym__comparison_operator_token8] = ACTIONS(150), + [aux_sym__comparison_operator_token9] = ACTIONS(150), + [aux_sym_when_expression_token1] = ACTIONS(150), + [aux_sym_variable_tuning_token1] = ACTIONS(150), + [aux_sym_variable_tuning_token2] = ACTIONS(152), + [aux_sym_variable_tuning_token3] = ACTIONS(150), + [aux_sym_variable_tuning_token4] = ACTIONS(150), + [aux_sym_variable_tuning_token5] = ACTIONS(150), + [aux_sym_variable_tuning_token6] = ACTIONS(150), + [aux_sym_variable_tuning_token7] = ACTIONS(150), + [aux_sym_variable_tuning_token8] = ACTIONS(150), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(150), + [aux_sym_function_call_token1] = ACTIONS(150), + [aux_sym_if_statement_token2] = ACTIONS(150), + [aux_sym_else_statement_token1] = ACTIONS(150), + [aux_sym_while_phrase_token1] = ACTIONS(150), + [aux_sym_repeat_tuning_token1] = ACTIONS(150), + [aux_sym_using_statement_token1] = ACTIONS(150), + [aux_sym_input_stream_tuning_token1] = ACTIONS(150), + [aux_sym_input_stream_tuning_token2] = ACTIONS(150), + [aux_sym_input_stream_tuning_token3] = ACTIONS(150), + [aux_sym_input_stream_tuning_token4] = ACTIONS(150), + [aux_sym_input_stream_tuning_token5] = ACTIONS(150), + [aux_sym_input_stream_tuning_token6] = ACTIONS(150), + [aux_sym_input_stream_tuning_token7] = ACTIONS(150), + [aux_sym_input_stream_tuning_token8] = ACTIONS(150), + [aux_sym_input_stream_tuning_token9] = ACTIONS(150), + [aux_sym_input_stream_tuning_token11] = ACTIONS(150), + [aux_sym_output_stream_tuning_token1] = ACTIONS(150), + [aux_sym_output_stream_tuning_token2] = ACTIONS(150), + [aux_sym_output_stream_tuning_token3] = ACTIONS(150), + [aux_sym_output_stream_tuning_token4] = ACTIONS(150), + [aux_sym_output_stream_tuning_token5] = ACTIONS(150), + [aux_sym_output_stream_tuning_token6] = ACTIONS(150), + [aux_sym_output_stream_tuning_token7] = ACTIONS(150), + [aux_sym_output_stream_statement_token1] = ACTIONS(150), + [aux_sym_on_error_phrase_token1] = ACTIONS(150), + [aux_sym_stop_after_phrase_token1] = ACTIONS(150), + [aux_sym_do_tuning_token1] = ACTIONS(150), + [anon_sym_BY] = ACTIONS(150), + [aux_sym_where_clause_token1] = ACTIONS(150), + [aux_sym_query_tuning_token1] = ACTIONS(150), + [aux_sym_query_tuning_token2] = ACTIONS(150), + [aux_sym_query_tuning_token3] = ACTIONS(150), + [aux_sym_query_tuning_token4] = ACTIONS(150), + [aux_sym_query_tuning_token5] = ACTIONS(150), + [aux_sym_of_token1] = ACTIONS(150), + [aux_sym_field_option_token1] = ACTIONS(150), + [aux_sym_field_option_token2] = ACTIONS(150), + [aux_sym_field_option_token3] = ACTIONS(150), + [aux_sym_field_option_token4] = ACTIONS(150), + [aux_sym_field_option_token5] = ACTIONS(150), + [aux_sym_field_option_token6] = ACTIONS(150), + [aux_sym_field_definition_token1] = ACTIONS(150), + [aux_sym_index_definition_token1] = ACTIONS(150), + [aux_sym_on_statement_token1] = ACTIONS(150), + [sym__or_operator] = ACTIONS(150), + [sym__and_operator] = ACTIONS(150), + }, + [44] = { + [sym_comment] = STATE(44), + [sym_include] = STATE(44), [anon_sym_COLON] = ACTIONS(218), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), [anon_sym_SLASH] = ACTIONS(220), - [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_STAR] = ACTIONS(218), [sym__terminator] = ACTIONS(218), [aux_sym__block_terminator_token1] = ACTIONS(218), @@ -47841,14 +48711,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(218), [sym__and_operator] = ACTIONS(218), }, - [42] = { - [sym_comment] = STATE(42), - [sym_include] = STATE(42), + [45] = { + [sym_comment] = STATE(45), + [sym_include] = STATE(45), [anon_sym_COLON] = ACTIONS(222), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), [anon_sym_SLASH] = ACTIONS(224), - [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_STAR] = ACTIONS(222), [sym__terminator] = ACTIONS(222), [aux_sym__block_terminator_token1] = ACTIONS(222), @@ -47932,14 +48802,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(222), [sym__and_operator] = ACTIONS(222), }, - [43] = { - [sym_comment] = STATE(43), - [sym_include] = STATE(43), + [46] = { + [sym_comment] = STATE(46), + [sym_include] = STATE(46), [anon_sym_COLON] = ACTIONS(226), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), [anon_sym_SLASH] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_STAR] = ACTIONS(226), [sym__terminator] = ACTIONS(226), [aux_sym__block_terminator_token1] = ACTIONS(226), @@ -48023,14 +48893,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(226), [sym__and_operator] = ACTIONS(226), }, - [44] = { - [sym_comment] = STATE(44), - [sym_include] = STATE(44), + [47] = { + [sym_comment] = STATE(47), + [sym_include] = STATE(47), [anon_sym_COLON] = ACTIONS(230), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), [anon_sym_SLASH] = ACTIONS(232), - [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_STAR] = ACTIONS(230), [sym__terminator] = ACTIONS(230), [aux_sym__block_terminator_token1] = ACTIONS(230), @@ -48067,7 +48937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token7] = ACTIONS(230), [aux_sym_variable_tuning_token8] = ACTIONS(230), [aux_sym__function_argument_with_mode_token4] = ACTIONS(230), - [aux_sym_function_call_token1] = ACTIONS(234), + [aux_sym_function_call_token1] = ACTIONS(230), [aux_sym_if_statement_token2] = ACTIONS(230), [aux_sym_else_statement_token1] = ACTIONS(230), [aux_sym_while_phrase_token1] = ACTIONS(230), @@ -48114,630 +48984,894 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(230), [sym__and_operator] = ACTIONS(230), }, - [45] = { - [sym_comment] = STATE(45), - [sym_include] = STATE(45), - [anon_sym_COLON] = ACTIONS(236), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(236), - [sym__terminator] = ACTIONS(236), - [aux_sym__block_terminator_token1] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_RBRACK] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_RPAREN] = ACTIONS(236), - [aux_sym_unary_expression_token2] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [aux_sym__multiplicative_operator_token1] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_LT_GT] = ACTIONS(236), - [anon_sym_EQ] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_EQ] = ACTIONS(236), - [aux_sym__comparison_operator_token1] = ACTIONS(236), - [aux_sym__comparison_operator_token2] = ACTIONS(236), - [aux_sym__comparison_operator_token3] = ACTIONS(236), - [aux_sym__comparison_operator_token4] = ACTIONS(236), - [aux_sym__comparison_operator_token5] = ACTIONS(236), - [aux_sym__comparison_operator_token6] = ACTIONS(236), - [aux_sym__comparison_operator_token7] = ACTIONS(236), - [aux_sym__comparison_operator_token8] = ACTIONS(236), - [aux_sym__comparison_operator_token9] = ACTIONS(236), - [aux_sym_when_expression_token1] = ACTIONS(236), - [aux_sym_variable_tuning_token1] = ACTIONS(236), - [aux_sym_variable_tuning_token2] = ACTIONS(238), - [aux_sym_variable_tuning_token3] = ACTIONS(236), - [aux_sym_variable_tuning_token4] = ACTIONS(236), - [aux_sym_variable_tuning_token5] = ACTIONS(236), - [aux_sym_variable_tuning_token6] = ACTIONS(236), - [aux_sym_variable_tuning_token7] = ACTIONS(236), - [aux_sym_variable_tuning_token8] = ACTIONS(236), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(236), - [aux_sym_function_call_token1] = ACTIONS(236), - [aux_sym_if_statement_token2] = ACTIONS(236), - [aux_sym_else_statement_token1] = ACTIONS(236), - [aux_sym_while_phrase_token1] = ACTIONS(236), - [aux_sym_repeat_tuning_token1] = ACTIONS(236), - [aux_sym_using_statement_token1] = ACTIONS(236), - [aux_sym_input_stream_tuning_token1] = ACTIONS(236), - [aux_sym_input_stream_tuning_token2] = ACTIONS(236), - [aux_sym_input_stream_tuning_token3] = ACTIONS(236), - [aux_sym_input_stream_tuning_token4] = ACTIONS(236), - [aux_sym_input_stream_tuning_token5] = ACTIONS(236), - [aux_sym_input_stream_tuning_token6] = ACTIONS(236), - [aux_sym_input_stream_tuning_token7] = ACTIONS(236), - [aux_sym_input_stream_tuning_token8] = ACTIONS(236), - [aux_sym_input_stream_tuning_token9] = ACTIONS(236), - [aux_sym_input_stream_tuning_token11] = ACTIONS(236), - [aux_sym_output_stream_tuning_token1] = ACTIONS(236), - [aux_sym_output_stream_tuning_token2] = ACTIONS(236), - [aux_sym_output_stream_tuning_token3] = ACTIONS(236), - [aux_sym_output_stream_tuning_token4] = ACTIONS(236), - [aux_sym_output_stream_tuning_token5] = ACTIONS(236), - [aux_sym_output_stream_tuning_token6] = ACTIONS(236), - [aux_sym_output_stream_tuning_token7] = ACTIONS(236), - [aux_sym_output_stream_statement_token1] = ACTIONS(236), - [aux_sym_on_error_phrase_token1] = ACTIONS(236), - [aux_sym_stop_after_phrase_token1] = ACTIONS(236), - [aux_sym_do_tuning_token1] = ACTIONS(236), - [anon_sym_BY] = ACTIONS(236), - [aux_sym_where_clause_token1] = ACTIONS(236), - [aux_sym_query_tuning_token1] = ACTIONS(236), - [aux_sym_query_tuning_token2] = ACTIONS(236), - [aux_sym_query_tuning_token3] = ACTIONS(236), - [aux_sym_query_tuning_token4] = ACTIONS(236), - [aux_sym_query_tuning_token5] = ACTIONS(236), - [aux_sym_of_token1] = ACTIONS(236), - [aux_sym_field_option_token1] = ACTIONS(236), - [aux_sym_field_option_token2] = ACTIONS(236), - [aux_sym_field_option_token3] = ACTIONS(236), - [aux_sym_field_option_token4] = ACTIONS(236), - [aux_sym_field_option_token5] = ACTIONS(236), - [aux_sym_field_option_token6] = ACTIONS(236), - [aux_sym_field_definition_token1] = ACTIONS(236), - [aux_sym_index_definition_token1] = ACTIONS(236), - [aux_sym_on_statement_token1] = ACTIONS(236), - [sym__or_operator] = ACTIONS(236), - [sym__and_operator] = ACTIONS(236), - }, - [46] = { - [sym_comment] = STATE(46), - [sym_include] = STATE(46), - [anon_sym_COLON] = ACTIONS(83), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(83), - [sym__terminator] = ACTIONS(83), - [aux_sym__block_terminator_token1] = ACTIONS(83), - [anon_sym_COMMA] = ACTIONS(83), - [anon_sym_RBRACK] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(83), - [anon_sym_RPAREN] = ACTIONS(83), - [aux_sym_unary_expression_token2] = ACTIONS(83), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [aux_sym__multiplicative_operator_token1] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_LT_GT] = ACTIONS(83), - [anon_sym_EQ] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [aux_sym__comparison_operator_token1] = ACTIONS(83), - [aux_sym__comparison_operator_token2] = ACTIONS(83), - [aux_sym__comparison_operator_token3] = ACTIONS(83), - [aux_sym__comparison_operator_token4] = ACTIONS(83), - [aux_sym__comparison_operator_token5] = ACTIONS(83), - [aux_sym__comparison_operator_token6] = ACTIONS(83), - [aux_sym__comparison_operator_token7] = ACTIONS(83), - [aux_sym__comparison_operator_token8] = ACTIONS(83), - [aux_sym__comparison_operator_token9] = ACTIONS(83), - [aux_sym_when_expression_token1] = ACTIONS(83), - [aux_sym_variable_tuning_token1] = ACTIONS(83), - [aux_sym_variable_tuning_token2] = ACTIONS(85), - [aux_sym_variable_tuning_token3] = ACTIONS(83), - [aux_sym_variable_tuning_token4] = ACTIONS(83), - [aux_sym_variable_tuning_token5] = ACTIONS(83), - [aux_sym_variable_tuning_token6] = ACTIONS(83), - [aux_sym_variable_tuning_token7] = ACTIONS(83), - [aux_sym_variable_tuning_token8] = ACTIONS(83), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(83), - [aux_sym_function_call_token1] = ACTIONS(83), - [aux_sym_if_statement_token2] = ACTIONS(83), - [aux_sym_else_statement_token1] = ACTIONS(83), - [aux_sym_while_phrase_token1] = ACTIONS(83), - [aux_sym_repeat_tuning_token1] = ACTIONS(83), - [aux_sym_using_statement_token1] = ACTIONS(83), - [aux_sym_input_stream_tuning_token1] = ACTIONS(83), - [aux_sym_input_stream_tuning_token2] = ACTIONS(83), - [aux_sym_input_stream_tuning_token3] = ACTIONS(83), - [aux_sym_input_stream_tuning_token4] = ACTIONS(83), - [aux_sym_input_stream_tuning_token5] = ACTIONS(83), - [aux_sym_input_stream_tuning_token6] = ACTIONS(83), - [aux_sym_input_stream_tuning_token7] = ACTIONS(83), - [aux_sym_input_stream_tuning_token8] = ACTIONS(83), - [aux_sym_input_stream_tuning_token9] = ACTIONS(83), - [aux_sym_input_stream_tuning_token11] = ACTIONS(83), - [aux_sym_output_stream_tuning_token1] = ACTIONS(83), - [aux_sym_output_stream_tuning_token2] = ACTIONS(83), - [aux_sym_output_stream_tuning_token3] = ACTIONS(83), - [aux_sym_output_stream_tuning_token4] = ACTIONS(83), - [aux_sym_output_stream_tuning_token5] = ACTIONS(83), - [aux_sym_output_stream_tuning_token6] = ACTIONS(83), - [aux_sym_output_stream_tuning_token7] = ACTIONS(83), - [aux_sym_output_stream_statement_token1] = ACTIONS(83), - [aux_sym_on_error_phrase_token1] = ACTIONS(83), - [aux_sym_stop_after_phrase_token1] = ACTIONS(83), - [aux_sym_do_tuning_token1] = ACTIONS(83), - [anon_sym_BY] = ACTIONS(83), - [aux_sym_where_clause_token1] = ACTIONS(83), - [aux_sym_query_tuning_token1] = ACTIONS(83), - [aux_sym_query_tuning_token2] = ACTIONS(83), - [aux_sym_query_tuning_token3] = ACTIONS(83), - [aux_sym_query_tuning_token4] = ACTIONS(83), - [aux_sym_query_tuning_token5] = ACTIONS(83), - [aux_sym_of_token1] = ACTIONS(83), - [aux_sym_field_option_token1] = ACTIONS(83), - [aux_sym_field_option_token2] = ACTIONS(83), - [aux_sym_field_option_token3] = ACTIONS(83), - [aux_sym_field_option_token4] = ACTIONS(83), - [aux_sym_field_option_token5] = ACTIONS(83), - [aux_sym_field_option_token6] = ACTIONS(83), - [aux_sym_field_definition_token1] = ACTIONS(83), - [aux_sym_index_definition_token1] = ACTIONS(83), - [aux_sym_on_statement_token1] = ACTIONS(83), - [sym__or_operator] = ACTIONS(83), - [sym__and_operator] = ACTIONS(83), - }, - [47] = { - [sym_comment] = STATE(47), - [sym_include] = STATE(47), - [anon_sym_COLON] = ACTIONS(240), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(242), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(240), - [sym__terminator] = ACTIONS(240), - [aux_sym__block_terminator_token1] = ACTIONS(240), - [anon_sym_COMMA] = ACTIONS(240), - [anon_sym_RBRACK] = ACTIONS(240), - [anon_sym_LPAREN] = ACTIONS(240), - [anon_sym_RPAREN] = ACTIONS(240), - [aux_sym_unary_expression_token2] = ACTIONS(240), - [anon_sym_PLUS] = ACTIONS(240), - [anon_sym_DASH] = ACTIONS(240), - [aux_sym__multiplicative_operator_token1] = ACTIONS(240), - [anon_sym_LT] = ACTIONS(242), - [anon_sym_LT_EQ] = ACTIONS(240), - [anon_sym_LT_GT] = ACTIONS(240), - [anon_sym_EQ] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(242), - [anon_sym_GT_EQ] = ACTIONS(240), - [aux_sym__comparison_operator_token1] = ACTIONS(240), - [aux_sym__comparison_operator_token2] = ACTIONS(240), - [aux_sym__comparison_operator_token3] = ACTIONS(240), - [aux_sym__comparison_operator_token4] = ACTIONS(240), - [aux_sym__comparison_operator_token5] = ACTIONS(240), - [aux_sym__comparison_operator_token6] = ACTIONS(240), - [aux_sym__comparison_operator_token7] = ACTIONS(240), - [aux_sym__comparison_operator_token8] = ACTIONS(240), - [aux_sym__comparison_operator_token9] = ACTIONS(240), - [aux_sym_when_expression_token1] = ACTIONS(240), - [aux_sym_variable_tuning_token1] = ACTIONS(240), - [aux_sym_variable_tuning_token2] = ACTIONS(242), - [aux_sym_variable_tuning_token3] = ACTIONS(240), - [aux_sym_variable_tuning_token4] = ACTIONS(240), - [aux_sym_variable_tuning_token5] = ACTIONS(240), - [aux_sym_variable_tuning_token6] = ACTIONS(240), - [aux_sym_variable_tuning_token7] = ACTIONS(240), - [aux_sym_variable_tuning_token8] = ACTIONS(240), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(240), - [aux_sym_function_call_token1] = ACTIONS(240), - [aux_sym_if_statement_token2] = ACTIONS(240), - [aux_sym_else_statement_token1] = ACTIONS(240), - [aux_sym_while_phrase_token1] = ACTIONS(240), - [aux_sym_repeat_tuning_token1] = ACTIONS(240), - [aux_sym_using_statement_token1] = ACTIONS(240), - [aux_sym_input_stream_tuning_token1] = ACTIONS(240), - [aux_sym_input_stream_tuning_token2] = ACTIONS(240), - [aux_sym_input_stream_tuning_token3] = ACTIONS(240), - [aux_sym_input_stream_tuning_token4] = ACTIONS(240), - [aux_sym_input_stream_tuning_token5] = ACTIONS(240), - [aux_sym_input_stream_tuning_token6] = ACTIONS(240), - [aux_sym_input_stream_tuning_token7] = ACTIONS(240), - [aux_sym_input_stream_tuning_token8] = ACTIONS(240), - [aux_sym_input_stream_tuning_token9] = ACTIONS(240), - [aux_sym_input_stream_tuning_token11] = ACTIONS(240), - [aux_sym_output_stream_tuning_token1] = ACTIONS(240), - [aux_sym_output_stream_tuning_token2] = ACTIONS(240), - [aux_sym_output_stream_tuning_token3] = ACTIONS(240), - [aux_sym_output_stream_tuning_token4] = ACTIONS(240), - [aux_sym_output_stream_tuning_token5] = ACTIONS(240), - [aux_sym_output_stream_tuning_token6] = ACTIONS(240), - [aux_sym_output_stream_tuning_token7] = ACTIONS(240), - [aux_sym_output_stream_statement_token1] = ACTIONS(240), - [aux_sym_on_error_phrase_token1] = ACTIONS(240), - [aux_sym_stop_after_phrase_token1] = ACTIONS(240), - [aux_sym_do_tuning_token1] = ACTIONS(240), - [anon_sym_BY] = ACTIONS(240), - [aux_sym_where_clause_token1] = ACTIONS(240), - [aux_sym_query_tuning_token1] = ACTIONS(240), - [aux_sym_query_tuning_token2] = ACTIONS(240), - [aux_sym_query_tuning_token3] = ACTIONS(240), - [aux_sym_query_tuning_token4] = ACTIONS(240), - [aux_sym_query_tuning_token5] = ACTIONS(240), - [aux_sym_of_token1] = ACTIONS(240), - [aux_sym_field_option_token1] = ACTIONS(240), - [aux_sym_field_option_token2] = ACTIONS(240), - [aux_sym_field_option_token3] = ACTIONS(240), - [aux_sym_field_option_token4] = ACTIONS(240), - [aux_sym_field_option_token5] = ACTIONS(240), - [aux_sym_field_option_token6] = ACTIONS(240), - [aux_sym_field_definition_token1] = ACTIONS(240), - [aux_sym_index_definition_token1] = ACTIONS(240), - [aux_sym_on_statement_token1] = ACTIONS(240), - [sym__or_operator] = ACTIONS(240), - [sym__and_operator] = ACTIONS(240), - }, [48] = { [sym_comment] = STATE(48), [sym_include] = STATE(48), - [anon_sym_COLON] = ACTIONS(244), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(246), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(244), - [sym__terminator] = ACTIONS(244), - [aux_sym__block_terminator_token1] = ACTIONS(244), - [anon_sym_COMMA] = ACTIONS(244), - [anon_sym_RBRACK] = ACTIONS(244), - [anon_sym_LPAREN] = ACTIONS(244), - [anon_sym_RPAREN] = ACTIONS(244), - [aux_sym_unary_expression_token2] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [aux_sym__multiplicative_operator_token1] = ACTIONS(244), - [anon_sym_LT] = ACTIONS(246), - [anon_sym_LT_EQ] = ACTIONS(244), - [anon_sym_LT_GT] = ACTIONS(244), - [anon_sym_EQ] = ACTIONS(244), - [anon_sym_GT] = ACTIONS(246), - [anon_sym_GT_EQ] = ACTIONS(244), - [aux_sym__comparison_operator_token1] = ACTIONS(244), - [aux_sym__comparison_operator_token2] = ACTIONS(244), - [aux_sym__comparison_operator_token3] = ACTIONS(244), - [aux_sym__comparison_operator_token4] = ACTIONS(244), - [aux_sym__comparison_operator_token5] = ACTIONS(244), - [aux_sym__comparison_operator_token6] = ACTIONS(244), - [aux_sym__comparison_operator_token7] = ACTIONS(244), - [aux_sym__comparison_operator_token8] = ACTIONS(244), - [aux_sym__comparison_operator_token9] = ACTIONS(244), - [aux_sym_when_expression_token1] = ACTIONS(244), - [aux_sym_variable_tuning_token1] = ACTIONS(244), - [aux_sym_variable_tuning_token2] = ACTIONS(246), - [aux_sym_variable_tuning_token3] = ACTIONS(244), - [aux_sym_variable_tuning_token4] = ACTIONS(244), - [aux_sym_variable_tuning_token5] = ACTIONS(244), - [aux_sym_variable_tuning_token6] = ACTIONS(244), - [aux_sym_variable_tuning_token7] = ACTIONS(244), - [aux_sym_variable_tuning_token8] = ACTIONS(244), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(244), - [aux_sym_function_call_token1] = ACTIONS(244), - [aux_sym_if_statement_token2] = ACTIONS(244), - [aux_sym_else_statement_token1] = ACTIONS(244), - [aux_sym_while_phrase_token1] = ACTIONS(244), - [aux_sym_repeat_tuning_token1] = ACTIONS(244), - [aux_sym_using_statement_token1] = ACTIONS(244), - [aux_sym_input_stream_tuning_token1] = ACTIONS(244), - [aux_sym_input_stream_tuning_token2] = ACTIONS(244), - [aux_sym_input_stream_tuning_token3] = ACTIONS(244), - [aux_sym_input_stream_tuning_token4] = ACTIONS(244), - [aux_sym_input_stream_tuning_token5] = ACTIONS(244), - [aux_sym_input_stream_tuning_token6] = ACTIONS(244), - [aux_sym_input_stream_tuning_token7] = ACTIONS(244), - [aux_sym_input_stream_tuning_token8] = ACTIONS(244), - [aux_sym_input_stream_tuning_token9] = ACTIONS(244), - [aux_sym_input_stream_tuning_token11] = ACTIONS(244), - [aux_sym_output_stream_tuning_token1] = ACTIONS(244), - [aux_sym_output_stream_tuning_token2] = ACTIONS(244), - [aux_sym_output_stream_tuning_token3] = ACTIONS(244), - [aux_sym_output_stream_tuning_token4] = ACTIONS(244), - [aux_sym_output_stream_tuning_token5] = ACTIONS(244), - [aux_sym_output_stream_tuning_token6] = ACTIONS(244), - [aux_sym_output_stream_tuning_token7] = ACTIONS(244), - [aux_sym_output_stream_statement_token1] = ACTIONS(244), - [aux_sym_on_error_phrase_token1] = ACTIONS(244), - [aux_sym_stop_after_phrase_token1] = ACTIONS(244), - [aux_sym_do_tuning_token1] = ACTIONS(244), - [anon_sym_BY] = ACTIONS(244), - [aux_sym_where_clause_token1] = ACTIONS(244), - [aux_sym_query_tuning_token1] = ACTIONS(244), - [aux_sym_query_tuning_token2] = ACTIONS(244), - [aux_sym_query_tuning_token3] = ACTIONS(244), - [aux_sym_query_tuning_token4] = ACTIONS(244), - [aux_sym_query_tuning_token5] = ACTIONS(244), - [aux_sym_of_token1] = ACTIONS(244), - [aux_sym_field_option_token1] = ACTIONS(244), - [aux_sym_field_option_token2] = ACTIONS(244), - [aux_sym_field_option_token3] = ACTIONS(244), - [aux_sym_field_option_token4] = ACTIONS(244), - [aux_sym_field_option_token5] = ACTIONS(244), - [aux_sym_field_option_token6] = ACTIONS(244), - [aux_sym_field_definition_token1] = ACTIONS(244), - [aux_sym_index_definition_token1] = ACTIONS(244), - [aux_sym_on_statement_token1] = ACTIONS(244), - [sym__or_operator] = ACTIONS(244), - [sym__and_operator] = ACTIONS(244), + [anon_sym_COLON] = ACTIONS(85), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(87), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(85), + [sym__terminator] = ACTIONS(85), + [aux_sym__block_terminator_token1] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_RPAREN] = ACTIONS(85), + [aux_sym_unary_expression_token2] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(85), + [aux_sym__multiplicative_operator_token1] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(87), + [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_when_expression_token1] = ACTIONS(85), + [aux_sym_variable_tuning_token1] = ACTIONS(85), + [aux_sym_variable_tuning_token2] = ACTIONS(87), + [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), + [aux_sym_variable_tuning_token7] = ACTIONS(85), + [aux_sym_variable_tuning_token8] = ACTIONS(85), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(85), + [aux_sym_function_call_token1] = ACTIONS(85), + [aux_sym_if_statement_token2] = ACTIONS(85), + [aux_sym_else_statement_token1] = ACTIONS(85), + [aux_sym_while_phrase_token1] = ACTIONS(85), + [aux_sym_repeat_tuning_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_statement_token1] = ACTIONS(85), + [aux_sym_on_error_phrase_token1] = ACTIONS(85), + [aux_sym_stop_after_phrase_token1] = ACTIONS(85), + [aux_sym_do_tuning_token1] = ACTIONS(85), + [anon_sym_BY] = ACTIONS(85), + [aux_sym_where_clause_token1] = ACTIONS(85), + [aux_sym_query_tuning_token1] = ACTIONS(85), + [aux_sym_query_tuning_token2] = ACTIONS(85), + [aux_sym_query_tuning_token3] = ACTIONS(85), + [aux_sym_query_tuning_token4] = ACTIONS(85), + [aux_sym_query_tuning_token5] = ACTIONS(85), + [aux_sym_of_token1] = ACTIONS(85), + [aux_sym_field_option_token1] = ACTIONS(85), + [aux_sym_field_option_token2] = ACTIONS(85), + [aux_sym_field_option_token3] = ACTIONS(85), + [aux_sym_field_option_token4] = ACTIONS(85), + [aux_sym_field_option_token5] = ACTIONS(85), + [aux_sym_field_option_token6] = 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), }, [49] = { [sym_comment] = STATE(49), [sym_include] = STATE(49), - [anon_sym_COLON] = ACTIONS(248), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(250), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(248), - [sym__terminator] = ACTIONS(248), - [aux_sym__block_terminator_token1] = ACTIONS(248), - [anon_sym_COMMA] = ACTIONS(248), - [anon_sym_RBRACK] = ACTIONS(248), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_RPAREN] = ACTIONS(248), - [aux_sym_unary_expression_token2] = ACTIONS(248), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [aux_sym__multiplicative_operator_token1] = ACTIONS(248), - [anon_sym_LT] = ACTIONS(250), - [anon_sym_LT_EQ] = ACTIONS(248), - [anon_sym_LT_GT] = ACTIONS(248), - [anon_sym_EQ] = ACTIONS(248), - [anon_sym_GT] = ACTIONS(250), - [anon_sym_GT_EQ] = ACTIONS(248), - [aux_sym__comparison_operator_token1] = ACTIONS(248), - [aux_sym__comparison_operator_token2] = ACTIONS(248), - [aux_sym__comparison_operator_token3] = ACTIONS(248), - [aux_sym__comparison_operator_token4] = ACTIONS(248), - [aux_sym__comparison_operator_token5] = ACTIONS(248), - [aux_sym__comparison_operator_token6] = ACTIONS(248), - [aux_sym__comparison_operator_token7] = ACTIONS(248), - [aux_sym__comparison_operator_token8] = ACTIONS(248), - [aux_sym__comparison_operator_token9] = ACTIONS(248), - [aux_sym_when_expression_token1] = ACTIONS(248), - [aux_sym_variable_tuning_token1] = ACTIONS(248), - [aux_sym_variable_tuning_token2] = ACTIONS(250), - [aux_sym_variable_tuning_token3] = ACTIONS(248), - [aux_sym_variable_tuning_token4] = ACTIONS(248), - [aux_sym_variable_tuning_token5] = ACTIONS(248), - [aux_sym_variable_tuning_token6] = ACTIONS(248), - [aux_sym_variable_tuning_token7] = ACTIONS(248), - [aux_sym_variable_tuning_token8] = ACTIONS(248), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(248), - [aux_sym_if_statement_token2] = ACTIONS(248), - [aux_sym_else_statement_token1] = ACTIONS(248), - [aux_sym_while_phrase_token1] = ACTIONS(248), - [aux_sym_repeat_tuning_token1] = ACTIONS(248), - [anon_sym_NO_DASHERROR] = ACTIONS(252), - [aux_sym_input_stream_tuning_token1] = ACTIONS(248), - [aux_sym_input_stream_tuning_token2] = ACTIONS(248), - [aux_sym_input_stream_tuning_token3] = ACTIONS(248), - [aux_sym_input_stream_tuning_token4] = ACTIONS(248), - [aux_sym_input_stream_tuning_token5] = ACTIONS(248), - [aux_sym_input_stream_tuning_token6] = ACTIONS(248), - [aux_sym_input_stream_tuning_token7] = ACTIONS(248), - [aux_sym_input_stream_tuning_token8] = ACTIONS(248), - [aux_sym_input_stream_tuning_token9] = ACTIONS(248), - [aux_sym_input_stream_tuning_token11] = ACTIONS(248), - [aux_sym_output_stream_tuning_token1] = ACTIONS(248), - [aux_sym_output_stream_tuning_token2] = ACTIONS(248), - [aux_sym_output_stream_tuning_token3] = ACTIONS(248), - [aux_sym_output_stream_tuning_token4] = ACTIONS(248), - [aux_sym_output_stream_tuning_token5] = ACTIONS(248), - [aux_sym_output_stream_tuning_token6] = ACTIONS(248), - [aux_sym_output_stream_tuning_token7] = ACTIONS(248), - [aux_sym_output_stream_statement_token1] = ACTIONS(248), - [aux_sym_on_error_phrase_token1] = ACTIONS(248), - [aux_sym_stop_after_phrase_token1] = ACTIONS(248), - [aux_sym_do_tuning_token1] = ACTIONS(248), - [anon_sym_BY] = ACTIONS(248), - [aux_sym_of_token1] = ACTIONS(248), - [aux_sym_field_option_token1] = ACTIONS(248), - [aux_sym_field_option_token2] = ACTIONS(248), - [aux_sym_field_option_token3] = ACTIONS(248), - [aux_sym_field_option_token4] = ACTIONS(248), - [aux_sym_field_option_token5] = ACTIONS(248), - [aux_sym_field_option_token6] = ACTIONS(248), - [aux_sym_field_definition_token1] = ACTIONS(248), - [aux_sym_index_definition_token1] = ACTIONS(248), - [aux_sym_on_statement_token1] = ACTIONS(248), - [sym__or_operator] = ACTIONS(248), - [sym__and_operator] = ACTIONS(248), + [anon_sym_COLON] = ACTIONS(234), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(236), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(234), + [sym__terminator] = ACTIONS(234), + [aux_sym__block_terminator_token1] = ACTIONS(234), + [anon_sym_COMMA] = ACTIONS(234), + [anon_sym_RBRACK] = ACTIONS(234), + [anon_sym_LPAREN] = ACTIONS(234), + [anon_sym_RPAREN] = ACTIONS(234), + [aux_sym_unary_expression_token2] = ACTIONS(234), + [anon_sym_PLUS] = ACTIONS(234), + [anon_sym_DASH] = ACTIONS(234), + [aux_sym__multiplicative_operator_token1] = ACTIONS(234), + [anon_sym_LT] = ACTIONS(236), + [anon_sym_LT_EQ] = ACTIONS(234), + [anon_sym_LT_GT] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(234), + [anon_sym_GT] = ACTIONS(236), + [anon_sym_GT_EQ] = ACTIONS(234), + [aux_sym__comparison_operator_token1] = ACTIONS(234), + [aux_sym__comparison_operator_token2] = ACTIONS(234), + [aux_sym__comparison_operator_token3] = ACTIONS(234), + [aux_sym__comparison_operator_token4] = ACTIONS(234), + [aux_sym__comparison_operator_token5] = ACTIONS(234), + [aux_sym__comparison_operator_token6] = ACTIONS(234), + [aux_sym__comparison_operator_token7] = ACTIONS(234), + [aux_sym__comparison_operator_token8] = ACTIONS(234), + [aux_sym__comparison_operator_token9] = ACTIONS(234), + [aux_sym_when_expression_token1] = ACTIONS(234), + [aux_sym_variable_tuning_token1] = ACTIONS(234), + [aux_sym_variable_tuning_token2] = ACTIONS(236), + [aux_sym_variable_tuning_token3] = ACTIONS(234), + [aux_sym_variable_tuning_token4] = ACTIONS(234), + [aux_sym_variable_tuning_token5] = ACTIONS(234), + [aux_sym_variable_tuning_token6] = ACTIONS(234), + [aux_sym_variable_tuning_token7] = ACTIONS(234), + [aux_sym_variable_tuning_token8] = ACTIONS(234), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(234), + [aux_sym_function_call_token1] = ACTIONS(234), + [aux_sym_if_statement_token2] = ACTIONS(234), + [aux_sym_else_statement_token1] = ACTIONS(234), + [aux_sym_while_phrase_token1] = ACTIONS(234), + [aux_sym_repeat_tuning_token1] = ACTIONS(234), + [aux_sym_using_statement_token1] = ACTIONS(234), + [aux_sym_input_stream_tuning_token1] = ACTIONS(234), + [aux_sym_input_stream_tuning_token2] = ACTIONS(234), + [aux_sym_input_stream_tuning_token3] = ACTIONS(234), + [aux_sym_input_stream_tuning_token4] = ACTIONS(234), + [aux_sym_input_stream_tuning_token5] = ACTIONS(234), + [aux_sym_input_stream_tuning_token6] = ACTIONS(234), + [aux_sym_input_stream_tuning_token7] = ACTIONS(234), + [aux_sym_input_stream_tuning_token8] = ACTIONS(234), + [aux_sym_input_stream_tuning_token9] = ACTIONS(234), + [aux_sym_input_stream_tuning_token11] = ACTIONS(234), + [aux_sym_output_stream_tuning_token1] = ACTIONS(234), + [aux_sym_output_stream_tuning_token2] = ACTIONS(234), + [aux_sym_output_stream_tuning_token3] = ACTIONS(234), + [aux_sym_output_stream_tuning_token4] = ACTIONS(234), + [aux_sym_output_stream_tuning_token5] = ACTIONS(234), + [aux_sym_output_stream_tuning_token6] = ACTIONS(234), + [aux_sym_output_stream_tuning_token7] = ACTIONS(234), + [aux_sym_output_stream_statement_token1] = ACTIONS(234), + [aux_sym_on_error_phrase_token1] = ACTIONS(234), + [aux_sym_stop_after_phrase_token1] = ACTIONS(234), + [aux_sym_do_tuning_token1] = ACTIONS(234), + [anon_sym_BY] = ACTIONS(234), + [aux_sym_where_clause_token1] = ACTIONS(234), + [aux_sym_query_tuning_token1] = ACTIONS(234), + [aux_sym_query_tuning_token2] = ACTIONS(234), + [aux_sym_query_tuning_token3] = ACTIONS(234), + [aux_sym_query_tuning_token4] = ACTIONS(234), + [aux_sym_query_tuning_token5] = ACTIONS(234), + [aux_sym_of_token1] = ACTIONS(234), + [aux_sym_field_option_token1] = ACTIONS(234), + [aux_sym_field_option_token2] = ACTIONS(234), + [aux_sym_field_option_token3] = ACTIONS(234), + [aux_sym_field_option_token4] = ACTIONS(234), + [aux_sym_field_option_token5] = ACTIONS(234), + [aux_sym_field_option_token6] = ACTIONS(234), + [aux_sym_field_definition_token1] = ACTIONS(234), + [aux_sym_index_definition_token1] = ACTIONS(234), + [aux_sym_on_statement_token1] = ACTIONS(234), + [sym__or_operator] = ACTIONS(234), + [sym__and_operator] = ACTIONS(234), }, [50] = { [sym_comment] = STATE(50), [sym_include] = STATE(50), - [anon_sym_COLON] = ACTIONS(146), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(146), - [sym__terminator] = ACTIONS(146), - [aux_sym__block_terminator_token1] = ACTIONS(146), - [anon_sym_COMMA] = ACTIONS(146), - [anon_sym_RBRACK] = ACTIONS(146), - [anon_sym_LPAREN] = ACTIONS(146), - [anon_sym_RPAREN] = ACTIONS(146), - [aux_sym_unary_expression_token2] = ACTIONS(146), - [anon_sym_PLUS] = ACTIONS(146), - [anon_sym_DASH] = ACTIONS(146), - [aux_sym__multiplicative_operator_token1] = ACTIONS(146), - [anon_sym_LT] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(146), - [anon_sym_LT_GT] = ACTIONS(146), - [anon_sym_EQ] = ACTIONS(146), - [anon_sym_GT] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(146), - [aux_sym__comparison_operator_token1] = ACTIONS(146), - [aux_sym__comparison_operator_token2] = ACTIONS(146), - [aux_sym__comparison_operator_token3] = ACTIONS(146), - [aux_sym__comparison_operator_token4] = ACTIONS(146), - [aux_sym__comparison_operator_token5] = ACTIONS(146), - [aux_sym__comparison_operator_token6] = ACTIONS(146), - [aux_sym__comparison_operator_token7] = ACTIONS(146), - [aux_sym__comparison_operator_token8] = ACTIONS(146), - [aux_sym__comparison_operator_token9] = ACTIONS(146), - [aux_sym_when_expression_token1] = ACTIONS(146), - [aux_sym_variable_tuning_token1] = ACTIONS(146), - [aux_sym_variable_tuning_token2] = ACTIONS(148), - [aux_sym_variable_tuning_token3] = ACTIONS(146), - [aux_sym_variable_tuning_token4] = ACTIONS(146), - [aux_sym_variable_tuning_token5] = ACTIONS(146), - [aux_sym_variable_tuning_token6] = ACTIONS(146), - [aux_sym_variable_tuning_token7] = ACTIONS(146), - [aux_sym_variable_tuning_token8] = ACTIONS(146), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(146), - [aux_sym_if_statement_token2] = ACTIONS(146), - [aux_sym_else_statement_token1] = ACTIONS(146), - [aux_sym_while_phrase_token1] = ACTIONS(146), - [aux_sym_repeat_tuning_token1] = ACTIONS(146), - [anon_sym_NO_DASHERROR] = ACTIONS(146), - [aux_sym_input_stream_tuning_token1] = ACTIONS(146), - [aux_sym_input_stream_tuning_token2] = ACTIONS(146), - [aux_sym_input_stream_tuning_token3] = ACTIONS(146), - [aux_sym_input_stream_tuning_token4] = ACTIONS(146), - [aux_sym_input_stream_tuning_token5] = ACTIONS(146), - [aux_sym_input_stream_tuning_token6] = ACTIONS(146), - [aux_sym_input_stream_tuning_token7] = ACTIONS(146), - [aux_sym_input_stream_tuning_token8] = ACTIONS(146), - [aux_sym_input_stream_tuning_token9] = ACTIONS(146), - [aux_sym_input_stream_tuning_token11] = ACTIONS(146), - [aux_sym_output_stream_tuning_token1] = ACTIONS(146), - [aux_sym_output_stream_tuning_token2] = ACTIONS(146), - [aux_sym_output_stream_tuning_token3] = ACTIONS(146), - [aux_sym_output_stream_tuning_token4] = ACTIONS(146), - [aux_sym_output_stream_tuning_token5] = ACTIONS(146), - [aux_sym_output_stream_tuning_token6] = ACTIONS(146), - [aux_sym_output_stream_tuning_token7] = ACTIONS(146), - [aux_sym_output_stream_statement_token1] = ACTIONS(146), - [aux_sym_on_error_phrase_token1] = ACTIONS(146), - [aux_sym_stop_after_phrase_token1] = ACTIONS(146), - [aux_sym_do_tuning_token1] = ACTIONS(146), - [anon_sym_BY] = ACTIONS(146), - [aux_sym_of_token1] = ACTIONS(146), - [aux_sym_field_option_token1] = ACTIONS(146), - [aux_sym_field_option_token2] = ACTIONS(146), - [aux_sym_field_option_token3] = ACTIONS(146), - [aux_sym_field_option_token4] = ACTIONS(146), - [aux_sym_field_option_token5] = ACTIONS(146), - [aux_sym_field_option_token6] = ACTIONS(146), - [aux_sym_field_definition_token1] = ACTIONS(146), - [aux_sym_index_definition_token1] = ACTIONS(146), - [aux_sym_on_statement_token1] = ACTIONS(146), - [sym__or_operator] = ACTIONS(146), - [sym__and_operator] = ACTIONS(146), + [anon_sym_COLON] = ACTIONS(238), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(240), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(238), + [sym__terminator] = ACTIONS(238), + [aux_sym__block_terminator_token1] = ACTIONS(238), + [anon_sym_COMMA] = ACTIONS(238), + [anon_sym_RBRACK] = ACTIONS(238), + [anon_sym_LPAREN] = ACTIONS(238), + [anon_sym_RPAREN] = ACTIONS(238), + [aux_sym_unary_expression_token2] = ACTIONS(238), + [anon_sym_PLUS] = ACTIONS(238), + [anon_sym_DASH] = ACTIONS(238), + [aux_sym__multiplicative_operator_token1] = ACTIONS(238), + [anon_sym_LT] = ACTIONS(240), + [anon_sym_LT_EQ] = ACTIONS(238), + [anon_sym_LT_GT] = ACTIONS(238), + [anon_sym_EQ] = ACTIONS(238), + [anon_sym_GT] = ACTIONS(240), + [anon_sym_GT_EQ] = ACTIONS(238), + [aux_sym__comparison_operator_token1] = ACTIONS(238), + [aux_sym__comparison_operator_token2] = ACTIONS(238), + [aux_sym__comparison_operator_token3] = ACTIONS(238), + [aux_sym__comparison_operator_token4] = ACTIONS(238), + [aux_sym__comparison_operator_token5] = ACTIONS(238), + [aux_sym__comparison_operator_token6] = ACTIONS(238), + [aux_sym__comparison_operator_token7] = ACTIONS(238), + [aux_sym__comparison_operator_token8] = ACTIONS(238), + [aux_sym__comparison_operator_token9] = ACTIONS(238), + [aux_sym_when_expression_token1] = ACTIONS(238), + [aux_sym_variable_tuning_token1] = ACTIONS(238), + [aux_sym_variable_tuning_token2] = ACTIONS(240), + [aux_sym_variable_tuning_token3] = ACTIONS(238), + [aux_sym_variable_tuning_token4] = ACTIONS(238), + [aux_sym_variable_tuning_token5] = ACTIONS(238), + [aux_sym_variable_tuning_token6] = ACTIONS(238), + [aux_sym_variable_tuning_token7] = ACTIONS(238), + [aux_sym_variable_tuning_token8] = ACTIONS(238), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(238), + [aux_sym_function_call_token1] = ACTIONS(238), + [aux_sym_if_statement_token2] = ACTIONS(238), + [aux_sym_else_statement_token1] = ACTIONS(238), + [aux_sym_while_phrase_token1] = ACTIONS(238), + [aux_sym_repeat_tuning_token1] = ACTIONS(238), + [aux_sym_using_statement_token1] = ACTIONS(238), + [aux_sym_input_stream_tuning_token1] = ACTIONS(238), + [aux_sym_input_stream_tuning_token2] = ACTIONS(238), + [aux_sym_input_stream_tuning_token3] = ACTIONS(238), + [aux_sym_input_stream_tuning_token4] = ACTIONS(238), + [aux_sym_input_stream_tuning_token5] = ACTIONS(238), + [aux_sym_input_stream_tuning_token6] = ACTIONS(238), + [aux_sym_input_stream_tuning_token7] = ACTIONS(238), + [aux_sym_input_stream_tuning_token8] = ACTIONS(238), + [aux_sym_input_stream_tuning_token9] = ACTIONS(238), + [aux_sym_input_stream_tuning_token11] = ACTIONS(238), + [aux_sym_output_stream_tuning_token1] = ACTIONS(238), + [aux_sym_output_stream_tuning_token2] = ACTIONS(238), + [aux_sym_output_stream_tuning_token3] = ACTIONS(238), + [aux_sym_output_stream_tuning_token4] = ACTIONS(238), + [aux_sym_output_stream_tuning_token5] = ACTIONS(238), + [aux_sym_output_stream_tuning_token6] = ACTIONS(238), + [aux_sym_output_stream_tuning_token7] = ACTIONS(238), + [aux_sym_output_stream_statement_token1] = ACTIONS(238), + [aux_sym_on_error_phrase_token1] = ACTIONS(238), + [aux_sym_stop_after_phrase_token1] = ACTIONS(238), + [aux_sym_do_tuning_token1] = ACTIONS(238), + [anon_sym_BY] = ACTIONS(238), + [aux_sym_where_clause_token1] = ACTIONS(238), + [aux_sym_query_tuning_token1] = ACTIONS(238), + [aux_sym_query_tuning_token2] = ACTIONS(238), + [aux_sym_query_tuning_token3] = ACTIONS(238), + [aux_sym_query_tuning_token4] = ACTIONS(238), + [aux_sym_query_tuning_token5] = ACTIONS(238), + [aux_sym_of_token1] = ACTIONS(238), + [aux_sym_field_option_token1] = ACTIONS(238), + [aux_sym_field_option_token2] = ACTIONS(238), + [aux_sym_field_option_token3] = ACTIONS(238), + [aux_sym_field_option_token4] = ACTIONS(238), + [aux_sym_field_option_token5] = ACTIONS(238), + [aux_sym_field_option_token6] = ACTIONS(238), + [aux_sym_field_definition_token1] = ACTIONS(238), + [aux_sym_index_definition_token1] = ACTIONS(238), + [aux_sym_on_statement_token1] = ACTIONS(238), + [sym__or_operator] = ACTIONS(238), + [sym__and_operator] = ACTIONS(238), }, [51] = { [sym_comment] = STATE(51), [sym_include] = STATE(51), - [anon_sym_COLON] = ACTIONS(150), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(152), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(150), - [sym__terminator] = ACTIONS(150), - [aux_sym__block_terminator_token1] = ACTIONS(150), - [anon_sym_COMMA] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(150), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_RPAREN] = ACTIONS(150), - [aux_sym_unary_expression_token2] = ACTIONS(150), - [anon_sym_PLUS] = ACTIONS(150), - [anon_sym_DASH] = ACTIONS(150), - [aux_sym__multiplicative_operator_token1] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(152), - [anon_sym_LT_EQ] = ACTIONS(150), - [anon_sym_LT_GT] = ACTIONS(150), - [anon_sym_EQ] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(152), - [anon_sym_GT_EQ] = ACTIONS(150), - [aux_sym__comparison_operator_token1] = ACTIONS(150), - [aux_sym__comparison_operator_token2] = ACTIONS(150), - [aux_sym__comparison_operator_token3] = ACTIONS(150), - [aux_sym__comparison_operator_token4] = ACTIONS(150), - [aux_sym__comparison_operator_token5] = ACTIONS(150), - [aux_sym__comparison_operator_token6] = ACTIONS(150), - [aux_sym__comparison_operator_token7] = ACTIONS(150), - [aux_sym__comparison_operator_token8] = ACTIONS(150), - [aux_sym__comparison_operator_token9] = ACTIONS(150), - [aux_sym_when_expression_token1] = ACTIONS(150), - [aux_sym_variable_tuning_token1] = ACTIONS(150), - [aux_sym_variable_tuning_token2] = ACTIONS(152), - [aux_sym_variable_tuning_token3] = ACTIONS(150), - [aux_sym_variable_tuning_token4] = ACTIONS(150), - [aux_sym_variable_tuning_token5] = ACTIONS(150), - [aux_sym_variable_tuning_token6] = ACTIONS(150), - [aux_sym_variable_tuning_token7] = ACTIONS(150), - [aux_sym_variable_tuning_token8] = ACTIONS(150), - [aux_sym__function_argument_with_mode_token4] = ACTIONS(150), - [aux_sym_if_statement_token2] = ACTIONS(150), - [aux_sym_else_statement_token1] = ACTIONS(150), - [aux_sym_while_phrase_token1] = ACTIONS(150), - [aux_sym_repeat_tuning_token1] = ACTIONS(150), - [anon_sym_NO_DASHERROR] = ACTIONS(150), - [aux_sym_input_stream_tuning_token1] = ACTIONS(150), - [aux_sym_input_stream_tuning_token2] = ACTIONS(150), - [aux_sym_input_stream_tuning_token3] = ACTIONS(150), - [aux_sym_input_stream_tuning_token4] = ACTIONS(150), - [aux_sym_input_stream_tuning_token5] = ACTIONS(150), - [aux_sym_input_stream_tuning_token6] = ACTIONS(150), - [aux_sym_input_stream_tuning_token7] = ACTIONS(150), - [aux_sym_input_stream_tuning_token8] = ACTIONS(150), - [aux_sym_input_stream_tuning_token9] = ACTIONS(150), - [aux_sym_input_stream_tuning_token11] = ACTIONS(150), - [aux_sym_output_stream_tuning_token1] = ACTIONS(150), - [aux_sym_output_stream_tuning_token2] = ACTIONS(150), - [aux_sym_output_stream_tuning_token3] = ACTIONS(150), - [aux_sym_output_stream_tuning_token4] = ACTIONS(150), - [aux_sym_output_stream_tuning_token5] = ACTIONS(150), - [aux_sym_output_stream_tuning_token6] = ACTIONS(150), - [aux_sym_output_stream_tuning_token7] = ACTIONS(150), - [aux_sym_output_stream_statement_token1] = ACTIONS(150), - [aux_sym_on_error_phrase_token1] = ACTIONS(150), - [aux_sym_stop_after_phrase_token1] = ACTIONS(150), - [aux_sym_do_tuning_token1] = ACTIONS(150), - [anon_sym_BY] = ACTIONS(150), - [aux_sym_of_token1] = ACTIONS(150), - [aux_sym_field_option_token1] = ACTIONS(150), - [aux_sym_field_option_token2] = ACTIONS(150), - [aux_sym_field_option_token3] = ACTIONS(150), - [aux_sym_field_option_token4] = ACTIONS(150), - [aux_sym_field_option_token5] = ACTIONS(150), - [aux_sym_field_option_token6] = ACTIONS(150), - [aux_sym_field_definition_token1] = ACTIONS(150), - [aux_sym_index_definition_token1] = ACTIONS(150), - [aux_sym_on_statement_token1] = ACTIONS(150), - [sym__or_operator] = ACTIONS(150), - [sym__and_operator] = ACTIONS(150), + [anon_sym_COLON] = ACTIONS(242), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(244), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(242), + [sym__terminator] = ACTIONS(242), + [aux_sym__block_terminator_token1] = ACTIONS(242), + [anon_sym_COMMA] = ACTIONS(242), + [anon_sym_RBRACK] = ACTIONS(242), + [anon_sym_LPAREN] = ACTIONS(242), + [anon_sym_RPAREN] = ACTIONS(242), + [aux_sym_unary_expression_token2] = ACTIONS(242), + [anon_sym_PLUS] = ACTIONS(242), + [anon_sym_DASH] = ACTIONS(242), + [aux_sym__multiplicative_operator_token1] = ACTIONS(242), + [anon_sym_LT] = ACTIONS(244), + [anon_sym_LT_EQ] = ACTIONS(242), + [anon_sym_LT_GT] = ACTIONS(242), + [anon_sym_EQ] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(244), + [anon_sym_GT_EQ] = ACTIONS(242), + [aux_sym__comparison_operator_token1] = ACTIONS(242), + [aux_sym__comparison_operator_token2] = ACTIONS(242), + [aux_sym__comparison_operator_token3] = ACTIONS(242), + [aux_sym__comparison_operator_token4] = ACTIONS(242), + [aux_sym__comparison_operator_token5] = ACTIONS(242), + [aux_sym__comparison_operator_token6] = ACTIONS(242), + [aux_sym__comparison_operator_token7] = ACTIONS(242), + [aux_sym__comparison_operator_token8] = ACTIONS(242), + [aux_sym__comparison_operator_token9] = ACTIONS(242), + [aux_sym_when_expression_token1] = ACTIONS(242), + [aux_sym_variable_tuning_token1] = ACTIONS(242), + [aux_sym_variable_tuning_token2] = ACTIONS(244), + [aux_sym_variable_tuning_token3] = ACTIONS(242), + [aux_sym_variable_tuning_token4] = ACTIONS(242), + [aux_sym_variable_tuning_token5] = ACTIONS(242), + [aux_sym_variable_tuning_token6] = ACTIONS(242), + [aux_sym_variable_tuning_token7] = ACTIONS(242), + [aux_sym_variable_tuning_token8] = ACTIONS(242), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(242), + [aux_sym_function_call_token1] = ACTIONS(242), + [aux_sym_if_statement_token2] = ACTIONS(242), + [aux_sym_else_statement_token1] = ACTIONS(242), + [aux_sym_while_phrase_token1] = ACTIONS(242), + [aux_sym_repeat_tuning_token1] = ACTIONS(242), + [aux_sym_using_statement_token1] = ACTIONS(242), + [aux_sym_input_stream_tuning_token1] = ACTIONS(242), + [aux_sym_input_stream_tuning_token2] = ACTIONS(242), + [aux_sym_input_stream_tuning_token3] = ACTIONS(242), + [aux_sym_input_stream_tuning_token4] = ACTIONS(242), + [aux_sym_input_stream_tuning_token5] = ACTIONS(242), + [aux_sym_input_stream_tuning_token6] = ACTIONS(242), + [aux_sym_input_stream_tuning_token7] = ACTIONS(242), + [aux_sym_input_stream_tuning_token8] = ACTIONS(242), + [aux_sym_input_stream_tuning_token9] = ACTIONS(242), + [aux_sym_input_stream_tuning_token11] = ACTIONS(242), + [aux_sym_output_stream_tuning_token1] = ACTIONS(242), + [aux_sym_output_stream_tuning_token2] = ACTIONS(242), + [aux_sym_output_stream_tuning_token3] = ACTIONS(242), + [aux_sym_output_stream_tuning_token4] = ACTIONS(242), + [aux_sym_output_stream_tuning_token5] = ACTIONS(242), + [aux_sym_output_stream_tuning_token6] = ACTIONS(242), + [aux_sym_output_stream_tuning_token7] = ACTIONS(242), + [aux_sym_output_stream_statement_token1] = ACTIONS(242), + [aux_sym_on_error_phrase_token1] = ACTIONS(242), + [aux_sym_stop_after_phrase_token1] = ACTIONS(242), + [aux_sym_do_tuning_token1] = ACTIONS(242), + [anon_sym_BY] = ACTIONS(242), + [aux_sym_where_clause_token1] = ACTIONS(242), + [aux_sym_query_tuning_token1] = ACTIONS(242), + [aux_sym_query_tuning_token2] = ACTIONS(242), + [aux_sym_query_tuning_token3] = ACTIONS(242), + [aux_sym_query_tuning_token4] = ACTIONS(242), + [aux_sym_query_tuning_token5] = ACTIONS(242), + [aux_sym_of_token1] = ACTIONS(242), + [aux_sym_field_option_token1] = ACTIONS(242), + [aux_sym_field_option_token2] = ACTIONS(242), + [aux_sym_field_option_token3] = ACTIONS(242), + [aux_sym_field_option_token4] = ACTIONS(242), + [aux_sym_field_option_token5] = ACTIONS(242), + [aux_sym_field_option_token6] = ACTIONS(242), + [aux_sym_field_definition_token1] = ACTIONS(242), + [aux_sym_index_definition_token1] = ACTIONS(242), + [aux_sym_on_statement_token1] = ACTIONS(242), + [sym__or_operator] = ACTIONS(242), + [sym__and_operator] = ACTIONS(242), }, [52] = { [sym_comment] = STATE(52), [sym_include] = STATE(52), + [anon_sym_COLON] = ACTIONS(246), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(246), + [sym__terminator] = ACTIONS(246), + [aux_sym__block_terminator_token1] = ACTIONS(246), + [anon_sym_COMMA] = ACTIONS(246), + [anon_sym_RBRACK] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(246), + [anon_sym_RPAREN] = ACTIONS(246), + [aux_sym_unary_expression_token2] = ACTIONS(246), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [aux_sym__multiplicative_operator_token1] = ACTIONS(246), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(246), + [anon_sym_LT_GT] = ACTIONS(246), + [anon_sym_EQ] = ACTIONS(246), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_GT_EQ] = ACTIONS(246), + [aux_sym__comparison_operator_token1] = ACTIONS(246), + [aux_sym__comparison_operator_token2] = ACTIONS(246), + [aux_sym__comparison_operator_token3] = ACTIONS(246), + [aux_sym__comparison_operator_token4] = ACTIONS(246), + [aux_sym__comparison_operator_token5] = ACTIONS(246), + [aux_sym__comparison_operator_token6] = ACTIONS(246), + [aux_sym__comparison_operator_token7] = ACTIONS(246), + [aux_sym__comparison_operator_token8] = ACTIONS(246), + [aux_sym__comparison_operator_token9] = ACTIONS(246), + [aux_sym_when_expression_token1] = ACTIONS(246), + [aux_sym_variable_tuning_token1] = ACTIONS(246), + [aux_sym_variable_tuning_token2] = ACTIONS(248), + [aux_sym_variable_tuning_token3] = ACTIONS(246), + [aux_sym_variable_tuning_token4] = ACTIONS(246), + [aux_sym_variable_tuning_token5] = ACTIONS(246), + [aux_sym_variable_tuning_token6] = ACTIONS(246), + [aux_sym_variable_tuning_token7] = ACTIONS(246), + [aux_sym_variable_tuning_token8] = ACTIONS(246), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(246), + [aux_sym_function_call_token1] = ACTIONS(246), + [aux_sym_if_statement_token2] = ACTIONS(246), + [aux_sym_else_statement_token1] = ACTIONS(246), + [aux_sym_while_phrase_token1] = ACTIONS(246), + [aux_sym_repeat_tuning_token1] = ACTIONS(246), + [aux_sym_using_statement_token1] = ACTIONS(246), + [aux_sym_input_stream_tuning_token1] = ACTIONS(246), + [aux_sym_input_stream_tuning_token2] = ACTIONS(246), + [aux_sym_input_stream_tuning_token3] = ACTIONS(246), + [aux_sym_input_stream_tuning_token4] = ACTIONS(246), + [aux_sym_input_stream_tuning_token5] = ACTIONS(246), + [aux_sym_input_stream_tuning_token6] = ACTIONS(246), + [aux_sym_input_stream_tuning_token7] = ACTIONS(246), + [aux_sym_input_stream_tuning_token8] = ACTIONS(246), + [aux_sym_input_stream_tuning_token9] = ACTIONS(246), + [aux_sym_input_stream_tuning_token11] = ACTIONS(246), + [aux_sym_output_stream_tuning_token1] = ACTIONS(246), + [aux_sym_output_stream_tuning_token2] = ACTIONS(246), + [aux_sym_output_stream_tuning_token3] = ACTIONS(246), + [aux_sym_output_stream_tuning_token4] = ACTIONS(246), + [aux_sym_output_stream_tuning_token5] = ACTIONS(246), + [aux_sym_output_stream_tuning_token6] = ACTIONS(246), + [aux_sym_output_stream_tuning_token7] = ACTIONS(246), + [aux_sym_output_stream_statement_token1] = ACTIONS(246), + [aux_sym_on_error_phrase_token1] = ACTIONS(246), + [aux_sym_stop_after_phrase_token1] = ACTIONS(246), + [aux_sym_do_tuning_token1] = ACTIONS(246), + [anon_sym_BY] = ACTIONS(246), + [aux_sym_where_clause_token1] = ACTIONS(246), + [aux_sym_query_tuning_token1] = ACTIONS(246), + [aux_sym_query_tuning_token2] = ACTIONS(246), + [aux_sym_query_tuning_token3] = ACTIONS(246), + [aux_sym_query_tuning_token4] = ACTIONS(246), + [aux_sym_query_tuning_token5] = ACTIONS(246), + [aux_sym_of_token1] = ACTIONS(246), + [aux_sym_field_option_token1] = ACTIONS(246), + [aux_sym_field_option_token2] = ACTIONS(246), + [aux_sym_field_option_token3] = ACTIONS(246), + [aux_sym_field_option_token4] = ACTIONS(246), + [aux_sym_field_option_token5] = ACTIONS(246), + [aux_sym_field_option_token6] = ACTIONS(246), + [aux_sym_field_definition_token1] = ACTIONS(246), + [aux_sym_index_definition_token1] = ACTIONS(246), + [aux_sym_on_statement_token1] = ACTIONS(246), + [sym__or_operator] = ACTIONS(246), + [sym__and_operator] = ACTIONS(246), + }, + [53] = { + [sym_comment] = STATE(53), + [sym_qualified_name] = STATE(5477), + [sym_include] = STATE(53), + [sym_assignment] = STATE(6781), + [sym_variable_assignment] = STATE(1978), + [sym_variable_definition] = STATE(1978), + [sym_buffer_definition] = STATE(1978), + [sym_query_definition] = STATE(1978), + [sym_function_call_statement] = STATE(1978), + [sym_function_call] = STATE(5450), + [sym_if_statement] = STATE(1978), + [sym_label] = STATE(1979), + [sym_repeat_statement] = STATE(1978), + [sym_procedure_statement] = STATE(1978), + [sym_procedure_parameter_definition] = STATE(1978), + [sym_function_statement] = STATE(1978), + [sym_return_statement] = STATE(1978), + [sym_interface_statement] = STATE(1978), + [sym_dataset_definition] = STATE(1978), + [sym_using_statement] = STATE(1978), + [sym_class_statement] = STATE(1978), + [sym_new_expression] = STATE(5480), + [sym_object_access] = STATE(4649), + [sym_member_access] = STATE(5477), + [sym_stream_definition] = STATE(1978), + [sym_input_close_statement] = STATE(1978), + [sym_output_close_statement] = STATE(1978), + [sym__stream_statement] = STATE(1978), + [sym_input_stream_statement] = STATE(1980), + [sym_output_stream_statement] = STATE(1980), + [sym_do_block] = STATE(1978), + [sym_case_statement] = STATE(1978), + [sym_for_statement] = STATE(1978), + [sym_find_statement] = STATE(1978), + [sym_abl_statement] = STATE(1978), + [sym_assign_statement] = STATE(1978), + [sym_catch_statement] = STATE(1978), + [sym_finally_statement] = STATE(1978), + [sym_accumulate_statement] = STATE(1978), + [sym_undo_statement] = STATE(1978), + [sym_error_scope_statement] = STATE(1978), + [sym_workfile_definition] = STATE(1978), + [sym_temp_table_definition] = STATE(1978), + [sym_on_statement] = STATE(1978), + [sym_prompt_for_statement] = STATE(1978), + [sym_var_statement] = STATE(1978), + [sym_button_definition] = STATE(1978), + [sym_run_statement] = STATE(1978), + [sym__statement] = STATE(1981), + [aux_sym_source_code_repeat1] = STATE(55), + [ts_builtin_sym_end] = ACTIONS(250), + [sym_identifier] = ACTIONS(11), + [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_class_type_token1] = ACTIONS(15), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(19), + [aux_sym_variable_definition_token2] = ACTIONS(19), + [aux_sym_buffer_definition_token2] = ACTIONS(21), + [aux_sym_return_type_token2] = ACTIONS(23), + [aux_sym_argument_mode_token1] = ACTIONS(25), + [aux_sym_if_statement_token1] = ACTIONS(27), + [aux_sym_repeat_statement_token1] = ACTIONS(29), + [aux_sym__procedure_terminator_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), + [aux_sym_error_scope_statement_token1] = ACTIONS(57), + [aux_sym_error_scope_statement_token2] = ACTIONS(57), + [aux_sym_prompt_for_statement_token1] = ACTIONS(59), + [aux_sym_var_statement_token1] = ACTIONS(61), + [aux_sym_run_statement_token1] = ACTIONS(63), + }, + [54] = { + [sym_comment] = STATE(54), + [sym_qualified_name] = STATE(5477), + [sym_include] = STATE(54), + [sym_assignment] = STATE(6175), + [sym_variable_assignment] = STATE(2342), + [sym_variable_definition] = STATE(2342), + [sym_buffer_definition] = STATE(2342), + [sym_query_definition] = STATE(2342), + [sym_function_call_statement] = STATE(2342), + [sym_function_call] = STATE(5265), + [sym_if_statement] = STATE(2342), + [sym_label] = STATE(2341), + [sym_repeat_statement] = STATE(2342), + [sym_procedure_statement] = STATE(2342), + [sym_procedure_parameter_definition] = STATE(2342), + [sym_function_statement] = STATE(2342), + [sym_return_statement] = STATE(2342), + [sym_interface_statement] = STATE(2342), + [sym_dataset_definition] = STATE(2342), + [sym_using_statement] = STATE(2342), + [sym_class_statement] = STATE(2342), + [sym_new_expression] = STATE(5480), + [sym_object_access] = STATE(4649), + [sym_member_access] = STATE(5477), + [sym_stream_definition] = STATE(2342), + [sym_input_close_statement] = STATE(2342), + [sym_output_close_statement] = STATE(2342), + [sym__stream_statement] = STATE(2342), + [sym_input_stream_statement] = STATE(2340), + [sym_output_stream_statement] = STATE(2340), + [sym_do_block] = STATE(2342), + [sym_case_statement] = STATE(2342), + [sym_for_statement] = STATE(2342), + [sym_find_statement] = STATE(2342), + [sym_abl_statement] = STATE(2342), + [sym_assign_statement] = STATE(2342), + [sym_catch_statement] = STATE(2342), + [sym_finally_statement] = STATE(2342), + [sym_accumulate_statement] = STATE(2342), + [sym_undo_statement] = STATE(2342), + [sym_error_scope_statement] = STATE(2342), + [sym_workfile_definition] = STATE(2342), + [sym_temp_table_definition] = STATE(2342), + [sym_on_statement] = STATE(2342), + [sym_prompt_for_statement] = STATE(2342), + [sym_var_statement] = STATE(2342), + [sym_button_definition] = STATE(2342), + [sym_run_statement] = STATE(2342), + [sym__statement] = STATE(2339), + [aux_sym_source_code_repeat1] = STATE(62), + [sym_identifier] = ACTIONS(252), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(254), + [aux_sym_input_expression_token1] = ACTIONS(256), + [aux_sym_class_type_token1] = ACTIONS(258), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(260), + [aux_sym_variable_definition_token2] = ACTIONS(260), + [aux_sym_buffer_definition_token2] = ACTIONS(262), + [aux_sym_return_type_token2] = ACTIONS(264), + [aux_sym_argument_mode_token1] = ACTIONS(266), + [aux_sym_if_statement_token1] = ACTIONS(268), + [aux_sym_repeat_statement_token1] = ACTIONS(270), + [aux_sym__procedure_terminator_token1] = ACTIONS(272), + [aux_sym__function_terminator_token1] = ACTIONS(274), + [aux_sym_interface_statement_token1] = ACTIONS(276), + [aux_sym_using_statement_token1] = ACTIONS(278), + [aux_sym_on_error_phrase_token1] = ACTIONS(280), + [aux_sym_on_error_phrase_token3] = ACTIONS(282), + [aux_sym_do_block_token1] = ACTIONS(284), + [aux_sym__case_terminator_token1] = ACTIONS(286), + [aux_sym_find_statement_token1] = ACTIONS(288), + [aux_sym_assign_statement_token1] = ACTIONS(290), + [aux_sym_catch_statement_token1] = ACTIONS(292), + [aux_sym_finally_statement_token1] = ACTIONS(294), + [aux_sym_accumulate_statement_token1] = ACTIONS(296), + [aux_sym_error_scope_statement_token1] = ACTIONS(298), + [aux_sym_error_scope_statement_token2] = ACTIONS(298), + [aux_sym_prompt_for_statement_token1] = ACTIONS(300), + [aux_sym_var_statement_token1] = ACTIONS(302), + [aux_sym_run_statement_token1] = ACTIONS(304), + }, + [55] = { + [sym_comment] = STATE(55), + [sym_qualified_name] = STATE(5477), + [sym_include] = STATE(55), + [sym_assignment] = STATE(6781), + [sym_variable_assignment] = STATE(1978), + [sym_variable_definition] = STATE(1978), + [sym_buffer_definition] = STATE(1978), + [sym_query_definition] = STATE(1978), + [sym_function_call_statement] = STATE(1978), + [sym_function_call] = STATE(5450), + [sym_if_statement] = STATE(1978), + [sym_label] = STATE(1979), + [sym_repeat_statement] = STATE(1978), + [sym_procedure_statement] = STATE(1978), + [sym_procedure_parameter_definition] = STATE(1978), + [sym_function_statement] = STATE(1978), + [sym_return_statement] = STATE(1978), + [sym_interface_statement] = STATE(1978), + [sym_dataset_definition] = STATE(1978), + [sym_using_statement] = STATE(1978), + [sym_class_statement] = STATE(1978), + [sym_new_expression] = STATE(5480), + [sym_object_access] = STATE(4649), + [sym_member_access] = STATE(5477), + [sym_stream_definition] = STATE(1978), + [sym_input_close_statement] = STATE(1978), + [sym_output_close_statement] = STATE(1978), + [sym__stream_statement] = STATE(1978), + [sym_input_stream_statement] = STATE(1980), + [sym_output_stream_statement] = STATE(1980), + [sym_do_block] = STATE(1978), + [sym_case_statement] = STATE(1978), + [sym_for_statement] = STATE(1978), + [sym_find_statement] = STATE(1978), + [sym_abl_statement] = STATE(1978), + [sym_assign_statement] = STATE(1978), + [sym_catch_statement] = STATE(1978), + [sym_finally_statement] = STATE(1978), + [sym_accumulate_statement] = STATE(1978), + [sym_undo_statement] = STATE(1978), + [sym_error_scope_statement] = STATE(1978), + [sym_workfile_definition] = STATE(1978), + [sym_temp_table_definition] = STATE(1978), + [sym_on_statement] = STATE(1978), + [sym_prompt_for_statement] = STATE(1978), + [sym_var_statement] = STATE(1978), + [sym_button_definition] = STATE(1978), + [sym_run_statement] = STATE(1978), + [sym__statement] = STATE(1981), + [aux_sym_source_code_repeat1] = STATE(55), + [ts_builtin_sym_end] = ACTIONS(306), + [sym_identifier] = ACTIONS(308), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym_input_expression_token1] = ACTIONS(311), + [aux_sym_class_type_token1] = ACTIONS(314), + [aux_sym_scope_tuning_token1] = ACTIONS(317), + [aux_sym_variable_definition_token1] = ACTIONS(320), + [aux_sym_variable_definition_token2] = ACTIONS(320), + [aux_sym_buffer_definition_token2] = ACTIONS(323), + [aux_sym_return_type_token2] = ACTIONS(326), + [aux_sym_argument_mode_token1] = ACTIONS(329), + [aux_sym_if_statement_token1] = ACTIONS(332), + [aux_sym_repeat_statement_token1] = ACTIONS(335), + [aux_sym__procedure_terminator_token1] = ACTIONS(338), + [aux_sym__function_terminator_token1] = ACTIONS(341), + [aux_sym_interface_statement_token1] = ACTIONS(344), + [aux_sym_using_statement_token1] = ACTIONS(347), + [aux_sym_on_error_phrase_token1] = ACTIONS(350), + [aux_sym_on_error_phrase_token3] = ACTIONS(353), + [aux_sym_do_block_token1] = ACTIONS(356), + [aux_sym__case_terminator_token1] = ACTIONS(359), + [aux_sym_find_statement_token1] = ACTIONS(362), + [aux_sym_assign_statement_token1] = ACTIONS(365), + [aux_sym_catch_statement_token1] = ACTIONS(368), + [aux_sym_finally_statement_token1] = ACTIONS(371), + [aux_sym_accumulate_statement_token1] = ACTIONS(374), + [aux_sym_error_scope_statement_token1] = ACTIONS(377), + [aux_sym_error_scope_statement_token2] = ACTIONS(377), + [aux_sym_prompt_for_statement_token1] = ACTIONS(380), + [aux_sym_var_statement_token1] = ACTIONS(383), + [aux_sym_run_statement_token1] = ACTIONS(386), + }, + [56] = { + [sym_comment] = STATE(56), + [sym_include] = STATE(56), + [anon_sym_COLON] = ACTIONS(142), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(144), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(142), + [sym__terminator] = ACTIONS(142), + [aux_sym__block_terminator_token1] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(142), + [anon_sym_RBRACK] = ACTIONS(142), + [anon_sym_LPAREN] = ACTIONS(142), + [anon_sym_RPAREN] = ACTIONS(142), + [aux_sym_unary_expression_token2] = ACTIONS(142), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [aux_sym__multiplicative_operator_token1] = ACTIONS(142), + [anon_sym_LT] = ACTIONS(144), + [anon_sym_LT_EQ] = ACTIONS(142), + [anon_sym_LT_GT] = ACTIONS(142), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(144), + [anon_sym_GT_EQ] = ACTIONS(142), + [aux_sym__comparison_operator_token1] = ACTIONS(142), + [aux_sym__comparison_operator_token2] = ACTIONS(142), + [aux_sym__comparison_operator_token3] = ACTIONS(142), + [aux_sym__comparison_operator_token4] = ACTIONS(142), + [aux_sym__comparison_operator_token5] = ACTIONS(142), + [aux_sym__comparison_operator_token6] = ACTIONS(142), + [aux_sym__comparison_operator_token7] = ACTIONS(142), + [aux_sym__comparison_operator_token8] = ACTIONS(142), + [aux_sym__comparison_operator_token9] = ACTIONS(142), + [aux_sym_when_expression_token1] = ACTIONS(142), + [aux_sym_variable_tuning_token1] = ACTIONS(142), + [aux_sym_variable_tuning_token2] = ACTIONS(144), + [aux_sym_variable_tuning_token3] = ACTIONS(142), + [aux_sym_variable_tuning_token4] = ACTIONS(142), + [aux_sym_variable_tuning_token5] = ACTIONS(142), + [aux_sym_variable_tuning_token6] = ACTIONS(142), + [aux_sym_variable_tuning_token7] = ACTIONS(142), + [aux_sym_variable_tuning_token8] = ACTIONS(142), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(142), + [aux_sym_if_statement_token2] = ACTIONS(142), + [aux_sym_else_statement_token1] = ACTIONS(142), + [aux_sym_while_phrase_token1] = ACTIONS(142), + [aux_sym_repeat_tuning_token1] = ACTIONS(142), + [anon_sym_NO_DASHERROR] = ACTIONS(142), + [aux_sym_input_stream_tuning_token1] = ACTIONS(142), + [aux_sym_input_stream_tuning_token2] = ACTIONS(142), + [aux_sym_input_stream_tuning_token3] = ACTIONS(142), + [aux_sym_input_stream_tuning_token4] = ACTIONS(142), + [aux_sym_input_stream_tuning_token5] = ACTIONS(142), + [aux_sym_input_stream_tuning_token6] = ACTIONS(142), + [aux_sym_input_stream_tuning_token7] = ACTIONS(142), + [aux_sym_input_stream_tuning_token8] = ACTIONS(142), + [aux_sym_input_stream_tuning_token9] = ACTIONS(142), + [aux_sym_input_stream_tuning_token11] = ACTIONS(142), + [aux_sym_output_stream_tuning_token1] = ACTIONS(142), + [aux_sym_output_stream_tuning_token2] = ACTIONS(142), + [aux_sym_output_stream_tuning_token3] = ACTIONS(142), + [aux_sym_output_stream_tuning_token4] = ACTIONS(142), + [aux_sym_output_stream_tuning_token5] = ACTIONS(142), + [aux_sym_output_stream_tuning_token6] = ACTIONS(142), + [aux_sym_output_stream_tuning_token7] = ACTIONS(142), + [aux_sym_output_stream_statement_token1] = ACTIONS(142), + [aux_sym_on_error_phrase_token1] = ACTIONS(142), + [aux_sym_stop_after_phrase_token1] = ACTIONS(142), + [aux_sym_do_tuning_token1] = ACTIONS(142), + [anon_sym_BY] = ACTIONS(142), + [aux_sym_of_token1] = ACTIONS(142), + [aux_sym_field_option_token1] = ACTIONS(142), + [aux_sym_field_option_token2] = ACTIONS(142), + [aux_sym_field_option_token3] = ACTIONS(142), + [aux_sym_field_option_token4] = ACTIONS(142), + [aux_sym_field_option_token5] = ACTIONS(142), + [aux_sym_field_option_token6] = ACTIONS(142), + [aux_sym_field_definition_token1] = ACTIONS(142), + [aux_sym_index_definition_token1] = ACTIONS(142), + [aux_sym_on_statement_token1] = ACTIONS(142), + [sym__namecolon] = ACTIONS(142), + [sym__or_operator] = ACTIONS(142), + [sym__and_operator] = ACTIONS(142), + }, + [57] = { + [sym_comment] = STATE(57), + [sym_qualified_name] = STATE(5477), + [sym_include] = STATE(57), + [sym_assignment] = STATE(6175), + [sym_variable_assignment] = STATE(2342), + [sym_variable_definition] = STATE(2342), + [sym_buffer_definition] = STATE(2342), + [sym_query_definition] = STATE(2342), + [sym_function_call_statement] = STATE(2342), + [sym_function_call] = STATE(5265), + [sym_if_statement] = STATE(2342), + [sym_label] = STATE(2341), + [sym_repeat_statement] = STATE(2342), + [sym_procedure_statement] = STATE(2342), + [sym_procedure_parameter_definition] = STATE(2342), + [sym_function_statement] = STATE(2342), + [sym_return_statement] = STATE(2342), + [sym_interface_statement] = STATE(2342), + [sym_dataset_definition] = STATE(2342), + [sym_using_statement] = STATE(2342), + [sym_class_statement] = STATE(2342), + [sym_new_expression] = STATE(5480), + [sym_object_access] = STATE(4649), + [sym_member_access] = STATE(5477), + [sym_stream_definition] = STATE(2342), + [sym_input_close_statement] = STATE(2342), + [sym_output_close_statement] = STATE(2342), + [sym__stream_statement] = STATE(2342), + [sym_input_stream_statement] = STATE(2340), + [sym_output_stream_statement] = STATE(2340), + [sym_do_block] = STATE(2342), + [sym_case_statement] = STATE(2342), + [sym_for_statement] = STATE(2342), + [sym_find_statement] = STATE(2342), + [sym_abl_statement] = STATE(2342), + [sym_assign_statement] = STATE(2342), + [sym_catch_statement] = STATE(2342), + [sym_finally_statement] = STATE(2342), + [sym_accumulate_statement] = STATE(2342), + [sym_undo_statement] = STATE(2342), + [sym_error_scope_statement] = STATE(2342), + [sym_workfile_definition] = STATE(2342), + [sym_temp_table_definition] = STATE(2342), + [sym_on_statement] = STATE(2342), + [sym_prompt_for_statement] = STATE(2342), + [sym_var_statement] = STATE(2342), + [sym_button_definition] = STATE(2342), + [sym_run_statement] = STATE(2342), + [sym__statement] = STATE(2339), + [aux_sym_source_code_repeat1] = STATE(63), + [sym_identifier] = ACTIONS(252), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(389), + [aux_sym_input_expression_token1] = ACTIONS(256), + [aux_sym_class_type_token1] = ACTIONS(258), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(260), + [aux_sym_variable_definition_token2] = ACTIONS(260), + [aux_sym_buffer_definition_token2] = ACTIONS(262), + [aux_sym_return_type_token2] = ACTIONS(264), + [aux_sym_argument_mode_token1] = ACTIONS(266), + [aux_sym_if_statement_token1] = ACTIONS(268), + [aux_sym_repeat_statement_token1] = ACTIONS(270), + [aux_sym__procedure_terminator_token1] = ACTIONS(272), + [aux_sym__function_terminator_token1] = ACTIONS(274), + [aux_sym_interface_statement_token1] = ACTIONS(276), + [aux_sym_using_statement_token1] = ACTIONS(278), + [aux_sym_on_error_phrase_token1] = ACTIONS(280), + [aux_sym_on_error_phrase_token3] = ACTIONS(282), + [aux_sym_do_block_token1] = ACTIONS(284), + [aux_sym__case_terminator_token1] = ACTIONS(286), + [aux_sym_find_statement_token1] = ACTIONS(288), + [aux_sym_assign_statement_token1] = ACTIONS(290), + [aux_sym_catch_statement_token1] = ACTIONS(292), + [aux_sym_finally_statement_token1] = ACTIONS(294), + [aux_sym_accumulate_statement_token1] = ACTIONS(296), + [aux_sym_error_scope_statement_token1] = ACTIONS(298), + [aux_sym_error_scope_statement_token2] = ACTIONS(298), + [aux_sym_prompt_for_statement_token1] = ACTIONS(300), + [aux_sym_var_statement_token1] = ACTIONS(302), + [aux_sym_run_statement_token1] = ACTIONS(304), + }, + [58] = { + [sym_comment] = STATE(58), + [sym_include] = STATE(58), [anon_sym_COLON] = ACTIONS(138), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), [anon_sym_SLASH] = ACTIONS(140), - [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_STAR] = ACTIONS(138), [sym__terminator] = ACTIONS(138), [aux_sym__block_terminator_token1] = ACTIONS(138), @@ -48811,6956 +49945,6607 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_field_definition_token1] = ACTIONS(138), [aux_sym_index_definition_token1] = ACTIONS(138), [aux_sym_on_statement_token1] = ACTIONS(138), + [sym__namecolon] = ACTIONS(138), [sym__or_operator] = ACTIONS(138), [sym__and_operator] = ACTIONS(138), }, - [53] = { - [sym_comment] = STATE(53), - [sym_qualified_name] = STATE(6673), - [sym_include] = STATE(53), - [sym_assignment] = STATE(6229), - [sym_variable_definition] = STATE(2366), - [sym_variable_assignment] = STATE(2366), - [sym_buffer_definition] = STATE(2366), - [sym_query_definition] = STATE(2366), - [sym_function_call_statement] = STATE(2366), - [sym_function_call] = STATE(6228), - [sym_if_statement] = STATE(2366), - [sym_label] = STATE(2365), - [sym_repeat_statement] = STATE(2366), - [sym_procedure_statement] = STATE(2366), - [sym_procedure_parameter_definition] = STATE(2366), - [sym_function_statement] = STATE(2366), - [sym_return_statement] = STATE(2366), - [sym_interface_statement] = STATE(2366), - [sym_dataset_definition] = STATE(2366), - [sym_using_statement] = STATE(2366), - [sym_class_statement] = STATE(2366), - [sym_object_access] = STATE(5325), - [sym_member_access] = STATE(6673), - [sym_stream_definition] = STATE(2366), - [sym_input_close_statement] = STATE(2366), - [sym_output_close_statement] = STATE(2366), - [sym__stream_statement] = STATE(2366), - [sym_input_stream_statement] = STATE(2364), - [sym_output_stream_statement] = STATE(2364), - [sym_do_block] = STATE(2366), - [sym_case_statement] = STATE(2366), - [sym_for_statement] = STATE(2366), - [sym_find_statement] = STATE(2366), - [sym_abl_statement] = STATE(2366), - [sym_assign_statement] = STATE(2366), - [sym_catch_statement] = STATE(2366), - [sym_finally_statement] = STATE(2366), - [sym_accumulate_statement] = STATE(2366), - [sym_undo_statement] = STATE(2366), - [sym_error_scope_statement] = STATE(2366), - [sym_workfile_definition] = STATE(2366), - [sym_temp_table_definition] = STATE(2366), - [sym_on_statement] = STATE(2366), - [sym_prompt_for_statement] = STATE(2366), - [sym_var_statement] = STATE(2366), - [sym_button_definition] = STATE(2366), - [sym_run_statement] = STATE(2366), - [sym__statement] = STATE(2360), - [aux_sym_source_code_repeat1] = STATE(53), - [sym_identifier] = ACTIONS(254), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(257), - [aux_sym_input_expression_token1] = ACTIONS(259), - [aux_sym_class_type_token1] = ACTIONS(262), - [aux_sym_variable_definition_token1] = ACTIONS(265), - [aux_sym_variable_definition_token2] = ACTIONS(265), - [aux_sym_buffer_definition_token2] = ACTIONS(268), - [aux_sym_return_type_token2] = ACTIONS(271), - [aux_sym_argument_mode_token1] = ACTIONS(274), - [aux_sym_if_statement_token1] = ACTIONS(277), - [aux_sym_repeat_statement_token1] = ACTIONS(280), - [aux_sym__procedure_terminator_token1] = ACTIONS(283), - [aux_sym__function_terminator_token1] = ACTIONS(286), - [aux_sym_interface_statement_token1] = ACTIONS(289), - [aux_sym_using_statement_token1] = ACTIONS(292), - [aux_sym_on_error_phrase_token1] = ACTIONS(295), - [aux_sym_on_error_phrase_token3] = ACTIONS(298), - [aux_sym_do_block_token1] = ACTIONS(301), - [aux_sym__case_terminator_token1] = ACTIONS(304), - [aux_sym_find_statement_token1] = ACTIONS(307), - [aux_sym_assign_statement_token1] = ACTIONS(310), - [aux_sym_catch_statement_token1] = ACTIONS(313), - [aux_sym_finally_statement_token1] = ACTIONS(316), - [aux_sym_accumulate_statement_token1] = ACTIONS(319), - [aux_sym_error_scope_statement_token1] = ACTIONS(322), - [aux_sym_error_scope_statement_token2] = ACTIONS(322), - [aux_sym_prompt_for_statement_token1] = ACTIONS(325), - [aux_sym_var_statement_token1] = ACTIONS(328), - [aux_sym_run_statement_token1] = ACTIONS(331), - }, - [54] = { - [sym_comment] = STATE(54), - [sym_qualified_name] = STATE(6673), - [sym_include] = STATE(54), - [sym_assignment] = STATE(6672), - [sym_variable_definition] = STATE(2025), - [sym_variable_assignment] = STATE(2025), - [sym_buffer_definition] = STATE(2025), - [sym_query_definition] = STATE(2025), - [sym_function_call_statement] = STATE(2025), - [sym_function_call] = STATE(6670), - [sym_if_statement] = STATE(2025), - [sym_label] = STATE(2028), - [sym_repeat_statement] = STATE(2025), - [sym_procedure_statement] = STATE(2025), - [sym_procedure_parameter_definition] = STATE(2025), - [sym_function_statement] = STATE(2025), - [sym_return_statement] = STATE(2025), - [sym_interface_statement] = STATE(2025), - [sym_dataset_definition] = STATE(2025), - [sym_using_statement] = STATE(2025), - [sym_class_statement] = STATE(2025), - [sym_object_access] = STATE(5325), - [sym_member_access] = STATE(6673), - [sym_stream_definition] = STATE(2025), - [sym_input_close_statement] = STATE(2025), - [sym_output_close_statement] = STATE(2025), - [sym__stream_statement] = STATE(2025), - [sym_input_stream_statement] = STATE(2029), - [sym_output_stream_statement] = STATE(2029), - [sym_do_block] = STATE(2025), - [sym_case_statement] = STATE(2025), - [sym_for_statement] = STATE(2025), - [sym_find_statement] = STATE(2025), - [sym_abl_statement] = STATE(2025), - [sym_assign_statement] = STATE(2025), - [sym_catch_statement] = STATE(2025), - [sym_finally_statement] = STATE(2025), - [sym_accumulate_statement] = STATE(2025), - [sym_undo_statement] = STATE(2025), - [sym_error_scope_statement] = STATE(2025), - [sym_workfile_definition] = STATE(2025), - [sym_temp_table_definition] = STATE(2025), - [sym_on_statement] = STATE(2025), - [sym_prompt_for_statement] = STATE(2025), - [sym_var_statement] = STATE(2025), - [sym_button_definition] = STATE(2025), - [sym_run_statement] = STATE(2025), - [sym__statement] = STATE(2030), - [aux_sym_source_code_repeat1] = STATE(55), - [ts_builtin_sym_end] = ACTIONS(334), - [sym_identifier] = ACTIONS(11), - [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_class_type_token1] = ACTIONS(15), - [aux_sym_variable_definition_token1] = ACTIONS(17), - [aux_sym_variable_definition_token2] = ACTIONS(17), - [aux_sym_buffer_definition_token2] = ACTIONS(19), - [aux_sym_return_type_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__function_terminator_token1] = ACTIONS(31), - [aux_sym_interface_statement_token1] = ACTIONS(33), - [aux_sym_using_statement_token1] = ACTIONS(35), - [aux_sym_on_error_phrase_token1] = ACTIONS(37), - [aux_sym_on_error_phrase_token3] = ACTIONS(39), - [aux_sym_do_block_token1] = ACTIONS(41), - [aux_sym__case_terminator_token1] = ACTIONS(43), - [aux_sym_find_statement_token1] = ACTIONS(45), - [aux_sym_assign_statement_token1] = ACTIONS(47), - [aux_sym_catch_statement_token1] = ACTIONS(49), - [aux_sym_finally_statement_token1] = ACTIONS(51), - [aux_sym_accumulate_statement_token1] = ACTIONS(53), - [aux_sym_error_scope_statement_token1] = ACTIONS(55), - [aux_sym_error_scope_statement_token2] = ACTIONS(55), - [aux_sym_prompt_for_statement_token1] = ACTIONS(57), - [aux_sym_var_statement_token1] = ACTIONS(59), - [aux_sym_run_statement_token1] = ACTIONS(61), - }, - [55] = { - [sym_comment] = STATE(55), - [sym_qualified_name] = STATE(6673), - [sym_include] = STATE(55), - [sym_assignment] = STATE(6672), - [sym_variable_definition] = STATE(2025), - [sym_variable_assignment] = STATE(2025), - [sym_buffer_definition] = STATE(2025), - [sym_query_definition] = STATE(2025), - [sym_function_call_statement] = STATE(2025), - [sym_function_call] = STATE(6670), - [sym_if_statement] = STATE(2025), - [sym_label] = STATE(2028), - [sym_repeat_statement] = STATE(2025), - [sym_procedure_statement] = STATE(2025), - [sym_procedure_parameter_definition] = STATE(2025), - [sym_function_statement] = STATE(2025), - [sym_return_statement] = STATE(2025), - [sym_interface_statement] = STATE(2025), - [sym_dataset_definition] = STATE(2025), - [sym_using_statement] = STATE(2025), - [sym_class_statement] = STATE(2025), - [sym_object_access] = STATE(5325), - [sym_member_access] = STATE(6673), - [sym_stream_definition] = STATE(2025), - [sym_input_close_statement] = STATE(2025), - [sym_output_close_statement] = STATE(2025), - [sym__stream_statement] = STATE(2025), - [sym_input_stream_statement] = STATE(2029), - [sym_output_stream_statement] = STATE(2029), - [sym_do_block] = STATE(2025), - [sym_case_statement] = STATE(2025), - [sym_for_statement] = STATE(2025), - [sym_find_statement] = STATE(2025), - [sym_abl_statement] = STATE(2025), - [sym_assign_statement] = STATE(2025), - [sym_catch_statement] = STATE(2025), - [sym_finally_statement] = STATE(2025), - [sym_accumulate_statement] = STATE(2025), - [sym_undo_statement] = STATE(2025), - [sym_error_scope_statement] = STATE(2025), - [sym_workfile_definition] = STATE(2025), - [sym_temp_table_definition] = STATE(2025), - [sym_on_statement] = STATE(2025), - [sym_prompt_for_statement] = STATE(2025), - [sym_var_statement] = STATE(2025), - [sym_button_definition] = STATE(2025), - [sym_run_statement] = STATE(2025), - [sym__statement] = STATE(2030), - [aux_sym_source_code_repeat1] = STATE(55), - [ts_builtin_sym_end] = ACTIONS(336), - [sym_identifier] = ACTIONS(338), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(341), - [aux_sym_class_type_token1] = ACTIONS(344), - [aux_sym_variable_definition_token1] = ACTIONS(347), - [aux_sym_variable_definition_token2] = ACTIONS(347), - [aux_sym_buffer_definition_token2] = ACTIONS(350), - [aux_sym_return_type_token2] = ACTIONS(353), - [aux_sym_argument_mode_token1] = ACTIONS(356), - [aux_sym_if_statement_token1] = ACTIONS(359), - [aux_sym_repeat_statement_token1] = ACTIONS(362), - [aux_sym__procedure_terminator_token1] = ACTIONS(365), - [aux_sym__function_terminator_token1] = ACTIONS(368), - [aux_sym_interface_statement_token1] = ACTIONS(371), - [aux_sym_using_statement_token1] = ACTIONS(374), - [aux_sym_on_error_phrase_token1] = ACTIONS(377), - [aux_sym_on_error_phrase_token3] = ACTIONS(380), - [aux_sym_do_block_token1] = ACTIONS(383), - [aux_sym__case_terminator_token1] = ACTIONS(386), - [aux_sym_find_statement_token1] = ACTIONS(389), - [aux_sym_assign_statement_token1] = ACTIONS(392), - [aux_sym_catch_statement_token1] = ACTIONS(395), - [aux_sym_finally_statement_token1] = ACTIONS(398), - [aux_sym_accumulate_statement_token1] = ACTIONS(401), - [aux_sym_error_scope_statement_token1] = ACTIONS(404), - [aux_sym_error_scope_statement_token2] = ACTIONS(404), - [aux_sym_prompt_for_statement_token1] = ACTIONS(407), - [aux_sym_var_statement_token1] = ACTIONS(410), - [aux_sym_run_statement_token1] = ACTIONS(413), - }, - [56] = { - [sym_comment] = STATE(56), - [sym_qualified_name] = STATE(6673), - [sym_include] = STATE(56), - [sym_assignment] = STATE(6229), - [sym_variable_definition] = STATE(2366), - [sym_variable_assignment] = STATE(2366), - [sym_buffer_definition] = STATE(2366), - [sym_query_definition] = STATE(2366), - [sym_function_call_statement] = STATE(2366), - [sym_function_call] = STATE(6228), - [sym_if_statement] = STATE(2366), - [sym_label] = STATE(2365), - [sym_repeat_statement] = STATE(2366), - [sym_procedure_statement] = STATE(2366), - [sym_procedure_parameter_definition] = STATE(2366), - [sym_function_statement] = STATE(2366), - [sym_return_statement] = STATE(2366), - [sym_interface_statement] = STATE(2366), - [sym_dataset_definition] = STATE(2366), - [sym_using_statement] = STATE(2366), - [sym_class_statement] = STATE(2366), - [sym_object_access] = STATE(5325), - [sym_member_access] = STATE(6673), - [sym_stream_definition] = STATE(2366), - [sym_input_close_statement] = STATE(2366), - [sym_output_close_statement] = STATE(2366), - [sym__stream_statement] = STATE(2366), - [sym_input_stream_statement] = STATE(2364), - [sym_output_stream_statement] = STATE(2364), - [sym_do_block] = STATE(2366), - [sym_case_statement] = STATE(2366), - [sym_for_statement] = STATE(2366), - [sym_find_statement] = STATE(2366), - [sym_abl_statement] = STATE(2366), - [sym_assign_statement] = STATE(2366), - [sym_catch_statement] = STATE(2366), - [sym_finally_statement] = STATE(2366), - [sym_accumulate_statement] = STATE(2366), - [sym_undo_statement] = STATE(2366), - [sym_error_scope_statement] = STATE(2366), - [sym_workfile_definition] = STATE(2366), - [sym_temp_table_definition] = STATE(2366), - [sym_on_statement] = STATE(2366), - [sym_prompt_for_statement] = STATE(2366), - [sym_var_statement] = STATE(2366), - [sym_button_definition] = STATE(2366), - [sym_run_statement] = STATE(2366), - [sym__statement] = STATE(2360), - [aux_sym_source_code_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(416), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(418), - [aux_sym_input_expression_token1] = ACTIONS(420), - [aux_sym_class_type_token1] = ACTIONS(422), - [aux_sym_variable_definition_token1] = ACTIONS(424), - [aux_sym_variable_definition_token2] = ACTIONS(424), - [aux_sym_buffer_definition_token2] = ACTIONS(426), - [aux_sym_return_type_token2] = ACTIONS(428), - [aux_sym_argument_mode_token1] = ACTIONS(430), - [aux_sym_if_statement_token1] = ACTIONS(432), - [aux_sym_repeat_statement_token1] = ACTIONS(434), - [aux_sym__procedure_terminator_token1] = ACTIONS(436), - [aux_sym__function_terminator_token1] = ACTIONS(438), - [aux_sym_interface_statement_token1] = ACTIONS(440), - [aux_sym_using_statement_token1] = ACTIONS(442), - [aux_sym_on_error_phrase_token1] = ACTIONS(444), - [aux_sym_on_error_phrase_token3] = ACTIONS(446), - [aux_sym_do_block_token1] = ACTIONS(448), - [aux_sym__case_terminator_token1] = ACTIONS(450), - [aux_sym_find_statement_token1] = ACTIONS(452), - [aux_sym_assign_statement_token1] = ACTIONS(454), - [aux_sym_catch_statement_token1] = ACTIONS(456), - [aux_sym_finally_statement_token1] = ACTIONS(458), - [aux_sym_accumulate_statement_token1] = ACTIONS(460), - [aux_sym_error_scope_statement_token1] = ACTIONS(462), - [aux_sym_error_scope_statement_token2] = ACTIONS(462), - [aux_sym_prompt_for_statement_token1] = ACTIONS(464), - [aux_sym_var_statement_token1] = ACTIONS(466), - [aux_sym_run_statement_token1] = ACTIONS(468), - }, - [57] = { - [sym_comment] = STATE(57), - [sym_qualified_name] = STATE(6673), - [sym_include] = STATE(57), - [sym_assignment] = STATE(6229), - [sym_variable_definition] = STATE(2366), - [sym_variable_assignment] = STATE(2366), - [sym_buffer_definition] = STATE(2366), - [sym_query_definition] = STATE(2366), - [sym_function_call_statement] = STATE(2366), - [sym_function_call] = STATE(6228), - [sym_if_statement] = STATE(2366), - [sym_label] = STATE(2365), - [sym_repeat_statement] = STATE(2366), - [sym_procedure_statement] = STATE(2366), - [sym_procedure_parameter_definition] = STATE(2366), - [sym_function_statement] = STATE(2366), - [sym_return_statement] = STATE(2366), - [sym_interface_statement] = STATE(2366), - [sym_dataset_definition] = STATE(2366), - [sym_using_statement] = STATE(2366), - [sym_class_statement] = STATE(2366), - [sym_object_access] = STATE(5325), - [sym_member_access] = STATE(6673), - [sym_stream_definition] = STATE(2366), - [sym_input_close_statement] = STATE(2366), - [sym_output_close_statement] = STATE(2366), - [sym__stream_statement] = STATE(2366), - [sym_input_stream_statement] = STATE(2364), - [sym_output_stream_statement] = STATE(2364), - [sym_do_block] = STATE(2366), - [sym_case_statement] = STATE(2366), - [sym_for_statement] = STATE(2366), - [sym_find_statement] = STATE(2366), - [sym_abl_statement] = STATE(2366), - [sym_assign_statement] = STATE(2366), - [sym_catch_statement] = STATE(2366), - [sym_finally_statement] = STATE(2366), - [sym_accumulate_statement] = STATE(2366), - [sym_undo_statement] = STATE(2366), - [sym_error_scope_statement] = STATE(2366), - [sym_workfile_definition] = STATE(2366), - [sym_temp_table_definition] = STATE(2366), - [sym_on_statement] = STATE(2366), - [sym_prompt_for_statement] = STATE(2366), - [sym_var_statement] = STATE(2366), - [sym_button_definition] = STATE(2366), - [sym_run_statement] = STATE(2366), - [sym__statement] = STATE(2360), - [aux_sym_source_code_repeat1] = STATE(58), - [sym_identifier] = ACTIONS(416), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(470), - [aux_sym_input_expression_token1] = ACTIONS(420), - [aux_sym_class_type_token1] = ACTIONS(422), - [aux_sym_variable_definition_token1] = ACTIONS(424), - [aux_sym_variable_definition_token2] = ACTIONS(424), - [aux_sym_buffer_definition_token2] = ACTIONS(426), - [aux_sym_return_type_token2] = ACTIONS(428), - [aux_sym_argument_mode_token1] = ACTIONS(430), - [aux_sym_if_statement_token1] = ACTIONS(432), - [aux_sym_repeat_statement_token1] = ACTIONS(434), - [aux_sym__procedure_terminator_token1] = ACTIONS(436), - [aux_sym__function_terminator_token1] = ACTIONS(438), - [aux_sym_interface_statement_token1] = ACTIONS(440), - [aux_sym_using_statement_token1] = ACTIONS(442), - [aux_sym_on_error_phrase_token1] = ACTIONS(444), - [aux_sym_on_error_phrase_token3] = ACTIONS(446), - [aux_sym_do_block_token1] = ACTIONS(448), - [aux_sym__case_terminator_token1] = ACTIONS(450), - [aux_sym_find_statement_token1] = ACTIONS(452), - [aux_sym_assign_statement_token1] = ACTIONS(454), - [aux_sym_catch_statement_token1] = ACTIONS(456), - [aux_sym_finally_statement_token1] = ACTIONS(458), - [aux_sym_accumulate_statement_token1] = ACTIONS(460), - [aux_sym_error_scope_statement_token1] = ACTIONS(462), - [aux_sym_error_scope_statement_token2] = ACTIONS(462), - [aux_sym_prompt_for_statement_token1] = ACTIONS(464), - [aux_sym_var_statement_token1] = ACTIONS(466), - [aux_sym_run_statement_token1] = ACTIONS(468), - }, - [58] = { - [sym_comment] = STATE(58), - [sym_qualified_name] = STATE(6673), - [sym_include] = STATE(58), - [sym_assignment] = STATE(6229), - [sym_variable_definition] = STATE(2366), - [sym_variable_assignment] = STATE(2366), - [sym_buffer_definition] = STATE(2366), - [sym_query_definition] = STATE(2366), - [sym_function_call_statement] = STATE(2366), - [sym_function_call] = STATE(6228), - [sym_if_statement] = STATE(2366), - [sym_label] = STATE(2365), - [sym_repeat_statement] = STATE(2366), - [sym_procedure_statement] = STATE(2366), - [sym_procedure_parameter_definition] = STATE(2366), - [sym_function_statement] = STATE(2366), - [sym_return_statement] = STATE(2366), - [sym_interface_statement] = STATE(2366), - [sym_dataset_definition] = STATE(2366), - [sym_using_statement] = STATE(2366), - [sym_class_statement] = STATE(2366), - [sym_object_access] = STATE(5325), - [sym_member_access] = STATE(6673), - [sym_stream_definition] = STATE(2366), - [sym_input_close_statement] = STATE(2366), - [sym_output_close_statement] = STATE(2366), - [sym__stream_statement] = STATE(2366), - [sym_input_stream_statement] = STATE(2364), - [sym_output_stream_statement] = STATE(2364), - [sym_do_block] = STATE(2366), - [sym_case_statement] = STATE(2366), - [sym_for_statement] = STATE(2366), - [sym_find_statement] = STATE(2366), - [sym_abl_statement] = STATE(2366), - [sym_assign_statement] = STATE(2366), - [sym_catch_statement] = STATE(2366), - [sym_finally_statement] = STATE(2366), - [sym_accumulate_statement] = STATE(2366), - [sym_undo_statement] = STATE(2366), - [sym_error_scope_statement] = STATE(2366), - [sym_workfile_definition] = STATE(2366), - [sym_temp_table_definition] = STATE(2366), - [sym_on_statement] = STATE(2366), - [sym_prompt_for_statement] = STATE(2366), - [sym_var_statement] = STATE(2366), - [sym_button_definition] = STATE(2366), - [sym_run_statement] = STATE(2366), - [sym__statement] = STATE(2360), - [aux_sym_source_code_repeat1] = STATE(53), - [sym_identifier] = ACTIONS(416), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(472), - [aux_sym_input_expression_token1] = ACTIONS(420), - [aux_sym_class_type_token1] = ACTIONS(422), - [aux_sym_variable_definition_token1] = ACTIONS(424), - [aux_sym_variable_definition_token2] = ACTIONS(424), - [aux_sym_buffer_definition_token2] = ACTIONS(426), - [aux_sym_return_type_token2] = ACTIONS(428), - [aux_sym_argument_mode_token1] = ACTIONS(430), - [aux_sym_if_statement_token1] = ACTIONS(432), - [aux_sym_repeat_statement_token1] = ACTIONS(434), - [aux_sym__procedure_terminator_token1] = ACTIONS(436), - [aux_sym__function_terminator_token1] = ACTIONS(438), - [aux_sym_interface_statement_token1] = ACTIONS(440), - [aux_sym_using_statement_token1] = ACTIONS(442), - [aux_sym_on_error_phrase_token1] = ACTIONS(444), - [aux_sym_on_error_phrase_token3] = ACTIONS(446), - [aux_sym_do_block_token1] = ACTIONS(448), - [aux_sym__case_terminator_token1] = ACTIONS(450), - [aux_sym_find_statement_token1] = ACTIONS(452), - [aux_sym_assign_statement_token1] = ACTIONS(454), - [aux_sym_catch_statement_token1] = ACTIONS(456), - [aux_sym_finally_statement_token1] = ACTIONS(458), - [aux_sym_accumulate_statement_token1] = ACTIONS(460), - [aux_sym_error_scope_statement_token1] = ACTIONS(462), - [aux_sym_error_scope_statement_token2] = ACTIONS(462), - [aux_sym_prompt_for_statement_token1] = ACTIONS(464), - [aux_sym_var_statement_token1] = ACTIONS(466), - [aux_sym_run_statement_token1] = ACTIONS(468), - }, [59] = { [sym_comment] = STATE(59), - [sym_qualified_name] = STATE(6673), [sym_include] = STATE(59), - [sym_assignment] = STATE(6229), - [sym_variable_definition] = STATE(2366), - [sym_variable_assignment] = STATE(2366), - [sym_buffer_definition] = STATE(2366), - [sym_query_definition] = STATE(2366), - [sym_function_call_statement] = STATE(2366), - [sym_function_call] = STATE(6228), - [sym_if_statement] = STATE(2366), - [sym_label] = STATE(2365), - [sym_repeat_statement] = STATE(2366), - [sym_procedure_statement] = STATE(2366), - [sym_procedure_parameter_definition] = STATE(2366), - [sym_function_statement] = STATE(2366), - [sym_return_statement] = STATE(2366), - [sym_interface_statement] = STATE(2366), - [sym_dataset_definition] = STATE(2366), - [sym_using_statement] = STATE(2366), - [sym_class_statement] = STATE(2366), - [sym_object_access] = STATE(5325), - [sym_member_access] = STATE(6673), - [sym_stream_definition] = STATE(2366), - [sym_input_close_statement] = STATE(2366), - [sym_output_close_statement] = STATE(2366), - [sym__stream_statement] = STATE(2366), - [sym_input_stream_statement] = STATE(2364), - [sym_output_stream_statement] = STATE(2364), - [sym_do_block] = STATE(2366), - [sym_case_statement] = STATE(2366), - [sym_for_statement] = STATE(2366), - [sym_find_statement] = STATE(2366), - [sym_abl_statement] = STATE(2366), - [sym_assign_statement] = STATE(2366), - [sym_catch_statement] = STATE(2366), - [sym_finally_statement] = STATE(2366), - [sym_accumulate_statement] = STATE(2366), - [sym_undo_statement] = STATE(2366), - [sym_error_scope_statement] = STATE(2366), - [sym_workfile_definition] = STATE(2366), - [sym_temp_table_definition] = STATE(2366), - [sym_on_statement] = STATE(2366), - [sym_prompt_for_statement] = STATE(2366), - [sym_var_statement] = STATE(2366), - [sym_button_definition] = STATE(2366), - [sym_run_statement] = STATE(2366), - [sym__statement] = STATE(2360), - [aux_sym_source_code_repeat1] = STATE(53), - [sym_identifier] = ACTIONS(416), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(474), - [aux_sym_input_expression_token1] = ACTIONS(420), - [aux_sym_class_type_token1] = ACTIONS(422), - [aux_sym_variable_definition_token1] = ACTIONS(424), - [aux_sym_variable_definition_token2] = ACTIONS(424), - [aux_sym_buffer_definition_token2] = ACTIONS(426), - [aux_sym_return_type_token2] = ACTIONS(428), - [aux_sym_argument_mode_token1] = ACTIONS(430), - [aux_sym_if_statement_token1] = ACTIONS(432), - [aux_sym_repeat_statement_token1] = ACTIONS(434), - [aux_sym__procedure_terminator_token1] = ACTIONS(436), - [aux_sym__function_terminator_token1] = ACTIONS(438), - [aux_sym_interface_statement_token1] = ACTIONS(440), - [aux_sym_using_statement_token1] = ACTIONS(442), - [aux_sym_on_error_phrase_token1] = ACTIONS(444), - [aux_sym_on_error_phrase_token3] = ACTIONS(446), - [aux_sym_do_block_token1] = ACTIONS(448), - [aux_sym__case_terminator_token1] = ACTIONS(450), - [aux_sym_find_statement_token1] = ACTIONS(452), - [aux_sym_assign_statement_token1] = ACTIONS(454), - [aux_sym_catch_statement_token1] = ACTIONS(456), - [aux_sym_finally_statement_token1] = ACTIONS(458), - [aux_sym_accumulate_statement_token1] = ACTIONS(460), - [aux_sym_error_scope_statement_token1] = ACTIONS(462), - [aux_sym_error_scope_statement_token2] = ACTIONS(462), - [aux_sym_prompt_for_statement_token1] = ACTIONS(464), - [aux_sym_var_statement_token1] = ACTIONS(466), - [aux_sym_run_statement_token1] = ACTIONS(468), + [anon_sym_COLON] = ACTIONS(391), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(391), + [sym__terminator] = ACTIONS(391), + [aux_sym__block_terminator_token1] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(391), + [anon_sym_RBRACK] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_RPAREN] = ACTIONS(391), + [aux_sym_unary_expression_token2] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [aux_sym__multiplicative_operator_token1] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_LT_GT] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(391), + [aux_sym__comparison_operator_token1] = ACTIONS(391), + [aux_sym__comparison_operator_token2] = ACTIONS(391), + [aux_sym__comparison_operator_token3] = ACTIONS(391), + [aux_sym__comparison_operator_token4] = ACTIONS(391), + [aux_sym__comparison_operator_token5] = ACTIONS(391), + [aux_sym__comparison_operator_token6] = ACTIONS(391), + [aux_sym__comparison_operator_token7] = ACTIONS(391), + [aux_sym__comparison_operator_token8] = ACTIONS(391), + [aux_sym__comparison_operator_token9] = ACTIONS(391), + [aux_sym_when_expression_token1] = ACTIONS(391), + [aux_sym_variable_tuning_token1] = ACTIONS(391), + [aux_sym_variable_tuning_token2] = ACTIONS(393), + [aux_sym_variable_tuning_token3] = ACTIONS(391), + [aux_sym_variable_tuning_token4] = ACTIONS(391), + [aux_sym_variable_tuning_token5] = ACTIONS(391), + [aux_sym_variable_tuning_token6] = ACTIONS(391), + [aux_sym_variable_tuning_token7] = ACTIONS(391), + [aux_sym_variable_tuning_token8] = ACTIONS(391), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(391), + [aux_sym_if_statement_token2] = ACTIONS(391), + [aux_sym_else_statement_token1] = ACTIONS(391), + [aux_sym_while_phrase_token1] = ACTIONS(391), + [aux_sym_repeat_tuning_token1] = ACTIONS(391), + [anon_sym_NO_DASHERROR] = ACTIONS(395), + [aux_sym_input_stream_tuning_token1] = ACTIONS(391), + [aux_sym_input_stream_tuning_token2] = ACTIONS(391), + [aux_sym_input_stream_tuning_token3] = ACTIONS(391), + [aux_sym_input_stream_tuning_token4] = ACTIONS(391), + [aux_sym_input_stream_tuning_token5] = ACTIONS(391), + [aux_sym_input_stream_tuning_token6] = ACTIONS(391), + [aux_sym_input_stream_tuning_token7] = ACTIONS(391), + [aux_sym_input_stream_tuning_token8] = ACTIONS(391), + [aux_sym_input_stream_tuning_token9] = ACTIONS(391), + [aux_sym_input_stream_tuning_token11] = ACTIONS(391), + [aux_sym_output_stream_tuning_token1] = ACTIONS(391), + [aux_sym_output_stream_tuning_token2] = ACTIONS(391), + [aux_sym_output_stream_tuning_token3] = ACTIONS(391), + [aux_sym_output_stream_tuning_token4] = ACTIONS(391), + [aux_sym_output_stream_tuning_token5] = ACTIONS(391), + [aux_sym_output_stream_tuning_token6] = ACTIONS(391), + [aux_sym_output_stream_tuning_token7] = ACTIONS(391), + [aux_sym_output_stream_statement_token1] = ACTIONS(391), + [aux_sym_on_error_phrase_token1] = ACTIONS(391), + [aux_sym_stop_after_phrase_token1] = ACTIONS(391), + [aux_sym_do_tuning_token1] = ACTIONS(391), + [anon_sym_BY] = ACTIONS(391), + [aux_sym_of_token1] = ACTIONS(391), + [aux_sym_field_option_token1] = ACTIONS(391), + [aux_sym_field_option_token2] = ACTIONS(391), + [aux_sym_field_option_token3] = ACTIONS(391), + [aux_sym_field_option_token4] = ACTIONS(391), + [aux_sym_field_option_token5] = ACTIONS(391), + [aux_sym_field_option_token6] = ACTIONS(391), + [aux_sym_field_definition_token1] = ACTIONS(391), + [aux_sym_index_definition_token1] = ACTIONS(391), + [aux_sym_on_statement_token1] = ACTIONS(391), + [sym__namecolon] = ACTIONS(391), + [sym__or_operator] = ACTIONS(391), + [sym__and_operator] = ACTIONS(391), }, [60] = { [sym_comment] = STATE(60), - [sym_qualified_name] = STATE(6673), [sym_include] = STATE(60), - [sym_assignment] = STATE(6249), - [sym_variable_definition] = STATE(4768), - [sym_variable_assignment] = STATE(4768), - [sym_buffer_definition] = STATE(4768), - [sym_query_definition] = STATE(4768), - [sym_function_call_statement] = STATE(4768), - [sym_function_call] = STATE(6247), - [sym_if_statement] = STATE(4768), - [sym_label] = STATE(4019), - [sym_repeat_statement] = STATE(4768), - [sym_procedure_statement] = STATE(4768), - [sym_procedure_parameter_definition] = STATE(4768), - [sym_function_statement] = STATE(4768), - [sym_return_statement] = STATE(4768), - [sym_interface_statement] = STATE(4768), - [sym_dataset_definition] = STATE(4768), - [sym_using_statement] = STATE(4768), - [sym_class_statement] = STATE(4768), - [sym_object_access] = STATE(5325), - [sym_member_access] = STATE(6673), - [sym_stream_definition] = STATE(4768), - [sym_input_close_statement] = STATE(4768), - [sym_output_close_statement] = STATE(4768), - [sym__stream_statement] = STATE(4768), - [sym_input_stream_statement] = STATE(4756), - [sym_output_stream_statement] = STATE(4756), - [sym_do_block] = STATE(5092), - [sym__case_branch_body] = STATE(5257), - [sym_case_statement] = STATE(4768), - [sym_for_statement] = STATE(4768), - [sym_find_statement] = STATE(4768), - [sym_abl_statement] = STATE(4768), - [sym_assign_statement] = STATE(4768), - [sym_catch_statement] = STATE(4768), - [sym_finally_statement] = STATE(4768), - [sym_accumulate_statement] = STATE(4768), - [sym_undo_statement] = STATE(4768), - [sym_error_scope_statement] = STATE(4768), - [sym_workfile_definition] = STATE(4768), - [sym_temp_table_definition] = STATE(4768), - [sym_on_statement] = STATE(4768), - [sym_prompt_for_statement] = STATE(4768), - [sym_var_statement] = STATE(4768), - [sym_button_definition] = STATE(4768), - [sym_run_statement] = STATE(4768), - [sym__statement] = STATE(5091), - [sym_identifier] = ACTIONS(476), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(478), - [aux_sym_class_type_token1] = ACTIONS(480), - [aux_sym_variable_definition_token1] = ACTIONS(482), - [aux_sym_variable_definition_token2] = ACTIONS(482), - [aux_sym_buffer_definition_token2] = ACTIONS(484), - [aux_sym_return_type_token2] = ACTIONS(486), - [aux_sym_argument_mode_token1] = ACTIONS(488), - [aux_sym_if_statement_token1] = ACTIONS(490), - [aux_sym_repeat_statement_token1] = ACTIONS(492), - [aux_sym__procedure_terminator_token1] = ACTIONS(494), - [aux_sym__function_terminator_token1] = ACTIONS(496), - [aux_sym_interface_statement_token1] = ACTIONS(498), - [aux_sym_using_statement_token1] = ACTIONS(500), - [aux_sym_on_error_phrase_token1] = ACTIONS(502), - [aux_sym_on_error_phrase_token3] = ACTIONS(504), - [aux_sym_do_block_token1] = ACTIONS(506), - [aux_sym__case_terminator_token1] = ACTIONS(508), - [aux_sym_find_statement_token1] = ACTIONS(510), - [aux_sym_assign_statement_token1] = ACTIONS(512), - [aux_sym_catch_statement_token1] = ACTIONS(514), - [aux_sym_finally_statement_token1] = ACTIONS(516), - [aux_sym_accumulate_statement_token1] = ACTIONS(518), - [aux_sym_error_scope_statement_token1] = ACTIONS(520), - [aux_sym_error_scope_statement_token2] = ACTIONS(520), - [aux_sym_prompt_for_statement_token1] = ACTIONS(522), - [aux_sym_var_statement_token1] = ACTIONS(524), - [aux_sym_run_statement_token1] = ACTIONS(526), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(115), + [sym__terminator] = ACTIONS(115), + [aux_sym__block_terminator_token1] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(115), + [aux_sym_unary_expression_token2] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(115), + [anon_sym_DASH] = ACTIONS(115), + [aux_sym__multiplicative_operator_token1] = ACTIONS(115), + [anon_sym_LT] = ACTIONS(117), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_LT_GT] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(115), + [aux_sym__comparison_operator_token1] = ACTIONS(115), + [aux_sym__comparison_operator_token2] = ACTIONS(115), + [aux_sym__comparison_operator_token3] = ACTIONS(115), + [aux_sym__comparison_operator_token4] = ACTIONS(115), + [aux_sym__comparison_operator_token5] = ACTIONS(115), + [aux_sym__comparison_operator_token6] = ACTIONS(115), + [aux_sym__comparison_operator_token7] = ACTIONS(115), + [aux_sym__comparison_operator_token8] = ACTIONS(115), + [aux_sym__comparison_operator_token9] = ACTIONS(115), + [aux_sym_when_expression_token1] = ACTIONS(115), + [aux_sym_variable_tuning_token1] = ACTIONS(115), + [aux_sym_variable_tuning_token2] = ACTIONS(117), + [aux_sym_variable_tuning_token3] = ACTIONS(115), + [aux_sym_variable_tuning_token4] = ACTIONS(115), + [aux_sym_variable_tuning_token5] = ACTIONS(115), + [aux_sym_variable_tuning_token6] = ACTIONS(115), + [aux_sym_variable_tuning_token7] = ACTIONS(115), + [aux_sym_variable_tuning_token8] = ACTIONS(115), + [aux_sym__function_argument_with_mode_token4] = ACTIONS(115), + [aux_sym_if_statement_token2] = ACTIONS(115), + [aux_sym_else_statement_token1] = ACTIONS(115), + [aux_sym_while_phrase_token1] = ACTIONS(115), + [aux_sym_repeat_tuning_token1] = ACTIONS(115), + [anon_sym_NO_DASHERROR] = ACTIONS(115), + [aux_sym_input_stream_tuning_token1] = ACTIONS(115), + [aux_sym_input_stream_tuning_token2] = ACTIONS(115), + [aux_sym_input_stream_tuning_token3] = ACTIONS(115), + [aux_sym_input_stream_tuning_token4] = ACTIONS(115), + [aux_sym_input_stream_tuning_token5] = ACTIONS(115), + [aux_sym_input_stream_tuning_token6] = ACTIONS(115), + [aux_sym_input_stream_tuning_token7] = ACTIONS(115), + [aux_sym_input_stream_tuning_token8] = ACTIONS(115), + [aux_sym_input_stream_tuning_token9] = ACTIONS(115), + [aux_sym_input_stream_tuning_token11] = ACTIONS(115), + [aux_sym_output_stream_tuning_token1] = ACTIONS(115), + [aux_sym_output_stream_tuning_token2] = ACTIONS(115), + [aux_sym_output_stream_tuning_token3] = ACTIONS(115), + [aux_sym_output_stream_tuning_token4] = ACTIONS(115), + [aux_sym_output_stream_tuning_token5] = ACTIONS(115), + [aux_sym_output_stream_tuning_token6] = ACTIONS(115), + [aux_sym_output_stream_tuning_token7] = ACTIONS(115), + [aux_sym_output_stream_statement_token1] = ACTIONS(115), + [aux_sym_on_error_phrase_token1] = ACTIONS(115), + [aux_sym_stop_after_phrase_token1] = ACTIONS(115), + [aux_sym_do_tuning_token1] = ACTIONS(115), + [anon_sym_BY] = ACTIONS(115), + [aux_sym_of_token1] = ACTIONS(115), + [aux_sym_field_option_token1] = ACTIONS(115), + [aux_sym_field_option_token2] = ACTIONS(115), + [aux_sym_field_option_token3] = ACTIONS(115), + [aux_sym_field_option_token4] = ACTIONS(115), + [aux_sym_field_option_token5] = ACTIONS(115), + [aux_sym_field_option_token6] = ACTIONS(115), + [aux_sym_field_definition_token1] = ACTIONS(115), + [aux_sym_index_definition_token1] = ACTIONS(115), + [aux_sym_on_statement_token1] = ACTIONS(115), + [sym__namecolon] = ACTIONS(115), + [sym__or_operator] = ACTIONS(115), + [sym__and_operator] = ACTIONS(115), }, [61] = { [sym_comment] = STATE(61), - [sym_qualified_name] = STATE(6673), + [sym_qualified_name] = STATE(5477), [sym_include] = STATE(61), - [sym_assignment] = STATE(6249), - [sym_variable_definition] = STATE(4768), - [sym_variable_assignment] = STATE(4768), - [sym_buffer_definition] = STATE(4768), - [sym_query_definition] = STATE(4768), - [sym_function_call_statement] = STATE(4768), - [sym_function_call] = STATE(6247), - [sym_if_statement] = STATE(4768), - [sym_label] = STATE(4019), - [sym_repeat_statement] = STATE(4768), - [sym_procedure_statement] = STATE(4768), - [sym_procedure_parameter_definition] = STATE(4768), - [sym_function_statement] = STATE(4768), - [sym_return_statement] = STATE(4768), - [sym_interface_statement] = STATE(4768), - [sym_dataset_definition] = STATE(4768), - [sym_using_statement] = STATE(4768), - [sym_class_statement] = STATE(4768), - [sym_object_access] = STATE(5325), - [sym_member_access] = STATE(6673), - [sym_stream_definition] = STATE(4768), - [sym_input_close_statement] = STATE(4768), - [sym_output_close_statement] = STATE(4768), - [sym__stream_statement] = STATE(4768), - [sym_input_stream_statement] = STATE(4756), - [sym_output_stream_statement] = STATE(4756), - [sym_do_block] = STATE(5092), - [sym__case_branch_body] = STATE(6342), - [sym_case_statement] = STATE(4768), - [sym_for_statement] = STATE(4768), - [sym_find_statement] = STATE(4768), - [sym_abl_statement] = STATE(4768), - [sym_assign_statement] = STATE(4768), - [sym_catch_statement] = STATE(4768), - [sym_finally_statement] = STATE(4768), - [sym_accumulate_statement] = STATE(4768), - [sym_undo_statement] = STATE(4768), - [sym_error_scope_statement] = STATE(4768), - [sym_workfile_definition] = STATE(4768), - [sym_temp_table_definition] = STATE(4768), - [sym_on_statement] = STATE(4768), - [sym_prompt_for_statement] = STATE(4768), - [sym_var_statement] = STATE(4768), - [sym_button_definition] = STATE(4768), - [sym_run_statement] = STATE(4768), - [sym__statement] = STATE(5091), - [sym_identifier] = ACTIONS(476), + [sym_assignment] = STATE(6175), + [sym_variable_assignment] = STATE(2342), + [sym_variable_definition] = STATE(2342), + [sym_buffer_definition] = STATE(2342), + [sym_query_definition] = STATE(2342), + [sym_function_call_statement] = STATE(2342), + [sym_function_call] = STATE(5265), + [sym_if_statement] = STATE(2342), + [sym_label] = STATE(2341), + [sym_repeat_statement] = STATE(2342), + [sym_procedure_statement] = STATE(2342), + [sym_procedure_parameter_definition] = STATE(2342), + [sym_function_statement] = STATE(2342), + [sym_return_statement] = STATE(2342), + [sym_interface_statement] = STATE(2342), + [sym_dataset_definition] = STATE(2342), + [sym_using_statement] = STATE(2342), + [sym_class_statement] = STATE(2342), + [sym_new_expression] = STATE(5480), + [sym_object_access] = STATE(4649), + [sym_member_access] = STATE(5477), + [sym_stream_definition] = STATE(2342), + [sym_input_close_statement] = STATE(2342), + [sym_output_close_statement] = STATE(2342), + [sym__stream_statement] = STATE(2342), + [sym_input_stream_statement] = STATE(2340), + [sym_output_stream_statement] = STATE(2340), + [sym_do_block] = STATE(2342), + [sym_case_statement] = STATE(2342), + [sym_for_statement] = STATE(2342), + [sym_find_statement] = STATE(2342), + [sym_abl_statement] = STATE(2342), + [sym_assign_statement] = STATE(2342), + [sym_catch_statement] = STATE(2342), + [sym_finally_statement] = STATE(2342), + [sym_accumulate_statement] = STATE(2342), + [sym_undo_statement] = STATE(2342), + [sym_error_scope_statement] = STATE(2342), + [sym_workfile_definition] = STATE(2342), + [sym_temp_table_definition] = STATE(2342), + [sym_on_statement] = STATE(2342), + [sym_prompt_for_statement] = STATE(2342), + [sym_var_statement] = STATE(2342), + [sym_button_definition] = STATE(2342), + [sym_run_statement] = STATE(2342), + [sym__statement] = STATE(2339), + [aux_sym_source_code_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(397), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(478), - [aux_sym_class_type_token1] = ACTIONS(480), - [aux_sym_variable_definition_token1] = ACTIONS(482), - [aux_sym_variable_definition_token2] = ACTIONS(482), - [aux_sym_buffer_definition_token2] = ACTIONS(484), - [aux_sym_return_type_token2] = ACTIONS(486), - [aux_sym_argument_mode_token1] = ACTIONS(488), - [aux_sym_if_statement_token1] = ACTIONS(490), - [aux_sym_repeat_statement_token1] = ACTIONS(492), - [aux_sym__procedure_terminator_token1] = ACTIONS(494), - [aux_sym__function_terminator_token1] = ACTIONS(496), - [aux_sym_interface_statement_token1] = ACTIONS(498), - [aux_sym_using_statement_token1] = ACTIONS(500), - [aux_sym_on_error_phrase_token1] = ACTIONS(502), - [aux_sym_on_error_phrase_token3] = ACTIONS(504), - [aux_sym_do_block_token1] = ACTIONS(506), - [aux_sym__case_terminator_token1] = ACTIONS(508), - [aux_sym_find_statement_token1] = ACTIONS(510), - [aux_sym_assign_statement_token1] = ACTIONS(512), - [aux_sym_catch_statement_token1] = ACTIONS(514), - [aux_sym_finally_statement_token1] = ACTIONS(516), - [aux_sym_accumulate_statement_token1] = ACTIONS(518), - [aux_sym_error_scope_statement_token1] = ACTIONS(520), - [aux_sym_error_scope_statement_token2] = ACTIONS(520), - [aux_sym_prompt_for_statement_token1] = ACTIONS(522), - [aux_sym_var_statement_token1] = ACTIONS(524), - [aux_sym_run_statement_token1] = ACTIONS(526), + [aux_sym__block_terminator_token1] = ACTIONS(400), + [aux_sym_input_expression_token1] = ACTIONS(402), + [aux_sym_class_type_token1] = ACTIONS(405), + [aux_sym_scope_tuning_token1] = ACTIONS(317), + [aux_sym_variable_definition_token1] = ACTIONS(408), + [aux_sym_variable_definition_token2] = ACTIONS(408), + [aux_sym_buffer_definition_token2] = ACTIONS(411), + [aux_sym_return_type_token2] = ACTIONS(414), + [aux_sym_argument_mode_token1] = ACTIONS(417), + [aux_sym_if_statement_token1] = ACTIONS(420), + [aux_sym_repeat_statement_token1] = ACTIONS(423), + [aux_sym__procedure_terminator_token1] = ACTIONS(426), + [aux_sym__function_terminator_token1] = ACTIONS(429), + [aux_sym_interface_statement_token1] = ACTIONS(432), + [aux_sym_using_statement_token1] = ACTIONS(435), + [aux_sym_on_error_phrase_token1] = ACTIONS(438), + [aux_sym_on_error_phrase_token3] = ACTIONS(441), + [aux_sym_do_block_token1] = ACTIONS(444), + [aux_sym__case_terminator_token1] = ACTIONS(447), + [aux_sym_find_statement_token1] = ACTIONS(450), + [aux_sym_assign_statement_token1] = ACTIONS(453), + [aux_sym_catch_statement_token1] = ACTIONS(456), + [aux_sym_finally_statement_token1] = ACTIONS(459), + [aux_sym_accumulate_statement_token1] = ACTIONS(462), + [aux_sym_error_scope_statement_token1] = ACTIONS(465), + [aux_sym_error_scope_statement_token2] = ACTIONS(465), + [aux_sym_prompt_for_statement_token1] = ACTIONS(468), + [aux_sym_var_statement_token1] = ACTIONS(471), + [aux_sym_run_statement_token1] = ACTIONS(474), }, [62] = { [sym_comment] = STATE(62), - [sym_qualified_name] = STATE(6673), + [sym_qualified_name] = STATE(5477), [sym_include] = STATE(62), - [sym_assignment] = STATE(6249), - [sym_variable_definition] = STATE(4768), - [sym_variable_assignment] = STATE(4768), - [sym_buffer_definition] = STATE(4768), - [sym_query_definition] = STATE(4768), - [sym_function_call_statement] = STATE(4768), - [sym_function_call] = STATE(6247), - [sym_if_statement] = STATE(4768), - [sym_label] = STATE(4019), - [sym_repeat_statement] = STATE(4768), - [sym_procedure_statement] = STATE(4768), - [sym_procedure_parameter_definition] = STATE(4768), - [sym_function_statement] = STATE(4768), - [sym_return_statement] = STATE(4768), - [sym_interface_statement] = STATE(4768), - [sym_dataset_definition] = STATE(4768), - [sym_using_statement] = STATE(4768), - [sym_class_statement] = STATE(4768), - [sym_object_access] = STATE(5325), - [sym_member_access] = STATE(6673), - [sym_stream_definition] = STATE(4768), - [sym_input_close_statement] = STATE(4768), - [sym_output_close_statement] = STATE(4768), - [sym__stream_statement] = STATE(4768), - [sym_input_stream_statement] = STATE(4756), - [sym_output_stream_statement] = STATE(4756), - [sym_do_block] = STATE(5092), - [sym__case_branch_body] = STATE(5232), - [sym_case_statement] = STATE(4768), - [sym_for_statement] = STATE(4768), - [sym_find_statement] = STATE(4768), - [sym_abl_statement] = STATE(4768), - [sym_assign_statement] = STATE(4768), - [sym_catch_statement] = STATE(4768), - [sym_finally_statement] = STATE(4768), - [sym_accumulate_statement] = STATE(4768), - [sym_undo_statement] = STATE(4768), - [sym_error_scope_statement] = STATE(4768), - [sym_workfile_definition] = STATE(4768), - [sym_temp_table_definition] = STATE(4768), - [sym_on_statement] = STATE(4768), - [sym_prompt_for_statement] = STATE(4768), - [sym_var_statement] = STATE(4768), - [sym_button_definition] = STATE(4768), - [sym_run_statement] = STATE(4768), - [sym__statement] = STATE(5091), - [sym_identifier] = ACTIONS(476), + [sym_assignment] = STATE(6175), + [sym_variable_assignment] = STATE(2342), + [sym_variable_definition] = STATE(2342), + [sym_buffer_definition] = STATE(2342), + [sym_query_definition] = STATE(2342), + [sym_function_call_statement] = STATE(2342), + [sym_function_call] = STATE(5265), + [sym_if_statement] = STATE(2342), + [sym_label] = STATE(2341), + [sym_repeat_statement] = STATE(2342), + [sym_procedure_statement] = STATE(2342), + [sym_procedure_parameter_definition] = STATE(2342), + [sym_function_statement] = STATE(2342), + [sym_return_statement] = STATE(2342), + [sym_interface_statement] = STATE(2342), + [sym_dataset_definition] = STATE(2342), + [sym_using_statement] = STATE(2342), + [sym_class_statement] = STATE(2342), + [sym_new_expression] = STATE(5480), + [sym_object_access] = STATE(4649), + [sym_member_access] = STATE(5477), + [sym_stream_definition] = STATE(2342), + [sym_input_close_statement] = STATE(2342), + [sym_output_close_statement] = STATE(2342), + [sym__stream_statement] = STATE(2342), + [sym_input_stream_statement] = STATE(2340), + [sym_output_stream_statement] = STATE(2340), + [sym_do_block] = STATE(2342), + [sym_case_statement] = STATE(2342), + [sym_for_statement] = STATE(2342), + [sym_find_statement] = STATE(2342), + [sym_abl_statement] = STATE(2342), + [sym_assign_statement] = STATE(2342), + [sym_catch_statement] = STATE(2342), + [sym_finally_statement] = STATE(2342), + [sym_accumulate_statement] = STATE(2342), + [sym_undo_statement] = STATE(2342), + [sym_error_scope_statement] = STATE(2342), + [sym_workfile_definition] = STATE(2342), + [sym_temp_table_definition] = STATE(2342), + [sym_on_statement] = STATE(2342), + [sym_prompt_for_statement] = STATE(2342), + [sym_var_statement] = STATE(2342), + [sym_button_definition] = STATE(2342), + [sym_run_statement] = STATE(2342), + [sym__statement] = STATE(2339), + [aux_sym_source_code_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(252), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(478), - [aux_sym_class_type_token1] = ACTIONS(480), - [aux_sym_variable_definition_token1] = ACTIONS(482), - [aux_sym_variable_definition_token2] = ACTIONS(482), - [aux_sym_buffer_definition_token2] = ACTIONS(484), - [aux_sym_return_type_token2] = ACTIONS(486), - [aux_sym_argument_mode_token1] = ACTIONS(488), - [aux_sym_if_statement_token1] = ACTIONS(490), - [aux_sym_repeat_statement_token1] = ACTIONS(492), - [aux_sym__procedure_terminator_token1] = ACTIONS(494), - [aux_sym__function_terminator_token1] = ACTIONS(496), - [aux_sym_interface_statement_token1] = ACTIONS(498), - [aux_sym_using_statement_token1] = ACTIONS(500), - [aux_sym_on_error_phrase_token1] = ACTIONS(502), - [aux_sym_on_error_phrase_token3] = ACTIONS(504), - [aux_sym_do_block_token1] = ACTIONS(506), - [aux_sym__case_terminator_token1] = ACTIONS(508), - [aux_sym_find_statement_token1] = ACTIONS(510), - [aux_sym_assign_statement_token1] = ACTIONS(512), - [aux_sym_catch_statement_token1] = ACTIONS(514), - [aux_sym_finally_statement_token1] = ACTIONS(516), - [aux_sym_accumulate_statement_token1] = ACTIONS(518), - [aux_sym_error_scope_statement_token1] = ACTIONS(520), - [aux_sym_error_scope_statement_token2] = ACTIONS(520), - [aux_sym_prompt_for_statement_token1] = ACTIONS(522), - [aux_sym_var_statement_token1] = ACTIONS(524), - [aux_sym_run_statement_token1] = ACTIONS(526), + [aux_sym__block_terminator_token1] = ACTIONS(477), + [aux_sym_input_expression_token1] = ACTIONS(256), + [aux_sym_class_type_token1] = ACTIONS(258), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(260), + [aux_sym_variable_definition_token2] = ACTIONS(260), + [aux_sym_buffer_definition_token2] = ACTIONS(262), + [aux_sym_return_type_token2] = ACTIONS(264), + [aux_sym_argument_mode_token1] = ACTIONS(266), + [aux_sym_if_statement_token1] = ACTIONS(268), + [aux_sym_repeat_statement_token1] = ACTIONS(270), + [aux_sym__procedure_terminator_token1] = ACTIONS(272), + [aux_sym__function_terminator_token1] = ACTIONS(274), + [aux_sym_interface_statement_token1] = ACTIONS(276), + [aux_sym_using_statement_token1] = ACTIONS(278), + [aux_sym_on_error_phrase_token1] = ACTIONS(280), + [aux_sym_on_error_phrase_token3] = ACTIONS(282), + [aux_sym_do_block_token1] = ACTIONS(284), + [aux_sym__case_terminator_token1] = ACTIONS(286), + [aux_sym_find_statement_token1] = ACTIONS(288), + [aux_sym_assign_statement_token1] = ACTIONS(290), + [aux_sym_catch_statement_token1] = ACTIONS(292), + [aux_sym_finally_statement_token1] = ACTIONS(294), + [aux_sym_accumulate_statement_token1] = ACTIONS(296), + [aux_sym_error_scope_statement_token1] = ACTIONS(298), + [aux_sym_error_scope_statement_token2] = ACTIONS(298), + [aux_sym_prompt_for_statement_token1] = ACTIONS(300), + [aux_sym_var_statement_token1] = ACTIONS(302), + [aux_sym_run_statement_token1] = ACTIONS(304), }, [63] = { [sym_comment] = STATE(63), - [sym_qualified_name] = STATE(6673), + [sym_qualified_name] = STATE(5477), [sym_include] = STATE(63), - [sym_assignment] = STATE(6695), - [sym_variable_definition] = STATE(1797), - [sym_variable_assignment] = STATE(1797), - [sym_buffer_definition] = STATE(1797), - [sym_query_definition] = STATE(1797), - [sym_function_call_statement] = STATE(1797), - [sym_function_call] = STATE(6689), - [sym_if_statement] = STATE(1797), - [sym_label] = STATE(1792), - [sym_repeat_statement] = STATE(1797), - [sym_procedure_statement] = STATE(1797), - [sym_procedure_parameter_definition] = STATE(1797), - [sym_function_statement] = STATE(1797), - [sym_return_statement] = STATE(1797), - [sym_interface_statement] = STATE(1797), - [sym_dataset_definition] = STATE(1797), - [sym_using_statement] = STATE(1797), - [sym_class_statement] = STATE(1797), - [sym_object_access] = STATE(5325), - [sym_member_access] = STATE(6673), - [sym_stream_definition] = STATE(1797), - [sym_input_close_statement] = STATE(1797), - [sym_output_close_statement] = STATE(1797), - [sym__stream_statement] = STATE(1797), - [sym_input_stream_statement] = STATE(1791), - [sym_output_stream_statement] = STATE(1791), - [sym_do_block] = STATE(1502), - [sym_case_statement] = STATE(1797), - [sym_for_statement] = STATE(1797), - [sym_find_statement] = STATE(1797), - [sym_abl_statement] = STATE(1797), - [sym_assign_statement] = STATE(1797), - [sym_catch_statement] = STATE(1797), - [sym_finally_statement] = STATE(1797), - [sym_accumulate_statement] = STATE(1797), - [sym_undo_statement] = STATE(1797), - [sym_error_scope_statement] = STATE(1797), - [sym_workfile_definition] = STATE(1797), - [sym_temp_table_definition] = STATE(1797), - [sym_on_statement] = STATE(1797), - [sym_prompt_for_statement] = STATE(1797), - [sym_var_statement] = STATE(1797), - [sym_button_definition] = STATE(1797), - [sym_run_statement] = STATE(1797), - [sym__statement] = STATE(1478), - [sym_identifier] = ACTIONS(528), + [sym_assignment] = STATE(6175), + [sym_variable_assignment] = STATE(2342), + [sym_variable_definition] = STATE(2342), + [sym_buffer_definition] = STATE(2342), + [sym_query_definition] = STATE(2342), + [sym_function_call_statement] = STATE(2342), + [sym_function_call] = STATE(5265), + [sym_if_statement] = STATE(2342), + [sym_label] = STATE(2341), + [sym_repeat_statement] = STATE(2342), + [sym_procedure_statement] = STATE(2342), + [sym_procedure_parameter_definition] = STATE(2342), + [sym_function_statement] = STATE(2342), + [sym_return_statement] = STATE(2342), + [sym_interface_statement] = STATE(2342), + [sym_dataset_definition] = STATE(2342), + [sym_using_statement] = STATE(2342), + [sym_class_statement] = STATE(2342), + [sym_new_expression] = STATE(5480), + [sym_object_access] = STATE(4649), + [sym_member_access] = STATE(5477), + [sym_stream_definition] = STATE(2342), + [sym_input_close_statement] = STATE(2342), + [sym_output_close_statement] = STATE(2342), + [sym__stream_statement] = STATE(2342), + [sym_input_stream_statement] = STATE(2340), + [sym_output_stream_statement] = STATE(2340), + [sym_do_block] = STATE(2342), + [sym_case_statement] = STATE(2342), + [sym_for_statement] = STATE(2342), + [sym_find_statement] = STATE(2342), + [sym_abl_statement] = STATE(2342), + [sym_assign_statement] = STATE(2342), + [sym_catch_statement] = STATE(2342), + [sym_finally_statement] = STATE(2342), + [sym_accumulate_statement] = STATE(2342), + [sym_undo_statement] = STATE(2342), + [sym_error_scope_statement] = STATE(2342), + [sym_workfile_definition] = STATE(2342), + [sym_temp_table_definition] = STATE(2342), + [sym_on_statement] = STATE(2342), + [sym_prompt_for_statement] = STATE(2342), + [sym_var_statement] = STATE(2342), + [sym_button_definition] = STATE(2342), + [sym_run_statement] = STATE(2342), + [sym__statement] = STATE(2339), + [aux_sym_source_code_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(252), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(530), - [aux_sym_class_type_token1] = ACTIONS(532), - [aux_sym_variable_definition_token1] = ACTIONS(534), - [aux_sym_variable_definition_token2] = ACTIONS(534), - [aux_sym_buffer_definition_token2] = ACTIONS(536), - [aux_sym_return_type_token2] = ACTIONS(538), - [aux_sym_argument_mode_token1] = ACTIONS(540), - [aux_sym_if_statement_token1] = ACTIONS(542), - [aux_sym_repeat_statement_token1] = ACTIONS(544), - [aux_sym__procedure_terminator_token1] = ACTIONS(546), - [aux_sym__function_terminator_token1] = ACTIONS(548), - [aux_sym_interface_statement_token1] = ACTIONS(550), - [aux_sym_using_statement_token1] = ACTIONS(552), - [aux_sym_on_error_phrase_token1] = ACTIONS(554), - [aux_sym_on_error_phrase_token3] = ACTIONS(556), - [aux_sym_do_block_token1] = ACTIONS(558), - [aux_sym__case_terminator_token1] = ACTIONS(560), - [aux_sym_find_statement_token1] = ACTIONS(562), - [aux_sym_assign_statement_token1] = ACTIONS(564), - [aux_sym_catch_statement_token1] = ACTIONS(566), - [aux_sym_finally_statement_token1] = ACTIONS(568), - [aux_sym_accumulate_statement_token1] = ACTIONS(570), - [aux_sym_error_scope_statement_token1] = ACTIONS(572), - [aux_sym_error_scope_statement_token2] = ACTIONS(572), - [aux_sym_prompt_for_statement_token1] = ACTIONS(574), - [aux_sym_var_statement_token1] = ACTIONS(576), - [aux_sym_run_statement_token1] = ACTIONS(578), + [aux_sym__block_terminator_token1] = ACTIONS(479), + [aux_sym_input_expression_token1] = ACTIONS(256), + [aux_sym_class_type_token1] = ACTIONS(258), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(260), + [aux_sym_variable_definition_token2] = ACTIONS(260), + [aux_sym_buffer_definition_token2] = ACTIONS(262), + [aux_sym_return_type_token2] = ACTIONS(264), + [aux_sym_argument_mode_token1] = ACTIONS(266), + [aux_sym_if_statement_token1] = ACTIONS(268), + [aux_sym_repeat_statement_token1] = ACTIONS(270), + [aux_sym__procedure_terminator_token1] = ACTIONS(272), + [aux_sym__function_terminator_token1] = ACTIONS(274), + [aux_sym_interface_statement_token1] = ACTIONS(276), + [aux_sym_using_statement_token1] = ACTIONS(278), + [aux_sym_on_error_phrase_token1] = ACTIONS(280), + [aux_sym_on_error_phrase_token3] = ACTIONS(282), + [aux_sym_do_block_token1] = ACTIONS(284), + [aux_sym__case_terminator_token1] = ACTIONS(286), + [aux_sym_find_statement_token1] = ACTIONS(288), + [aux_sym_assign_statement_token1] = ACTIONS(290), + [aux_sym_catch_statement_token1] = ACTIONS(292), + [aux_sym_finally_statement_token1] = ACTIONS(294), + [aux_sym_accumulate_statement_token1] = ACTIONS(296), + [aux_sym_error_scope_statement_token1] = ACTIONS(298), + [aux_sym_error_scope_statement_token2] = ACTIONS(298), + [aux_sym_prompt_for_statement_token1] = ACTIONS(300), + [aux_sym_var_statement_token1] = ACTIONS(302), + [aux_sym_run_statement_token1] = ACTIONS(304), }, [64] = { [sym_comment] = STATE(64), - [sym_qualified_name] = STATE(6673), + [sym_qualified_name] = STATE(5477), [sym_include] = STATE(64), - [sym_assignment] = STATE(6182), - [sym_variable_definition] = STATE(1875), - [sym_variable_assignment] = STATE(1875), - [sym_buffer_definition] = STATE(1875), - [sym_query_definition] = STATE(1875), - [sym_function_call_statement] = STATE(1875), - [sym_function_call] = STATE(6190), - [sym_if_statement] = STATE(1875), - [sym_label] = STATE(1876), - [sym_repeat_statement] = STATE(1875), - [sym_procedure_statement] = STATE(1875), - [sym_procedure_parameter_definition] = STATE(1875), - [sym_function_statement] = STATE(1875), - [sym_return_statement] = STATE(1875), - [sym_interface_statement] = STATE(1875), - [sym_dataset_definition] = STATE(1875), - [sym_using_statement] = STATE(1875), - [sym_class_statement] = STATE(1875), - [sym_object_access] = STATE(5325), - [sym_member_access] = STATE(6673), - [sym_stream_definition] = STATE(1875), - [sym_input_close_statement] = STATE(1875), - [sym_output_close_statement] = STATE(1875), - [sym__stream_statement] = STATE(1875), - [sym_input_stream_statement] = STATE(1877), - [sym_output_stream_statement] = STATE(1877), - [sym_do_block] = STATE(1486), - [sym_case_statement] = STATE(1875), - [sym_for_statement] = STATE(1875), - [sym_find_statement] = STATE(1875), - [sym_abl_statement] = STATE(1875), - [sym_assign_statement] = STATE(1875), - [sym_catch_statement] = STATE(1875), - [sym_finally_statement] = STATE(1875), - [sym_accumulate_statement] = STATE(1875), - [sym_undo_statement] = STATE(1875), - [sym_error_scope_statement] = STATE(1875), - [sym_workfile_definition] = STATE(1875), - [sym_temp_table_definition] = STATE(1875), - [sym_on_statement] = STATE(1875), - [sym_prompt_for_statement] = STATE(1875), - [sym_var_statement] = STATE(1875), - [sym_button_definition] = STATE(1875), - [sym_run_statement] = STATE(1875), - [sym__statement] = STATE(1485), - [sym_identifier] = ACTIONS(580), + [sym_assignment] = STATE(6655), + [sym_variable_assignment] = STATE(4711), + [sym_variable_definition] = STATE(4711), + [sym_buffer_definition] = STATE(4711), + [sym_query_definition] = STATE(4711), + [sym_function_call_statement] = STATE(4711), + [sym_function_call] = STATE(5387), + [sym_if_statement] = STATE(4711), + [sym_label] = STATE(4132), + [sym_repeat_statement] = STATE(4711), + [sym_procedure_statement] = STATE(4711), + [sym_procedure_parameter_definition] = STATE(4711), + [sym_function_statement] = STATE(4711), + [sym_return_statement] = STATE(4711), + [sym_interface_statement] = STATE(4711), + [sym_dataset_definition] = STATE(4711), + [sym_using_statement] = STATE(4711), + [sym_class_statement] = STATE(4711), + [sym_new_expression] = STATE(5480), + [sym_object_access] = STATE(4649), + [sym_member_access] = STATE(5477), + [sym_stream_definition] = STATE(4711), + [sym_input_close_statement] = STATE(4711), + [sym_output_close_statement] = STATE(4711), + [sym__stream_statement] = STATE(4711), + [sym_input_stream_statement] = STATE(4708), + [sym_output_stream_statement] = STATE(4708), + [sym_do_block] = STATE(5367), + [sym__case_branch_body] = STATE(5370), + [sym_case_statement] = STATE(4711), + [sym_for_statement] = STATE(4711), + [sym_find_statement] = STATE(4711), + [sym_abl_statement] = STATE(4711), + [sym_assign_statement] = STATE(4711), + [sym_catch_statement] = STATE(4711), + [sym_finally_statement] = STATE(4711), + [sym_accumulate_statement] = STATE(4711), + [sym_undo_statement] = STATE(4711), + [sym_error_scope_statement] = STATE(4711), + [sym_workfile_definition] = STATE(4711), + [sym_temp_table_definition] = STATE(4711), + [sym_on_statement] = STATE(4711), + [sym_prompt_for_statement] = STATE(4711), + [sym_var_statement] = STATE(4711), + [sym_button_definition] = STATE(4711), + [sym_run_statement] = STATE(4711), + [sym__statement] = STATE(5372), + [sym_identifier] = ACTIONS(481), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(582), - [aux_sym_class_type_token1] = ACTIONS(584), - [aux_sym_variable_definition_token1] = ACTIONS(586), - [aux_sym_variable_definition_token2] = ACTIONS(586), - [aux_sym_buffer_definition_token2] = ACTIONS(588), - [aux_sym_return_type_token2] = ACTIONS(590), - [aux_sym_argument_mode_token1] = ACTIONS(592), - [aux_sym_if_statement_token1] = ACTIONS(594), - [aux_sym_repeat_statement_token1] = ACTIONS(596), - [aux_sym__procedure_terminator_token1] = ACTIONS(598), - [aux_sym__function_terminator_token1] = ACTIONS(600), - [aux_sym_interface_statement_token1] = ACTIONS(602), - [aux_sym_using_statement_token1] = ACTIONS(604), - [aux_sym_on_error_phrase_token1] = ACTIONS(606), - [aux_sym_on_error_phrase_token3] = ACTIONS(608), - [aux_sym_do_block_token1] = ACTIONS(610), - [aux_sym__case_terminator_token1] = ACTIONS(612), - [aux_sym_find_statement_token1] = ACTIONS(614), - [aux_sym_assign_statement_token1] = ACTIONS(616), - [aux_sym_catch_statement_token1] = ACTIONS(618), - [aux_sym_finally_statement_token1] = ACTIONS(620), - [aux_sym_accumulate_statement_token1] = ACTIONS(622), - [aux_sym_error_scope_statement_token1] = ACTIONS(624), - [aux_sym_error_scope_statement_token2] = ACTIONS(624), - [aux_sym_prompt_for_statement_token1] = ACTIONS(626), - [aux_sym_var_statement_token1] = ACTIONS(628), - [aux_sym_run_statement_token1] = ACTIONS(630), + [aux_sym_input_expression_token1] = ACTIONS(483), + [aux_sym_class_type_token1] = ACTIONS(485), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(487), + [aux_sym_variable_definition_token2] = ACTIONS(487), + [aux_sym_buffer_definition_token2] = ACTIONS(489), + [aux_sym_return_type_token2] = ACTIONS(491), + [aux_sym_argument_mode_token1] = ACTIONS(493), + [aux_sym_if_statement_token1] = ACTIONS(495), + [aux_sym_repeat_statement_token1] = ACTIONS(497), + [aux_sym__procedure_terminator_token1] = ACTIONS(499), + [aux_sym__function_terminator_token1] = ACTIONS(501), + [aux_sym_interface_statement_token1] = ACTIONS(503), + [aux_sym_using_statement_token1] = ACTIONS(505), + [aux_sym_on_error_phrase_token1] = ACTIONS(507), + [aux_sym_on_error_phrase_token3] = ACTIONS(509), + [aux_sym_do_block_token1] = ACTIONS(511), + [aux_sym__case_terminator_token1] = ACTIONS(513), + [aux_sym_find_statement_token1] = ACTIONS(515), + [aux_sym_assign_statement_token1] = ACTIONS(517), + [aux_sym_catch_statement_token1] = ACTIONS(519), + [aux_sym_finally_statement_token1] = ACTIONS(521), + [aux_sym_accumulate_statement_token1] = ACTIONS(523), + [aux_sym_error_scope_statement_token1] = ACTIONS(525), + [aux_sym_error_scope_statement_token2] = ACTIONS(525), + [aux_sym_prompt_for_statement_token1] = ACTIONS(527), + [aux_sym_var_statement_token1] = ACTIONS(529), + [aux_sym_run_statement_token1] = ACTIONS(531), }, [65] = { [sym_comment] = STATE(65), - [sym_qualified_name] = STATE(6673), + [sym_qualified_name] = STATE(5477), [sym_include] = STATE(65), - [sym_assignment] = STATE(6182), - [sym_variable_definition] = STATE(1875), - [sym_variable_assignment] = STATE(1875), - [sym_buffer_definition] = STATE(1875), - [sym_query_definition] = STATE(1875), - [sym_function_call_statement] = STATE(1875), - [sym_function_call] = STATE(6190), - [sym_if_statement] = STATE(1875), - [sym_label] = STATE(1876), - [sym_repeat_statement] = STATE(1875), - [sym_procedure_statement] = STATE(1875), - [sym_procedure_parameter_definition] = STATE(1875), - [sym_function_statement] = STATE(1875), - [sym_return_statement] = STATE(1875), - [sym_interface_statement] = STATE(1875), - [sym_dataset_definition] = STATE(1875), - [sym_using_statement] = STATE(1875), - [sym_class_statement] = STATE(1875), - [sym_object_access] = STATE(5325), - [sym_member_access] = STATE(6673), - [sym_stream_definition] = STATE(1875), - [sym_input_close_statement] = STATE(1875), - [sym_output_close_statement] = STATE(1875), - [sym__stream_statement] = STATE(1875), - [sym_input_stream_statement] = STATE(1877), - [sym_output_stream_statement] = STATE(1877), - [sym_do_block] = STATE(1472), - [sym_case_statement] = STATE(1875), - [sym_for_statement] = STATE(1875), - [sym_find_statement] = STATE(1875), - [sym_abl_statement] = STATE(1875), - [sym_assign_statement] = STATE(1875), - [sym_catch_statement] = STATE(1875), - [sym_finally_statement] = STATE(1875), - [sym_accumulate_statement] = STATE(1875), - [sym_undo_statement] = STATE(1875), - [sym_error_scope_statement] = STATE(1875), - [sym_workfile_definition] = STATE(1875), - [sym_temp_table_definition] = STATE(1875), - [sym_on_statement] = STATE(1875), - [sym_prompt_for_statement] = STATE(1875), - [sym_var_statement] = STATE(1875), - [sym_button_definition] = STATE(1875), - [sym_run_statement] = STATE(1875), - [sym__statement] = STATE(1469), - [sym_identifier] = ACTIONS(580), + [sym_assignment] = STATE(6655), + [sym_variable_assignment] = STATE(4711), + [sym_variable_definition] = STATE(4711), + [sym_buffer_definition] = STATE(4711), + [sym_query_definition] = STATE(4711), + [sym_function_call_statement] = STATE(4711), + [sym_function_call] = STATE(5387), + [sym_if_statement] = STATE(4711), + [sym_label] = STATE(4132), + [sym_repeat_statement] = STATE(4711), + [sym_procedure_statement] = STATE(4711), + [sym_procedure_parameter_definition] = STATE(4711), + [sym_function_statement] = STATE(4711), + [sym_return_statement] = STATE(4711), + [sym_interface_statement] = STATE(4711), + [sym_dataset_definition] = STATE(4711), + [sym_using_statement] = STATE(4711), + [sym_class_statement] = STATE(4711), + [sym_new_expression] = STATE(5480), + [sym_object_access] = STATE(4649), + [sym_member_access] = STATE(5477), + [sym_stream_definition] = STATE(4711), + [sym_input_close_statement] = STATE(4711), + [sym_output_close_statement] = STATE(4711), + [sym__stream_statement] = STATE(4711), + [sym_input_stream_statement] = STATE(4708), + [sym_output_stream_statement] = STATE(4708), + [sym_do_block] = STATE(5367), + [sym__case_branch_body] = STATE(6612), + [sym_case_statement] = STATE(4711), + [sym_for_statement] = STATE(4711), + [sym_find_statement] = STATE(4711), + [sym_abl_statement] = STATE(4711), + [sym_assign_statement] = STATE(4711), + [sym_catch_statement] = STATE(4711), + [sym_finally_statement] = STATE(4711), + [sym_accumulate_statement] = STATE(4711), + [sym_undo_statement] = STATE(4711), + [sym_error_scope_statement] = STATE(4711), + [sym_workfile_definition] = STATE(4711), + [sym_temp_table_definition] = STATE(4711), + [sym_on_statement] = STATE(4711), + [sym_prompt_for_statement] = STATE(4711), + [sym_var_statement] = STATE(4711), + [sym_button_definition] = STATE(4711), + [sym_run_statement] = STATE(4711), + [sym__statement] = STATE(5372), + [sym_identifier] = ACTIONS(481), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(582), - [aux_sym_class_type_token1] = ACTIONS(584), - [aux_sym_variable_definition_token1] = ACTIONS(586), - [aux_sym_variable_definition_token2] = ACTIONS(586), - [aux_sym_buffer_definition_token2] = ACTIONS(588), - [aux_sym_return_type_token2] = ACTIONS(590), - [aux_sym_argument_mode_token1] = ACTIONS(592), - [aux_sym_if_statement_token1] = ACTIONS(594), - [aux_sym_repeat_statement_token1] = ACTIONS(596), - [aux_sym__procedure_terminator_token1] = ACTIONS(598), - [aux_sym__function_terminator_token1] = ACTIONS(600), - [aux_sym_interface_statement_token1] = ACTIONS(602), - [aux_sym_using_statement_token1] = ACTIONS(604), - [aux_sym_on_error_phrase_token1] = ACTIONS(606), - [aux_sym_on_error_phrase_token3] = ACTIONS(608), - [aux_sym_do_block_token1] = ACTIONS(610), - [aux_sym__case_terminator_token1] = ACTIONS(612), - [aux_sym_find_statement_token1] = ACTIONS(614), - [aux_sym_assign_statement_token1] = ACTIONS(616), - [aux_sym_catch_statement_token1] = ACTIONS(618), - [aux_sym_finally_statement_token1] = ACTIONS(620), - [aux_sym_accumulate_statement_token1] = ACTIONS(622), - [aux_sym_error_scope_statement_token1] = ACTIONS(624), - [aux_sym_error_scope_statement_token2] = ACTIONS(624), - [aux_sym_prompt_for_statement_token1] = ACTIONS(626), - [aux_sym_var_statement_token1] = ACTIONS(628), - [aux_sym_run_statement_token1] = ACTIONS(630), + [aux_sym_input_expression_token1] = ACTIONS(483), + [aux_sym_class_type_token1] = ACTIONS(485), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(487), + [aux_sym_variable_definition_token2] = ACTIONS(487), + [aux_sym_buffer_definition_token2] = ACTIONS(489), + [aux_sym_return_type_token2] = ACTIONS(491), + [aux_sym_argument_mode_token1] = ACTIONS(493), + [aux_sym_if_statement_token1] = ACTIONS(495), + [aux_sym_repeat_statement_token1] = ACTIONS(497), + [aux_sym__procedure_terminator_token1] = ACTIONS(499), + [aux_sym__function_terminator_token1] = ACTIONS(501), + [aux_sym_interface_statement_token1] = ACTIONS(503), + [aux_sym_using_statement_token1] = ACTIONS(505), + [aux_sym_on_error_phrase_token1] = ACTIONS(507), + [aux_sym_on_error_phrase_token3] = ACTIONS(509), + [aux_sym_do_block_token1] = ACTIONS(511), + [aux_sym__case_terminator_token1] = ACTIONS(513), + [aux_sym_find_statement_token1] = ACTIONS(515), + [aux_sym_assign_statement_token1] = ACTIONS(517), + [aux_sym_catch_statement_token1] = ACTIONS(519), + [aux_sym_finally_statement_token1] = ACTIONS(521), + [aux_sym_accumulate_statement_token1] = ACTIONS(523), + [aux_sym_error_scope_statement_token1] = ACTIONS(525), + [aux_sym_error_scope_statement_token2] = ACTIONS(525), + [aux_sym_prompt_for_statement_token1] = ACTIONS(527), + [aux_sym_var_statement_token1] = ACTIONS(529), + [aux_sym_run_statement_token1] = ACTIONS(531), }, [66] = { [sym_comment] = STATE(66), - [sym_qualified_name] = STATE(6673), + [sym_qualified_name] = STATE(5477), [sym_include] = STATE(66), - [sym_assignment] = STATE(6249), - [sym_variable_definition] = STATE(4768), - [sym_variable_assignment] = STATE(4768), - [sym_buffer_definition] = STATE(4768), - [sym_query_definition] = STATE(4768), - [sym_function_call_statement] = STATE(4768), - [sym_function_call] = STATE(6247), - [sym_if_statement] = STATE(4768), - [sym_label] = STATE(4019), - [sym_repeat_statement] = STATE(4768), - [sym_procedure_statement] = STATE(4768), - [sym_procedure_parameter_definition] = STATE(4768), - [sym_function_statement] = STATE(4768), - [sym_return_statement] = STATE(4768), - [sym_interface_statement] = STATE(4768), - [sym_dataset_definition] = STATE(4768), - [sym_using_statement] = STATE(4768), - [sym_class_statement] = STATE(4768), - [sym_object_access] = STATE(5325), - [sym_member_access] = STATE(6673), - [sym_stream_definition] = STATE(4768), - [sym_input_close_statement] = STATE(4768), - [sym_output_close_statement] = STATE(4768), - [sym__stream_statement] = STATE(4768), - [sym_input_stream_statement] = STATE(4756), - [sym_output_stream_statement] = STATE(4756), - [sym_do_block] = STATE(4238), - [sym_case_statement] = STATE(4768), - [sym_for_statement] = STATE(4768), - [sym_find_statement] = STATE(4768), - [sym_abl_statement] = STATE(4768), - [sym_assign_statement] = STATE(4768), - [sym_catch_statement] = STATE(4768), - [sym_finally_statement] = STATE(4768), - [sym_accumulate_statement] = STATE(4768), - [sym_undo_statement] = STATE(4768), - [sym_error_scope_statement] = STATE(4768), - [sym_workfile_definition] = STATE(4768), - [sym_temp_table_definition] = STATE(4768), - [sym_on_statement] = STATE(4768), - [sym_prompt_for_statement] = STATE(4768), - [sym_var_statement] = STATE(4768), - [sym_button_definition] = STATE(4768), - [sym_run_statement] = STATE(4768), - [sym__statement] = STATE(4236), - [sym_identifier] = ACTIONS(476), + [sym_assignment] = STATE(6655), + [sym_variable_assignment] = STATE(4711), + [sym_variable_definition] = STATE(4711), + [sym_buffer_definition] = STATE(4711), + [sym_query_definition] = STATE(4711), + [sym_function_call_statement] = STATE(4711), + [sym_function_call] = STATE(5387), + [sym_if_statement] = STATE(4711), + [sym_label] = STATE(4132), + [sym_repeat_statement] = STATE(4711), + [sym_procedure_statement] = STATE(4711), + [sym_procedure_parameter_definition] = STATE(4711), + [sym_function_statement] = STATE(4711), + [sym_return_statement] = STATE(4711), + [sym_interface_statement] = STATE(4711), + [sym_dataset_definition] = STATE(4711), + [sym_using_statement] = STATE(4711), + [sym_class_statement] = STATE(4711), + [sym_new_expression] = STATE(5480), + [sym_object_access] = STATE(4649), + [sym_member_access] = STATE(5477), + [sym_stream_definition] = STATE(4711), + [sym_input_close_statement] = STATE(4711), + [sym_output_close_statement] = STATE(4711), + [sym__stream_statement] = STATE(4711), + [sym_input_stream_statement] = STATE(4708), + [sym_output_stream_statement] = STATE(4708), + [sym_do_block] = STATE(5367), + [sym__case_branch_body] = STATE(5332), + [sym_case_statement] = STATE(4711), + [sym_for_statement] = STATE(4711), + [sym_find_statement] = STATE(4711), + [sym_abl_statement] = STATE(4711), + [sym_assign_statement] = STATE(4711), + [sym_catch_statement] = STATE(4711), + [sym_finally_statement] = STATE(4711), + [sym_accumulate_statement] = STATE(4711), + [sym_undo_statement] = STATE(4711), + [sym_error_scope_statement] = STATE(4711), + [sym_workfile_definition] = STATE(4711), + [sym_temp_table_definition] = STATE(4711), + [sym_on_statement] = STATE(4711), + [sym_prompt_for_statement] = STATE(4711), + [sym_var_statement] = STATE(4711), + [sym_button_definition] = STATE(4711), + [sym_run_statement] = STATE(4711), + [sym__statement] = STATE(5372), + [sym_identifier] = ACTIONS(481), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(478), - [aux_sym_class_type_token1] = ACTIONS(480), - [aux_sym_variable_definition_token1] = ACTIONS(482), - [aux_sym_variable_definition_token2] = ACTIONS(482), - [aux_sym_buffer_definition_token2] = ACTIONS(484), - [aux_sym_return_type_token2] = ACTIONS(486), - [aux_sym_argument_mode_token1] = ACTIONS(488), - [aux_sym_if_statement_token1] = ACTIONS(632), - [aux_sym_repeat_statement_token1] = ACTIONS(492), - [aux_sym__procedure_terminator_token1] = ACTIONS(494), - [aux_sym__function_terminator_token1] = ACTIONS(496), - [aux_sym_interface_statement_token1] = ACTIONS(498), - [aux_sym_using_statement_token1] = ACTIONS(500), - [aux_sym_on_error_phrase_token1] = ACTIONS(502), - [aux_sym_on_error_phrase_token3] = ACTIONS(504), - [aux_sym_do_block_token1] = ACTIONS(506), - [aux_sym__case_terminator_token1] = ACTIONS(508), - [aux_sym_find_statement_token1] = ACTIONS(510), - [aux_sym_assign_statement_token1] = ACTIONS(512), - [aux_sym_catch_statement_token1] = ACTIONS(514), - [aux_sym_finally_statement_token1] = ACTIONS(516), - [aux_sym_accumulate_statement_token1] = ACTIONS(518), - [aux_sym_error_scope_statement_token1] = ACTIONS(520), - [aux_sym_error_scope_statement_token2] = ACTIONS(520), - [aux_sym_prompt_for_statement_token1] = ACTIONS(522), - [aux_sym_var_statement_token1] = ACTIONS(524), - [aux_sym_run_statement_token1] = ACTIONS(526), + [aux_sym_input_expression_token1] = ACTIONS(483), + [aux_sym_class_type_token1] = ACTIONS(485), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(487), + [aux_sym_variable_definition_token2] = ACTIONS(487), + [aux_sym_buffer_definition_token2] = ACTIONS(489), + [aux_sym_return_type_token2] = ACTIONS(491), + [aux_sym_argument_mode_token1] = ACTIONS(493), + [aux_sym_if_statement_token1] = ACTIONS(495), + [aux_sym_repeat_statement_token1] = ACTIONS(497), + [aux_sym__procedure_terminator_token1] = ACTIONS(499), + [aux_sym__function_terminator_token1] = ACTIONS(501), + [aux_sym_interface_statement_token1] = ACTIONS(503), + [aux_sym_using_statement_token1] = ACTIONS(505), + [aux_sym_on_error_phrase_token1] = ACTIONS(507), + [aux_sym_on_error_phrase_token3] = ACTIONS(509), + [aux_sym_do_block_token1] = ACTIONS(511), + [aux_sym__case_terminator_token1] = ACTIONS(513), + [aux_sym_find_statement_token1] = ACTIONS(515), + [aux_sym_assign_statement_token1] = ACTIONS(517), + [aux_sym_catch_statement_token1] = ACTIONS(519), + [aux_sym_finally_statement_token1] = ACTIONS(521), + [aux_sym_accumulate_statement_token1] = ACTIONS(523), + [aux_sym_error_scope_statement_token1] = ACTIONS(525), + [aux_sym_error_scope_statement_token2] = ACTIONS(525), + [aux_sym_prompt_for_statement_token1] = ACTIONS(527), + [aux_sym_var_statement_token1] = ACTIONS(529), + [aux_sym_run_statement_token1] = ACTIONS(531), }, [67] = { [sym_comment] = STATE(67), - [sym_qualified_name] = STATE(6673), + [sym_qualified_name] = STATE(5477), [sym_include] = STATE(67), - [sym_assignment] = STATE(6182), - [sym_variable_definition] = STATE(1875), - [sym_variable_assignment] = STATE(1875), - [sym_buffer_definition] = STATE(1875), - [sym_query_definition] = STATE(1875), - [sym_function_call_statement] = STATE(1875), - [sym_function_call] = STATE(6190), - [sym_if_statement] = STATE(1875), - [sym_label] = STATE(1876), - [sym_repeat_statement] = STATE(1875), - [sym_procedure_statement] = STATE(1875), - [sym_procedure_parameter_definition] = STATE(1875), - [sym_function_statement] = STATE(1875), - [sym_return_statement] = STATE(1875), - [sym_interface_statement] = STATE(1875), - [sym_dataset_definition] = STATE(1875), - [sym_using_statement] = STATE(1875), - [sym_class_statement] = STATE(1875), - [sym_object_access] = STATE(5325), - [sym_member_access] = STATE(6673), - [sym_stream_definition] = STATE(1875), - [sym_input_close_statement] = STATE(1875), - [sym_output_close_statement] = STATE(1875), - [sym__stream_statement] = STATE(1875), - [sym_input_stream_statement] = STATE(1877), - [sym_output_stream_statement] = STATE(1877), - [sym_do_block] = STATE(1977), - [sym_case_statement] = STATE(1875), - [sym_for_statement] = STATE(1875), - [sym_find_statement] = STATE(1875), - [sym_abl_statement] = STATE(1875), - [sym_assign_statement] = STATE(1875), - [sym_catch_statement] = STATE(1875), - [sym_finally_statement] = STATE(1875), - [sym_accumulate_statement] = STATE(1875), - [sym_undo_statement] = STATE(1875), - [sym_error_scope_statement] = STATE(1875), - [sym_workfile_definition] = STATE(1875), - [sym_temp_table_definition] = STATE(1875), - [sym_on_statement] = STATE(1875), - [sym_prompt_for_statement] = STATE(1875), - [sym_var_statement] = STATE(1875), - [sym_button_definition] = STATE(1875), - [sym_run_statement] = STATE(1875), - [sym__statement] = STATE(1993), - [sym_identifier] = ACTIONS(580), + [sym_assignment] = STATE(6520), + [sym_variable_assignment] = STATE(1882), + [sym_variable_definition] = STATE(1882), + [sym_buffer_definition] = STATE(1882), + [sym_query_definition] = STATE(1882), + [sym_function_call_statement] = STATE(1882), + [sym_function_call] = STATE(5336), + [sym_if_statement] = STATE(1882), + [sym_label] = STATE(1883), + [sym_repeat_statement] = STATE(1882), + [sym_procedure_statement] = STATE(1882), + [sym_procedure_parameter_definition] = STATE(1882), + [sym_function_statement] = STATE(1882), + [sym_return_statement] = STATE(1882), + [sym_interface_statement] = STATE(1882), + [sym_dataset_definition] = STATE(1882), + [sym_using_statement] = STATE(1882), + [sym_class_statement] = STATE(1882), + [sym_new_expression] = STATE(5480), + [sym_object_access] = STATE(4649), + [sym_member_access] = STATE(5477), + [sym_stream_definition] = STATE(1882), + [sym_input_close_statement] = STATE(1882), + [sym_output_close_statement] = STATE(1882), + [sym__stream_statement] = STATE(1882), + [sym_input_stream_statement] = STATE(1884), + [sym_output_stream_statement] = STATE(1884), + [sym_do_block] = STATE(1905), + [sym_case_statement] = STATE(1882), + [sym_for_statement] = STATE(1882), + [sym_find_statement] = STATE(1882), + [sym_abl_statement] = STATE(1882), + [sym_assign_statement] = STATE(1882), + [sym_catch_statement] = STATE(1882), + [sym_finally_statement] = STATE(1882), + [sym_accumulate_statement] = STATE(1882), + [sym_undo_statement] = STATE(1882), + [sym_error_scope_statement] = STATE(1882), + [sym_workfile_definition] = STATE(1882), + [sym_temp_table_definition] = STATE(1882), + [sym_on_statement] = STATE(1882), + [sym_prompt_for_statement] = STATE(1882), + [sym_var_statement] = STATE(1882), + [sym_button_definition] = STATE(1882), + [sym_run_statement] = STATE(1882), + [sym__statement] = STATE(1906), + [sym_identifier] = ACTIONS(533), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(582), - [aux_sym_class_type_token1] = ACTIONS(584), - [aux_sym_variable_definition_token1] = ACTIONS(586), - [aux_sym_variable_definition_token2] = ACTIONS(586), - [aux_sym_buffer_definition_token2] = ACTIONS(588), - [aux_sym_return_type_token2] = ACTIONS(590), - [aux_sym_argument_mode_token1] = ACTIONS(592), - [aux_sym_if_statement_token1] = ACTIONS(634), - [aux_sym_repeat_statement_token1] = ACTIONS(596), - [aux_sym__procedure_terminator_token1] = ACTIONS(598), - [aux_sym__function_terminator_token1] = ACTIONS(600), - [aux_sym_interface_statement_token1] = ACTIONS(602), - [aux_sym_using_statement_token1] = ACTIONS(604), - [aux_sym_on_error_phrase_token1] = ACTIONS(606), - [aux_sym_on_error_phrase_token3] = ACTIONS(608), - [aux_sym_do_block_token1] = ACTIONS(610), - [aux_sym__case_terminator_token1] = ACTIONS(612), - [aux_sym_find_statement_token1] = ACTIONS(614), - [aux_sym_assign_statement_token1] = ACTIONS(616), - [aux_sym_catch_statement_token1] = ACTIONS(618), - [aux_sym_finally_statement_token1] = ACTIONS(620), - [aux_sym_accumulate_statement_token1] = ACTIONS(622), - [aux_sym_error_scope_statement_token1] = ACTIONS(624), - [aux_sym_error_scope_statement_token2] = ACTIONS(624), - [aux_sym_prompt_for_statement_token1] = ACTIONS(626), - [aux_sym_var_statement_token1] = ACTIONS(628), - [aux_sym_run_statement_token1] = ACTIONS(630), + [aux_sym_input_expression_token1] = ACTIONS(535), + [aux_sym_class_type_token1] = ACTIONS(537), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(539), + [aux_sym_variable_definition_token2] = ACTIONS(539), + [aux_sym_buffer_definition_token2] = ACTIONS(541), + [aux_sym_return_type_token2] = ACTIONS(543), + [aux_sym_argument_mode_token1] = ACTIONS(545), + [aux_sym_if_statement_token1] = ACTIONS(547), + [aux_sym_repeat_statement_token1] = ACTIONS(549), + [aux_sym__procedure_terminator_token1] = ACTIONS(551), + [aux_sym__function_terminator_token1] = ACTIONS(553), + [aux_sym_interface_statement_token1] = ACTIONS(555), + [aux_sym_using_statement_token1] = ACTIONS(557), + [aux_sym_on_error_phrase_token1] = ACTIONS(559), + [aux_sym_on_error_phrase_token3] = ACTIONS(561), + [aux_sym_do_block_token1] = ACTIONS(563), + [aux_sym__case_terminator_token1] = ACTIONS(565), + [aux_sym_find_statement_token1] = ACTIONS(567), + [aux_sym_assign_statement_token1] = ACTIONS(569), + [aux_sym_catch_statement_token1] = ACTIONS(571), + [aux_sym_finally_statement_token1] = ACTIONS(573), + [aux_sym_accumulate_statement_token1] = ACTIONS(575), + [aux_sym_error_scope_statement_token1] = ACTIONS(577), + [aux_sym_error_scope_statement_token2] = ACTIONS(577), + [aux_sym_prompt_for_statement_token1] = ACTIONS(579), + [aux_sym_var_statement_token1] = ACTIONS(581), + [aux_sym_run_statement_token1] = ACTIONS(583), }, [68] = { [sym_comment] = STATE(68), - [sym_qualified_name] = STATE(6673), + [sym_qualified_name] = STATE(5477), [sym_include] = STATE(68), - [sym_assignment] = STATE(6695), - [sym_variable_definition] = STATE(1797), - [sym_variable_assignment] = STATE(1797), - [sym_buffer_definition] = STATE(1797), - [sym_query_definition] = STATE(1797), - [sym_function_call_statement] = STATE(1797), - [sym_function_call] = STATE(6689), - [sym_if_statement] = STATE(1797), - [sym_label] = STATE(1792), - [sym_repeat_statement] = STATE(1797), - [sym_procedure_statement] = STATE(1797), - [sym_procedure_parameter_definition] = STATE(1797), - [sym_function_statement] = STATE(1797), - [sym_return_statement] = STATE(1797), - [sym_interface_statement] = STATE(1797), - [sym_dataset_definition] = STATE(1797), - [sym_using_statement] = STATE(1797), - [sym_class_statement] = STATE(1797), - [sym_object_access] = STATE(5325), - [sym_member_access] = STATE(6673), - [sym_stream_definition] = STATE(1797), - [sym_input_close_statement] = STATE(1797), - [sym_output_close_statement] = STATE(1797), - [sym__stream_statement] = STATE(1797), - [sym_input_stream_statement] = STATE(1791), - [sym_output_stream_statement] = STATE(1791), - [sym_do_block] = STATE(1491), - [sym_case_statement] = STATE(1797), - [sym_for_statement] = STATE(1797), - [sym_find_statement] = STATE(1797), - [sym_abl_statement] = STATE(1797), - [sym_assign_statement] = STATE(1797), - [sym_catch_statement] = STATE(1797), - [sym_finally_statement] = STATE(1797), - [sym_accumulate_statement] = STATE(1797), - [sym_undo_statement] = STATE(1797), - [sym_error_scope_statement] = STATE(1797), - [sym_workfile_definition] = STATE(1797), - [sym_temp_table_definition] = STATE(1797), - [sym_on_statement] = STATE(1797), - [sym_prompt_for_statement] = STATE(1797), - [sym_var_statement] = STATE(1797), - [sym_button_definition] = STATE(1797), - [sym_run_statement] = STATE(1797), - [sym__statement] = STATE(1490), - [sym_identifier] = ACTIONS(528), + [sym_assignment] = STATE(6324), + [sym_variable_assignment] = STATE(1760), + [sym_variable_definition] = STATE(1760), + [sym_buffer_definition] = STATE(1760), + [sym_query_definition] = STATE(1760), + [sym_function_call_statement] = STATE(1760), + [sym_function_call] = STATE(5175), + [sym_if_statement] = STATE(1760), + [sym_label] = STATE(1759), + [sym_repeat_statement] = STATE(1760), + [sym_procedure_statement] = STATE(1760), + [sym_procedure_parameter_definition] = STATE(1760), + [sym_function_statement] = STATE(1760), + [sym_return_statement] = STATE(1760), + [sym_interface_statement] = STATE(1760), + [sym_dataset_definition] = STATE(1760), + [sym_using_statement] = STATE(1760), + [sym_class_statement] = STATE(1760), + [sym_new_expression] = STATE(5480), + [sym_object_access] = STATE(4649), + [sym_member_access] = STATE(5477), + [sym_stream_definition] = STATE(1760), + [sym_input_close_statement] = STATE(1760), + [sym_output_close_statement] = STATE(1760), + [sym__stream_statement] = STATE(1760), + [sym_input_stream_statement] = STATE(1754), + [sym_output_stream_statement] = STATE(1754), + [sym_do_block] = STATE(1483), + [sym_case_statement] = STATE(1760), + [sym_for_statement] = STATE(1760), + [sym_find_statement] = STATE(1760), + [sym_abl_statement] = STATE(1760), + [sym_assign_statement] = STATE(1760), + [sym_catch_statement] = STATE(1760), + [sym_finally_statement] = STATE(1760), + [sym_accumulate_statement] = STATE(1760), + [sym_undo_statement] = STATE(1760), + [sym_error_scope_statement] = STATE(1760), + [sym_workfile_definition] = STATE(1760), + [sym_temp_table_definition] = STATE(1760), + [sym_on_statement] = STATE(1760), + [sym_prompt_for_statement] = STATE(1760), + [sym_var_statement] = STATE(1760), + [sym_button_definition] = STATE(1760), + [sym_run_statement] = STATE(1760), + [sym__statement] = STATE(1477), + [sym_identifier] = ACTIONS(585), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(530), - [aux_sym_class_type_token1] = ACTIONS(532), - [aux_sym_variable_definition_token1] = ACTIONS(534), - [aux_sym_variable_definition_token2] = ACTIONS(534), - [aux_sym_buffer_definition_token2] = ACTIONS(536), - [aux_sym_return_type_token2] = ACTIONS(538), - [aux_sym_argument_mode_token1] = ACTIONS(540), - [aux_sym_if_statement_token1] = ACTIONS(542), - [aux_sym_repeat_statement_token1] = ACTIONS(544), - [aux_sym__procedure_terminator_token1] = ACTIONS(546), - [aux_sym__function_terminator_token1] = ACTIONS(548), - [aux_sym_interface_statement_token1] = ACTIONS(550), - [aux_sym_using_statement_token1] = ACTIONS(552), - [aux_sym_on_error_phrase_token1] = ACTIONS(554), - [aux_sym_on_error_phrase_token3] = ACTIONS(556), - [aux_sym_do_block_token1] = ACTIONS(558), - [aux_sym__case_terminator_token1] = ACTIONS(560), - [aux_sym_find_statement_token1] = ACTIONS(562), - [aux_sym_assign_statement_token1] = ACTIONS(564), - [aux_sym_catch_statement_token1] = ACTIONS(566), - [aux_sym_finally_statement_token1] = ACTIONS(568), - [aux_sym_accumulate_statement_token1] = ACTIONS(570), - [aux_sym_error_scope_statement_token1] = ACTIONS(572), - [aux_sym_error_scope_statement_token2] = ACTIONS(572), - [aux_sym_prompt_for_statement_token1] = ACTIONS(574), - [aux_sym_var_statement_token1] = ACTIONS(576), - [aux_sym_run_statement_token1] = ACTIONS(578), + [aux_sym_input_expression_token1] = ACTIONS(587), + [aux_sym_class_type_token1] = ACTIONS(589), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(591), + [aux_sym_variable_definition_token2] = ACTIONS(591), + [aux_sym_buffer_definition_token2] = ACTIONS(593), + [aux_sym_return_type_token2] = ACTIONS(595), + [aux_sym_argument_mode_token1] = ACTIONS(597), + [aux_sym_if_statement_token1] = ACTIONS(599), + [aux_sym_repeat_statement_token1] = ACTIONS(601), + [aux_sym__procedure_terminator_token1] = ACTIONS(603), + [aux_sym__function_terminator_token1] = ACTIONS(605), + [aux_sym_interface_statement_token1] = ACTIONS(607), + [aux_sym_using_statement_token1] = ACTIONS(609), + [aux_sym_on_error_phrase_token1] = ACTIONS(611), + [aux_sym_on_error_phrase_token3] = ACTIONS(613), + [aux_sym_do_block_token1] = ACTIONS(615), + [aux_sym__case_terminator_token1] = ACTIONS(617), + [aux_sym_find_statement_token1] = ACTIONS(619), + [aux_sym_assign_statement_token1] = ACTIONS(621), + [aux_sym_catch_statement_token1] = ACTIONS(623), + [aux_sym_finally_statement_token1] = ACTIONS(625), + [aux_sym_accumulate_statement_token1] = ACTIONS(627), + [aux_sym_error_scope_statement_token1] = ACTIONS(629), + [aux_sym_error_scope_statement_token2] = ACTIONS(629), + [aux_sym_prompt_for_statement_token1] = ACTIONS(631), + [aux_sym_var_statement_token1] = ACTIONS(633), + [aux_sym_run_statement_token1] = ACTIONS(635), }, [69] = { [sym_comment] = STATE(69), - [sym_qualified_name] = STATE(6673), + [sym_qualified_name] = STATE(5477), [sym_include] = STATE(69), - [sym_assignment] = STATE(6249), - [sym_variable_definition] = STATE(4768), - [sym_variable_assignment] = STATE(4768), - [sym_buffer_definition] = STATE(4768), - [sym_query_definition] = STATE(4768), - [sym_function_call_statement] = STATE(4768), - [sym_function_call] = STATE(6247), - [sym_if_statement] = STATE(4768), - [sym_label] = STATE(4019), - [sym_repeat_statement] = STATE(4768), - [sym_procedure_statement] = STATE(4768), - [sym_procedure_parameter_definition] = STATE(4768), - [sym_function_statement] = STATE(4768), - [sym_return_statement] = STATE(4768), - [sym_interface_statement] = STATE(4768), - [sym_dataset_definition] = STATE(4768), - [sym_using_statement] = STATE(4768), - [sym_class_statement] = STATE(4768), - [sym_object_access] = STATE(5325), - [sym_member_access] = STATE(6673), - [sym_stream_definition] = STATE(4768), - [sym_input_close_statement] = STATE(4768), - [sym_output_close_statement] = STATE(4768), - [sym__stream_statement] = STATE(4768), - [sym_input_stream_statement] = STATE(4756), - [sym_output_stream_statement] = STATE(4756), - [sym_do_block] = STATE(4635), - [sym_case_statement] = STATE(4768), - [sym_for_statement] = STATE(4768), - [sym_find_statement] = STATE(4768), - [sym_abl_statement] = STATE(4768), - [sym_assign_statement] = STATE(4768), - [sym_catch_statement] = STATE(4768), - [sym_finally_statement] = STATE(4768), - [sym_accumulate_statement] = STATE(4768), - [sym_undo_statement] = STATE(4768), - [sym_error_scope_statement] = STATE(4768), - [sym_workfile_definition] = STATE(4768), - [sym_temp_table_definition] = STATE(4768), - [sym_on_statement] = STATE(4768), - [sym_prompt_for_statement] = STATE(4768), - [sym_var_statement] = STATE(4768), - [sym_button_definition] = STATE(4768), - [sym_run_statement] = STATE(4768), - [sym__statement] = STATE(4651), - [sym_identifier] = ACTIONS(476), + [sym_assignment] = STATE(6520), + [sym_variable_assignment] = STATE(1882), + [sym_variable_definition] = STATE(1882), + [sym_buffer_definition] = STATE(1882), + [sym_query_definition] = STATE(1882), + [sym_function_call_statement] = STATE(1882), + [sym_function_call] = STATE(5336), + [sym_if_statement] = STATE(1882), + [sym_label] = STATE(1883), + [sym_repeat_statement] = STATE(1882), + [sym_procedure_statement] = STATE(1882), + [sym_procedure_parameter_definition] = STATE(1882), + [sym_function_statement] = STATE(1882), + [sym_return_statement] = STATE(1882), + [sym_interface_statement] = STATE(1882), + [sym_dataset_definition] = STATE(1882), + [sym_using_statement] = STATE(1882), + [sym_class_statement] = STATE(1882), + [sym_new_expression] = STATE(5480), + [sym_object_access] = STATE(4649), + [sym_member_access] = STATE(5477), + [sym_stream_definition] = STATE(1882), + [sym_input_close_statement] = STATE(1882), + [sym_output_close_statement] = STATE(1882), + [sym__stream_statement] = STATE(1882), + [sym_input_stream_statement] = STATE(1884), + [sym_output_stream_statement] = STATE(1884), + [sym_do_block] = STATE(1493), + [sym_case_statement] = STATE(1882), + [sym_for_statement] = STATE(1882), + [sym_find_statement] = STATE(1882), + [sym_abl_statement] = STATE(1882), + [sym_assign_statement] = STATE(1882), + [sym_catch_statement] = STATE(1882), + [sym_finally_statement] = STATE(1882), + [sym_accumulate_statement] = STATE(1882), + [sym_undo_statement] = STATE(1882), + [sym_error_scope_statement] = STATE(1882), + [sym_workfile_definition] = STATE(1882), + [sym_temp_table_definition] = STATE(1882), + [sym_on_statement] = STATE(1882), + [sym_prompt_for_statement] = STATE(1882), + [sym_var_statement] = STATE(1882), + [sym_button_definition] = STATE(1882), + [sym_run_statement] = STATE(1882), + [sym__statement] = STATE(1491), + [sym_identifier] = ACTIONS(533), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(478), - [aux_sym_class_type_token1] = ACTIONS(480), - [aux_sym_variable_definition_token1] = ACTIONS(482), - [aux_sym_variable_definition_token2] = ACTIONS(482), - [aux_sym_buffer_definition_token2] = ACTIONS(484), - [aux_sym_return_type_token2] = ACTIONS(486), - [aux_sym_argument_mode_token1] = ACTIONS(488), - [aux_sym_if_statement_token1] = ACTIONS(636), - [aux_sym_repeat_statement_token1] = ACTIONS(492), - [aux_sym__procedure_terminator_token1] = ACTIONS(494), - [aux_sym__function_terminator_token1] = ACTIONS(496), - [aux_sym_interface_statement_token1] = ACTIONS(498), - [aux_sym_using_statement_token1] = ACTIONS(500), - [aux_sym_on_error_phrase_token1] = ACTIONS(502), - [aux_sym_on_error_phrase_token3] = ACTIONS(504), - [aux_sym_do_block_token1] = ACTIONS(506), - [aux_sym__case_terminator_token1] = ACTIONS(508), - [aux_sym_find_statement_token1] = ACTIONS(510), - [aux_sym_assign_statement_token1] = ACTIONS(512), - [aux_sym_catch_statement_token1] = ACTIONS(514), - [aux_sym_finally_statement_token1] = ACTIONS(516), - [aux_sym_accumulate_statement_token1] = ACTIONS(518), - [aux_sym_error_scope_statement_token1] = ACTIONS(520), - [aux_sym_error_scope_statement_token2] = ACTIONS(520), - [aux_sym_prompt_for_statement_token1] = ACTIONS(522), - [aux_sym_var_statement_token1] = ACTIONS(524), - [aux_sym_run_statement_token1] = ACTIONS(526), + [aux_sym_input_expression_token1] = ACTIONS(535), + [aux_sym_class_type_token1] = ACTIONS(537), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(539), + [aux_sym_variable_definition_token2] = ACTIONS(539), + [aux_sym_buffer_definition_token2] = ACTIONS(541), + [aux_sym_return_type_token2] = ACTIONS(543), + [aux_sym_argument_mode_token1] = ACTIONS(545), + [aux_sym_if_statement_token1] = ACTIONS(637), + [aux_sym_repeat_statement_token1] = ACTIONS(549), + [aux_sym__procedure_terminator_token1] = ACTIONS(551), + [aux_sym__function_terminator_token1] = ACTIONS(553), + [aux_sym_interface_statement_token1] = ACTIONS(555), + [aux_sym_using_statement_token1] = ACTIONS(557), + [aux_sym_on_error_phrase_token1] = ACTIONS(559), + [aux_sym_on_error_phrase_token3] = ACTIONS(561), + [aux_sym_do_block_token1] = ACTIONS(563), + [aux_sym__case_terminator_token1] = ACTIONS(565), + [aux_sym_find_statement_token1] = ACTIONS(567), + [aux_sym_assign_statement_token1] = ACTIONS(569), + [aux_sym_catch_statement_token1] = ACTIONS(571), + [aux_sym_finally_statement_token1] = ACTIONS(573), + [aux_sym_accumulate_statement_token1] = ACTIONS(575), + [aux_sym_error_scope_statement_token1] = ACTIONS(577), + [aux_sym_error_scope_statement_token2] = ACTIONS(577), + [aux_sym_prompt_for_statement_token1] = ACTIONS(579), + [aux_sym_var_statement_token1] = ACTIONS(581), + [aux_sym_run_statement_token1] = ACTIONS(583), }, [70] = { [sym_comment] = STATE(70), - [sym_qualified_name] = STATE(6673), + [sym_qualified_name] = STATE(5477), [sym_include] = STATE(70), - [sym_assignment] = STATE(6695), - [sym_variable_definition] = STATE(1797), - [sym_variable_assignment] = STATE(1797), - [sym_buffer_definition] = STATE(1797), - [sym_query_definition] = STATE(1797), - [sym_function_call_statement] = STATE(1797), - [sym_function_call] = STATE(6689), - [sym_if_statement] = STATE(1797), - [sym_label] = STATE(1792), - [sym_repeat_statement] = STATE(1797), - [sym_procedure_statement] = STATE(1797), - [sym_procedure_parameter_definition] = STATE(1797), - [sym_function_statement] = STATE(1797), - [sym_return_statement] = STATE(1797), - [sym_interface_statement] = STATE(1797), - [sym_dataset_definition] = STATE(1797), - [sym_using_statement] = STATE(1797), - [sym_class_statement] = STATE(1797), - [sym_object_access] = STATE(5325), - [sym_member_access] = STATE(6673), - [sym_stream_definition] = STATE(1797), - [sym_input_close_statement] = STATE(1797), - [sym_output_close_statement] = STATE(1797), - [sym__stream_statement] = STATE(1797), - [sym_input_stream_statement] = STATE(1791), - [sym_output_stream_statement] = STATE(1791), - [sym_do_block] = STATE(1769), - [sym_case_statement] = STATE(1797), - [sym_for_statement] = STATE(1797), - [sym_find_statement] = STATE(1797), - [sym_abl_statement] = STATE(1797), - [sym_assign_statement] = STATE(1797), - [sym_catch_statement] = STATE(1797), - [sym_finally_statement] = STATE(1797), - [sym_accumulate_statement] = STATE(1797), - [sym_undo_statement] = STATE(1797), - [sym_error_scope_statement] = STATE(1797), - [sym_workfile_definition] = STATE(1797), - [sym_temp_table_definition] = STATE(1797), - [sym_on_statement] = STATE(1797), - [sym_prompt_for_statement] = STATE(1797), - [sym_var_statement] = STATE(1797), - [sym_button_definition] = STATE(1797), - [sym_run_statement] = STATE(1797), - [sym__statement] = STATE(1770), - [sym_identifier] = ACTIONS(528), + [sym_assignment] = STATE(6324), + [sym_variable_assignment] = STATE(1760), + [sym_variable_definition] = STATE(1760), + [sym_buffer_definition] = STATE(1760), + [sym_query_definition] = STATE(1760), + [sym_function_call_statement] = STATE(1760), + [sym_function_call] = STATE(5175), + [sym_if_statement] = STATE(1760), + [sym_label] = STATE(1759), + [sym_repeat_statement] = STATE(1760), + [sym_procedure_statement] = STATE(1760), + [sym_procedure_parameter_definition] = STATE(1760), + [sym_function_statement] = STATE(1760), + [sym_return_statement] = STATE(1760), + [sym_interface_statement] = STATE(1760), + [sym_dataset_definition] = STATE(1760), + [sym_using_statement] = STATE(1760), + [sym_class_statement] = STATE(1760), + [sym_new_expression] = STATE(5480), + [sym_object_access] = STATE(4649), + [sym_member_access] = STATE(5477), + [sym_stream_definition] = STATE(1760), + [sym_input_close_statement] = STATE(1760), + [sym_output_close_statement] = STATE(1760), + [sym__stream_statement] = STATE(1760), + [sym_input_stream_statement] = STATE(1754), + [sym_output_stream_statement] = STATE(1754), + [sym_do_block] = STATE(1776), + [sym_case_statement] = STATE(1760), + [sym_for_statement] = STATE(1760), + [sym_find_statement] = STATE(1760), + [sym_abl_statement] = STATE(1760), + [sym_assign_statement] = STATE(1760), + [sym_catch_statement] = STATE(1760), + [sym_finally_statement] = STATE(1760), + [sym_accumulate_statement] = STATE(1760), + [sym_undo_statement] = STATE(1760), + [sym_error_scope_statement] = STATE(1760), + [sym_workfile_definition] = STATE(1760), + [sym_temp_table_definition] = STATE(1760), + [sym_on_statement] = STATE(1760), + [sym_prompt_for_statement] = STATE(1760), + [sym_var_statement] = STATE(1760), + [sym_button_definition] = STATE(1760), + [sym_run_statement] = STATE(1760), + [sym__statement] = STATE(1777), + [sym_identifier] = ACTIONS(585), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(530), - [aux_sym_class_type_token1] = ACTIONS(532), - [aux_sym_variable_definition_token1] = ACTIONS(534), - [aux_sym_variable_definition_token2] = ACTIONS(534), - [aux_sym_buffer_definition_token2] = ACTIONS(536), - [aux_sym_return_type_token2] = ACTIONS(538), - [aux_sym_argument_mode_token1] = ACTIONS(540), - [aux_sym_if_statement_token1] = ACTIONS(638), - [aux_sym_repeat_statement_token1] = ACTIONS(544), - [aux_sym__procedure_terminator_token1] = ACTIONS(546), - [aux_sym__function_terminator_token1] = ACTIONS(548), - [aux_sym_interface_statement_token1] = ACTIONS(550), - [aux_sym_using_statement_token1] = ACTIONS(552), - [aux_sym_on_error_phrase_token1] = ACTIONS(554), - [aux_sym_on_error_phrase_token3] = ACTIONS(556), - [aux_sym_do_block_token1] = ACTIONS(558), - [aux_sym__case_terminator_token1] = ACTIONS(560), - [aux_sym_find_statement_token1] = ACTIONS(562), - [aux_sym_assign_statement_token1] = ACTIONS(564), - [aux_sym_catch_statement_token1] = ACTIONS(566), - [aux_sym_finally_statement_token1] = ACTIONS(568), - [aux_sym_accumulate_statement_token1] = ACTIONS(570), - [aux_sym_error_scope_statement_token1] = ACTIONS(572), - [aux_sym_error_scope_statement_token2] = ACTIONS(572), - [aux_sym_prompt_for_statement_token1] = ACTIONS(574), - [aux_sym_var_statement_token1] = ACTIONS(576), - [aux_sym_run_statement_token1] = ACTIONS(578), + [aux_sym_input_expression_token1] = ACTIONS(587), + [aux_sym_class_type_token1] = ACTIONS(589), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(591), + [aux_sym_variable_definition_token2] = ACTIONS(591), + [aux_sym_buffer_definition_token2] = ACTIONS(593), + [aux_sym_return_type_token2] = ACTIONS(595), + [aux_sym_argument_mode_token1] = ACTIONS(597), + [aux_sym_if_statement_token1] = ACTIONS(639), + [aux_sym_repeat_statement_token1] = ACTIONS(601), + [aux_sym__procedure_terminator_token1] = ACTIONS(603), + [aux_sym__function_terminator_token1] = ACTIONS(605), + [aux_sym_interface_statement_token1] = ACTIONS(607), + [aux_sym_using_statement_token1] = ACTIONS(609), + [aux_sym_on_error_phrase_token1] = ACTIONS(611), + [aux_sym_on_error_phrase_token3] = ACTIONS(613), + [aux_sym_do_block_token1] = ACTIONS(615), + [aux_sym__case_terminator_token1] = ACTIONS(617), + [aux_sym_find_statement_token1] = ACTIONS(619), + [aux_sym_assign_statement_token1] = ACTIONS(621), + [aux_sym_catch_statement_token1] = ACTIONS(623), + [aux_sym_finally_statement_token1] = ACTIONS(625), + [aux_sym_accumulate_statement_token1] = ACTIONS(627), + [aux_sym_error_scope_statement_token1] = ACTIONS(629), + [aux_sym_error_scope_statement_token2] = ACTIONS(629), + [aux_sym_prompt_for_statement_token1] = ACTIONS(631), + [aux_sym_var_statement_token1] = ACTIONS(633), + [aux_sym_run_statement_token1] = ACTIONS(635), }, [71] = { [sym_comment] = STATE(71), - [sym_qualified_name] = STATE(6673), + [sym_qualified_name] = STATE(5477), [sym_include] = STATE(71), - [sym_assignment] = STATE(6249), - [sym_variable_definition] = STATE(4768), - [sym_variable_assignment] = STATE(4768), - [sym_buffer_definition] = STATE(4768), - [sym_query_definition] = STATE(4768), - [sym_function_call_statement] = STATE(4768), - [sym_function_call] = STATE(6247), - [sym_if_statement] = STATE(4768), - [sym_label] = STATE(4019), - [sym_repeat_statement] = STATE(4768), - [sym_procedure_statement] = STATE(4768), - [sym_procedure_parameter_definition] = STATE(4768), - [sym_function_statement] = STATE(4768), - [sym_return_statement] = STATE(4768), - [sym_interface_statement] = STATE(4768), - [sym_dataset_definition] = STATE(4768), - [sym_using_statement] = STATE(4768), - [sym_class_statement] = STATE(4768), - [sym_object_access] = STATE(5325), - [sym_member_access] = STATE(6673), - [sym_stream_definition] = STATE(4768), - [sym_input_close_statement] = STATE(4768), - [sym_output_close_statement] = STATE(4768), - [sym__stream_statement] = STATE(4768), - [sym_input_stream_statement] = STATE(4756), - [sym_output_stream_statement] = STATE(4756), - [sym_do_block] = STATE(4284), - [sym_case_statement] = STATE(4768), - [sym_for_statement] = STATE(4768), - [sym_find_statement] = STATE(4768), - [sym_abl_statement] = STATE(4768), - [sym_assign_statement] = STATE(4768), - [sym_catch_statement] = STATE(4768), - [sym_finally_statement] = STATE(4768), - [sym_accumulate_statement] = STATE(4768), - [sym_undo_statement] = STATE(4768), - [sym_error_scope_statement] = STATE(4768), - [sym_workfile_definition] = STATE(4768), - [sym_temp_table_definition] = STATE(4768), - [sym_on_statement] = STATE(4768), - [sym_prompt_for_statement] = STATE(4768), - [sym_var_statement] = STATE(4768), - [sym_button_definition] = STATE(4768), - [sym_run_statement] = STATE(4768), - [sym__statement] = STATE(4266), - [sym_identifier] = ACTIONS(476), + [sym_assignment] = STATE(6520), + [sym_variable_assignment] = STATE(1882), + [sym_variable_definition] = STATE(1882), + [sym_buffer_definition] = STATE(1882), + [sym_query_definition] = STATE(1882), + [sym_function_call_statement] = STATE(1882), + [sym_function_call] = STATE(5336), + [sym_if_statement] = STATE(1882), + [sym_label] = STATE(1883), + [sym_repeat_statement] = STATE(1882), + [sym_procedure_statement] = STATE(1882), + [sym_procedure_parameter_definition] = STATE(1882), + [sym_function_statement] = STATE(1882), + [sym_return_statement] = STATE(1882), + [sym_interface_statement] = STATE(1882), + [sym_dataset_definition] = STATE(1882), + [sym_using_statement] = STATE(1882), + [sym_class_statement] = STATE(1882), + [sym_new_expression] = STATE(5480), + [sym_object_access] = STATE(4649), + [sym_member_access] = STATE(5477), + [sym_stream_definition] = STATE(1882), + [sym_input_close_statement] = STATE(1882), + [sym_output_close_statement] = STATE(1882), + [sym__stream_statement] = STATE(1882), + [sym_input_stream_statement] = STATE(1884), + [sym_output_stream_statement] = STATE(1884), + [sym_do_block] = STATE(1495), + [sym_case_statement] = STATE(1882), + [sym_for_statement] = STATE(1882), + [sym_find_statement] = STATE(1882), + [sym_abl_statement] = STATE(1882), + [sym_assign_statement] = STATE(1882), + [sym_catch_statement] = STATE(1882), + [sym_finally_statement] = STATE(1882), + [sym_accumulate_statement] = STATE(1882), + [sym_undo_statement] = STATE(1882), + [sym_error_scope_statement] = STATE(1882), + [sym_workfile_definition] = STATE(1882), + [sym_temp_table_definition] = STATE(1882), + [sym_on_statement] = STATE(1882), + [sym_prompt_for_statement] = STATE(1882), + [sym_var_statement] = STATE(1882), + [sym_button_definition] = STATE(1882), + [sym_run_statement] = STATE(1882), + [sym__statement] = STATE(1487), + [sym_identifier] = ACTIONS(533), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(478), - [aux_sym_class_type_token1] = ACTIONS(480), - [aux_sym_variable_definition_token1] = ACTIONS(482), - [aux_sym_variable_definition_token2] = ACTIONS(482), - [aux_sym_buffer_definition_token2] = ACTIONS(484), - [aux_sym_return_type_token2] = ACTIONS(486), - [aux_sym_argument_mode_token1] = ACTIONS(488), - [aux_sym_if_statement_token1] = ACTIONS(632), - [aux_sym_repeat_statement_token1] = ACTIONS(492), - [aux_sym__procedure_terminator_token1] = ACTIONS(494), - [aux_sym__function_terminator_token1] = ACTIONS(496), - [aux_sym_interface_statement_token1] = ACTIONS(498), - [aux_sym_using_statement_token1] = ACTIONS(500), - [aux_sym_on_error_phrase_token1] = ACTIONS(502), - [aux_sym_on_error_phrase_token3] = ACTIONS(504), - [aux_sym_do_block_token1] = ACTIONS(506), - [aux_sym__case_terminator_token1] = ACTIONS(508), - [aux_sym_find_statement_token1] = ACTIONS(510), - [aux_sym_assign_statement_token1] = ACTIONS(512), - [aux_sym_catch_statement_token1] = ACTIONS(514), - [aux_sym_finally_statement_token1] = ACTIONS(516), - [aux_sym_accumulate_statement_token1] = ACTIONS(518), - [aux_sym_error_scope_statement_token1] = ACTIONS(520), - [aux_sym_error_scope_statement_token2] = ACTIONS(520), - [aux_sym_prompt_for_statement_token1] = ACTIONS(522), - [aux_sym_var_statement_token1] = ACTIONS(524), - [aux_sym_run_statement_token1] = ACTIONS(526), + [aux_sym_input_expression_token1] = ACTIONS(535), + [aux_sym_class_type_token1] = ACTIONS(537), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(539), + [aux_sym_variable_definition_token2] = ACTIONS(539), + [aux_sym_buffer_definition_token2] = ACTIONS(541), + [aux_sym_return_type_token2] = ACTIONS(543), + [aux_sym_argument_mode_token1] = ACTIONS(545), + [aux_sym_if_statement_token1] = ACTIONS(637), + [aux_sym_repeat_statement_token1] = ACTIONS(549), + [aux_sym__procedure_terminator_token1] = ACTIONS(551), + [aux_sym__function_terminator_token1] = ACTIONS(553), + [aux_sym_interface_statement_token1] = ACTIONS(555), + [aux_sym_using_statement_token1] = ACTIONS(557), + [aux_sym_on_error_phrase_token1] = ACTIONS(559), + [aux_sym_on_error_phrase_token3] = ACTIONS(561), + [aux_sym_do_block_token1] = ACTIONS(563), + [aux_sym__case_terminator_token1] = ACTIONS(565), + [aux_sym_find_statement_token1] = ACTIONS(567), + [aux_sym_assign_statement_token1] = ACTIONS(569), + [aux_sym_catch_statement_token1] = ACTIONS(571), + [aux_sym_finally_statement_token1] = ACTIONS(573), + [aux_sym_accumulate_statement_token1] = ACTIONS(575), + [aux_sym_error_scope_statement_token1] = ACTIONS(577), + [aux_sym_error_scope_statement_token2] = ACTIONS(577), + [aux_sym_prompt_for_statement_token1] = ACTIONS(579), + [aux_sym_var_statement_token1] = ACTIONS(581), + [aux_sym_run_statement_token1] = ACTIONS(583), }, [72] = { [sym_comment] = STATE(72), - [sym_qualified_name] = STATE(6673), + [sym_qualified_name] = STATE(5477), [sym_include] = STATE(72), - [sym_assignment] = STATE(6695), - [sym_variable_definition] = STATE(1797), - [sym_variable_assignment] = STATE(1797), - [sym_buffer_definition] = STATE(1797), - [sym_query_definition] = STATE(1797), - [sym_function_call_statement] = STATE(1797), - [sym_function_call] = STATE(6689), - [sym_if_statement] = STATE(1797), - [sym_label] = STATE(1792), - [sym_repeat_statement] = STATE(1797), - [sym_procedure_statement] = STATE(1797), - [sym_procedure_parameter_definition] = STATE(1797), - [sym_function_statement] = STATE(1797), - [sym_return_statement] = STATE(1797), - [sym_interface_statement] = STATE(1797), - [sym_dataset_definition] = STATE(1797), - [sym_using_statement] = STATE(1797), - [sym_class_statement] = STATE(1797), - [sym_object_access] = STATE(5325), - [sym_member_access] = STATE(6673), - [sym_stream_definition] = STATE(1797), - [sym_input_close_statement] = STATE(1797), - [sym_output_close_statement] = STATE(1797), - [sym__stream_statement] = STATE(1797), - [sym_input_stream_statement] = STATE(1791), - [sym_output_stream_statement] = STATE(1791), - [sym_do_block] = STATE(1458), - [sym_case_statement] = STATE(1797), - [sym_for_statement] = STATE(1797), - [sym_find_statement] = STATE(1797), - [sym_abl_statement] = STATE(1797), - [sym_assign_statement] = STATE(1797), - [sym_catch_statement] = STATE(1797), - [sym_finally_statement] = STATE(1797), - [sym_accumulate_statement] = STATE(1797), - [sym_undo_statement] = STATE(1797), - [sym_error_scope_statement] = STATE(1797), - [sym_workfile_definition] = STATE(1797), - [sym_temp_table_definition] = STATE(1797), - [sym_on_statement] = STATE(1797), - [sym_prompt_for_statement] = STATE(1797), - [sym_var_statement] = STATE(1797), - [sym_button_definition] = STATE(1797), - [sym_run_statement] = STATE(1797), - [sym__statement] = STATE(1461), - [sym_identifier] = ACTIONS(528), + [sym_assignment] = STATE(6324), + [sym_variable_assignment] = STATE(1760), + [sym_variable_definition] = STATE(1760), + [sym_buffer_definition] = STATE(1760), + [sym_query_definition] = STATE(1760), + [sym_function_call_statement] = STATE(1760), + [sym_function_call] = STATE(5175), + [sym_if_statement] = STATE(1760), + [sym_label] = STATE(1759), + [sym_repeat_statement] = STATE(1760), + [sym_procedure_statement] = STATE(1760), + [sym_procedure_parameter_definition] = STATE(1760), + [sym_function_statement] = STATE(1760), + [sym_return_statement] = STATE(1760), + [sym_interface_statement] = STATE(1760), + [sym_dataset_definition] = STATE(1760), + [sym_using_statement] = STATE(1760), + [sym_class_statement] = STATE(1760), + [sym_new_expression] = STATE(5480), + [sym_object_access] = STATE(4649), + [sym_member_access] = STATE(5477), + [sym_stream_definition] = STATE(1760), + [sym_input_close_statement] = STATE(1760), + [sym_output_close_statement] = STATE(1760), + [sym__stream_statement] = STATE(1760), + [sym_input_stream_statement] = STATE(1754), + [sym_output_stream_statement] = STATE(1754), + [sym_do_block] = STATE(1479), + [sym_case_statement] = STATE(1760), + [sym_for_statement] = STATE(1760), + [sym_find_statement] = STATE(1760), + [sym_abl_statement] = STATE(1760), + [sym_assign_statement] = STATE(1760), + [sym_catch_statement] = STATE(1760), + [sym_finally_statement] = STATE(1760), + [sym_accumulate_statement] = STATE(1760), + [sym_undo_statement] = STATE(1760), + [sym_error_scope_statement] = STATE(1760), + [sym_workfile_definition] = STATE(1760), + [sym_temp_table_definition] = STATE(1760), + [sym_on_statement] = STATE(1760), + [sym_prompt_for_statement] = STATE(1760), + [sym_var_statement] = STATE(1760), + [sym_button_definition] = STATE(1760), + [sym_run_statement] = STATE(1760), + [sym__statement] = STATE(1478), + [sym_identifier] = ACTIONS(585), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(530), - [aux_sym_class_type_token1] = ACTIONS(532), - [aux_sym_variable_definition_token1] = ACTIONS(534), - [aux_sym_variable_definition_token2] = ACTIONS(534), - [aux_sym_buffer_definition_token2] = ACTIONS(536), - [aux_sym_return_type_token2] = ACTIONS(538), - [aux_sym_argument_mode_token1] = ACTIONS(540), - [aux_sym_if_statement_token1] = ACTIONS(542), - [aux_sym_repeat_statement_token1] = ACTIONS(544), - [aux_sym__procedure_terminator_token1] = ACTIONS(546), - [aux_sym__function_terminator_token1] = ACTIONS(548), - [aux_sym_interface_statement_token1] = ACTIONS(550), - [aux_sym_using_statement_token1] = ACTIONS(552), - [aux_sym_on_error_phrase_token1] = ACTIONS(554), - [aux_sym_on_error_phrase_token3] = ACTIONS(556), - [aux_sym_do_block_token1] = ACTIONS(558), - [aux_sym__case_terminator_token1] = ACTIONS(560), - [aux_sym_find_statement_token1] = ACTIONS(562), - [aux_sym_assign_statement_token1] = ACTIONS(564), - [aux_sym_catch_statement_token1] = ACTIONS(566), - [aux_sym_finally_statement_token1] = ACTIONS(568), - [aux_sym_accumulate_statement_token1] = ACTIONS(570), - [aux_sym_error_scope_statement_token1] = ACTIONS(572), - [aux_sym_error_scope_statement_token2] = ACTIONS(572), - [aux_sym_prompt_for_statement_token1] = ACTIONS(574), - [aux_sym_var_statement_token1] = ACTIONS(576), - [aux_sym_run_statement_token1] = ACTIONS(578), + [aux_sym_input_expression_token1] = ACTIONS(587), + [aux_sym_class_type_token1] = ACTIONS(589), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(591), + [aux_sym_variable_definition_token2] = ACTIONS(591), + [aux_sym_buffer_definition_token2] = ACTIONS(593), + [aux_sym_return_type_token2] = ACTIONS(595), + [aux_sym_argument_mode_token1] = ACTIONS(597), + [aux_sym_if_statement_token1] = ACTIONS(599), + [aux_sym_repeat_statement_token1] = ACTIONS(601), + [aux_sym__procedure_terminator_token1] = ACTIONS(603), + [aux_sym__function_terminator_token1] = ACTIONS(605), + [aux_sym_interface_statement_token1] = ACTIONS(607), + [aux_sym_using_statement_token1] = ACTIONS(609), + [aux_sym_on_error_phrase_token1] = ACTIONS(611), + [aux_sym_on_error_phrase_token3] = ACTIONS(613), + [aux_sym_do_block_token1] = ACTIONS(615), + [aux_sym__case_terminator_token1] = ACTIONS(617), + [aux_sym_find_statement_token1] = ACTIONS(619), + [aux_sym_assign_statement_token1] = ACTIONS(621), + [aux_sym_catch_statement_token1] = ACTIONS(623), + [aux_sym_finally_statement_token1] = ACTIONS(625), + [aux_sym_accumulate_statement_token1] = ACTIONS(627), + [aux_sym_error_scope_statement_token1] = ACTIONS(629), + [aux_sym_error_scope_statement_token2] = ACTIONS(629), + [aux_sym_prompt_for_statement_token1] = ACTIONS(631), + [aux_sym_var_statement_token1] = ACTIONS(633), + [aux_sym_run_statement_token1] = ACTIONS(635), }, [73] = { [sym_comment] = STATE(73), - [sym_qualified_name] = STATE(6673), + [sym_qualified_name] = STATE(5477), [sym_include] = STATE(73), - [sym_assignment] = STATE(6182), - [sym_variable_definition] = STATE(1875), - [sym_variable_assignment] = STATE(1875), - [sym_buffer_definition] = STATE(1875), - [sym_query_definition] = STATE(1875), - [sym_function_call_statement] = STATE(1875), - [sym_function_call] = STATE(6190), - [sym_if_statement] = STATE(1875), - [sym_label] = STATE(1876), - [sym_repeat_statement] = STATE(1875), - [sym_procedure_statement] = STATE(1875), - [sym_procedure_parameter_definition] = STATE(1875), - [sym_function_statement] = STATE(1875), - [sym_return_statement] = STATE(1875), - [sym_interface_statement] = STATE(1875), - [sym_dataset_definition] = STATE(1875), - [sym_using_statement] = STATE(1875), - [sym_class_statement] = STATE(1875), - [sym_object_access] = STATE(5325), - [sym_member_access] = STATE(6673), - [sym_stream_definition] = STATE(1875), - [sym_input_close_statement] = STATE(1875), - [sym_output_close_statement] = STATE(1875), - [sym__stream_statement] = STATE(1875), - [sym_input_stream_statement] = STATE(1877), - [sym_output_stream_statement] = STATE(1877), - [sym_do_block] = STATE(1499), - [sym_case_statement] = STATE(1875), - [sym_for_statement] = STATE(1875), - [sym_find_statement] = STATE(1875), - [sym_abl_statement] = STATE(1875), - [sym_assign_statement] = STATE(1875), - [sym_catch_statement] = STATE(1875), - [sym_finally_statement] = STATE(1875), - [sym_accumulate_statement] = STATE(1875), - [sym_undo_statement] = STATE(1875), - [sym_error_scope_statement] = STATE(1875), - [sym_workfile_definition] = STATE(1875), - [sym_temp_table_definition] = STATE(1875), - [sym_on_statement] = STATE(1875), - [sym_prompt_for_statement] = STATE(1875), - [sym_var_statement] = STATE(1875), - [sym_button_definition] = STATE(1875), - [sym_run_statement] = STATE(1875), - [sym__statement] = STATE(1501), - [sym_identifier] = ACTIONS(580), + [sym_assignment] = STATE(6655), + [sym_variable_assignment] = STATE(4711), + [sym_variable_definition] = STATE(4711), + [sym_buffer_definition] = STATE(4711), + [sym_query_definition] = STATE(4711), + [sym_function_call_statement] = STATE(4711), + [sym_function_call] = STATE(5387), + [sym_if_statement] = STATE(4711), + [sym_label] = STATE(4132), + [sym_repeat_statement] = STATE(4711), + [sym_procedure_statement] = STATE(4711), + [sym_procedure_parameter_definition] = STATE(4711), + [sym_function_statement] = STATE(4711), + [sym_return_statement] = STATE(4711), + [sym_interface_statement] = STATE(4711), + [sym_dataset_definition] = STATE(4711), + [sym_using_statement] = STATE(4711), + [sym_class_statement] = STATE(4711), + [sym_new_expression] = STATE(5480), + [sym_object_access] = STATE(4649), + [sym_member_access] = STATE(5477), + [sym_stream_definition] = STATE(4711), + [sym_input_close_statement] = STATE(4711), + [sym_output_close_statement] = STATE(4711), + [sym__stream_statement] = STATE(4711), + [sym_input_stream_statement] = STATE(4708), + [sym_output_stream_statement] = STATE(4708), + [sym_do_block] = STATE(4701), + [sym_case_statement] = STATE(4711), + [sym_for_statement] = STATE(4711), + [sym_find_statement] = STATE(4711), + [sym_abl_statement] = STATE(4711), + [sym_assign_statement] = STATE(4711), + [sym_catch_statement] = STATE(4711), + [sym_finally_statement] = STATE(4711), + [sym_accumulate_statement] = STATE(4711), + [sym_undo_statement] = STATE(4711), + [sym_error_scope_statement] = STATE(4711), + [sym_workfile_definition] = STATE(4711), + [sym_temp_table_definition] = STATE(4711), + [sym_on_statement] = STATE(4711), + [sym_prompt_for_statement] = STATE(4711), + [sym_var_statement] = STATE(4711), + [sym_button_definition] = STATE(4711), + [sym_run_statement] = STATE(4711), + [sym__statement] = STATE(4703), + [sym_identifier] = ACTIONS(481), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(582), - [aux_sym_class_type_token1] = ACTIONS(584), - [aux_sym_variable_definition_token1] = ACTIONS(586), - [aux_sym_variable_definition_token2] = ACTIONS(586), - [aux_sym_buffer_definition_token2] = ACTIONS(588), - [aux_sym_return_type_token2] = ACTIONS(590), - [aux_sym_argument_mode_token1] = ACTIONS(592), - [aux_sym_if_statement_token1] = ACTIONS(594), - [aux_sym_repeat_statement_token1] = ACTIONS(596), - [aux_sym__procedure_terminator_token1] = ACTIONS(598), - [aux_sym__function_terminator_token1] = ACTIONS(600), - [aux_sym_interface_statement_token1] = ACTIONS(602), - [aux_sym_using_statement_token1] = ACTIONS(604), - [aux_sym_on_error_phrase_token1] = ACTIONS(606), - [aux_sym_on_error_phrase_token3] = ACTIONS(608), - [aux_sym_do_block_token1] = ACTIONS(610), - [aux_sym__case_terminator_token1] = ACTIONS(612), - [aux_sym_find_statement_token1] = ACTIONS(614), - [aux_sym_assign_statement_token1] = ACTIONS(616), - [aux_sym_catch_statement_token1] = ACTIONS(618), - [aux_sym_finally_statement_token1] = ACTIONS(620), - [aux_sym_accumulate_statement_token1] = ACTIONS(622), - [aux_sym_error_scope_statement_token1] = ACTIONS(624), - [aux_sym_error_scope_statement_token2] = ACTIONS(624), - [aux_sym_prompt_for_statement_token1] = ACTIONS(626), - [aux_sym_var_statement_token1] = ACTIONS(628), - [aux_sym_run_statement_token1] = ACTIONS(630), + [aux_sym_input_expression_token1] = ACTIONS(483), + [aux_sym_class_type_token1] = ACTIONS(485), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(487), + [aux_sym_variable_definition_token2] = ACTIONS(487), + [aux_sym_buffer_definition_token2] = ACTIONS(489), + [aux_sym_return_type_token2] = ACTIONS(491), + [aux_sym_argument_mode_token1] = ACTIONS(493), + [aux_sym_if_statement_token1] = ACTIONS(641), + [aux_sym_repeat_statement_token1] = ACTIONS(497), + [aux_sym__procedure_terminator_token1] = ACTIONS(499), + [aux_sym__function_terminator_token1] = ACTIONS(501), + [aux_sym_interface_statement_token1] = ACTIONS(503), + [aux_sym_using_statement_token1] = ACTIONS(505), + [aux_sym_on_error_phrase_token1] = ACTIONS(507), + [aux_sym_on_error_phrase_token3] = ACTIONS(509), + [aux_sym_do_block_token1] = ACTIONS(511), + [aux_sym__case_terminator_token1] = ACTIONS(513), + [aux_sym_find_statement_token1] = ACTIONS(515), + [aux_sym_assign_statement_token1] = ACTIONS(517), + [aux_sym_catch_statement_token1] = ACTIONS(519), + [aux_sym_finally_statement_token1] = ACTIONS(521), + [aux_sym_accumulate_statement_token1] = ACTIONS(523), + [aux_sym_error_scope_statement_token1] = ACTIONS(525), + [aux_sym_error_scope_statement_token2] = ACTIONS(525), + [aux_sym_prompt_for_statement_token1] = ACTIONS(527), + [aux_sym_var_statement_token1] = ACTIONS(529), + [aux_sym_run_statement_token1] = ACTIONS(531), }, [74] = { [sym_comment] = STATE(74), - [sym_qualified_name] = STATE(6673), + [sym_qualified_name] = STATE(5477), [sym_include] = STATE(74), - [sym_assignment] = STATE(6249), - [sym_variable_definition] = STATE(4768), - [sym_variable_assignment] = STATE(4768), - [sym_buffer_definition] = STATE(4768), - [sym_query_definition] = STATE(4768), - [sym_function_call_statement] = STATE(4768), - [sym_function_call] = STATE(6247), - [sym_if_statement] = STATE(4768), - [sym_label] = STATE(4019), - [sym_repeat_statement] = STATE(4768), - [sym_procedure_statement] = STATE(4768), - [sym_procedure_parameter_definition] = STATE(4768), - [sym_function_statement] = STATE(4768), - [sym_return_statement] = STATE(4768), - [sym_interface_statement] = STATE(4768), - [sym_dataset_definition] = STATE(4768), - [sym_using_statement] = STATE(4768), - [sym_class_statement] = STATE(4768), - [sym_object_access] = STATE(5325), - [sym_member_access] = STATE(6673), - [sym_stream_definition] = STATE(4768), - [sym_input_close_statement] = STATE(4768), - [sym_output_close_statement] = STATE(4768), - [sym__stream_statement] = STATE(4768), - [sym_input_stream_statement] = STATE(4756), - [sym_output_stream_statement] = STATE(4756), - [sym_do_block] = STATE(4334), - [sym_case_statement] = STATE(4768), - [sym_for_statement] = STATE(4768), - [sym_find_statement] = STATE(4768), - [sym_abl_statement] = STATE(4768), - [sym_assign_statement] = STATE(4768), - [sym_catch_statement] = STATE(4768), - [sym_finally_statement] = STATE(4768), - [sym_accumulate_statement] = STATE(4768), - [sym_undo_statement] = STATE(4768), - [sym_error_scope_statement] = STATE(4768), - [sym_workfile_definition] = STATE(4768), - [sym_temp_table_definition] = STATE(4768), - [sym_on_statement] = STATE(4768), - [sym_prompt_for_statement] = STATE(4768), - [sym_var_statement] = STATE(4768), - [sym_button_definition] = STATE(4768), - [sym_run_statement] = STATE(4768), - [sym__statement] = STATE(4340), - [sym_identifier] = ACTIONS(476), + [sym_assignment] = STATE(6655), + [sym_variable_assignment] = STATE(4711), + [sym_variable_definition] = STATE(4711), + [sym_buffer_definition] = STATE(4711), + [sym_query_definition] = STATE(4711), + [sym_function_call_statement] = STATE(4711), + [sym_function_call] = STATE(5387), + [sym_if_statement] = STATE(4711), + [sym_label] = STATE(4132), + [sym_repeat_statement] = STATE(4711), + [sym_procedure_statement] = STATE(4711), + [sym_procedure_parameter_definition] = STATE(4711), + [sym_function_statement] = STATE(4711), + [sym_return_statement] = STATE(4711), + [sym_interface_statement] = STATE(4711), + [sym_dataset_definition] = STATE(4711), + [sym_using_statement] = STATE(4711), + [sym_class_statement] = STATE(4711), + [sym_new_expression] = STATE(5480), + [sym_object_access] = STATE(4649), + [sym_member_access] = STATE(5477), + [sym_stream_definition] = STATE(4711), + [sym_input_close_statement] = STATE(4711), + [sym_output_close_statement] = STATE(4711), + [sym__stream_statement] = STATE(4711), + [sym_input_stream_statement] = STATE(4708), + [sym_output_stream_statement] = STATE(4708), + [sym_do_block] = STATE(4282), + [sym_case_statement] = STATE(4711), + [sym_for_statement] = STATE(4711), + [sym_find_statement] = STATE(4711), + [sym_abl_statement] = STATE(4711), + [sym_assign_statement] = STATE(4711), + [sym_catch_statement] = STATE(4711), + [sym_finally_statement] = STATE(4711), + [sym_accumulate_statement] = STATE(4711), + [sym_undo_statement] = STATE(4711), + [sym_error_scope_statement] = STATE(4711), + [sym_workfile_definition] = STATE(4711), + [sym_temp_table_definition] = STATE(4711), + [sym_on_statement] = STATE(4711), + [sym_prompt_for_statement] = STATE(4711), + [sym_var_statement] = STATE(4711), + [sym_button_definition] = STATE(4711), + [sym_run_statement] = STATE(4711), + [sym__statement] = STATE(4298), + [sym_identifier] = ACTIONS(481), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(478), - [aux_sym_class_type_token1] = ACTIONS(480), - [aux_sym_variable_definition_token1] = ACTIONS(482), - [aux_sym_variable_definition_token2] = ACTIONS(482), - [aux_sym_buffer_definition_token2] = ACTIONS(484), - [aux_sym_return_type_token2] = ACTIONS(486), - [aux_sym_argument_mode_token1] = ACTIONS(488), - [aux_sym_if_statement_token1] = ACTIONS(632), - [aux_sym_repeat_statement_token1] = ACTIONS(492), - [aux_sym__procedure_terminator_token1] = ACTIONS(494), - [aux_sym__function_terminator_token1] = ACTIONS(496), - [aux_sym_interface_statement_token1] = ACTIONS(498), - [aux_sym_using_statement_token1] = ACTIONS(500), - [aux_sym_on_error_phrase_token1] = ACTIONS(502), - [aux_sym_on_error_phrase_token3] = ACTIONS(504), - [aux_sym_do_block_token1] = ACTIONS(506), - [aux_sym__case_terminator_token1] = ACTIONS(508), - [aux_sym_find_statement_token1] = ACTIONS(510), - [aux_sym_assign_statement_token1] = ACTIONS(512), - [aux_sym_catch_statement_token1] = ACTIONS(514), - [aux_sym_finally_statement_token1] = ACTIONS(516), - [aux_sym_accumulate_statement_token1] = ACTIONS(518), - [aux_sym_error_scope_statement_token1] = ACTIONS(520), - [aux_sym_error_scope_statement_token2] = ACTIONS(520), - [aux_sym_prompt_for_statement_token1] = ACTIONS(522), - [aux_sym_var_statement_token1] = ACTIONS(524), - [aux_sym_run_statement_token1] = ACTIONS(526), + [aux_sym_input_expression_token1] = ACTIONS(483), + [aux_sym_class_type_token1] = ACTIONS(485), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(487), + [aux_sym_variable_definition_token2] = ACTIONS(487), + [aux_sym_buffer_definition_token2] = ACTIONS(489), + [aux_sym_return_type_token2] = ACTIONS(491), + [aux_sym_argument_mode_token1] = ACTIONS(493), + [aux_sym_if_statement_token1] = ACTIONS(643), + [aux_sym_repeat_statement_token1] = ACTIONS(497), + [aux_sym__procedure_terminator_token1] = ACTIONS(499), + [aux_sym__function_terminator_token1] = ACTIONS(501), + [aux_sym_interface_statement_token1] = ACTIONS(503), + [aux_sym_using_statement_token1] = ACTIONS(505), + [aux_sym_on_error_phrase_token1] = ACTIONS(507), + [aux_sym_on_error_phrase_token3] = ACTIONS(509), + [aux_sym_do_block_token1] = ACTIONS(511), + [aux_sym__case_terminator_token1] = ACTIONS(513), + [aux_sym_find_statement_token1] = ACTIONS(515), + [aux_sym_assign_statement_token1] = ACTIONS(517), + [aux_sym_catch_statement_token1] = ACTIONS(519), + [aux_sym_finally_statement_token1] = ACTIONS(521), + [aux_sym_accumulate_statement_token1] = ACTIONS(523), + [aux_sym_error_scope_statement_token1] = ACTIONS(525), + [aux_sym_error_scope_statement_token2] = ACTIONS(525), + [aux_sym_prompt_for_statement_token1] = ACTIONS(527), + [aux_sym_var_statement_token1] = ACTIONS(529), + [aux_sym_run_statement_token1] = ACTIONS(531), }, [75] = { [sym_comment] = STATE(75), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_qualified_name] = STATE(5477), [sym_include] = STATE(75), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5299), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_aggregate] = STATE(5253), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_assignment] = STATE(6324), + [sym_variable_assignment] = STATE(1760), + [sym_variable_definition] = STATE(1760), + [sym_buffer_definition] = STATE(1760), + [sym_query_definition] = STATE(1760), + [sym_function_call_statement] = STATE(1760), + [sym_function_call] = STATE(5175), + [sym_if_statement] = STATE(1760), + [sym_label] = STATE(1759), + [sym_repeat_statement] = STATE(1760), + [sym_procedure_statement] = STATE(1760), + [sym_procedure_parameter_definition] = STATE(1760), + [sym_function_statement] = STATE(1760), + [sym_return_statement] = STATE(1760), + [sym_interface_statement] = STATE(1760), + [sym_dataset_definition] = STATE(1760), + [sym_using_statement] = STATE(1760), + [sym_class_statement] = STATE(1760), + [sym_new_expression] = STATE(5480), + [sym_object_access] = STATE(4649), + [sym_member_access] = STATE(5477), + [sym_stream_definition] = STATE(1760), + [sym_input_close_statement] = STATE(1760), + [sym_output_close_statement] = STATE(1760), + [sym__stream_statement] = STATE(1760), + [sym_input_stream_statement] = STATE(1754), + [sym_output_stream_statement] = STATE(1754), + [sym_do_block] = STATE(1480), + [sym_case_statement] = STATE(1760), + [sym_for_statement] = STATE(1760), + [sym_find_statement] = STATE(1760), + [sym_abl_statement] = STATE(1760), + [sym_assign_statement] = STATE(1760), + [sym_catch_statement] = STATE(1760), + [sym_finally_statement] = STATE(1760), + [sym_accumulate_statement] = STATE(1760), + [sym_undo_statement] = STATE(1760), + [sym_error_scope_statement] = STATE(1760), + [sym_workfile_definition] = STATE(1760), + [sym_temp_table_definition] = STATE(1760), + [sym_on_statement] = STATE(1760), + [sym_prompt_for_statement] = STATE(1760), + [sym_var_statement] = STATE(1760), + [sym_button_definition] = STATE(1760), + [sym_run_statement] = STATE(1760), + [sym__statement] = STATE(1481), + [sym_identifier] = ACTIONS(585), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(654), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_aggregate_token1] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token2] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token3] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token4] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token5] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token6] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token7] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token8] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token9] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token10] = ACTIONS(680), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym_input_expression_token1] = ACTIONS(587), + [aux_sym_class_type_token1] = ACTIONS(589), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(591), + [aux_sym_variable_definition_token2] = ACTIONS(591), + [aux_sym_buffer_definition_token2] = ACTIONS(593), + [aux_sym_return_type_token2] = ACTIONS(595), + [aux_sym_argument_mode_token1] = ACTIONS(597), + [aux_sym_if_statement_token1] = ACTIONS(599), + [aux_sym_repeat_statement_token1] = ACTIONS(601), + [aux_sym__procedure_terminator_token1] = ACTIONS(603), + [aux_sym__function_terminator_token1] = ACTIONS(605), + [aux_sym_interface_statement_token1] = ACTIONS(607), + [aux_sym_using_statement_token1] = ACTIONS(609), + [aux_sym_on_error_phrase_token1] = ACTIONS(611), + [aux_sym_on_error_phrase_token3] = ACTIONS(613), + [aux_sym_do_block_token1] = ACTIONS(615), + [aux_sym__case_terminator_token1] = ACTIONS(617), + [aux_sym_find_statement_token1] = ACTIONS(619), + [aux_sym_assign_statement_token1] = ACTIONS(621), + [aux_sym_catch_statement_token1] = ACTIONS(623), + [aux_sym_finally_statement_token1] = ACTIONS(625), + [aux_sym_accumulate_statement_token1] = ACTIONS(627), + [aux_sym_error_scope_statement_token1] = ACTIONS(629), + [aux_sym_error_scope_statement_token2] = ACTIONS(629), + [aux_sym_prompt_for_statement_token1] = ACTIONS(631), + [aux_sym_var_statement_token1] = ACTIONS(633), + [aux_sym_run_statement_token1] = ACTIONS(635), }, [76] = { [sym_comment] = STATE(76), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_qualified_name] = STATE(5477), [sym_include] = STATE(76), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5299), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_aggregate] = STATE(5218), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_assignment] = STATE(6520), + [sym_variable_assignment] = STATE(1882), + [sym_variable_definition] = STATE(1882), + [sym_buffer_definition] = STATE(1882), + [sym_query_definition] = STATE(1882), + [sym_function_call_statement] = STATE(1882), + [sym_function_call] = STATE(5336), + [sym_if_statement] = STATE(1882), + [sym_label] = STATE(1883), + [sym_repeat_statement] = STATE(1882), + [sym_procedure_statement] = STATE(1882), + [sym_procedure_parameter_definition] = STATE(1882), + [sym_function_statement] = STATE(1882), + [sym_return_statement] = STATE(1882), + [sym_interface_statement] = STATE(1882), + [sym_dataset_definition] = STATE(1882), + [sym_using_statement] = STATE(1882), + [sym_class_statement] = STATE(1882), + [sym_new_expression] = STATE(5480), + [sym_object_access] = STATE(4649), + [sym_member_access] = STATE(5477), + [sym_stream_definition] = STATE(1882), + [sym_input_close_statement] = STATE(1882), + [sym_output_close_statement] = STATE(1882), + [sym__stream_statement] = STATE(1882), + [sym_input_stream_statement] = STATE(1884), + [sym_output_stream_statement] = STATE(1884), + [sym_do_block] = STATE(1489), + [sym_case_statement] = STATE(1882), + [sym_for_statement] = STATE(1882), + [sym_find_statement] = STATE(1882), + [sym_abl_statement] = STATE(1882), + [sym_assign_statement] = STATE(1882), + [sym_catch_statement] = STATE(1882), + [sym_finally_statement] = STATE(1882), + [sym_accumulate_statement] = STATE(1882), + [sym_undo_statement] = STATE(1882), + [sym_error_scope_statement] = STATE(1882), + [sym_workfile_definition] = STATE(1882), + [sym_temp_table_definition] = STATE(1882), + [sym_on_statement] = STATE(1882), + [sym_prompt_for_statement] = STATE(1882), + [sym_var_statement] = STATE(1882), + [sym_button_definition] = STATE(1882), + [sym_run_statement] = STATE(1882), + [sym__statement] = STATE(1486), + [sym_identifier] = ACTIONS(533), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(654), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_aggregate_token1] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token2] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token3] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token4] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token5] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token6] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token7] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token8] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token9] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token10] = ACTIONS(680), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym_input_expression_token1] = ACTIONS(535), + [aux_sym_class_type_token1] = ACTIONS(537), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(539), + [aux_sym_variable_definition_token2] = ACTIONS(539), + [aux_sym_buffer_definition_token2] = ACTIONS(541), + [aux_sym_return_type_token2] = ACTIONS(543), + [aux_sym_argument_mode_token1] = ACTIONS(545), + [aux_sym_if_statement_token1] = ACTIONS(637), + [aux_sym_repeat_statement_token1] = ACTIONS(549), + [aux_sym__procedure_terminator_token1] = ACTIONS(551), + [aux_sym__function_terminator_token1] = ACTIONS(553), + [aux_sym_interface_statement_token1] = ACTIONS(555), + [aux_sym_using_statement_token1] = ACTIONS(557), + [aux_sym_on_error_phrase_token1] = ACTIONS(559), + [aux_sym_on_error_phrase_token3] = ACTIONS(561), + [aux_sym_do_block_token1] = ACTIONS(563), + [aux_sym__case_terminator_token1] = ACTIONS(565), + [aux_sym_find_statement_token1] = ACTIONS(567), + [aux_sym_assign_statement_token1] = ACTIONS(569), + [aux_sym_catch_statement_token1] = ACTIONS(571), + [aux_sym_finally_statement_token1] = ACTIONS(573), + [aux_sym_accumulate_statement_token1] = ACTIONS(575), + [aux_sym_error_scope_statement_token1] = ACTIONS(577), + [aux_sym_error_scope_statement_token2] = ACTIONS(577), + [aux_sym_prompt_for_statement_token1] = ACTIONS(579), + [aux_sym_var_statement_token1] = ACTIONS(581), + [aux_sym_run_statement_token1] = ACTIONS(583), }, [77] = { [sym_comment] = STATE(77), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_qualified_name] = STATE(5477), [sym_include] = STATE(77), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5299), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_aggregate] = STATE(5205), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_assignment] = STATE(6655), + [sym_variable_assignment] = STATE(4711), + [sym_variable_definition] = STATE(4711), + [sym_buffer_definition] = STATE(4711), + [sym_query_definition] = STATE(4711), + [sym_function_call_statement] = STATE(4711), + [sym_function_call] = STATE(5387), + [sym_if_statement] = STATE(4711), + [sym_label] = STATE(4132), + [sym_repeat_statement] = STATE(4711), + [sym_procedure_statement] = STATE(4711), + [sym_procedure_parameter_definition] = STATE(4711), + [sym_function_statement] = STATE(4711), + [sym_return_statement] = STATE(4711), + [sym_interface_statement] = STATE(4711), + [sym_dataset_definition] = STATE(4711), + [sym_using_statement] = STATE(4711), + [sym_class_statement] = STATE(4711), + [sym_new_expression] = STATE(5480), + [sym_object_access] = STATE(4649), + [sym_member_access] = STATE(5477), + [sym_stream_definition] = STATE(4711), + [sym_input_close_statement] = STATE(4711), + [sym_output_close_statement] = STATE(4711), + [sym__stream_statement] = STATE(4711), + [sym_input_stream_statement] = STATE(4708), + [sym_output_stream_statement] = STATE(4708), + [sym_do_block] = STATE(4280), + [sym_case_statement] = STATE(4711), + [sym_for_statement] = STATE(4711), + [sym_find_statement] = STATE(4711), + [sym_abl_statement] = STATE(4711), + [sym_assign_statement] = STATE(4711), + [sym_catch_statement] = STATE(4711), + [sym_finally_statement] = STATE(4711), + [sym_accumulate_statement] = STATE(4711), + [sym_undo_statement] = STATE(4711), + [sym_error_scope_statement] = STATE(4711), + [sym_workfile_definition] = STATE(4711), + [sym_temp_table_definition] = STATE(4711), + [sym_on_statement] = STATE(4711), + [sym_prompt_for_statement] = STATE(4711), + [sym_var_statement] = STATE(4711), + [sym_button_definition] = STATE(4711), + [sym_run_statement] = STATE(4711), + [sym__statement] = STATE(4279), + [sym_identifier] = ACTIONS(481), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(654), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_aggregate_token1] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token2] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token3] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token4] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token5] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token6] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token7] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token8] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token9] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token10] = ACTIONS(680), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym_input_expression_token1] = ACTIONS(483), + [aux_sym_class_type_token1] = ACTIONS(485), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(487), + [aux_sym_variable_definition_token2] = ACTIONS(487), + [aux_sym_buffer_definition_token2] = ACTIONS(489), + [aux_sym_return_type_token2] = ACTIONS(491), + [aux_sym_argument_mode_token1] = ACTIONS(493), + [aux_sym_if_statement_token1] = ACTIONS(643), + [aux_sym_repeat_statement_token1] = ACTIONS(497), + [aux_sym__procedure_terminator_token1] = ACTIONS(499), + [aux_sym__function_terminator_token1] = ACTIONS(501), + [aux_sym_interface_statement_token1] = ACTIONS(503), + [aux_sym_using_statement_token1] = ACTIONS(505), + [aux_sym_on_error_phrase_token1] = ACTIONS(507), + [aux_sym_on_error_phrase_token3] = ACTIONS(509), + [aux_sym_do_block_token1] = ACTIONS(511), + [aux_sym__case_terminator_token1] = ACTIONS(513), + [aux_sym_find_statement_token1] = ACTIONS(515), + [aux_sym_assign_statement_token1] = ACTIONS(517), + [aux_sym_catch_statement_token1] = ACTIONS(519), + [aux_sym_finally_statement_token1] = ACTIONS(521), + [aux_sym_accumulate_statement_token1] = ACTIONS(523), + [aux_sym_error_scope_statement_token1] = ACTIONS(525), + [aux_sym_error_scope_statement_token2] = ACTIONS(525), + [aux_sym_prompt_for_statement_token1] = ACTIONS(527), + [aux_sym_var_statement_token1] = ACTIONS(529), + [aux_sym_run_statement_token1] = ACTIONS(531), }, [78] = { [sym_comment] = STATE(78), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_qualified_name] = STATE(5477), [sym_include] = STATE(78), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5299), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_aggregate] = STATE(5371), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_assignment] = STATE(6655), + [sym_variable_assignment] = STATE(4711), + [sym_variable_definition] = STATE(4711), + [sym_buffer_definition] = STATE(4711), + [sym_query_definition] = STATE(4711), + [sym_function_call_statement] = STATE(4711), + [sym_function_call] = STATE(5387), + [sym_if_statement] = STATE(4711), + [sym_label] = STATE(4132), + [sym_repeat_statement] = STATE(4711), + [sym_procedure_statement] = STATE(4711), + [sym_procedure_parameter_definition] = STATE(4711), + [sym_function_statement] = STATE(4711), + [sym_return_statement] = STATE(4711), + [sym_interface_statement] = STATE(4711), + [sym_dataset_definition] = STATE(4711), + [sym_using_statement] = STATE(4711), + [sym_class_statement] = STATE(4711), + [sym_new_expression] = STATE(5480), + [sym_object_access] = STATE(4649), + [sym_member_access] = STATE(5477), + [sym_stream_definition] = STATE(4711), + [sym_input_close_statement] = STATE(4711), + [sym_output_close_statement] = STATE(4711), + [sym__stream_statement] = STATE(4711), + [sym_input_stream_statement] = STATE(4708), + [sym_output_stream_statement] = STATE(4708), + [sym_do_block] = STATE(4445), + [sym_case_statement] = STATE(4711), + [sym_for_statement] = STATE(4711), + [sym_find_statement] = STATE(4711), + [sym_abl_statement] = STATE(4711), + [sym_assign_statement] = STATE(4711), + [sym_catch_statement] = STATE(4711), + [sym_finally_statement] = STATE(4711), + [sym_accumulate_statement] = STATE(4711), + [sym_undo_statement] = STATE(4711), + [sym_error_scope_statement] = STATE(4711), + [sym_workfile_definition] = STATE(4711), + [sym_temp_table_definition] = STATE(4711), + [sym_on_statement] = STATE(4711), + [sym_prompt_for_statement] = STATE(4711), + [sym_var_statement] = STATE(4711), + [sym_button_definition] = STATE(4711), + [sym_run_statement] = STATE(4711), + [sym__statement] = STATE(4446), + [sym_identifier] = ACTIONS(481), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(654), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_aggregate_token1] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token2] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token3] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token4] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token5] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token6] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token7] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token8] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token9] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token10] = ACTIONS(680), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym_input_expression_token1] = ACTIONS(483), + [aux_sym_class_type_token1] = ACTIONS(485), + [aux_sym_scope_tuning_token1] = ACTIONS(17), + [aux_sym_variable_definition_token1] = ACTIONS(487), + [aux_sym_variable_definition_token2] = ACTIONS(487), + [aux_sym_buffer_definition_token2] = ACTIONS(489), + [aux_sym_return_type_token2] = ACTIONS(491), + [aux_sym_argument_mode_token1] = ACTIONS(493), + [aux_sym_if_statement_token1] = ACTIONS(643), + [aux_sym_repeat_statement_token1] = ACTIONS(497), + [aux_sym__procedure_terminator_token1] = ACTIONS(499), + [aux_sym__function_terminator_token1] = ACTIONS(501), + [aux_sym_interface_statement_token1] = ACTIONS(503), + [aux_sym_using_statement_token1] = ACTIONS(505), + [aux_sym_on_error_phrase_token1] = ACTIONS(507), + [aux_sym_on_error_phrase_token3] = ACTIONS(509), + [aux_sym_do_block_token1] = ACTIONS(511), + [aux_sym__case_terminator_token1] = ACTIONS(513), + [aux_sym_find_statement_token1] = ACTIONS(515), + [aux_sym_assign_statement_token1] = ACTIONS(517), + [aux_sym_catch_statement_token1] = ACTIONS(519), + [aux_sym_finally_statement_token1] = ACTIONS(521), + [aux_sym_accumulate_statement_token1] = ACTIONS(523), + [aux_sym_error_scope_statement_token1] = ACTIONS(525), + [aux_sym_error_scope_statement_token2] = ACTIONS(525), + [aux_sym_prompt_for_statement_token1] = ACTIONS(527), + [aux_sym_var_statement_token1] = ACTIONS(529), + [aux_sym_run_statement_token1] = ACTIONS(531), }, [79] = { [sym_comment] = STATE(79), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(79), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5299), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_aggregate] = STATE(5161), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5220), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_aggregate] = STATE(5285), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(654), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_aggregate_token1] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token2] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token3] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token4] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token5] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token6] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token7] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token8] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token9] = ACTIONS(680), - [aux_sym_accumulate_aggregate_token10] = ACTIONS(680), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(659), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(685), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [80] = { [sym_comment] = STATE(80), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(80), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1220), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3259), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5220), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_aggregate] = STATE(5224), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(688), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(659), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(685), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [81] = { [sym_comment] = STATE(81), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(81), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1222), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3283), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5220), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_aggregate] = STATE(5230), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(722), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(659), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(685), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [82] = { [sym_comment] = STATE(82), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(82), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1231), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3297), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5220), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_aggregate] = STATE(5299), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(724), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(659), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(685), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [83] = { [sym_comment] = STATE(83), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(83), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1228), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3276), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5220), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_aggregate] = STATE(5348), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(726), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(659), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(685), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(685), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [84] = { [sym_comment] = STATE(84), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(84), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1225), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3287), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1242), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3345), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(728), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(693), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [85] = { [sym_comment] = STATE(85), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(85), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1230), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3258), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1258), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3354), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(730), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(727), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [86] = { [sym_comment] = STATE(86), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(86), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1235), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3271), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1244), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3337), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(732), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(729), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [87] = { [sym_comment] = STATE(87), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(87), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1224), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3285), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1248), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3327), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(734), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(731), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [88] = { [sym_comment] = STATE(88), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(88), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1238), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3304), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1263), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3329), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(736), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(733), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [89] = { [sym_comment] = STATE(89), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(89), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1232), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3292), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1250), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3322), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(738), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(735), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [90] = { [sym_comment] = STATE(90), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(90), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1233), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3245), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1252), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3341), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(740), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(737), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [91] = { [sym_comment] = STATE(91), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(91), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1239), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3263), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1245), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3319), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(742), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(739), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [92] = { [sym_comment] = STATE(92), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(92), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1219), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3255), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1246), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3342), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(744), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(741), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [93] = { [sym_comment] = STATE(93), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(93), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1226), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3262), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1259), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3314), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(746), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(743), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [94] = { [sym_comment] = STATE(94), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(94), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1240), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3244), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1267), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3350), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(748), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(745), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [95] = { [sym_comment] = STATE(95), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(95), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1246), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3266), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1249), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3313), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(750), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(747), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [96] = { [sym_comment] = STATE(96), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(96), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1234), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3257), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1254), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(752), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(749), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [97] = { [sym_comment] = STATE(97), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(97), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1221), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3301), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1264), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3303), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(754), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(751), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [98] = { [sym_comment] = STATE(98), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(98), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1223), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3278), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1257), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3356), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(756), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(753), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [99] = { [sym_comment] = STATE(99), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(99), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1229), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3280), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1253), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3353), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(758), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(755), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [100] = { [sym_comment] = STATE(100), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(100), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1241), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3302), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1265), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3320), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(760), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(757), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [101] = { [sym_comment] = STATE(101), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(101), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1227), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3252), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1241), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3330), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(762), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(759), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [102] = { [sym_comment] = STATE(102), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(102), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1242), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3298), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1260), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3307), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(764), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(761), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [103] = { [sym_comment] = STATE(103), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(103), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1243), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3273), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1266), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3311), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(766), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(763), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [104] = { [sym_comment] = STATE(104), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(104), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1236), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3305), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1262), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3347), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(768), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(765), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [105] = { [sym_comment] = STATE(105), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(105), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1244), - [aux_sym_qualified_name_repeat1] = STATE(1312), - [aux_sym_can_find_expression_repeat1] = STATE(3282), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1243), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3315), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(770), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__namedot] = ACTIONS(720), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(767), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [106] = { [sym_comment] = STATE(106), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(106), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1236), - [aux_sym_can_find_expression_repeat1] = STATE(3305), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1256), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(768), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(769), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [107] = { [sym_comment] = STATE(107), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(107), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1243), - [aux_sym_can_find_expression_repeat1] = STATE(3273), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1261), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3298), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(766), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(771), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [108] = { [sym_comment] = STATE(108), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(108), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1223), - [aux_sym_can_find_expression_repeat1] = STATE(3278), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1251), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3300), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(756), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(773), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [109] = { [sym_comment] = STATE(109), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(109), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1229), - [aux_sym_can_find_expression_repeat1] = STATE(3280), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1247), + [aux_sym_qualified_name_repeat1] = STATE(1351), + [aux_sym_can_find_expression_repeat1] = STATE(3333), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(758), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(775), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__namedot] = ACTIONS(725), + [sym__escaped_string] = ACTIONS(691), }, [110] = { [sym_comment] = STATE(110), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(110), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1233), - [aux_sym_can_find_expression_repeat1] = STATE(3245), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1263), + [aux_sym_can_find_expression_repeat1] = STATE(3329), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(740), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(733), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [111] = { [sym_comment] = STATE(111), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(111), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1232), - [aux_sym_can_find_expression_repeat1] = STATE(3292), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1253), + [aux_sym_can_find_expression_repeat1] = STATE(3353), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(738), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(755), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [112] = { [sym_comment] = STATE(112), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(112), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1241), - [aux_sym_can_find_expression_repeat1] = STATE(3302), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1256), + [aux_sym_can_find_expression_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(760), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(769), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [113] = { [sym_comment] = STATE(113), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(113), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1246), - [aux_sym_can_find_expression_repeat1] = STATE(3266), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1258), + [aux_sym_can_find_expression_repeat1] = STATE(3354), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(750), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(727), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [114] = { [sym_comment] = STATE(114), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(114), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1242), - [aux_sym_can_find_expression_repeat1] = STATE(3298), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1267), + [aux_sym_can_find_expression_repeat1] = STATE(3350), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(764), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(745), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [115] = { [sym_comment] = STATE(115), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(115), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1221), - [aux_sym_can_find_expression_repeat1] = STATE(3301), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1262), + [aux_sym_can_find_expression_repeat1] = STATE(3347), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(754), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(765), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [116] = { [sym_comment] = STATE(116), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(116), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1219), - [aux_sym_can_find_expression_repeat1] = STATE(3255), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1261), + [aux_sym_can_find_expression_repeat1] = STATE(3298), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(744), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(771), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [117] = { [sym_comment] = STATE(117), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(117), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1234), - [aux_sym_can_find_expression_repeat1] = STATE(3257), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1242), + [aux_sym_can_find_expression_repeat1] = STATE(3345), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(752), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(693), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [118] = { [sym_comment] = STATE(118), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(118), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1231), - [aux_sym_can_find_expression_repeat1] = STATE(3297), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1260), + [aux_sym_can_find_expression_repeat1] = STATE(3307), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(724), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(761), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [119] = { [sym_comment] = STATE(119), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(119), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1240), - [aux_sym_can_find_expression_repeat1] = STATE(3244), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1248), + [aux_sym_can_find_expression_repeat1] = STATE(3327), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(748), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(731), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [120] = { [sym_comment] = STATE(120), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(120), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1239), - [aux_sym_can_find_expression_repeat1] = STATE(3263), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1243), + [aux_sym_can_find_expression_repeat1] = STATE(3315), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(742), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(767), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [121] = { [sym_comment] = STATE(121), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(121), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1222), - [aux_sym_can_find_expression_repeat1] = STATE(3283), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1266), + [aux_sym_can_find_expression_repeat1] = STATE(3311), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(722), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(763), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [122] = { [sym_comment] = STATE(122), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(122), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1220), - [aux_sym_can_find_expression_repeat1] = STATE(3259), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1244), + [aux_sym_can_find_expression_repeat1] = STATE(3337), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(688), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(729), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [123] = { [sym_comment] = STATE(123), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(123), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1227), - [aux_sym_can_find_expression_repeat1] = STATE(3252), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1254), + [aux_sym_can_find_expression_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(762), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(749), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [124] = { [sym_comment] = STATE(124), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(124), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1235), - [aux_sym_can_find_expression_repeat1] = STATE(3271), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1265), + [aux_sym_can_find_expression_repeat1] = STATE(3320), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(732), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(757), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [125] = { [sym_comment] = STATE(125), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(125), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1230), - [aux_sym_can_find_expression_repeat1] = STATE(3258), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1249), + [aux_sym_can_find_expression_repeat1] = STATE(3313), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(730), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(747), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [126] = { [sym_comment] = STATE(126), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(126), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1224), - [aux_sym_can_find_expression_repeat1] = STATE(3285), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1257), + [aux_sym_can_find_expression_repeat1] = STATE(3356), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(734), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(753), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [127] = { [sym_comment] = STATE(127), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(127), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1238), - [aux_sym_can_find_expression_repeat1] = STATE(3304), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1241), + [aux_sym_can_find_expression_repeat1] = STATE(3330), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(736), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(759), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [128] = { [sym_comment] = STATE(128), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(128), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1225), - [aux_sym_can_find_expression_repeat1] = STATE(3287), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1250), + [aux_sym_can_find_expression_repeat1] = STATE(3322), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(728), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(735), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [129] = { [sym_comment] = STATE(129), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(129), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1228), - [aux_sym_can_find_expression_repeat1] = STATE(3276), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1251), + [aux_sym_can_find_expression_repeat1] = STATE(3300), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(726), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(773), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [130] = { [sym_comment] = STATE(130), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(130), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1226), - [aux_sym_can_find_expression_repeat1] = STATE(3262), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1247), + [aux_sym_can_find_expression_repeat1] = STATE(3333), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(746), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(775), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [131] = { [sym_comment] = STATE(131), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(131), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_where_clause] = STATE(3743), - [sym_query_tuning] = STATE(3743), - [sym_can_find_expression] = STATE(25), - [sym_of] = STATE(3743), - [sym_using] = STATE(3217), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(1244), - [aux_sym_can_find_expression_repeat1] = STATE(3282), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1264), + [aux_sym_can_find_expression_repeat1] = STATE(3303), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(770), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(690), - [aux_sym_ambiguous_expression_token1] = ACTIONS(692), - [aux_sym_temp_table_expression_token1] = ACTIONS(694), - [aux_sym_current_changed_expression_token1] = ACTIONS(696), - [aux_sym_locked_expression_token1] = ACTIONS(698), - [aux_sym_dataset_expression_token1] = ACTIONS(700), - [aux_sym_input_expression_token1] = ACTIONS(702), - [aux_sym_scope_tuning_token1] = ACTIONS(704), - [aux_sym_function_call_token1] = ACTIONS(706), - [aux_sym_if_statement_token1] = ACTIONS(708), - [aux_sym_using_statement_token1] = ACTIONS(710), - [aux_sym_where_clause_token1] = ACTIONS(712), - [aux_sym_query_tuning_token1] = ACTIONS(706), - [aux_sym_query_tuning_token2] = ACTIONS(706), - [aux_sym_query_tuning_token3] = ACTIONS(706), - [aux_sym_query_tuning_token4] = ACTIONS(706), - [aux_sym_query_tuning_token5] = ACTIONS(714), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_of_token1] = ACTIONS(716), - [aux_sym_accumulate_expression_token1] = ACTIONS(718), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(751), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [132] = { [sym_comment] = STATE(132), - [sym_constant] = STATE(1098), - [sym_qualified_name] = STATE(1098), - [sym_boolean_literal] = STATE(1098), - [sym__decimal_literal] = STATE(1075), - [sym_number_literal] = STATE(1098), - [sym_string_literal] = STATE(1098), - [sym_array_literal] = STATE(1098), - [sym_parenthesized_expression] = STATE(1098), - [sym_logical_expression] = STATE(1074), - [sym_unary_expression] = STATE(1098), - [sym_ambiguous_expression] = STATE(1098), - [sym_temp_table_expression] = STATE(1098), - [sym_current_changed_expression] = STATE(1098), - [sym_locked_expression] = STATE(1098), - [sym_dataset_expression] = STATE(1098), - [sym_input_expression] = STATE(1098), - [sym_additive_expression] = STATE(1074), - [sym_multiplicative_expression] = STATE(1074), - [sym_comparison_expression] = STATE(1074), - [sym__binary_expression] = STATE(1098), - [sym_array_access] = STATE(1098), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(132), - [sym_function_arguments] = STATE(3610), - [sym_function_call] = STATE(1098), - [sym_ternary_expression] = STATE(1098), - [sym_new_expression] = STATE(1098), - [sym_object_access] = STATE(1039), - [sym_member_access] = STATE(1098), - [sym_can_find_expression] = STATE(1098), - [sym_accumulate_expression] = STATE(1098), - [sym_available_expression] = STATE(1098), - [sym__expression] = STATE(1032), - [aux_sym_qualified_name_repeat1] = STATE(340), - [aux_sym_object_access_repeat1] = STATE(3384), - [aux_sym_member_access_repeat1] = STATE(5090), - [aux_sym_abl_statement_repeat1] = STATE(288), - [sym_identifier] = ACTIONS(772), - [anon_sym_COLON] = ACTIONS(774), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1245), + [aux_sym_can_find_expression_repeat1] = STATE(3319), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(776), - [sym__terminator] = ACTIONS(778), - [sym_null_expression] = ACTIONS(780), - [aux_sym_boolean_literal_token1] = ACTIONS(782), - [aux_sym_boolean_literal_token2] = ACTIONS(782), - [aux_sym_boolean_literal_token3] = ACTIONS(782), - [aux_sym_boolean_literal_token4] = ACTIONS(782), - [sym__integer_literal] = ACTIONS(784), - [sym_date_literal] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(788), - [aux_sym_unary_expression_token1] = ACTIONS(790), - [aux_sym_unary_expression_token2] = ACTIONS(792), - [aux_sym_ambiguous_expression_token1] = ACTIONS(794), - [aux_sym_temp_table_expression_token1] = ACTIONS(796), - [aux_sym_current_changed_expression_token1] = ACTIONS(798), - [aux_sym_locked_expression_token1] = ACTIONS(800), - [aux_sym_dataset_expression_token1] = ACTIONS(802), - [aux_sym_input_expression_token1] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(806), - [aux_sym_scope_tuning_token1] = ACTIONS(808), - [aux_sym_if_statement_token1] = ACTIONS(810), - [aux_sym_can_find_expression_token1] = ACTIONS(812), - [aux_sym_accumulate_expression_token1] = ACTIONS(814), - [aux_sym_available_expression_token1] = ACTIONS(816), - [aux_sym_available_expression_token2] = ACTIONS(816), - [sym__namedot] = ACTIONS(818), - [sym__namecolon] = ACTIONS(820), - [sym__namedoublecolon] = ACTIONS(822), - [sym__escaped_string] = ACTIONS(824), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(739), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [133] = { [sym_comment] = STATE(133), - [sym_constant] = STATE(1098), - [sym_qualified_name] = STATE(1098), - [sym_boolean_literal] = STATE(1098), - [sym__decimal_literal] = STATE(1075), - [sym_number_literal] = STATE(1098), - [sym_string_literal] = STATE(1098), - [sym_array_literal] = STATE(1098), - [sym_parenthesized_expression] = STATE(1098), - [sym_logical_expression] = STATE(1074), - [sym_unary_expression] = STATE(1098), - [sym_ambiguous_expression] = STATE(1098), - [sym_temp_table_expression] = STATE(1098), - [sym_current_changed_expression] = STATE(1098), - [sym_locked_expression] = STATE(1098), - [sym_dataset_expression] = STATE(1098), - [sym_input_expression] = STATE(1098), - [sym_additive_expression] = STATE(1074), - [sym_multiplicative_expression] = STATE(1074), - [sym_comparison_expression] = STATE(1074), - [sym__binary_expression] = STATE(1098), - [sym_array_access] = STATE(1098), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(133), - [sym_function_arguments] = STATE(3610), - [sym_function_call] = STATE(1098), - [sym_ternary_expression] = STATE(1098), - [sym_new_expression] = STATE(1098), - [sym_object_access] = STATE(1039), - [sym_member_access] = STATE(1098), - [sym_can_find_expression] = STATE(1098), - [sym_accumulate_expression] = STATE(1098), - [sym_available_expression] = STATE(1098), - [sym__expression] = STATE(1032), - [aux_sym_qualified_name_repeat1] = STATE(340), - [aux_sym_object_access_repeat1] = STATE(3384), - [aux_sym_member_access_repeat1] = STATE(5090), - [aux_sym_abl_statement_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(772), - [anon_sym_COLON] = ACTIONS(826), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1246), + [aux_sym_can_find_expression_repeat1] = STATE(3342), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(776), - [sym__terminator] = ACTIONS(828), - [sym_null_expression] = ACTIONS(780), - [aux_sym_boolean_literal_token1] = ACTIONS(782), - [aux_sym_boolean_literal_token2] = ACTIONS(782), - [aux_sym_boolean_literal_token3] = ACTIONS(782), - [aux_sym_boolean_literal_token4] = ACTIONS(782), - [sym__integer_literal] = ACTIONS(784), - [sym_date_literal] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(788), - [aux_sym_unary_expression_token1] = ACTIONS(790), - [aux_sym_unary_expression_token2] = ACTIONS(792), - [aux_sym_ambiguous_expression_token1] = ACTIONS(794), - [aux_sym_temp_table_expression_token1] = ACTIONS(796), - [aux_sym_current_changed_expression_token1] = ACTIONS(798), - [aux_sym_locked_expression_token1] = ACTIONS(800), - [aux_sym_dataset_expression_token1] = ACTIONS(802), - [aux_sym_input_expression_token1] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(806), - [aux_sym_scope_tuning_token1] = ACTIONS(808), - [aux_sym_if_statement_token1] = ACTIONS(810), - [aux_sym_can_find_expression_token1] = ACTIONS(812), - [aux_sym_accumulate_expression_token1] = ACTIONS(814), - [aux_sym_available_expression_token1] = ACTIONS(816), - [aux_sym_available_expression_token2] = ACTIONS(816), - [sym__namedot] = ACTIONS(818), - [sym__namecolon] = ACTIONS(820), - [sym__namedoublecolon] = ACTIONS(822), - [sym__escaped_string] = ACTIONS(824), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(741), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [134] = { [sym_comment] = STATE(134), - [sym_constant] = STATE(1098), - [sym_qualified_name] = STATE(1098), - [sym_boolean_literal] = STATE(1098), - [sym__decimal_literal] = STATE(1075), - [sym_number_literal] = STATE(1098), - [sym_string_literal] = STATE(1098), - [sym_array_literal] = STATE(1098), - [sym_parenthesized_expression] = STATE(1098), - [sym_logical_expression] = STATE(1074), - [sym_unary_expression] = STATE(1098), - [sym_ambiguous_expression] = STATE(1098), - [sym_temp_table_expression] = STATE(1098), - [sym_current_changed_expression] = STATE(1098), - [sym_locked_expression] = STATE(1098), - [sym_dataset_expression] = STATE(1098), - [sym_input_expression] = STATE(1098), - [sym_additive_expression] = STATE(1074), - [sym_multiplicative_expression] = STATE(1074), - [sym_comparison_expression] = STATE(1074), - [sym__binary_expression] = STATE(1098), - [sym_array_access] = STATE(1098), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(134), - [sym_function_arguments] = STATE(3610), - [sym_function_call] = STATE(1098), - [sym_ternary_expression] = STATE(1098), - [sym_new_expression] = STATE(1098), - [sym_object_access] = STATE(1039), - [sym_member_access] = STATE(1098), - [sym_can_find_expression] = STATE(1098), - [sym_accumulate_expression] = STATE(1098), - [sym_available_expression] = STATE(1098), - [sym__expression] = STATE(1032), - [aux_sym_qualified_name_repeat1] = STATE(340), - [aux_sym_object_access_repeat1] = STATE(3384), - [aux_sym_member_access_repeat1] = STATE(5090), - [aux_sym_abl_statement_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(772), - [anon_sym_COLON] = ACTIONS(830), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1259), + [aux_sym_can_find_expression_repeat1] = STATE(3314), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(776), - [sym__terminator] = ACTIONS(832), - [sym_null_expression] = ACTIONS(780), - [aux_sym_boolean_literal_token1] = ACTIONS(782), - [aux_sym_boolean_literal_token2] = ACTIONS(782), - [aux_sym_boolean_literal_token3] = ACTIONS(782), - [aux_sym_boolean_literal_token4] = ACTIONS(782), - [sym__integer_literal] = ACTIONS(784), - [sym_date_literal] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(788), - [aux_sym_unary_expression_token1] = ACTIONS(790), - [aux_sym_unary_expression_token2] = ACTIONS(792), - [aux_sym_ambiguous_expression_token1] = ACTIONS(794), - [aux_sym_temp_table_expression_token1] = ACTIONS(796), - [aux_sym_current_changed_expression_token1] = ACTIONS(798), - [aux_sym_locked_expression_token1] = ACTIONS(800), - [aux_sym_dataset_expression_token1] = ACTIONS(802), - [aux_sym_input_expression_token1] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(806), - [aux_sym_scope_tuning_token1] = ACTIONS(808), - [aux_sym_if_statement_token1] = ACTIONS(810), - [aux_sym_can_find_expression_token1] = ACTIONS(812), - [aux_sym_accumulate_expression_token1] = ACTIONS(814), - [aux_sym_available_expression_token1] = ACTIONS(816), - [aux_sym_available_expression_token2] = ACTIONS(816), - [sym__namedot] = ACTIONS(818), - [sym__namecolon] = ACTIONS(820), - [sym__namedoublecolon] = ACTIONS(822), - [sym__escaped_string] = ACTIONS(824), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(743), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [135] = { [sym_comment] = STATE(135), - [sym_constant] = STATE(1098), - [sym_qualified_name] = STATE(1098), - [sym_boolean_literal] = STATE(1098), - [sym__decimal_literal] = STATE(1075), - [sym_number_literal] = STATE(1098), - [sym_string_literal] = STATE(1098), - [sym_array_literal] = STATE(1098), - [sym_parenthesized_expression] = STATE(1098), - [sym_logical_expression] = STATE(1074), - [sym_unary_expression] = STATE(1098), - [sym_ambiguous_expression] = STATE(1098), - [sym_temp_table_expression] = STATE(1098), - [sym_current_changed_expression] = STATE(1098), - [sym_locked_expression] = STATE(1098), - [sym_dataset_expression] = STATE(1098), - [sym_input_expression] = STATE(1098), - [sym_additive_expression] = STATE(1074), - [sym_multiplicative_expression] = STATE(1074), - [sym_comparison_expression] = STATE(1074), - [sym__binary_expression] = STATE(1098), - [sym_array_access] = STATE(1098), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(135), - [sym_function_arguments] = STATE(3610), - [sym_function_call] = STATE(1098), - [sym_ternary_expression] = STATE(1098), - [sym_new_expression] = STATE(1098), - [sym_object_access] = STATE(1039), - [sym_member_access] = STATE(1098), - [sym_can_find_expression] = STATE(1098), - [sym_accumulate_expression] = STATE(1098), - [sym_available_expression] = STATE(1098), - [sym__expression] = STATE(1032), - [aux_sym_qualified_name_repeat1] = STATE(340), - [aux_sym_object_access_repeat1] = STATE(3384), - [aux_sym_member_access_repeat1] = STATE(5090), - [aux_sym_abl_statement_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(772), - [anon_sym_COLON] = ACTIONS(834), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_where_clause] = STATE(3861), + [sym_query_tuning] = STATE(3861), + [sym_can_find_expression] = STATE(30), + [sym_of] = STATE(3861), + [sym_using] = STATE(3271), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(1252), + [aux_sym_can_find_expression_repeat1] = STATE(3341), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(776), - [sym__terminator] = ACTIONS(836), - [sym_null_expression] = ACTIONS(780), - [aux_sym_boolean_literal_token1] = ACTIONS(782), - [aux_sym_boolean_literal_token2] = ACTIONS(782), - [aux_sym_boolean_literal_token3] = ACTIONS(782), - [aux_sym_boolean_literal_token4] = ACTIONS(782), - [sym__integer_literal] = ACTIONS(784), - [sym_date_literal] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(788), - [aux_sym_unary_expression_token1] = ACTIONS(790), - [aux_sym_unary_expression_token2] = ACTIONS(792), - [aux_sym_ambiguous_expression_token1] = ACTIONS(794), - [aux_sym_temp_table_expression_token1] = ACTIONS(796), - [aux_sym_current_changed_expression_token1] = ACTIONS(798), - [aux_sym_locked_expression_token1] = ACTIONS(800), - [aux_sym_dataset_expression_token1] = ACTIONS(802), - [aux_sym_input_expression_token1] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(806), - [aux_sym_scope_tuning_token1] = ACTIONS(808), - [aux_sym_if_statement_token1] = ACTIONS(810), - [aux_sym_can_find_expression_token1] = ACTIONS(812), - [aux_sym_accumulate_expression_token1] = ACTIONS(814), - [aux_sym_available_expression_token1] = ACTIONS(816), - [aux_sym_available_expression_token2] = ACTIONS(816), - [sym__namedot] = ACTIONS(818), - [sym__namecolon] = ACTIONS(820), - [sym__namedoublecolon] = ACTIONS(822), - [sym__escaped_string] = ACTIONS(824), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(737), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(695), + [aux_sym_ambiguous_expression_token1] = ACTIONS(697), + [aux_sym_temp_table_expression_token1] = ACTIONS(699), + [aux_sym_current_changed_expression_token1] = ACTIONS(701), + [aux_sym_locked_expression_token1] = ACTIONS(703), + [aux_sym_dataset_expression_token1] = ACTIONS(705), + [aux_sym_input_expression_token1] = ACTIONS(707), + [aux_sym_scope_tuning_token1] = ACTIONS(709), + [aux_sym_function_call_token1] = ACTIONS(711), + [aux_sym_if_statement_token1] = ACTIONS(713), + [aux_sym_using_statement_token1] = ACTIONS(715), + [aux_sym_where_clause_token1] = ACTIONS(717), + [aux_sym_query_tuning_token1] = ACTIONS(711), + [aux_sym_query_tuning_token2] = ACTIONS(711), + [aux_sym_query_tuning_token3] = ACTIONS(711), + [aux_sym_query_tuning_token4] = ACTIONS(711), + [aux_sym_query_tuning_token5] = ACTIONS(719), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_of_token1] = ACTIONS(721), + [aux_sym_accumulate_expression_token1] = ACTIONS(723), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [136] = { [sym_comment] = STATE(136), + [sym_constant] = STATE(1107), + [sym_qualified_name] = STATE(1107), + [sym_boolean_literal] = STATE(1107), + [sym__decimal_literal] = STATE(1125), + [sym_number_literal] = STATE(1107), + [sym_string_literal] = STATE(1107), + [sym_array_literal] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_logical_expression] = STATE(1093), + [sym_unary_expression] = STATE(1107), + [sym_ambiguous_expression] = STATE(1107), + [sym_temp_table_expression] = STATE(1107), + [sym_current_changed_expression] = STATE(1107), + [sym_locked_expression] = STATE(1107), + [sym_dataset_expression] = STATE(1107), + [sym_input_expression] = STATE(1107), + [sym_additive_expression] = STATE(1093), + [sym_multiplicative_expression] = STATE(1093), + [sym_comparison_expression] = STATE(1093), + [sym__binary_expression] = STATE(1107), + [sym_array_access] = STATE(1107), [sym_include] = STATE(136), - [sym_function_arguments] = STATE(293), - [aux_sym_qualified_name_repeat1] = STATE(205), - [aux_sym_object_access_repeat1] = STATE(174), - [aux_sym_member_access_repeat1] = STATE(201), - [anon_sym_COLON] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(63), - [sym__terminator] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(840), - [aux_sym_type_tuning_token2] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [aux_sym__multiplicative_operator_token1] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(69), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_LT_GT] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(69), - [anon_sym_GT_EQ] = ACTIONS(63), - [aux_sym__comparison_operator_token1] = ACTIONS(63), - [aux_sym__comparison_operator_token2] = ACTIONS(63), - [aux_sym__comparison_operator_token3] = ACTIONS(63), - [aux_sym__comparison_operator_token4] = ACTIONS(63), - [aux_sym__comparison_operator_token5] = ACTIONS(63), - [aux_sym__comparison_operator_token6] = ACTIONS(63), - [aux_sym__comparison_operator_token7] = ACTIONS(63), - [aux_sym__comparison_operator_token8] = ACTIONS(63), - [aux_sym__comparison_operator_token9] = ACTIONS(63), - [aux_sym_variable_tuning_token4] = ACTIONS(63), - [aux_sym_function_call_token1] = ACTIONS(63), - [aux_sym_using_statement_token1] = ACTIONS(63), - [aux_sym_on_error_phrase_token1] = ACTIONS(63), - [aux_sym_query_tuning_token1] = ACTIONS(63), - [aux_sym_query_tuning_token2] = ACTIONS(63), - [aux_sym_query_tuning_token3] = ACTIONS(63), - [aux_sym_query_tuning_token4] = ACTIONS(63), - [aux_sym_query_tuning_token5] = ACTIONS(63), - [aux_sym_sort_clause_token1] = ACTIONS(63), - [aux_sym_sort_clause_token2] = ACTIONS(63), - [aux_sym_image_phrase_token1] = ACTIONS(69), - [aux_sym_image_phrase_token2] = ACTIONS(63), - [aux_sym_size_phrase_token1] = ACTIONS(69), - [aux_sym_size_phrase_token2] = ACTIONS(63), - [aux_sym_size_phrase_token3] = ACTIONS(63), - [aux_sym_button_tuning_token1] = ACTIONS(63), - [aux_sym_button_tuning_token3] = ACTIONS(63), - [aux_sym_button_tuning_token4] = ACTIONS(63), - [aux_sym_button_tuning_token5] = ACTIONS(63), - [aux_sym_button_tuning_token6] = ACTIONS(63), - [aux_sym_button_tuning_token7] = ACTIONS(63), - [aux_sym_button_tuning_token8] = ACTIONS(63), - [aux_sym_button_tuning_token9] = ACTIONS(63), - [aux_sym_button_tuning_token10] = ACTIONS(63), - [aux_sym_button_tuning_token11] = ACTIONS(63), - [aux_sym_button_tuning_token12] = ACTIONS(63), - [aux_sym_button_tuning_token13] = ACTIONS(63), - [aux_sym_button_tuning_token14] = ACTIONS(63), - [aux_sym_button_tuning_token16] = ACTIONS(63), - [aux_sym_button_tuning_token17] = ACTIONS(63), - [sym__namedot] = ACTIONS(842), - [sym__namecolon] = ACTIONS(844), - [sym__namedoublecolon] = ACTIONS(846), - [sym__or_operator] = ACTIONS(63), - [sym__and_operator] = ACTIONS(63), + [sym_function_arguments] = STATE(3531), + [sym_function_call] = STATE(1059), + [sym_ternary_expression] = STATE(1107), + [sym_new_expression] = STATE(1059), + [sym_object_access] = STATE(1065), + [sym_member_access] = STATE(1107), + [sym_can_find_expression] = STATE(1107), + [sym_accumulate_expression] = STATE(1107), + [sym_available_expression] = STATE(1107), + [sym__expression] = STATE(1061), + [aux_sym_qualified_name_repeat1] = STATE(4729), + [aux_sym_object_access_repeat1] = STATE(4582), + [aux_sym_member_access_repeat1] = STATE(4751), + [aux_sym_abl_statement_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(777), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(781), + [sym__terminator] = ACTIONS(783), + [sym_null_expression] = ACTIONS(785), + [aux_sym_boolean_literal_token1] = ACTIONS(787), + [aux_sym_boolean_literal_token2] = ACTIONS(787), + [aux_sym_boolean_literal_token3] = ACTIONS(787), + [aux_sym_boolean_literal_token4] = ACTIONS(787), + [sym__integer_literal] = ACTIONS(789), + [sym_date_literal] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_LPAREN] = ACTIONS(793), + [aux_sym_unary_expression_token1] = ACTIONS(795), + [aux_sym_unary_expression_token2] = ACTIONS(797), + [aux_sym_ambiguous_expression_token1] = ACTIONS(799), + [aux_sym_temp_table_expression_token1] = ACTIONS(801), + [aux_sym_current_changed_expression_token1] = ACTIONS(803), + [aux_sym_locked_expression_token1] = ACTIONS(805), + [aux_sym_dataset_expression_token1] = ACTIONS(807), + [aux_sym_input_expression_token1] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(811), + [aux_sym_scope_tuning_token1] = ACTIONS(813), + [aux_sym_if_statement_token1] = ACTIONS(815), + [aux_sym_can_find_expression_token1] = ACTIONS(817), + [aux_sym_accumulate_expression_token1] = ACTIONS(819), + [aux_sym_available_expression_token1] = ACTIONS(821), + [aux_sym_available_expression_token2] = ACTIONS(821), + [sym__namedot] = ACTIONS(823), + [sym__namecolon] = ACTIONS(825), + [sym__namedoublecolon] = ACTIONS(827), + [sym__augmented_assignment] = ACTIONS(829), + [sym__escaped_string] = ACTIONS(831), }, [137] = { [sym_comment] = STATE(137), - [sym_constant] = STATE(1098), - [sym_qualified_name] = STATE(1098), - [sym_boolean_literal] = STATE(1098), - [sym__decimal_literal] = STATE(1075), - [sym_number_literal] = STATE(1098), - [sym_string_literal] = STATE(1098), - [sym_array_literal] = STATE(1098), - [sym_parenthesized_expression] = STATE(1098), - [sym_logical_expression] = STATE(1074), - [sym_unary_expression] = STATE(1098), - [sym_ambiguous_expression] = STATE(1098), - [sym_temp_table_expression] = STATE(1098), - [sym_current_changed_expression] = STATE(1098), - [sym_locked_expression] = STATE(1098), - [sym_dataset_expression] = STATE(1098), - [sym_input_expression] = STATE(1098), - [sym_additive_expression] = STATE(1074), - [sym_multiplicative_expression] = STATE(1074), - [sym_comparison_expression] = STATE(1074), - [sym__binary_expression] = STATE(1098), - [sym_array_access] = STATE(1098), + [sym_constant] = STATE(1107), + [sym_qualified_name] = STATE(1107), + [sym_boolean_literal] = STATE(1107), + [sym__decimal_literal] = STATE(1125), + [sym_number_literal] = STATE(1107), + [sym_string_literal] = STATE(1107), + [sym_array_literal] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_logical_expression] = STATE(1093), + [sym_unary_expression] = STATE(1107), + [sym_ambiguous_expression] = STATE(1107), + [sym_temp_table_expression] = STATE(1107), + [sym_current_changed_expression] = STATE(1107), + [sym_locked_expression] = STATE(1107), + [sym_dataset_expression] = STATE(1107), + [sym_input_expression] = STATE(1107), + [sym_additive_expression] = STATE(1093), + [sym_multiplicative_expression] = STATE(1093), + [sym_comparison_expression] = STATE(1093), + [sym__binary_expression] = STATE(1107), + [sym_array_access] = STATE(1107), [sym_include] = STATE(137), - [sym_function_arguments] = STATE(3610), - [sym_function_call] = STATE(1098), - [sym_ternary_expression] = STATE(1098), - [sym_new_expression] = STATE(1098), - [sym_object_access] = STATE(1039), - [sym_member_access] = STATE(1098), - [sym_can_find_expression] = STATE(1098), - [sym_accumulate_expression] = STATE(1098), - [sym_available_expression] = STATE(1098), - [sym__expression] = STATE(1032), - [aux_sym_qualified_name_repeat1] = STATE(340), - [aux_sym_object_access_repeat1] = STATE(3384), - [aux_sym_member_access_repeat1] = STATE(5090), - [aux_sym_abl_statement_repeat1] = STATE(246), - [sym_identifier] = ACTIONS(772), - [anon_sym_COLON] = ACTIONS(848), + [sym_function_arguments] = STATE(3531), + [sym_function_call] = STATE(1059), + [sym_ternary_expression] = STATE(1107), + [sym_new_expression] = STATE(1059), + [sym_object_access] = STATE(1065), + [sym_member_access] = STATE(1107), + [sym_can_find_expression] = STATE(1107), + [sym_accumulate_expression] = STATE(1107), + [sym_available_expression] = STATE(1107), + [sym__expression] = STATE(1061), + [aux_sym_qualified_name_repeat1] = STATE(4729), + [aux_sym_object_access_repeat1] = STATE(4582), + [aux_sym_member_access_repeat1] = STATE(4751), + [aux_sym_abl_statement_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(777), + [anon_sym_COLON] = ACTIONS(833), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(776), - [sym__terminator] = ACTIONS(850), - [sym_null_expression] = ACTIONS(780), - [aux_sym_boolean_literal_token1] = ACTIONS(782), - [aux_sym_boolean_literal_token2] = ACTIONS(782), - [aux_sym_boolean_literal_token3] = ACTIONS(782), - [aux_sym_boolean_literal_token4] = ACTIONS(782), - [sym__integer_literal] = ACTIONS(784), - [sym_date_literal] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(788), - [aux_sym_unary_expression_token1] = ACTIONS(790), - [aux_sym_unary_expression_token2] = ACTIONS(792), - [aux_sym_ambiguous_expression_token1] = ACTIONS(794), - [aux_sym_temp_table_expression_token1] = ACTIONS(796), - [aux_sym_current_changed_expression_token1] = ACTIONS(798), - [aux_sym_locked_expression_token1] = ACTIONS(800), - [aux_sym_dataset_expression_token1] = ACTIONS(802), - [aux_sym_input_expression_token1] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(806), - [aux_sym_scope_tuning_token1] = ACTIONS(808), - [aux_sym_if_statement_token1] = ACTIONS(810), - [aux_sym_can_find_expression_token1] = ACTIONS(812), - [aux_sym_accumulate_expression_token1] = ACTIONS(814), - [aux_sym_available_expression_token1] = ACTIONS(816), - [aux_sym_available_expression_token2] = ACTIONS(816), - [sym__namedot] = ACTIONS(818), - [sym__namecolon] = ACTIONS(820), - [sym__namedoublecolon] = ACTIONS(822), - [sym__escaped_string] = ACTIONS(824), + [anon_sym_LBRACE] = ACTIONS(781), + [sym__terminator] = ACTIONS(835), + [sym_null_expression] = ACTIONS(785), + [aux_sym_boolean_literal_token1] = ACTIONS(787), + [aux_sym_boolean_literal_token2] = ACTIONS(787), + [aux_sym_boolean_literal_token3] = ACTIONS(787), + [aux_sym_boolean_literal_token4] = ACTIONS(787), + [sym__integer_literal] = ACTIONS(789), + [sym_date_literal] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_LPAREN] = ACTIONS(793), + [aux_sym_unary_expression_token1] = ACTIONS(795), + [aux_sym_unary_expression_token2] = ACTIONS(797), + [aux_sym_ambiguous_expression_token1] = ACTIONS(799), + [aux_sym_temp_table_expression_token1] = ACTIONS(801), + [aux_sym_current_changed_expression_token1] = ACTIONS(803), + [aux_sym_locked_expression_token1] = ACTIONS(805), + [aux_sym_dataset_expression_token1] = ACTIONS(807), + [aux_sym_input_expression_token1] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(811), + [aux_sym_scope_tuning_token1] = ACTIONS(813), + [aux_sym_if_statement_token1] = ACTIONS(815), + [aux_sym_can_find_expression_token1] = ACTIONS(817), + [aux_sym_accumulate_expression_token1] = ACTIONS(819), + [aux_sym_available_expression_token1] = ACTIONS(821), + [aux_sym_available_expression_token2] = ACTIONS(821), + [sym__namedot] = ACTIONS(823), + [sym__namecolon] = ACTIONS(825), + [sym__namedoublecolon] = ACTIONS(827), + [sym__augmented_assignment] = ACTIONS(829), + [sym__escaped_string] = ACTIONS(831), }, [138] = { [sym_comment] = STATE(138), + [sym_constant] = STATE(1107), + [sym_qualified_name] = STATE(1107), + [sym_boolean_literal] = STATE(1107), + [sym__decimal_literal] = STATE(1125), + [sym_number_literal] = STATE(1107), + [sym_string_literal] = STATE(1107), + [sym_array_literal] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_logical_expression] = STATE(1093), + [sym_unary_expression] = STATE(1107), + [sym_ambiguous_expression] = STATE(1107), + [sym_temp_table_expression] = STATE(1107), + [sym_current_changed_expression] = STATE(1107), + [sym_locked_expression] = STATE(1107), + [sym_dataset_expression] = STATE(1107), + [sym_input_expression] = STATE(1107), + [sym_additive_expression] = STATE(1093), + [sym_multiplicative_expression] = STATE(1093), + [sym_comparison_expression] = STATE(1093), + [sym__binary_expression] = STATE(1107), + [sym_array_access] = STATE(1107), [sym_include] = STATE(138), - [sym_function_arguments] = STATE(293), - [aux_sym_qualified_name_repeat1] = STATE(205), - [aux_sym_object_access_repeat1] = STATE(174), - [aux_sym_member_access_repeat1] = STATE(201), - [anon_sym_COLON] = ACTIONS(83), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(83), - [sym__terminator] = ACTIONS(83), - [anon_sym_COMMA] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(840), - [aux_sym_type_tuning_token2] = ACTIONS(83), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [aux_sym__multiplicative_operator_token1] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(83), - [anon_sym_LT_GT] = ACTIONS(83), - [anon_sym_EQ] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_EQ] = ACTIONS(83), - [aux_sym__comparison_operator_token1] = ACTIONS(83), - [aux_sym__comparison_operator_token2] = ACTIONS(83), - [aux_sym__comparison_operator_token3] = ACTIONS(83), - [aux_sym__comparison_operator_token4] = ACTIONS(83), - [aux_sym__comparison_operator_token5] = ACTIONS(83), - [aux_sym__comparison_operator_token6] = ACTIONS(83), - [aux_sym__comparison_operator_token7] = ACTIONS(83), - [aux_sym__comparison_operator_token8] = ACTIONS(83), - [aux_sym__comparison_operator_token9] = ACTIONS(83), - [aux_sym_variable_tuning_token4] = ACTIONS(83), - [aux_sym_function_call_token1] = ACTIONS(83), - [aux_sym_using_statement_token1] = ACTIONS(83), - [aux_sym_on_error_phrase_token1] = ACTIONS(83), - [aux_sym_query_tuning_token1] = ACTIONS(83), - [aux_sym_query_tuning_token2] = ACTIONS(83), - [aux_sym_query_tuning_token3] = ACTIONS(83), - [aux_sym_query_tuning_token4] = ACTIONS(83), - [aux_sym_query_tuning_token5] = ACTIONS(83), - [aux_sym_sort_clause_token1] = ACTIONS(83), - [aux_sym_sort_clause_token2] = ACTIONS(83), - [aux_sym_image_phrase_token1] = ACTIONS(85), - [aux_sym_image_phrase_token2] = ACTIONS(83), - [aux_sym_size_phrase_token1] = ACTIONS(85), - [aux_sym_size_phrase_token2] = ACTIONS(83), - [aux_sym_size_phrase_token3] = ACTIONS(83), - [aux_sym_button_tuning_token1] = ACTIONS(83), - [aux_sym_button_tuning_token3] = ACTIONS(83), - [aux_sym_button_tuning_token4] = ACTIONS(83), - [aux_sym_button_tuning_token5] = ACTIONS(83), - [aux_sym_button_tuning_token6] = ACTIONS(83), - [aux_sym_button_tuning_token7] = ACTIONS(83), - [aux_sym_button_tuning_token8] = ACTIONS(83), - [aux_sym_button_tuning_token9] = ACTIONS(83), - [aux_sym_button_tuning_token10] = ACTIONS(83), - [aux_sym_button_tuning_token11] = ACTIONS(83), - [aux_sym_button_tuning_token12] = ACTIONS(83), - [aux_sym_button_tuning_token13] = ACTIONS(83), - [aux_sym_button_tuning_token14] = ACTIONS(83), - [aux_sym_button_tuning_token16] = ACTIONS(83), - [aux_sym_button_tuning_token17] = ACTIONS(83), - [sym__namedot] = ACTIONS(842), - [sym__namecolon] = ACTIONS(844), - [sym__namedoublecolon] = ACTIONS(846), - [sym__or_operator] = ACTIONS(83), - [sym__and_operator] = ACTIONS(83), + [sym_function_arguments] = STATE(3531), + [sym_function_call] = STATE(1059), + [sym_ternary_expression] = STATE(1107), + [sym_new_expression] = STATE(1059), + [sym_object_access] = STATE(1065), + [sym_member_access] = STATE(1107), + [sym_can_find_expression] = STATE(1107), + [sym_accumulate_expression] = STATE(1107), + [sym_available_expression] = STATE(1107), + [sym__expression] = STATE(1061), + [aux_sym_qualified_name_repeat1] = STATE(4729), + [aux_sym_object_access_repeat1] = STATE(4582), + [aux_sym_member_access_repeat1] = STATE(4751), + [aux_sym_abl_statement_repeat1] = STATE(280), + [sym_identifier] = ACTIONS(777), + [anon_sym_COLON] = ACTIONS(837), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(781), + [sym__terminator] = ACTIONS(839), + [sym_null_expression] = ACTIONS(785), + [aux_sym_boolean_literal_token1] = ACTIONS(787), + [aux_sym_boolean_literal_token2] = ACTIONS(787), + [aux_sym_boolean_literal_token3] = ACTIONS(787), + [aux_sym_boolean_literal_token4] = ACTIONS(787), + [sym__integer_literal] = ACTIONS(789), + [sym_date_literal] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_LPAREN] = ACTIONS(793), + [aux_sym_unary_expression_token1] = ACTIONS(795), + [aux_sym_unary_expression_token2] = ACTIONS(797), + [aux_sym_ambiguous_expression_token1] = ACTIONS(799), + [aux_sym_temp_table_expression_token1] = ACTIONS(801), + [aux_sym_current_changed_expression_token1] = ACTIONS(803), + [aux_sym_locked_expression_token1] = ACTIONS(805), + [aux_sym_dataset_expression_token1] = ACTIONS(807), + [aux_sym_input_expression_token1] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(811), + [aux_sym_scope_tuning_token1] = ACTIONS(813), + [aux_sym_if_statement_token1] = ACTIONS(815), + [aux_sym_can_find_expression_token1] = ACTIONS(817), + [aux_sym_accumulate_expression_token1] = ACTIONS(819), + [aux_sym_available_expression_token1] = ACTIONS(821), + [aux_sym_available_expression_token2] = ACTIONS(821), + [sym__namedot] = ACTIONS(823), + [sym__namecolon] = ACTIONS(825), + [sym__namedoublecolon] = ACTIONS(827), + [sym__augmented_assignment] = ACTIONS(829), + [sym__escaped_string] = ACTIONS(831), }, [139] = { [sym_comment] = STATE(139), - [sym_constant] = STATE(1004), - [sym_qualified_name] = STATE(1004), - [sym_boolean_literal] = STATE(1004), - [sym__decimal_literal] = STATE(982), - [sym_number_literal] = STATE(1004), - [sym_string_literal] = STATE(1004), - [sym_array_literal] = STATE(1004), - [sym_parenthesized_expression] = STATE(1004), - [sym_logical_expression] = STATE(1002), - [sym_unary_expression] = STATE(1004), - [sym_ambiguous_expression] = STATE(1004), - [sym_temp_table_expression] = STATE(1004), - [sym_current_changed_expression] = STATE(1004), - [sym_locked_expression] = STATE(1004), - [sym_dataset_expression] = STATE(1004), - [sym_input_expression] = STATE(1004), - [sym_additive_expression] = STATE(1002), - [sym_multiplicative_expression] = STATE(1002), - [sym_comparison_expression] = STATE(1002), - [sym__binary_expression] = STATE(1004), - [sym_array_access] = STATE(1004), + [sym_constant] = STATE(1107), + [sym_qualified_name] = STATE(1107), + [sym_boolean_literal] = STATE(1107), + [sym__decimal_literal] = STATE(1125), + [sym_number_literal] = STATE(1107), + [sym_string_literal] = STATE(1107), + [sym_array_literal] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_logical_expression] = STATE(1093), + [sym_unary_expression] = STATE(1107), + [sym_ambiguous_expression] = STATE(1107), + [sym_temp_table_expression] = STATE(1107), + [sym_current_changed_expression] = STATE(1107), + [sym_locked_expression] = STATE(1107), + [sym_dataset_expression] = STATE(1107), + [sym_input_expression] = STATE(1107), + [sym_additive_expression] = STATE(1093), + [sym_multiplicative_expression] = STATE(1093), + [sym_comparison_expression] = STATE(1093), + [sym__binary_expression] = STATE(1107), + [sym_array_access] = STATE(1107), [sym_include] = STATE(139), - [sym_function_call] = STATE(1004), - [sym_ternary_expression] = STATE(1004), - [sym_new_expression] = STATE(1004), - [sym_object_access] = STATE(698), - [sym_member_access] = STATE(1004), - [sym_sort_column] = STATE(2492), - [sym_can_find_expression] = STATE(1004), - [sym_accumulate_expression] = STATE(1004), - [sym_available_expression] = STATE(1004), - [sym_index_tuning] = STATE(1968), - [sym__expression] = STATE(200), - [aux_sym_sort_clause_repeat1] = STATE(186), - [aux_sym_index_definition_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(852), + [sym_function_arguments] = STATE(3531), + [sym_function_call] = STATE(1059), + [sym_ternary_expression] = STATE(1107), + [sym_new_expression] = STATE(1059), + [sym_object_access] = STATE(1065), + [sym_member_access] = STATE(1107), + [sym_can_find_expression] = STATE(1107), + [sym_accumulate_expression] = STATE(1107), + [sym_available_expression] = STATE(1107), + [sym__expression] = STATE(1061), + [aux_sym_qualified_name_repeat1] = STATE(4729), + [aux_sym_object_access_repeat1] = STATE(4582), + [aux_sym_member_access_repeat1] = STATE(4751), + [aux_sym_abl_statement_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(777), + [anon_sym_COLON] = ACTIONS(841), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(854), - [sym__terminator] = ACTIONS(856), - [sym_null_expression] = ACTIONS(858), - [aux_sym_boolean_literal_token1] = ACTIONS(860), - [aux_sym_boolean_literal_token2] = ACTIONS(860), - [aux_sym_boolean_literal_token3] = ACTIONS(860), - [aux_sym_boolean_literal_token4] = ACTIONS(860), - [sym__integer_literal] = ACTIONS(862), - [sym_date_literal] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(864), - [anon_sym_LPAREN] = ACTIONS(866), - [aux_sym_type_tuning_token1] = ACTIONS(868), - [aux_sym_unary_expression_token1] = ACTIONS(870), - [aux_sym_unary_expression_token2] = ACTIONS(872), - [aux_sym_ambiguous_expression_token1] = ACTIONS(874), - [aux_sym_temp_table_expression_token1] = ACTIONS(876), - [aux_sym_current_changed_expression_token1] = ACTIONS(878), - [aux_sym_locked_expression_token1] = ACTIONS(880), - [aux_sym_dataset_expression_token1] = ACTIONS(882), - [aux_sym_input_expression_token1] = ACTIONS(884), - [aux_sym_scope_tuning_token1] = ACTIONS(886), - [aux_sym_if_statement_token1] = ACTIONS(888), - [aux_sym_can_find_expression_token1] = ACTIONS(890), - [aux_sym_accumulate_expression_token1] = ACTIONS(892), - [aux_sym_available_expression_token1] = ACTIONS(894), - [aux_sym_available_expression_token2] = ACTIONS(894), - [aux_sym_field_definition_token1] = ACTIONS(856), - [aux_sym_index_tuning_token1] = ACTIONS(868), - [aux_sym_index_definition_token1] = ACTIONS(856), - [sym__escaped_string] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(781), + [sym__terminator] = ACTIONS(843), + [sym_null_expression] = ACTIONS(785), + [aux_sym_boolean_literal_token1] = ACTIONS(787), + [aux_sym_boolean_literal_token2] = ACTIONS(787), + [aux_sym_boolean_literal_token3] = ACTIONS(787), + [aux_sym_boolean_literal_token4] = ACTIONS(787), + [sym__integer_literal] = ACTIONS(789), + [sym_date_literal] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_LPAREN] = ACTIONS(793), + [aux_sym_unary_expression_token1] = ACTIONS(795), + [aux_sym_unary_expression_token2] = ACTIONS(797), + [aux_sym_ambiguous_expression_token1] = ACTIONS(799), + [aux_sym_temp_table_expression_token1] = ACTIONS(801), + [aux_sym_current_changed_expression_token1] = ACTIONS(803), + [aux_sym_locked_expression_token1] = ACTIONS(805), + [aux_sym_dataset_expression_token1] = ACTIONS(807), + [aux_sym_input_expression_token1] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(811), + [aux_sym_scope_tuning_token1] = ACTIONS(813), + [aux_sym_if_statement_token1] = ACTIONS(815), + [aux_sym_can_find_expression_token1] = ACTIONS(817), + [aux_sym_accumulate_expression_token1] = ACTIONS(819), + [aux_sym_available_expression_token1] = ACTIONS(821), + [aux_sym_available_expression_token2] = ACTIONS(821), + [sym__namedot] = ACTIONS(823), + [sym__namecolon] = ACTIONS(825), + [sym__namedoublecolon] = ACTIONS(827), + [sym__augmented_assignment] = ACTIONS(829), + [sym__escaped_string] = ACTIONS(831), }, [140] = { [sym_comment] = STATE(140), - [sym_constant] = STATE(1004), - [sym_qualified_name] = STATE(1004), - [sym_boolean_literal] = STATE(1004), - [sym__decimal_literal] = STATE(982), - [sym_number_literal] = STATE(1004), - [sym_string_literal] = STATE(1004), - [sym_array_literal] = STATE(1004), - [sym_parenthesized_expression] = STATE(1004), - [sym_logical_expression] = STATE(1002), - [sym_unary_expression] = STATE(1004), - [sym_ambiguous_expression] = STATE(1004), - [sym_temp_table_expression] = STATE(1004), - [sym_current_changed_expression] = STATE(1004), - [sym_locked_expression] = STATE(1004), - [sym_dataset_expression] = STATE(1004), - [sym_input_expression] = STATE(1004), - [sym_additive_expression] = STATE(1002), - [sym_multiplicative_expression] = STATE(1002), - [sym_comparison_expression] = STATE(1002), - [sym__binary_expression] = STATE(1004), - [sym_array_access] = STATE(1004), + [sym_constant] = STATE(1107), + [sym_qualified_name] = STATE(1107), + [sym_boolean_literal] = STATE(1107), + [sym__decimal_literal] = STATE(1125), + [sym_number_literal] = STATE(1107), + [sym_string_literal] = STATE(1107), + [sym_array_literal] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_logical_expression] = STATE(1093), + [sym_unary_expression] = STATE(1107), + [sym_ambiguous_expression] = STATE(1107), + [sym_temp_table_expression] = STATE(1107), + [sym_current_changed_expression] = STATE(1107), + [sym_locked_expression] = STATE(1107), + [sym_dataset_expression] = STATE(1107), + [sym_input_expression] = STATE(1107), + [sym_additive_expression] = STATE(1093), + [sym_multiplicative_expression] = STATE(1093), + [sym_comparison_expression] = STATE(1093), + [sym__binary_expression] = STATE(1107), + [sym_array_access] = STATE(1107), [sym_include] = STATE(140), - [sym_function_call] = STATE(1004), - [sym_ternary_expression] = STATE(1004), - [sym_new_expression] = STATE(1004), - [sym_object_access] = STATE(698), - [sym_member_access] = STATE(1004), - [sym_sort_column] = STATE(2492), - [sym_can_find_expression] = STATE(1004), - [sym_accumulate_expression] = STATE(1004), - [sym_available_expression] = STATE(1004), - [sym_index_tuning] = STATE(1968), - [sym__expression] = STATE(200), - [aux_sym_sort_clause_repeat1] = STATE(187), - [aux_sym_index_definition_repeat1] = STATE(1489), - [sym_identifier] = ACTIONS(852), + [sym_function_arguments] = STATE(3531), + [sym_function_call] = STATE(1059), + [sym_ternary_expression] = STATE(1107), + [sym_new_expression] = STATE(1059), + [sym_object_access] = STATE(1065), + [sym_member_access] = STATE(1107), + [sym_can_find_expression] = STATE(1107), + [sym_accumulate_expression] = STATE(1107), + [sym_available_expression] = STATE(1107), + [sym__expression] = STATE(1061), + [aux_sym_qualified_name_repeat1] = STATE(4729), + [aux_sym_object_access_repeat1] = STATE(4582), + [aux_sym_member_access_repeat1] = STATE(4751), + [aux_sym_abl_statement_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(777), + [anon_sym_COLON] = ACTIONS(845), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(854), - [sym__terminator] = ACTIONS(898), - [sym_null_expression] = ACTIONS(858), - [aux_sym_boolean_literal_token1] = ACTIONS(860), - [aux_sym_boolean_literal_token2] = ACTIONS(860), - [aux_sym_boolean_literal_token3] = ACTIONS(860), - [aux_sym_boolean_literal_token4] = ACTIONS(860), - [sym__integer_literal] = ACTIONS(862), - [sym_date_literal] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(864), - [anon_sym_LPAREN] = ACTIONS(866), - [aux_sym_type_tuning_token1] = ACTIONS(868), - [aux_sym_unary_expression_token1] = ACTIONS(870), - [aux_sym_unary_expression_token2] = ACTIONS(872), - [aux_sym_ambiguous_expression_token1] = ACTIONS(874), - [aux_sym_temp_table_expression_token1] = ACTIONS(876), - [aux_sym_current_changed_expression_token1] = ACTIONS(878), - [aux_sym_locked_expression_token1] = ACTIONS(880), - [aux_sym_dataset_expression_token1] = ACTIONS(882), - [aux_sym_input_expression_token1] = ACTIONS(884), - [aux_sym_scope_tuning_token1] = ACTIONS(886), - [aux_sym_if_statement_token1] = ACTIONS(888), - [aux_sym_can_find_expression_token1] = ACTIONS(890), - [aux_sym_accumulate_expression_token1] = ACTIONS(892), - [aux_sym_available_expression_token1] = ACTIONS(894), - [aux_sym_available_expression_token2] = ACTIONS(894), - [aux_sym_field_definition_token1] = ACTIONS(898), - [aux_sym_index_tuning_token1] = ACTIONS(868), - [aux_sym_index_definition_token1] = ACTIONS(898), - [sym__escaped_string] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(781), + [sym__terminator] = ACTIONS(847), + [sym_null_expression] = ACTIONS(785), + [aux_sym_boolean_literal_token1] = ACTIONS(787), + [aux_sym_boolean_literal_token2] = ACTIONS(787), + [aux_sym_boolean_literal_token3] = ACTIONS(787), + [aux_sym_boolean_literal_token4] = ACTIONS(787), + [sym__integer_literal] = ACTIONS(789), + [sym_date_literal] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_LPAREN] = ACTIONS(793), + [aux_sym_unary_expression_token1] = ACTIONS(795), + [aux_sym_unary_expression_token2] = ACTIONS(797), + [aux_sym_ambiguous_expression_token1] = ACTIONS(799), + [aux_sym_temp_table_expression_token1] = ACTIONS(801), + [aux_sym_current_changed_expression_token1] = ACTIONS(803), + [aux_sym_locked_expression_token1] = ACTIONS(805), + [aux_sym_dataset_expression_token1] = ACTIONS(807), + [aux_sym_input_expression_token1] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(811), + [aux_sym_scope_tuning_token1] = ACTIONS(813), + [aux_sym_if_statement_token1] = ACTIONS(815), + [aux_sym_can_find_expression_token1] = ACTIONS(817), + [aux_sym_accumulate_expression_token1] = ACTIONS(819), + [aux_sym_available_expression_token1] = ACTIONS(821), + [aux_sym_available_expression_token2] = ACTIONS(821), + [sym__namedot] = ACTIONS(823), + [sym__namecolon] = ACTIONS(825), + [sym__namedoublecolon] = ACTIONS(827), + [sym__augmented_assignment] = ACTIONS(829), + [sym__escaped_string] = ACTIONS(831), }, [141] = { [sym_comment] = STATE(141), [sym_include] = STATE(141), - [sym_function_arguments] = STATE(300), - [aux_sym_qualified_name_repeat1] = STATE(220), - [aux_sym_object_access_repeat1] = STATE(216), - [aux_sym_member_access_repeat1] = STATE(217), - [sym_identifier] = ACTIONS(85), + [sym_function_arguments] = STATE(226), + [aux_sym_qualified_name_repeat1] = STATE(215), + [aux_sym_object_access_repeat1] = STATE(184), + [aux_sym_member_access_repeat1] = STATE(207), + [anon_sym_COLON] = ACTIONS(65), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(65), + [sym__terminator] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_COMMA] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(851), + [aux_sym_type_tuning_token2] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [aux_sym__multiplicative_operator_token1] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_LT_EQ] = ACTIONS(65), + [anon_sym_LT_GT] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(71), + [anon_sym_GT_EQ] = ACTIONS(65), + [aux_sym__comparison_operator_token1] = ACTIONS(65), + [aux_sym__comparison_operator_token2] = ACTIONS(65), + [aux_sym__comparison_operator_token3] = ACTIONS(65), + [aux_sym__comparison_operator_token4] = ACTIONS(65), + [aux_sym__comparison_operator_token5] = ACTIONS(65), + [aux_sym__comparison_operator_token6] = ACTIONS(65), + [aux_sym__comparison_operator_token7] = ACTIONS(65), + [aux_sym__comparison_operator_token8] = ACTIONS(65), + [aux_sym__comparison_operator_token9] = ACTIONS(65), + [aux_sym_variable_tuning_token4] = ACTIONS(65), + [aux_sym_function_call_token1] = ACTIONS(65), + [aux_sym_using_statement_token1] = ACTIONS(65), + [aux_sym_on_error_phrase_token1] = ACTIONS(65), + [aux_sym_query_tuning_token1] = ACTIONS(65), + [aux_sym_query_tuning_token2] = ACTIONS(65), + [aux_sym_query_tuning_token3] = ACTIONS(65), + [aux_sym_query_tuning_token4] = ACTIONS(65), + [aux_sym_query_tuning_token5] = ACTIONS(65), + [aux_sym_sort_clause_token1] = ACTIONS(65), + [aux_sym_sort_clause_token2] = ACTIONS(65), + [aux_sym_image_phrase_token1] = ACTIONS(71), + [aux_sym_image_phrase_token2] = ACTIONS(65), + [aux_sym_size_phrase_token1] = ACTIONS(71), + [aux_sym_size_phrase_token2] = ACTIONS(65), + [aux_sym_size_phrase_token3] = ACTIONS(65), + [aux_sym_button_tuning_token1] = ACTIONS(65), + [aux_sym_button_tuning_token3] = ACTIONS(65), + [aux_sym_button_tuning_token4] = ACTIONS(65), + [aux_sym_button_tuning_token5] = ACTIONS(65), + [aux_sym_button_tuning_token6] = ACTIONS(65), + [aux_sym_button_tuning_token7] = ACTIONS(65), + [aux_sym_button_tuning_token8] = ACTIONS(65), + [aux_sym_button_tuning_token9] = ACTIONS(65), + [aux_sym_button_tuning_token10] = ACTIONS(65), + [aux_sym_button_tuning_token11] = ACTIONS(65), + [aux_sym_button_tuning_token12] = ACTIONS(65), + [aux_sym_button_tuning_token13] = ACTIONS(65), + [aux_sym_button_tuning_token14] = ACTIONS(65), + [aux_sym_button_tuning_token16] = ACTIONS(65), + [aux_sym_button_tuning_token17] = ACTIONS(65), + [sym__namedot] = ACTIONS(853), + [sym__namecolon] = ACTIONS(855), + [sym__namedoublecolon] = ACTIONS(857), + [sym__or_operator] = ACTIONS(65), + [sym__and_operator] = ACTIONS(65), + }, + [142] = { + [sym_comment] = STATE(142), + [sym_include] = STATE(142), + [sym_function_arguments] = STATE(226), + [aux_sym_qualified_name_repeat1] = STATE(215), + [aux_sym_object_access_repeat1] = STATE(184), + [aux_sym_member_access_repeat1] = STATE(207), [anon_sym_COLON] = ACTIONS(85), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(87), + [anon_sym_LBRACE] = ACTIONS(73), [anon_sym_STAR] = ACTIONS(85), - [sym_null_expression] = ACTIONS(85), - [aux_sym_boolean_literal_token1] = ACTIONS(85), - [aux_sym_boolean_literal_token2] = ACTIONS(85), - [aux_sym_boolean_literal_token3] = ACTIONS(85), - [aux_sym_boolean_literal_token4] = ACTIONS(85), - [sym__integer_literal] = ACTIONS(85), - [sym_date_literal] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(85), + [sym__terminator] = ACTIONS(85), [anon_sym_COMMA] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(900), - [aux_sym_unary_expression_token1] = ACTIONS(85), - [aux_sym_unary_expression_token2] = ACTIONS(85), - [aux_sym_ambiguous_expression_token1] = ACTIONS(85), - [aux_sym_temp_table_expression_token1] = ACTIONS(85), - [aux_sym_current_changed_expression_token1] = ACTIONS(85), - [aux_sym_locked_expression_token1] = ACTIONS(85), - [aux_sym_dataset_expression_token1] = ACTIONS(85), - [aux_sym_input_expression_token1] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(851), + [aux_sym_type_tuning_token2] = ACTIONS(85), [anon_sym_PLUS] = ACTIONS(85), [anon_sym_DASH] = ACTIONS(85), [aux_sym__multiplicative_operator_token1] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(87), [anon_sym_LT_EQ] = ACTIONS(85), [anon_sym_LT_GT] = ACTIONS(85), [anon_sym_EQ] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(87), [anon_sym_GT_EQ] = ACTIONS(85), [aux_sym__comparison_operator_token1] = ACTIONS(85), [aux_sym__comparison_operator_token2] = ACTIONS(85), @@ -55771,3996 +56556,4573 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__comparison_operator_token7] = ACTIONS(85), [aux_sym__comparison_operator_token8] = ACTIONS(85), [aux_sym__comparison_operator_token9] = ACTIONS(85), - [aux_sym_scope_tuning_token1] = ACTIONS(85), - [aux_sym_if_statement_token1] = ACTIONS(85), + [aux_sym_variable_tuning_token4] = ACTIONS(85), + [aux_sym_function_call_token1] = ACTIONS(85), + [aux_sym_using_statement_token1] = ACTIONS(85), [aux_sym_on_error_phrase_token1] = ACTIONS(85), - [aux_sym_sort_order_token1] = ACTIONS(85), - [aux_sym_sort_order_token2] = ACTIONS(85), - [aux_sym_sort_order_token3] = ACTIONS(85), - [aux_sym_sort_order_token4] = 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_sort_clause_token1] = ACTIONS(85), [aux_sym_sort_clause_token2] = ACTIONS(85), - [aux_sym_can_find_expression_token1] = ACTIONS(85), - [aux_sym_accumulate_expression_token1] = ACTIONS(85), - [aux_sym_available_expression_token1] = ACTIONS(85), - [aux_sym_available_expression_token2] = ACTIONS(85), - [sym__namedot] = ACTIONS(902), - [sym__namecolon] = ACTIONS(904), - [sym__namedoublecolon] = ACTIONS(906), - [sym__or_operator] = ACTIONS(83), - [sym__and_operator] = ACTIONS(83), - [sym__escaped_string] = ACTIONS(83), - }, - [142] = { - [sym_comment] = STATE(142), - [sym_include] = STATE(142), - [sym_function_arguments] = STATE(300), - [aux_sym_qualified_name_repeat1] = STATE(220), - [aux_sym_object_access_repeat1] = STATE(216), - [aux_sym_member_access_repeat1] = STATE(217), - [sym_identifier] = ACTIONS(69), - [anon_sym_COLON] = ACTIONS(69), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(69), - [anon_sym_STAR] = ACTIONS(69), - [sym_null_expression] = ACTIONS(69), - [aux_sym_boolean_literal_token1] = ACTIONS(69), - [aux_sym_boolean_literal_token2] = ACTIONS(69), - [aux_sym_boolean_literal_token3] = ACTIONS(69), - [aux_sym_boolean_literal_token4] = ACTIONS(69), - [sym__integer_literal] = ACTIONS(69), - [sym_date_literal] = ACTIONS(69), - [anon_sym_LBRACK] = ACTIONS(908), - [anon_sym_COMMA] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(900), - [aux_sym_unary_expression_token1] = ACTIONS(69), - [aux_sym_unary_expression_token2] = ACTIONS(69), - [aux_sym_ambiguous_expression_token1] = ACTIONS(69), - [aux_sym_temp_table_expression_token1] = ACTIONS(69), - [aux_sym_current_changed_expression_token1] = ACTIONS(69), - [aux_sym_locked_expression_token1] = ACTIONS(69), - [aux_sym_dataset_expression_token1] = ACTIONS(69), - [aux_sym_input_expression_token1] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [aux_sym__multiplicative_operator_token1] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(69), - [anon_sym_LT_EQ] = ACTIONS(69), - [anon_sym_LT_GT] = ACTIONS(69), - [anon_sym_EQ] = ACTIONS(69), - [anon_sym_GT] = ACTIONS(69), - [anon_sym_GT_EQ] = ACTIONS(69), - [aux_sym__comparison_operator_token1] = ACTIONS(69), - [aux_sym__comparison_operator_token2] = ACTIONS(69), - [aux_sym__comparison_operator_token3] = ACTIONS(69), - [aux_sym__comparison_operator_token4] = ACTIONS(69), - [aux_sym__comparison_operator_token5] = ACTIONS(69), - [aux_sym__comparison_operator_token6] = ACTIONS(69), - [aux_sym__comparison_operator_token7] = ACTIONS(69), - [aux_sym__comparison_operator_token8] = ACTIONS(69), - [aux_sym__comparison_operator_token9] = ACTIONS(69), - [aux_sym_scope_tuning_token1] = ACTIONS(69), - [aux_sym_if_statement_token1] = ACTIONS(69), - [aux_sym_on_error_phrase_token1] = ACTIONS(69), - [aux_sym_sort_order_token1] = ACTIONS(69), - [aux_sym_sort_order_token2] = ACTIONS(69), - [aux_sym_sort_order_token3] = ACTIONS(69), - [aux_sym_sort_order_token4] = ACTIONS(69), - [aux_sym_sort_clause_token1] = ACTIONS(69), - [aux_sym_sort_clause_token2] = ACTIONS(69), - [aux_sym_can_find_expression_token1] = ACTIONS(69), - [aux_sym_accumulate_expression_token1] = ACTIONS(69), - [aux_sym_available_expression_token1] = ACTIONS(69), - [aux_sym_available_expression_token2] = ACTIONS(69), - [sym__namedot] = ACTIONS(902), - [sym__namecolon] = ACTIONS(904), - [sym__namedoublecolon] = ACTIONS(906), - [sym__or_operator] = ACTIONS(63), - [sym__and_operator] = ACTIONS(63), - [sym__escaped_string] = ACTIONS(63), + [aux_sym_image_phrase_token1] = ACTIONS(87), + [aux_sym_image_phrase_token2] = ACTIONS(85), + [aux_sym_size_phrase_token1] = ACTIONS(87), + [aux_sym_size_phrase_token2] = ACTIONS(85), + [aux_sym_size_phrase_token3] = ACTIONS(85), + [aux_sym_button_tuning_token1] = ACTIONS(85), + [aux_sym_button_tuning_token3] = ACTIONS(85), + [aux_sym_button_tuning_token4] = ACTIONS(85), + [aux_sym_button_tuning_token5] = ACTIONS(85), + [aux_sym_button_tuning_token6] = ACTIONS(85), + [aux_sym_button_tuning_token7] = ACTIONS(85), + [aux_sym_button_tuning_token8] = ACTIONS(85), + [aux_sym_button_tuning_token9] = ACTIONS(85), + [aux_sym_button_tuning_token10] = ACTIONS(85), + [aux_sym_button_tuning_token11] = ACTIONS(85), + [aux_sym_button_tuning_token12] = ACTIONS(85), + [aux_sym_button_tuning_token13] = ACTIONS(85), + [aux_sym_button_tuning_token14] = ACTIONS(85), + [aux_sym_button_tuning_token16] = ACTIONS(85), + [aux_sym_button_tuning_token17] = ACTIONS(85), + [sym__namedot] = ACTIONS(853), + [sym__namecolon] = ACTIONS(855), + [sym__namedoublecolon] = ACTIONS(857), + [sym__or_operator] = ACTIONS(85), + [sym__and_operator] = ACTIONS(85), }, [143] = { [sym_comment] = STATE(143), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(997), + [sym_qualified_name] = STATE(997), + [sym_boolean_literal] = STATE(997), + [sym__decimal_literal] = STATE(1000), + [sym_number_literal] = STATE(997), + [sym_string_literal] = STATE(997), + [sym_array_literal] = STATE(997), + [sym_parenthesized_expression] = STATE(997), + [sym_logical_expression] = STATE(1014), + [sym_unary_expression] = STATE(997), + [sym_ambiguous_expression] = STATE(997), + [sym_temp_table_expression] = STATE(997), + [sym_current_changed_expression] = STATE(997), + [sym_locked_expression] = STATE(997), + [sym_dataset_expression] = STATE(997), + [sym_input_expression] = STATE(997), + [sym_additive_expression] = STATE(1014), + [sym_multiplicative_expression] = STATE(1014), + [sym_comparison_expression] = STATE(1014), + [sym__binary_expression] = STATE(997), + [sym_array_access] = STATE(997), [sym_include] = STATE(143), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5359), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(355), + [sym_ternary_expression] = STATE(997), + [sym_new_expression] = STATE(355), + [sym_object_access] = STATE(668), + [sym_member_access] = STATE(997), + [sym_sort_column] = STATE(2541), + [sym_can_find_expression] = STATE(997), + [sym_accumulate_expression] = STATE(997), + [sym_available_expression] = STATE(997), + [sym_index_tuning] = STATE(2194), + [sym__expression] = STATE(218), + [aux_sym_sort_clause_repeat1] = STATE(203), + [aux_sym_index_definition_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(859), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(910), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(861), + [sym__terminator] = ACTIONS(863), + [sym_null_expression] = ACTIONS(865), + [aux_sym_boolean_literal_token1] = ACTIONS(867), + [aux_sym_boolean_literal_token2] = ACTIONS(867), + [aux_sym_boolean_literal_token3] = ACTIONS(867), + [aux_sym_boolean_literal_token4] = ACTIONS(867), + [sym__integer_literal] = ACTIONS(869), + [sym_date_literal] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(873), + [aux_sym_type_tuning_token1] = ACTIONS(875), + [aux_sym_unary_expression_token1] = ACTIONS(877), + [aux_sym_unary_expression_token2] = ACTIONS(879), + [aux_sym_ambiguous_expression_token1] = ACTIONS(881), + [aux_sym_temp_table_expression_token1] = ACTIONS(883), + [aux_sym_current_changed_expression_token1] = ACTIONS(885), + [aux_sym_locked_expression_token1] = ACTIONS(887), + [aux_sym_dataset_expression_token1] = ACTIONS(889), + [aux_sym_input_expression_token1] = ACTIONS(891), + [aux_sym_scope_tuning_token1] = ACTIONS(893), + [aux_sym_if_statement_token1] = ACTIONS(895), + [aux_sym_can_find_expression_token1] = ACTIONS(897), + [aux_sym_accumulate_expression_token1] = ACTIONS(899), + [aux_sym_available_expression_token1] = ACTIONS(901), + [aux_sym_available_expression_token2] = ACTIONS(901), + [aux_sym_field_definition_token1] = ACTIONS(863), + [aux_sym_index_tuning_token1] = ACTIONS(875), + [aux_sym_index_definition_token1] = ACTIONS(863), + [sym__escaped_string] = ACTIONS(903), }, [144] = { [sym_comment] = STATE(144), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(997), + [sym_qualified_name] = STATE(997), + [sym_boolean_literal] = STATE(997), + [sym__decimal_literal] = STATE(1000), + [sym_number_literal] = STATE(997), + [sym_string_literal] = STATE(997), + [sym_array_literal] = STATE(997), + [sym_parenthesized_expression] = STATE(997), + [sym_logical_expression] = STATE(1014), + [sym_unary_expression] = STATE(997), + [sym_ambiguous_expression] = STATE(997), + [sym_temp_table_expression] = STATE(997), + [sym_current_changed_expression] = STATE(997), + [sym_locked_expression] = STATE(997), + [sym_dataset_expression] = STATE(997), + [sym_input_expression] = STATE(997), + [sym_additive_expression] = STATE(1014), + [sym_multiplicative_expression] = STATE(1014), + [sym_comparison_expression] = STATE(1014), + [sym__binary_expression] = STATE(997), + [sym_array_access] = STATE(997), [sym_include] = STATE(144), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5167), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(355), + [sym_ternary_expression] = STATE(997), + [sym_new_expression] = STATE(355), + [sym_object_access] = STATE(668), + [sym_member_access] = STATE(997), + [sym_sort_column] = STATE(2541), + [sym_can_find_expression] = STATE(997), + [sym_accumulate_expression] = STATE(997), + [sym_available_expression] = STATE(997), + [sym_index_tuning] = STATE(2194), + [sym__expression] = STATE(218), + [aux_sym_sort_clause_repeat1] = STATE(206), + [aux_sym_index_definition_repeat1] = STATE(1508), + [sym_identifier] = ACTIONS(859), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(912), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(861), + [sym__terminator] = ACTIONS(905), + [sym_null_expression] = ACTIONS(865), + [aux_sym_boolean_literal_token1] = ACTIONS(867), + [aux_sym_boolean_literal_token2] = ACTIONS(867), + [aux_sym_boolean_literal_token3] = ACTIONS(867), + [aux_sym_boolean_literal_token4] = ACTIONS(867), + [sym__integer_literal] = ACTIONS(869), + [sym_date_literal] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(873), + [aux_sym_type_tuning_token1] = ACTIONS(875), + [aux_sym_unary_expression_token1] = ACTIONS(877), + [aux_sym_unary_expression_token2] = ACTIONS(879), + [aux_sym_ambiguous_expression_token1] = ACTIONS(881), + [aux_sym_temp_table_expression_token1] = ACTIONS(883), + [aux_sym_current_changed_expression_token1] = ACTIONS(885), + [aux_sym_locked_expression_token1] = ACTIONS(887), + [aux_sym_dataset_expression_token1] = ACTIONS(889), + [aux_sym_input_expression_token1] = ACTIONS(891), + [aux_sym_scope_tuning_token1] = ACTIONS(893), + [aux_sym_if_statement_token1] = ACTIONS(895), + [aux_sym_can_find_expression_token1] = ACTIONS(897), + [aux_sym_accumulate_expression_token1] = ACTIONS(899), + [aux_sym_available_expression_token1] = ACTIONS(901), + [aux_sym_available_expression_token2] = ACTIONS(901), + [aux_sym_field_definition_token1] = ACTIONS(905), + [aux_sym_index_tuning_token1] = ACTIONS(875), + [aux_sym_index_definition_token1] = ACTIONS(905), + [sym__escaped_string] = ACTIONS(903), }, [145] = { [sym_comment] = STATE(145), - [sym_constant] = STATE(357), - [sym_qualified_name] = STATE(357), - [sym_boolean_literal] = STATE(357), - [sym__decimal_literal] = STATE(319), - [sym_number_literal] = STATE(357), - [sym_string_literal] = STATE(357), - [sym_array_literal] = STATE(357), - [sym_parenthesized_expression] = STATE(357), - [sym_logical_expression] = STATE(354), - [sym_unary_expression] = STATE(357), - [sym_ambiguous_expression] = STATE(357), - [sym_temp_table_expression] = STATE(357), - [sym_current_changed_expression] = STATE(357), - [sym_locked_expression] = STATE(357), - [sym_dataset_expression] = STATE(357), - [sym_input_expression] = STATE(357), - [sym_additive_expression] = STATE(354), - [sym_multiplicative_expression] = STATE(354), - [sym_comparison_expression] = STATE(354), - [sym__binary_expression] = STATE(357), - [sym_array_access] = STATE(357), [sym_include] = STATE(145), - [sym_function_call] = STATE(357), - [sym_ternary_expression] = STATE(357), - [sym_new_expression] = STATE(357), - [sym_object_access] = STATE(263), - [sym_member_access] = STATE(357), - [sym_sort_column] = STATE(1955), - [sym_can_find_expression] = STATE(357), - [sym_accumulate_expression] = STATE(357), - [sym_available_expression] = STATE(357), - [sym__expression] = STATE(175), - [aux_sym_sort_clause_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(914), - [anon_sym_COLON] = ACTIONS(916), + [sym_function_arguments] = STATE(257), + [aux_sym_qualified_name_repeat1] = STATE(223), + [aux_sym_object_access_repeat1] = STATE(254), + [aux_sym_member_access_repeat1] = STATE(256), + [sym_identifier] = ACTIONS(87), + [anon_sym_COLON] = ACTIONS(87), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(918), - [sym_null_expression] = ACTIONS(920), - [aux_sym_boolean_literal_token1] = ACTIONS(922), - [aux_sym_boolean_literal_token2] = ACTIONS(922), - [aux_sym_boolean_literal_token3] = ACTIONS(922), - [aux_sym_boolean_literal_token4] = ACTIONS(922), - [sym__integer_literal] = ACTIONS(924), - [sym_date_literal] = ACTIONS(920), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(916), - [anon_sym_LPAREN] = ACTIONS(928), - [aux_sym_unary_expression_token1] = ACTIONS(930), - [aux_sym_unary_expression_token2] = ACTIONS(932), - [aux_sym_ambiguous_expression_token1] = ACTIONS(934), - [aux_sym_temp_table_expression_token1] = ACTIONS(936), - [aux_sym_current_changed_expression_token1] = ACTIONS(938), - [aux_sym_locked_expression_token1] = ACTIONS(940), - [aux_sym_dataset_expression_token1] = ACTIONS(942), - [aux_sym_input_expression_token1] = ACTIONS(944), - [aux_sym_scope_tuning_token1] = ACTIONS(946), - [aux_sym_if_statement_token1] = ACTIONS(948), - [aux_sym_on_error_phrase_token1] = ACTIONS(916), - [aux_sym_sort_clause_token1] = ACTIONS(916), - [aux_sym_sort_clause_token2] = ACTIONS(916), - [aux_sym_can_find_expression_token1] = ACTIONS(950), - [aux_sym_accumulate_expression_token1] = ACTIONS(952), - [aux_sym_available_expression_token1] = ACTIONS(954), - [aux_sym_available_expression_token2] = ACTIONS(954), - [sym__escaped_string] = ACTIONS(956), + [anon_sym_SLASH] = ACTIONS(87), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(87), + [sym_null_expression] = ACTIONS(87), + [aux_sym_boolean_literal_token1] = ACTIONS(87), + [aux_sym_boolean_literal_token2] = ACTIONS(87), + [aux_sym_boolean_literal_token3] = ACTIONS(87), + [aux_sym_boolean_literal_token4] = ACTIONS(87), + [sym__integer_literal] = ACTIONS(87), + [sym_date_literal] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_COMMA] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(907), + [aux_sym_unary_expression_token1] = ACTIONS(87), + [aux_sym_unary_expression_token2] = ACTIONS(87), + [aux_sym_ambiguous_expression_token1] = ACTIONS(87), + [aux_sym_temp_table_expression_token1] = ACTIONS(87), + [aux_sym_current_changed_expression_token1] = ACTIONS(87), + [aux_sym_locked_expression_token1] = ACTIONS(87), + [aux_sym_dataset_expression_token1] = ACTIONS(87), + [aux_sym_input_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [aux_sym__multiplicative_operator_token1] = ACTIONS(87), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(87), + [anon_sym_LT_GT] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_EQ] = ACTIONS(87), + [aux_sym__comparison_operator_token1] = ACTIONS(87), + [aux_sym__comparison_operator_token2] = ACTIONS(87), + [aux_sym__comparison_operator_token3] = ACTIONS(87), + [aux_sym__comparison_operator_token4] = ACTIONS(87), + [aux_sym__comparison_operator_token5] = ACTIONS(87), + [aux_sym__comparison_operator_token6] = ACTIONS(87), + [aux_sym__comparison_operator_token7] = ACTIONS(87), + [aux_sym__comparison_operator_token8] = ACTIONS(87), + [aux_sym__comparison_operator_token9] = ACTIONS(87), + [aux_sym_scope_tuning_token1] = ACTIONS(87), + [aux_sym_if_statement_token1] = ACTIONS(87), + [aux_sym_on_error_phrase_token1] = ACTIONS(87), + [aux_sym_sort_order_token1] = ACTIONS(87), + [aux_sym_sort_order_token2] = ACTIONS(87), + [aux_sym_sort_order_token3] = ACTIONS(87), + [aux_sym_sort_order_token4] = ACTIONS(87), + [aux_sym_sort_clause_token1] = ACTIONS(87), + [aux_sym_sort_clause_token2] = ACTIONS(87), + [aux_sym_can_find_expression_token1] = ACTIONS(87), + [aux_sym_accumulate_expression_token1] = ACTIONS(87), + [aux_sym_available_expression_token1] = ACTIONS(87), + [aux_sym_available_expression_token2] = ACTIONS(87), + [sym__namedot] = ACTIONS(909), + [sym__namecolon] = ACTIONS(911), + [sym__namedoublecolon] = ACTIONS(913), + [sym__or_operator] = ACTIONS(85), + [sym__and_operator] = ACTIONS(85), + [sym__escaped_string] = ACTIONS(85), }, [146] = { [sym_comment] = STATE(146), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), [sym_include] = STATE(146), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5121), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_function_arguments] = STATE(257), + [aux_sym_qualified_name_repeat1] = STATE(223), + [aux_sym_object_access_repeat1] = STATE(254), + [aux_sym_member_access_repeat1] = STATE(256), + [sym_identifier] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(71), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(958), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(71), + [sym_null_expression] = ACTIONS(71), + [aux_sym_boolean_literal_token1] = ACTIONS(71), + [aux_sym_boolean_literal_token2] = ACTIONS(71), + [aux_sym_boolean_literal_token3] = ACTIONS(71), + [aux_sym_boolean_literal_token4] = ACTIONS(71), + [sym__integer_literal] = ACTIONS(71), + [sym_date_literal] = ACTIONS(71), + [anon_sym_LBRACK] = ACTIONS(915), + [anon_sym_COMMA] = ACTIONS(71), + [anon_sym_LPAREN] = ACTIONS(907), + [aux_sym_unary_expression_token1] = ACTIONS(71), + [aux_sym_unary_expression_token2] = ACTIONS(71), + [aux_sym_ambiguous_expression_token1] = ACTIONS(71), + [aux_sym_temp_table_expression_token1] = ACTIONS(71), + [aux_sym_current_changed_expression_token1] = ACTIONS(71), + [aux_sym_locked_expression_token1] = ACTIONS(71), + [aux_sym_dataset_expression_token1] = ACTIONS(71), + [aux_sym_input_expression_token1] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [aux_sym__multiplicative_operator_token1] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_LT_EQ] = ACTIONS(71), + [anon_sym_LT_GT] = ACTIONS(71), + [anon_sym_EQ] = ACTIONS(71), + [anon_sym_GT] = ACTIONS(71), + [anon_sym_GT_EQ] = ACTIONS(71), + [aux_sym__comparison_operator_token1] = ACTIONS(71), + [aux_sym__comparison_operator_token2] = ACTIONS(71), + [aux_sym__comparison_operator_token3] = ACTIONS(71), + [aux_sym__comparison_operator_token4] = ACTIONS(71), + [aux_sym__comparison_operator_token5] = ACTIONS(71), + [aux_sym__comparison_operator_token6] = ACTIONS(71), + [aux_sym__comparison_operator_token7] = ACTIONS(71), + [aux_sym__comparison_operator_token8] = ACTIONS(71), + [aux_sym__comparison_operator_token9] = ACTIONS(71), + [aux_sym_scope_tuning_token1] = ACTIONS(71), + [aux_sym_if_statement_token1] = ACTIONS(71), + [aux_sym_on_error_phrase_token1] = ACTIONS(71), + [aux_sym_sort_order_token1] = ACTIONS(71), + [aux_sym_sort_order_token2] = ACTIONS(71), + [aux_sym_sort_order_token3] = ACTIONS(71), + [aux_sym_sort_order_token4] = ACTIONS(71), + [aux_sym_sort_clause_token1] = ACTIONS(71), + [aux_sym_sort_clause_token2] = ACTIONS(71), + [aux_sym_can_find_expression_token1] = ACTIONS(71), + [aux_sym_accumulate_expression_token1] = ACTIONS(71), + [aux_sym_available_expression_token1] = ACTIONS(71), + [aux_sym_available_expression_token2] = ACTIONS(71), + [sym__namedot] = ACTIONS(909), + [sym__namecolon] = ACTIONS(911), + [sym__namedoublecolon] = ACTIONS(913), + [sym__or_operator] = ACTIONS(65), + [sym__and_operator] = ACTIONS(65), + [sym__escaped_string] = ACTIONS(65), }, [147] = { [sym_comment] = STATE(147), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(147), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5120), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5179), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(960), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(917), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [148] = { [sym_comment] = STATE(148), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(148), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5311), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5194), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(962), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(919), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [149] = { [sym_comment] = STATE(149), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(149), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5269), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5390), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(964), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(921), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [150] = { [sym_comment] = STATE(150), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(150), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5345), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5245), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(966), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(923), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [151] = { [sym_comment] = STATE(151), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(151), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5333), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5269), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(968), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(925), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [152] = { [sym_comment] = STATE(152), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(152), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5308), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5363), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(970), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(927), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [153] = { [sym_comment] = STATE(153), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(153), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5101), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5334), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(972), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(929), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [154] = { [sym_comment] = STATE(154), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(154), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5299), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5302), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(654), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(931), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [155] = { [sym_comment] = STATE(155), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(155), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5330), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5258), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(974), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(933), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [156] = { [sym_comment] = STATE(156), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(156), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5266), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5291), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(976), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(935), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [157] = { [sym_comment] = STATE(157), - [sym_constant] = STATE(357), - [sym_qualified_name] = STATE(357), - [sym_boolean_literal] = STATE(357), - [sym__decimal_literal] = STATE(319), - [sym_number_literal] = STATE(357), - [sym_string_literal] = STATE(357), - [sym_array_literal] = STATE(357), - [sym_parenthesized_expression] = STATE(357), - [sym_logical_expression] = STATE(354), - [sym_unary_expression] = STATE(357), - [sym_ambiguous_expression] = STATE(357), - [sym_temp_table_expression] = STATE(357), - [sym_current_changed_expression] = STATE(357), - [sym_locked_expression] = STATE(357), - [sym_dataset_expression] = STATE(357), - [sym_input_expression] = STATE(357), - [sym_additive_expression] = STATE(354), - [sym_multiplicative_expression] = STATE(354), - [sym_comparison_expression] = STATE(354), - [sym__binary_expression] = STATE(357), - [sym_array_access] = STATE(357), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(157), - [sym_function_call] = STATE(357), - [sym_ternary_expression] = STATE(357), - [sym_new_expression] = STATE(357), - [sym_object_access] = STATE(263), - [sym_member_access] = STATE(357), - [sym_sort_column] = STATE(1955), - [sym_can_find_expression] = STATE(357), - [sym_accumulate_expression] = STATE(357), - [sym_available_expression] = STATE(357), - [sym__expression] = STATE(175), - [aux_sym_sort_clause_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(914), - [anon_sym_COLON] = ACTIONS(978), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5257), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(918), - [sym_null_expression] = ACTIONS(920), - [aux_sym_boolean_literal_token1] = ACTIONS(922), - [aux_sym_boolean_literal_token2] = ACTIONS(922), - [aux_sym_boolean_literal_token3] = ACTIONS(922), - [aux_sym_boolean_literal_token4] = ACTIONS(922), - [sym__integer_literal] = ACTIONS(924), - [sym_date_literal] = ACTIONS(920), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(928), - [aux_sym_unary_expression_token1] = ACTIONS(930), - [aux_sym_unary_expression_token2] = ACTIONS(932), - [aux_sym_ambiguous_expression_token1] = ACTIONS(934), - [aux_sym_temp_table_expression_token1] = ACTIONS(936), - [aux_sym_current_changed_expression_token1] = ACTIONS(938), - [aux_sym_locked_expression_token1] = ACTIONS(940), - [aux_sym_dataset_expression_token1] = ACTIONS(942), - [aux_sym_input_expression_token1] = ACTIONS(944), - [aux_sym_scope_tuning_token1] = ACTIONS(946), - [aux_sym_if_statement_token1] = ACTIONS(948), - [aux_sym_on_error_phrase_token1] = ACTIONS(978), - [aux_sym_sort_clause_token1] = ACTIONS(978), - [aux_sym_sort_clause_token2] = ACTIONS(978), - [aux_sym_can_find_expression_token1] = ACTIONS(950), - [aux_sym_accumulate_expression_token1] = ACTIONS(952), - [aux_sym_available_expression_token1] = ACTIONS(954), - [aux_sym_available_expression_token2] = ACTIONS(954), - [sym__escaped_string] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(937), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [158] = { [sym_comment] = STATE(158), - [sym_constant] = STATE(357), - [sym_qualified_name] = STATE(357), - [sym_boolean_literal] = STATE(357), - [sym__decimal_literal] = STATE(319), - [sym_number_literal] = STATE(357), - [sym_string_literal] = STATE(357), - [sym_array_literal] = STATE(357), - [sym_parenthesized_expression] = STATE(357), - [sym_logical_expression] = STATE(354), - [sym_unary_expression] = STATE(357), - [sym_ambiguous_expression] = STATE(357), - [sym_temp_table_expression] = STATE(357), - [sym_current_changed_expression] = STATE(357), - [sym_locked_expression] = STATE(357), - [sym_dataset_expression] = STATE(357), - [sym_input_expression] = STATE(357), - [sym_additive_expression] = STATE(354), - [sym_multiplicative_expression] = STATE(354), - [sym_comparison_expression] = STATE(354), - [sym__binary_expression] = STATE(357), - [sym_array_access] = STATE(357), + [sym_constant] = STATE(384), + [sym_qualified_name] = STATE(384), + [sym_boolean_literal] = STATE(384), + [sym__decimal_literal] = STATE(363), + [sym_number_literal] = STATE(384), + [sym_string_literal] = STATE(384), + [sym_array_literal] = STATE(384), + [sym_parenthesized_expression] = STATE(384), + [sym_logical_expression] = STATE(382), + [sym_unary_expression] = STATE(384), + [sym_ambiguous_expression] = STATE(384), + [sym_temp_table_expression] = STATE(384), + [sym_current_changed_expression] = STATE(384), + [sym_locked_expression] = STATE(384), + [sym_dataset_expression] = STATE(384), + [sym_input_expression] = STATE(384), + [sym_additive_expression] = STATE(382), + [sym_multiplicative_expression] = STATE(382), + [sym_comparison_expression] = STATE(382), + [sym__binary_expression] = STATE(384), + [sym_array_access] = STATE(384), [sym_include] = STATE(158), - [sym_function_call] = STATE(357), - [sym_ternary_expression] = STATE(357), - [sym_new_expression] = STATE(357), - [sym_object_access] = STATE(263), - [sym_member_access] = STATE(357), - [sym_sort_column] = STATE(1955), - [sym_can_find_expression] = STATE(357), - [sym_accumulate_expression] = STATE(357), - [sym_available_expression] = STATE(357), - [sym__expression] = STATE(175), - [aux_sym_sort_clause_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(980), - [anon_sym_COLON] = ACTIONS(983), + [sym_function_call] = STATE(261), + [sym_ternary_expression] = STATE(384), + [sym_new_expression] = STATE(261), + [sym_object_access] = STATE(270), + [sym_member_access] = STATE(384), + [sym_sort_column] = STATE(2307), + [sym_can_find_expression] = STATE(384), + [sym_accumulate_expression] = STATE(384), + [sym_available_expression] = STATE(384), + [sym__expression] = STATE(180), + [aux_sym_sort_clause_repeat1] = STATE(161), + [sym_identifier] = ACTIONS(939), + [anon_sym_COLON] = ACTIONS(941), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(985), - [sym_null_expression] = ACTIONS(988), - [aux_sym_boolean_literal_token1] = ACTIONS(991), - [aux_sym_boolean_literal_token2] = ACTIONS(991), - [aux_sym_boolean_literal_token3] = ACTIONS(991), - [aux_sym_boolean_literal_token4] = ACTIONS(991), - [sym__integer_literal] = ACTIONS(994), - [sym_date_literal] = ACTIONS(988), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_COMMA] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(1000), - [aux_sym_unary_expression_token1] = ACTIONS(1003), - [aux_sym_unary_expression_token2] = ACTIONS(1006), - [aux_sym_ambiguous_expression_token1] = ACTIONS(1009), - [aux_sym_temp_table_expression_token1] = ACTIONS(1012), - [aux_sym_current_changed_expression_token1] = ACTIONS(1015), - [aux_sym_locked_expression_token1] = ACTIONS(1018), - [aux_sym_dataset_expression_token1] = ACTIONS(1021), - [aux_sym_input_expression_token1] = ACTIONS(1024), - [aux_sym_scope_tuning_token1] = ACTIONS(1027), - [aux_sym_if_statement_token1] = ACTIONS(1030), - [aux_sym_on_error_phrase_token1] = ACTIONS(983), - [aux_sym_sort_clause_token1] = ACTIONS(983), - [aux_sym_sort_clause_token2] = ACTIONS(983), - [aux_sym_can_find_expression_token1] = ACTIONS(1033), - [aux_sym_accumulate_expression_token1] = ACTIONS(1036), - [aux_sym_available_expression_token1] = ACTIONS(1039), - [aux_sym_available_expression_token2] = ACTIONS(1039), - [sym__escaped_string] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(943), + [sym_null_expression] = ACTIONS(945), + [aux_sym_boolean_literal_token1] = ACTIONS(947), + [aux_sym_boolean_literal_token2] = ACTIONS(947), + [aux_sym_boolean_literal_token3] = ACTIONS(947), + [aux_sym_boolean_literal_token4] = ACTIONS(947), + [sym__integer_literal] = ACTIONS(949), + [sym_date_literal] = ACTIONS(945), + [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_COMMA] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(953), + [aux_sym_unary_expression_token1] = ACTIONS(955), + [aux_sym_unary_expression_token2] = ACTIONS(957), + [aux_sym_ambiguous_expression_token1] = ACTIONS(959), + [aux_sym_temp_table_expression_token1] = ACTIONS(961), + [aux_sym_current_changed_expression_token1] = ACTIONS(963), + [aux_sym_locked_expression_token1] = ACTIONS(965), + [aux_sym_dataset_expression_token1] = ACTIONS(967), + [aux_sym_input_expression_token1] = ACTIONS(969), + [aux_sym_scope_tuning_token1] = ACTIONS(971), + [aux_sym_if_statement_token1] = ACTIONS(973), + [aux_sym_on_error_phrase_token1] = ACTIONS(941), + [aux_sym_sort_clause_token1] = ACTIONS(941), + [aux_sym_sort_clause_token2] = ACTIONS(941), + [aux_sym_can_find_expression_token1] = ACTIONS(975), + [aux_sym_accumulate_expression_token1] = ACTIONS(977), + [aux_sym_available_expression_token1] = ACTIONS(979), + [aux_sym_available_expression_token2] = ACTIONS(979), + [sym__escaped_string] = ACTIONS(981), }, [159] = { [sym_comment] = STATE(159), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(384), + [sym_qualified_name] = STATE(384), + [sym_boolean_literal] = STATE(384), + [sym__decimal_literal] = STATE(363), + [sym_number_literal] = STATE(384), + [sym_string_literal] = STATE(384), + [sym_array_literal] = STATE(384), + [sym_parenthesized_expression] = STATE(384), + [sym_logical_expression] = STATE(382), + [sym_unary_expression] = STATE(384), + [sym_ambiguous_expression] = STATE(384), + [sym_temp_table_expression] = STATE(384), + [sym_current_changed_expression] = STATE(384), + [sym_locked_expression] = STATE(384), + [sym_dataset_expression] = STATE(384), + [sym_input_expression] = STATE(384), + [sym_additive_expression] = STATE(382), + [sym_multiplicative_expression] = STATE(382), + [sym_comparison_expression] = STATE(382), + [sym__binary_expression] = STATE(384), + [sym_array_access] = STATE(384), [sym_include] = STATE(159), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5328), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_function_call] = STATE(261), + [sym_ternary_expression] = STATE(384), + [sym_new_expression] = STATE(261), + [sym_object_access] = STATE(270), + [sym_member_access] = STATE(384), + [sym_sort_column] = STATE(2307), + [sym_can_find_expression] = STATE(384), + [sym_accumulate_expression] = STATE(384), + [sym_available_expression] = STATE(384), + [sym__expression] = STATE(180), + [aux_sym_sort_clause_repeat1] = STATE(161), + [sym_identifier] = ACTIONS(939), + [anon_sym_COLON] = ACTIONS(983), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(1045), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(943), + [sym_null_expression] = ACTIONS(945), + [aux_sym_boolean_literal_token1] = ACTIONS(947), + [aux_sym_boolean_literal_token2] = ACTIONS(947), + [aux_sym_boolean_literal_token3] = ACTIONS(947), + [aux_sym_boolean_literal_token4] = ACTIONS(947), + [sym__integer_literal] = ACTIONS(949), + [sym_date_literal] = ACTIONS(945), + [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_COMMA] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(953), + [aux_sym_unary_expression_token1] = ACTIONS(955), + [aux_sym_unary_expression_token2] = ACTIONS(957), + [aux_sym_ambiguous_expression_token1] = ACTIONS(959), + [aux_sym_temp_table_expression_token1] = ACTIONS(961), + [aux_sym_current_changed_expression_token1] = ACTIONS(963), + [aux_sym_locked_expression_token1] = ACTIONS(965), + [aux_sym_dataset_expression_token1] = ACTIONS(967), + [aux_sym_input_expression_token1] = ACTIONS(969), + [aux_sym_scope_tuning_token1] = ACTIONS(971), + [aux_sym_if_statement_token1] = ACTIONS(973), + [aux_sym_on_error_phrase_token1] = ACTIONS(983), + [aux_sym_sort_clause_token1] = ACTIONS(983), + [aux_sym_sort_clause_token2] = ACTIONS(983), + [aux_sym_can_find_expression_token1] = ACTIONS(975), + [aux_sym_accumulate_expression_token1] = ACTIONS(977), + [aux_sym_available_expression_token1] = ACTIONS(979), + [aux_sym_available_expression_token2] = ACTIONS(979), + [sym__escaped_string] = ACTIONS(981), }, [160] = { [sym_comment] = STATE(160), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(160), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5153), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5209), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(1047), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(985), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [161] = { [sym_comment] = STATE(161), + [sym_constant] = STATE(384), + [sym_qualified_name] = STATE(384), + [sym_boolean_literal] = STATE(384), + [sym__decimal_literal] = STATE(363), + [sym_number_literal] = STATE(384), + [sym_string_literal] = STATE(384), + [sym_array_literal] = STATE(384), + [sym_parenthesized_expression] = STATE(384), + [sym_logical_expression] = STATE(382), + [sym_unary_expression] = STATE(384), + [sym_ambiguous_expression] = STATE(384), + [sym_temp_table_expression] = STATE(384), + [sym_current_changed_expression] = STATE(384), + [sym_locked_expression] = STATE(384), + [sym_dataset_expression] = STATE(384), + [sym_input_expression] = STATE(384), + [sym_additive_expression] = STATE(382), + [sym_multiplicative_expression] = STATE(382), + [sym_comparison_expression] = STATE(382), + [sym__binary_expression] = STATE(384), + [sym_array_access] = STATE(384), [sym_include] = STATE(161), - [anon_sym_COLON] = ACTIONS(132), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_LBRACE] = ACTIONS(71), - [sym__terminator] = ACTIONS(132), - [aux_sym__block_terminator_token1] = ACTIONS(132), - [anon_sym_RBRACK] = ACTIONS(132), - [aux_sym_type_tuning_token2] = ACTIONS(132), - [aux_sym_unary_expression_token2] = ACTIONS(132), - [aux_sym_variable_tuning_token1] = ACTIONS(132), - [aux_sym_variable_tuning_token2] = ACTIONS(134), - [aux_sym_variable_tuning_token3] = ACTIONS(132), - [aux_sym_variable_tuning_token4] = ACTIONS(132), - [aux_sym_variable_tuning_token5] = ACTIONS(132), - [aux_sym_variable_tuning_token6] = ACTIONS(132), - [aux_sym_variable_tuning_token7] = ACTIONS(132), - [aux_sym_variable_tuning_token8] = ACTIONS(132), - [aux_sym_access_tuning_token1] = ACTIONS(132), - [aux_sym_access_tuning_token2] = ACTIONS(132), - [aux_sym_access_tuning_token3] = ACTIONS(132), - [aux_sym_access_tuning_token4] = ACTIONS(132), - [aux_sym_access_tuning_token5] = ACTIONS(132), - [aux_sym_query_definition_tuning_token1] = ACTIONS(132), - [anon_sym_SCROLLING] = ACTIONS(132), - [aux_sym_query_definition_tuning_token2] = ACTIONS(132), - [aux_sym_while_phrase_token1] = ACTIONS(132), - [aux_sym_repeat_tuning_token1] = ACTIONS(132), - [aux_sym_getter_token1] = ACTIONS(132), - [aux_sym_setter_token1] = ACTIONS(132), - [aux_sym_using_statement_token2] = ACTIONS(132), - [aux_sym_on_error_phrase_token1] = ACTIONS(132), - [aux_sym_stop_after_phrase_token1] = ACTIONS(132), - [aux_sym_do_tuning_token1] = ACTIONS(132), - [aux_sym_sort_clause_token2] = ACTIONS(132), - [aux_sym_field_option_token1] = ACTIONS(132), - [aux_sym_field_option_token2] = ACTIONS(132), - [aux_sym_field_option_token3] = ACTIONS(132), - [aux_sym_field_option_token4] = ACTIONS(132), - [aux_sym_field_option_token5] = ACTIONS(132), - [aux_sym_field_option_token6] = ACTIONS(132), - [aux_sym_field_definition_token1] = ACTIONS(132), - [aux_sym_index_definition_token1] = ACTIONS(132), - [aux_sym_image_phrase_token1] = ACTIONS(134), - [aux_sym_image_phrase_token2] = ACTIONS(132), - [aux_sym_image_phrase_token8] = ACTIONS(132), - [aux_sym_image_phrase_token10] = ACTIONS(134), - [aux_sym_size_phrase_token1] = ACTIONS(134), - [aux_sym_size_phrase_token2] = ACTIONS(132), - [aux_sym_size_phrase_token3] = ACTIONS(132), - [aux_sym_button_tuning_token1] = ACTIONS(132), - [aux_sym_button_tuning_token3] = ACTIONS(132), - [aux_sym_button_tuning_token4] = ACTIONS(132), - [aux_sym_button_tuning_token5] = ACTIONS(132), - [aux_sym_button_tuning_token6] = ACTIONS(132), - [aux_sym_button_tuning_token7] = ACTIONS(132), - [aux_sym_button_tuning_token8] = ACTIONS(132), - [aux_sym_button_tuning_token9] = ACTIONS(132), - [aux_sym_button_tuning_token10] = ACTIONS(132), - [aux_sym_button_tuning_token11] = ACTIONS(132), - [aux_sym_button_tuning_token12] = ACTIONS(132), - [aux_sym_button_tuning_token13] = ACTIONS(132), - [aux_sym_button_tuning_token14] = ACTIONS(132), - [aux_sym_button_tuning_token16] = ACTIONS(132), - [aux_sym_button_tuning_token17] = ACTIONS(132), - [sym__namedot] = ACTIONS(1049), + [sym_function_call] = STATE(261), + [sym_ternary_expression] = STATE(384), + [sym_new_expression] = STATE(261), + [sym_object_access] = STATE(270), + [sym_member_access] = STATE(384), + [sym_sort_column] = STATE(2307), + [sym_can_find_expression] = STATE(384), + [sym_accumulate_expression] = STATE(384), + [sym_available_expression] = STATE(384), + [sym__expression] = STATE(180), + [aux_sym_sort_clause_repeat1] = STATE(161), + [sym_identifier] = ACTIONS(987), + [anon_sym_COLON] = ACTIONS(990), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(992), + [sym_null_expression] = ACTIONS(995), + [aux_sym_boolean_literal_token1] = ACTIONS(998), + [aux_sym_boolean_literal_token2] = ACTIONS(998), + [aux_sym_boolean_literal_token3] = ACTIONS(998), + [aux_sym_boolean_literal_token4] = ACTIONS(998), + [sym__integer_literal] = ACTIONS(1001), + [sym_date_literal] = ACTIONS(995), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_COMMA] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(1007), + [aux_sym_unary_expression_token1] = ACTIONS(1010), + [aux_sym_unary_expression_token2] = ACTIONS(1013), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1016), + [aux_sym_temp_table_expression_token1] = ACTIONS(1019), + [aux_sym_current_changed_expression_token1] = ACTIONS(1022), + [aux_sym_locked_expression_token1] = ACTIONS(1025), + [aux_sym_dataset_expression_token1] = ACTIONS(1028), + [aux_sym_input_expression_token1] = ACTIONS(1031), + [aux_sym_scope_tuning_token1] = ACTIONS(1034), + [aux_sym_if_statement_token1] = ACTIONS(1037), + [aux_sym_on_error_phrase_token1] = ACTIONS(990), + [aux_sym_sort_clause_token1] = ACTIONS(990), + [aux_sym_sort_clause_token2] = ACTIONS(990), + [aux_sym_can_find_expression_token1] = ACTIONS(1040), + [aux_sym_accumulate_expression_token1] = ACTIONS(1043), + [aux_sym_available_expression_token1] = ACTIONS(1046), + [aux_sym_available_expression_token2] = ACTIONS(1046), + [sym__escaped_string] = ACTIONS(1049), }, [162] = { [sym_comment] = STATE(162), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(162), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5211), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5380), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(1051), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(1052), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [163] = { [sym_comment] = STATE(163), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(163), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5185), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5412), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(1053), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(1054), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [164] = { [sym_comment] = STATE(164), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(164), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5304), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5415), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(1055), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(1056), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [165] = { [sym_comment] = STATE(165), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(165), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5321), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5449), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(1057), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(1058), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [166] = { [sym_comment] = STATE(166), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(166), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5333), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2468), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5410), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(968), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(1060), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [167] = { [sym_comment] = STATE(167), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(167), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5241), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5443), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(1059), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(1062), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [168] = { [sym_comment] = STATE(168), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(168), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5314), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5457), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(1061), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(1064), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [169] = { [sym_comment] = STATE(169), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), [sym_include] = STATE(169), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5317), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(1063), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_COLON] = ACTIONS(150), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_LBRACE] = ACTIONS(73), + [sym__terminator] = ACTIONS(150), + [aux_sym__block_terminator_token1] = ACTIONS(150), + [anon_sym_RBRACK] = ACTIONS(150), + [aux_sym_type_tuning_token2] = ACTIONS(150), + [aux_sym_unary_expression_token2] = ACTIONS(150), + [aux_sym_variable_tuning_token1] = ACTIONS(150), + [aux_sym_variable_tuning_token2] = ACTIONS(152), + [aux_sym_variable_tuning_token3] = ACTIONS(150), + [aux_sym_variable_tuning_token4] = ACTIONS(150), + [aux_sym_variable_tuning_token5] = ACTIONS(150), + [aux_sym_variable_tuning_token6] = ACTIONS(150), + [aux_sym_variable_tuning_token7] = ACTIONS(150), + [aux_sym_variable_tuning_token8] = ACTIONS(150), + [aux_sym_access_tuning_token1] = ACTIONS(150), + [aux_sym_access_tuning_token2] = ACTIONS(150), + [aux_sym_access_tuning_token3] = ACTIONS(150), + [aux_sym_access_tuning_token4] = ACTIONS(150), + [aux_sym_access_tuning_token5] = ACTIONS(150), + [aux_sym_query_definition_tuning_token1] = ACTIONS(150), + [anon_sym_SCROLLING] = ACTIONS(150), + [aux_sym_query_definition_tuning_token2] = ACTIONS(150), + [aux_sym_while_phrase_token1] = ACTIONS(150), + [aux_sym_repeat_tuning_token1] = ACTIONS(150), + [aux_sym_getter_token1] = ACTIONS(150), + [aux_sym_setter_token1] = ACTIONS(150), + [aux_sym_using_statement_token2] = ACTIONS(150), + [aux_sym_on_error_phrase_token1] = ACTIONS(150), + [aux_sym_stop_after_phrase_token1] = ACTIONS(150), + [aux_sym_do_tuning_token1] = ACTIONS(150), + [aux_sym_sort_clause_token2] = ACTIONS(150), + [aux_sym_field_option_token1] = ACTIONS(150), + [aux_sym_field_option_token2] = ACTIONS(150), + [aux_sym_field_option_token3] = ACTIONS(150), + [aux_sym_field_option_token4] = ACTIONS(150), + [aux_sym_field_option_token5] = ACTIONS(150), + [aux_sym_field_option_token6] = ACTIONS(150), + [aux_sym_field_definition_token1] = ACTIONS(150), + [aux_sym_index_definition_token1] = ACTIONS(150), + [aux_sym_image_phrase_token1] = ACTIONS(152), + [aux_sym_image_phrase_token2] = ACTIONS(150), + [aux_sym_image_phrase_token8] = ACTIONS(150), + [aux_sym_image_phrase_token10] = ACTIONS(152), + [aux_sym_size_phrase_token1] = ACTIONS(152), + [aux_sym_size_phrase_token2] = ACTIONS(150), + [aux_sym_size_phrase_token3] = ACTIONS(150), + [aux_sym_button_tuning_token1] = ACTIONS(150), + [aux_sym_button_tuning_token3] = ACTIONS(150), + [aux_sym_button_tuning_token4] = ACTIONS(150), + [aux_sym_button_tuning_token5] = ACTIONS(150), + [aux_sym_button_tuning_token6] = ACTIONS(150), + [aux_sym_button_tuning_token7] = ACTIONS(150), + [aux_sym_button_tuning_token8] = ACTIONS(150), + [aux_sym_button_tuning_token9] = ACTIONS(150), + [aux_sym_button_tuning_token10] = ACTIONS(150), + [aux_sym_button_tuning_token11] = ACTIONS(150), + [aux_sym_button_tuning_token12] = ACTIONS(150), + [aux_sym_button_tuning_token13] = ACTIONS(150), + [aux_sym_button_tuning_token14] = ACTIONS(150), + [aux_sym_button_tuning_token16] = ACTIONS(150), + [aux_sym_button_tuning_token17] = ACTIONS(150), + [sym__namedot] = ACTIONS(1066), }, [170] = { [sym_comment] = STATE(170), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(170), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5201), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5402), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(1065), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(1068), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [171] = { [sym_comment] = STATE(171), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(171), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5322), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5228), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(1067), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(1070), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [172] = { [sym_comment] = STATE(172), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(172), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5296), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5220), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(1069), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(659), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [173] = { [sym_comment] = STATE(173), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(173), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5212), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5407), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2577), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(1071), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(1072), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [174] = { [sym_comment] = STATE(174), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(174), - [aux_sym_object_access_repeat1] = STATE(179), - [anon_sym_COLON] = ACTIONS(94), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(96), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(94), - [sym__terminator] = ACTIONS(94), - [anon_sym_LBRACK] = ACTIONS(94), - [anon_sym_COMMA] = ACTIONS(94), - [anon_sym_LPAREN] = ACTIONS(94), - [aux_sym_type_tuning_token2] = ACTIONS(94), - [anon_sym_PLUS] = ACTIONS(94), - [anon_sym_DASH] = ACTIONS(94), - [aux_sym__multiplicative_operator_token1] = ACTIONS(94), - [anon_sym_LT] = ACTIONS(96), - [anon_sym_LT_EQ] = ACTIONS(94), - [anon_sym_LT_GT] = ACTIONS(94), - [anon_sym_EQ] = ACTIONS(94), - [anon_sym_GT] = ACTIONS(96), - [anon_sym_GT_EQ] = ACTIONS(94), - [aux_sym__comparison_operator_token1] = ACTIONS(94), - [aux_sym__comparison_operator_token2] = ACTIONS(94), - [aux_sym__comparison_operator_token3] = ACTIONS(94), - [aux_sym__comparison_operator_token4] = ACTIONS(94), - [aux_sym__comparison_operator_token5] = ACTIONS(94), - [aux_sym__comparison_operator_token6] = ACTIONS(94), - [aux_sym__comparison_operator_token7] = ACTIONS(94), - [aux_sym__comparison_operator_token8] = ACTIONS(94), - [aux_sym__comparison_operator_token9] = ACTIONS(94), - [aux_sym_variable_tuning_token4] = ACTIONS(94), - [aux_sym_function_call_token1] = ACTIONS(94), - [aux_sym_using_statement_token1] = ACTIONS(94), - [aux_sym_on_error_phrase_token1] = ACTIONS(94), - [aux_sym_query_tuning_token1] = ACTIONS(94), - [aux_sym_query_tuning_token2] = ACTIONS(94), - [aux_sym_query_tuning_token3] = ACTIONS(94), - [aux_sym_query_tuning_token4] = ACTIONS(94), - [aux_sym_query_tuning_token5] = ACTIONS(94), - [aux_sym_sort_clause_token1] = ACTIONS(94), - [aux_sym_sort_clause_token2] = ACTIONS(94), - [aux_sym_image_phrase_token1] = ACTIONS(96), - [aux_sym_image_phrase_token2] = ACTIONS(94), - [aux_sym_size_phrase_token1] = ACTIONS(96), - [aux_sym_size_phrase_token2] = ACTIONS(94), - [aux_sym_size_phrase_token3] = ACTIONS(94), - [aux_sym_button_tuning_token1] = ACTIONS(94), - [aux_sym_button_tuning_token3] = ACTIONS(94), - [aux_sym_button_tuning_token4] = ACTIONS(94), - [aux_sym_button_tuning_token5] = ACTIONS(94), - [aux_sym_button_tuning_token6] = ACTIONS(94), - [aux_sym_button_tuning_token7] = ACTIONS(94), - [aux_sym_button_tuning_token8] = ACTIONS(94), - [aux_sym_button_tuning_token9] = ACTIONS(94), - [aux_sym_button_tuning_token10] = ACTIONS(94), - [aux_sym_button_tuning_token11] = ACTIONS(94), - [aux_sym_button_tuning_token12] = ACTIONS(94), - [aux_sym_button_tuning_token13] = ACTIONS(94), - [aux_sym_button_tuning_token14] = ACTIONS(94), - [aux_sym_button_tuning_token16] = ACTIONS(94), - [aux_sym_button_tuning_token17] = ACTIONS(94), - [sym__namecolon] = ACTIONS(844), - [sym__or_operator] = ACTIONS(94), - [sym__and_operator] = ACTIONS(94), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5399), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(1074), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [175] = { [sym_comment] = STATE(175), - [sym__logical_operator] = STATE(956), - [sym__additive_operator] = STATE(955), - [sym__multiplicative_operator] = STATE(954), - [sym__comparison_operator] = STATE(953), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(175), - [sym_sort_order] = STATE(1976), - [sym_identifier] = ACTIONS(1073), - [anon_sym_COLON] = ACTIONS(1073), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5440), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_STAR] = ACTIONS(1075), - [sym_null_expression] = ACTIONS(1073), - [aux_sym_boolean_literal_token1] = ACTIONS(1073), - [aux_sym_boolean_literal_token2] = ACTIONS(1073), - [aux_sym_boolean_literal_token3] = ACTIONS(1073), - [aux_sym_boolean_literal_token4] = ACTIONS(1073), - [sym__integer_literal] = ACTIONS(1073), - [sym_date_literal] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(1073), - [anon_sym_COMMA] = ACTIONS(1073), - [anon_sym_LPAREN] = ACTIONS(1073), - [aux_sym_unary_expression_token1] = ACTIONS(1073), - [aux_sym_unary_expression_token2] = ACTIONS(1073), - [aux_sym_ambiguous_expression_token1] = ACTIONS(1073), - [aux_sym_temp_table_expression_token1] = ACTIONS(1073), - [aux_sym_current_changed_expression_token1] = ACTIONS(1073), - [aux_sym_locked_expression_token1] = ACTIONS(1073), - [aux_sym_dataset_expression_token1] = ACTIONS(1073), - [aux_sym_input_expression_token1] = ACTIONS(1073), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [aux_sym__multiplicative_operator_token1] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_LT_EQ] = ACTIONS(1079), - [anon_sym_LT_GT] = ACTIONS(1079), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_GT] = ACTIONS(1079), - [anon_sym_GT_EQ] = ACTIONS(1079), - [aux_sym__comparison_operator_token1] = ACTIONS(1079), - [aux_sym__comparison_operator_token2] = ACTIONS(1079), - [aux_sym__comparison_operator_token3] = ACTIONS(1079), - [aux_sym__comparison_operator_token4] = ACTIONS(1079), - [aux_sym__comparison_operator_token5] = ACTIONS(1079), - [aux_sym__comparison_operator_token6] = ACTIONS(1079), - [aux_sym__comparison_operator_token7] = ACTIONS(1079), - [aux_sym__comparison_operator_token8] = ACTIONS(1079), - [aux_sym__comparison_operator_token9] = ACTIONS(1079), - [aux_sym_scope_tuning_token1] = ACTIONS(1073), - [aux_sym_if_statement_token1] = ACTIONS(1073), - [aux_sym_on_error_phrase_token1] = ACTIONS(1073), - [aux_sym_sort_order_token1] = ACTIONS(1081), - [aux_sym_sort_order_token2] = ACTIONS(1081), - [aux_sym_sort_order_token3] = ACTIONS(1081), - [aux_sym_sort_order_token4] = ACTIONS(1081), - [aux_sym_sort_clause_token1] = ACTIONS(1073), - [aux_sym_sort_clause_token2] = ACTIONS(1073), - [aux_sym_can_find_expression_token1] = ACTIONS(1073), - [aux_sym_accumulate_expression_token1] = ACTIONS(1073), - [aux_sym_available_expression_token1] = ACTIONS(1073), - [aux_sym_available_expression_token2] = ACTIONS(1073), - [sym__or_operator] = ACTIONS(1083), - [sym__and_operator] = ACTIONS(1083), - [sym__escaped_string] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(1076), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [176] = { [sym_comment] = STATE(176), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(176), - [anon_sym_COLON] = ACTIONS(132), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_LBRACE] = ACTIONS(71), - [sym__terminator] = ACTIONS(132), - [aux_sym__block_terminator_token1] = ACTIONS(132), - [anon_sym_RBRACK] = ACTIONS(132), - [aux_sym_type_tuning_token2] = ACTIONS(132), - [aux_sym_unary_expression_token2] = ACTIONS(132), - [aux_sym_variable_tuning_token1] = ACTIONS(132), - [aux_sym_variable_tuning_token2] = ACTIONS(134), - [aux_sym_variable_tuning_token3] = ACTIONS(132), - [aux_sym_variable_tuning_token4] = ACTIONS(132), - [aux_sym_variable_tuning_token5] = ACTIONS(132), - [aux_sym_variable_tuning_token6] = ACTIONS(132), - [aux_sym_variable_tuning_token7] = ACTIONS(132), - [aux_sym_variable_tuning_token8] = ACTIONS(132), - [aux_sym_access_tuning_token1] = ACTIONS(132), - [aux_sym_access_tuning_token2] = ACTIONS(132), - [aux_sym_access_tuning_token3] = ACTIONS(132), - [aux_sym_access_tuning_token4] = ACTIONS(132), - [aux_sym_access_tuning_token5] = ACTIONS(132), - [aux_sym_query_definition_tuning_token1] = ACTIONS(132), - [anon_sym_SCROLLING] = ACTIONS(132), - [aux_sym_query_definition_tuning_token2] = ACTIONS(132), - [aux_sym_while_phrase_token1] = ACTIONS(132), - [aux_sym_repeat_tuning_token1] = ACTIONS(132), - [aux_sym_getter_token1] = ACTIONS(132), - [aux_sym_setter_token1] = ACTIONS(132), - [aux_sym_using_statement_token2] = ACTIONS(132), - [aux_sym_on_error_phrase_token1] = ACTIONS(132), - [aux_sym_stop_after_phrase_token1] = ACTIONS(132), - [aux_sym_do_tuning_token1] = ACTIONS(132), - [aux_sym_sort_clause_token2] = ACTIONS(132), - [aux_sym_field_option_token1] = ACTIONS(132), - [aux_sym_field_option_token2] = ACTIONS(132), - [aux_sym_field_option_token3] = ACTIONS(132), - [aux_sym_field_option_token4] = ACTIONS(132), - [aux_sym_field_option_token5] = ACTIONS(132), - [aux_sym_field_option_token6] = ACTIONS(132), - [aux_sym_field_definition_token1] = ACTIONS(132), - [aux_sym_index_definition_token1] = ACTIONS(132), - [aux_sym_image_phrase_token1] = ACTIONS(134), - [aux_sym_image_phrase_token2] = ACTIONS(132), - [aux_sym_image_phrase_token8] = ACTIONS(132), - [aux_sym_image_phrase_token10] = ACTIONS(134), - [aux_sym_size_phrase_token1] = ACTIONS(134), - [aux_sym_size_phrase_token2] = ACTIONS(132), - [aux_sym_size_phrase_token3] = ACTIONS(132), - [aux_sym_button_tuning_token1] = ACTIONS(132), - [aux_sym_button_tuning_token3] = ACTIONS(132), - [aux_sym_button_tuning_token4] = ACTIONS(132), - [aux_sym_button_tuning_token5] = ACTIONS(132), - [aux_sym_button_tuning_token6] = ACTIONS(132), - [aux_sym_button_tuning_token7] = ACTIONS(132), - [aux_sym_button_tuning_token8] = ACTIONS(132), - [aux_sym_button_tuning_token9] = ACTIONS(132), - [aux_sym_button_tuning_token10] = ACTIONS(132), - [aux_sym_button_tuning_token11] = ACTIONS(132), - [aux_sym_button_tuning_token12] = ACTIONS(132), - [aux_sym_button_tuning_token13] = ACTIONS(132), - [aux_sym_button_tuning_token14] = ACTIONS(132), - [aux_sym_button_tuning_token16] = ACTIONS(132), - [aux_sym_button_tuning_token17] = ACTIONS(132), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5397), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(1078), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [177] = { [sym_comment] = STATE(177), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(177), - [anon_sym_COLON] = ACTIONS(210), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_LBRACE] = ACTIONS(71), - [sym__terminator] = ACTIONS(210), - [aux_sym__block_terminator_token1] = ACTIONS(210), - [anon_sym_RBRACK] = ACTIONS(210), - [aux_sym_type_tuning_token2] = ACTIONS(210), - [aux_sym_unary_expression_token2] = ACTIONS(210), - [aux_sym_variable_tuning_token1] = ACTIONS(210), - [aux_sym_variable_tuning_token2] = ACTIONS(212), - [aux_sym_variable_tuning_token3] = ACTIONS(210), - [aux_sym_variable_tuning_token4] = ACTIONS(210), - [aux_sym_variable_tuning_token5] = ACTIONS(210), - [aux_sym_variable_tuning_token6] = ACTIONS(210), - [aux_sym_variable_tuning_token7] = ACTIONS(210), - [aux_sym_variable_tuning_token8] = ACTIONS(210), - [aux_sym_access_tuning_token1] = ACTIONS(210), - [aux_sym_access_tuning_token2] = ACTIONS(210), - [aux_sym_access_tuning_token3] = ACTIONS(210), - [aux_sym_access_tuning_token4] = ACTIONS(210), - [aux_sym_access_tuning_token5] = ACTIONS(210), - [aux_sym_query_definition_tuning_token1] = ACTIONS(210), - [anon_sym_SCROLLING] = ACTIONS(210), - [aux_sym_query_definition_tuning_token2] = ACTIONS(210), - [aux_sym_while_phrase_token1] = ACTIONS(210), - [aux_sym_repeat_tuning_token1] = ACTIONS(210), - [aux_sym_getter_token1] = ACTIONS(210), - [aux_sym_setter_token1] = ACTIONS(210), - [aux_sym_using_statement_token2] = ACTIONS(210), - [aux_sym_on_error_phrase_token1] = ACTIONS(210), - [aux_sym_stop_after_phrase_token1] = ACTIONS(210), - [aux_sym_do_tuning_token1] = ACTIONS(210), - [aux_sym_sort_clause_token2] = ACTIONS(210), - [aux_sym_field_option_token1] = ACTIONS(210), - [aux_sym_field_option_token2] = ACTIONS(210), - [aux_sym_field_option_token3] = ACTIONS(210), - [aux_sym_field_option_token4] = ACTIONS(210), - [aux_sym_field_option_token5] = ACTIONS(210), - [aux_sym_field_option_token6] = ACTIONS(210), - [aux_sym_field_definition_token1] = ACTIONS(210), - [aux_sym_index_definition_token1] = ACTIONS(210), - [aux_sym_image_phrase_token1] = ACTIONS(212), - [aux_sym_image_phrase_token2] = ACTIONS(210), - [aux_sym_image_phrase_token8] = ACTIONS(210), - [aux_sym_image_phrase_token10] = ACTIONS(212), - [aux_sym_size_phrase_token1] = ACTIONS(212), - [aux_sym_size_phrase_token2] = ACTIONS(210), - [aux_sym_size_phrase_token3] = ACTIONS(210), - [aux_sym_button_tuning_token1] = ACTIONS(210), - [aux_sym_button_tuning_token3] = ACTIONS(210), - [aux_sym_button_tuning_token4] = ACTIONS(210), - [aux_sym_button_tuning_token5] = ACTIONS(210), - [aux_sym_button_tuning_token6] = ACTIONS(210), - [aux_sym_button_tuning_token7] = ACTIONS(210), - [aux_sym_button_tuning_token8] = ACTIONS(210), - [aux_sym_button_tuning_token9] = ACTIONS(210), - [aux_sym_button_tuning_token10] = ACTIONS(210), - [aux_sym_button_tuning_token11] = ACTIONS(210), - [aux_sym_button_tuning_token12] = ACTIONS(210), - [aux_sym_button_tuning_token13] = ACTIONS(210), - [aux_sym_button_tuning_token14] = ACTIONS(210), - [aux_sym_button_tuning_token16] = ACTIONS(210), - [aux_sym_button_tuning_token17] = ACTIONS(210), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5452), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(1080), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [178] = { [sym_comment] = STATE(178), - [sym_constant] = STATE(25), - [sym_qualified_name] = STATE(25), - [sym_boolean_literal] = STATE(25), - [sym__decimal_literal] = STATE(21), - [sym_number_literal] = STATE(25), - [sym_string_literal] = STATE(25), - [sym_array_literal] = STATE(25), - [sym_parenthesized_expression] = STATE(25), - [sym_logical_expression] = STATE(40), - [sym_unary_expression] = STATE(25), - [sym_ambiguous_expression] = STATE(25), - [sym_temp_table_expression] = STATE(25), - [sym_current_changed_expression] = STATE(25), - [sym_locked_expression] = STATE(25), - [sym_dataset_expression] = STATE(25), - [sym_input_expression] = STATE(25), - [sym_additive_expression] = STATE(40), - [sym_multiplicative_expression] = STATE(40), - [sym_comparison_expression] = STATE(40), - [sym__binary_expression] = STATE(25), - [sym_array_access] = STATE(25), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(178), - [sym_argument_mode] = STATE(4022), - [sym__function_argument_with_mode] = STATE(5413), - [sym_function_call_argument] = STATE(5952), - [sym_function_call] = STATE(25), - [sym_ternary_expression] = STATE(25), - [sym_new_expression] = STATE(25), - [sym_object_access] = STATE(9), - [sym_member_access] = STATE(25), - [sym_can_find_expression] = STATE(25), - [sym_accumulate_expression] = STATE(25), - [sym_available_expression] = STATE(25), - [sym__expression] = STATE(2489), - [sym_identifier] = ACTIONS(640), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5407), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(642), - [sym_null_expression] = ACTIONS(644), - [aux_sym_boolean_literal_token1] = ACTIONS(646), - [aux_sym_boolean_literal_token2] = ACTIONS(646), - [aux_sym_boolean_literal_token3] = ACTIONS(646), - [aux_sym_boolean_literal_token4] = ACTIONS(646), - [sym__integer_literal] = ACTIONS(648), - [sym_date_literal] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [aux_sym_unary_expression_token1] = ACTIONS(656), - [aux_sym_unary_expression_token2] = ACTIONS(658), - [aux_sym_ambiguous_expression_token1] = ACTIONS(660), - [aux_sym_temp_table_expression_token1] = ACTIONS(662), - [aux_sym_current_changed_expression_token1] = ACTIONS(664), - [aux_sym_locked_expression_token1] = ACTIONS(666), - [aux_sym_dataset_expression_token1] = ACTIONS(668), - [aux_sym_input_expression_token1] = ACTIONS(670), - [aux_sym_scope_tuning_token1] = ACTIONS(672), - [aux_sym_argument_mode_token1] = ACTIONS(674), - [aux_sym_argument_mode_token2] = ACTIONS(674), - [aux_sym_argument_mode_token3] = ACTIONS(674), - [aux_sym_if_statement_token1] = ACTIONS(676), - [aux_sym_can_find_expression_token1] = ACTIONS(678), - [aux_sym_accumulate_expression_token1] = ACTIONS(682), - [aux_sym_available_expression_token1] = ACTIONS(684), - [aux_sym_available_expression_token2] = ACTIONS(684), - [sym__escaped_string] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(1072), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [179] = { [sym_comment] = STATE(179), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(179), - [aux_sym_object_access_repeat1] = STATE(179), - [anon_sym_COLON] = ACTIONS(87), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(89), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(87), - [sym__terminator] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(87), - [anon_sym_COMMA] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(87), - [aux_sym_type_tuning_token2] = ACTIONS(87), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [aux_sym__multiplicative_operator_token1] = ACTIONS(87), - [anon_sym_LT] = ACTIONS(89), - [anon_sym_LT_EQ] = ACTIONS(87), - [anon_sym_LT_GT] = ACTIONS(87), - [anon_sym_EQ] = ACTIONS(87), - [anon_sym_GT] = ACTIONS(89), - [anon_sym_GT_EQ] = ACTIONS(87), - [aux_sym__comparison_operator_token1] = ACTIONS(87), - [aux_sym__comparison_operator_token2] = ACTIONS(87), - [aux_sym__comparison_operator_token3] = ACTIONS(87), - [aux_sym__comparison_operator_token4] = ACTIONS(87), - [aux_sym__comparison_operator_token5] = ACTIONS(87), - [aux_sym__comparison_operator_token6] = ACTIONS(87), - [aux_sym__comparison_operator_token7] = ACTIONS(87), - [aux_sym__comparison_operator_token8] = ACTIONS(87), - [aux_sym__comparison_operator_token9] = ACTIONS(87), - [aux_sym_variable_tuning_token4] = ACTIONS(87), - [aux_sym_function_call_token1] = ACTIONS(87), - [aux_sym_using_statement_token1] = ACTIONS(87), - [aux_sym_on_error_phrase_token1] = ACTIONS(87), - [aux_sym_query_tuning_token1] = ACTIONS(87), - [aux_sym_query_tuning_token2] = ACTIONS(87), - [aux_sym_query_tuning_token3] = ACTIONS(87), - [aux_sym_query_tuning_token4] = ACTIONS(87), - [aux_sym_query_tuning_token5] = ACTIONS(87), - [aux_sym_sort_clause_token1] = ACTIONS(87), - [aux_sym_sort_clause_token2] = ACTIONS(87), - [aux_sym_image_phrase_token1] = ACTIONS(89), - [aux_sym_image_phrase_token2] = ACTIONS(87), - [aux_sym_size_phrase_token1] = ACTIONS(89), - [aux_sym_size_phrase_token2] = ACTIONS(87), - [aux_sym_size_phrase_token3] = ACTIONS(87), - [aux_sym_button_tuning_token1] = ACTIONS(87), - [aux_sym_button_tuning_token3] = ACTIONS(87), - [aux_sym_button_tuning_token4] = ACTIONS(87), - [aux_sym_button_tuning_token5] = ACTIONS(87), - [aux_sym_button_tuning_token6] = ACTIONS(87), - [aux_sym_button_tuning_token7] = ACTIONS(87), - [aux_sym_button_tuning_token8] = ACTIONS(87), - [aux_sym_button_tuning_token9] = ACTIONS(87), - [aux_sym_button_tuning_token10] = ACTIONS(87), - [aux_sym_button_tuning_token11] = ACTIONS(87), - [aux_sym_button_tuning_token12] = ACTIONS(87), - [aux_sym_button_tuning_token13] = ACTIONS(87), - [aux_sym_button_tuning_token14] = ACTIONS(87), - [aux_sym_button_tuning_token16] = ACTIONS(87), - [aux_sym_button_tuning_token17] = ACTIONS(87), - [sym__namecolon] = ACTIONS(1087), - [sym__or_operator] = ACTIONS(87), - [sym__and_operator] = ACTIONS(87), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5394), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(1082), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [180] = { [sym_comment] = STATE(180), + [sym__logical_operator] = STATE(915), + [sym__additive_operator] = STATE(914), + [sym__multiplicative_operator] = STATE(913), + [sym__comparison_operator] = STATE(912), [sym_include] = STATE(180), - [sym_function_arguments] = STATE(773), - [aux_sym_qualified_name_repeat1] = STATE(358), - [aux_sym_object_access_repeat1] = STATE(347), - [aux_sym_member_access_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(69), + [sym_sort_order] = STATE(2134), + [sym_identifier] = ACTIONS(1084), + [anon_sym_COLON] = ACTIONS(1084), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(69), - [anon_sym_STAR] = ACTIONS(69), - [sym__terminator] = ACTIONS(69), - [sym_null_expression] = ACTIONS(69), - [aux_sym_boolean_literal_token1] = ACTIONS(69), - [aux_sym_boolean_literal_token2] = ACTIONS(69), - [aux_sym_boolean_literal_token3] = ACTIONS(69), - [aux_sym_boolean_literal_token4] = ACTIONS(69), - [sym__integer_literal] = ACTIONS(69), - [sym_date_literal] = ACTIONS(69), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_unary_expression_token1] = ACTIONS(69), - [aux_sym_unary_expression_token2] = ACTIONS(69), - [aux_sym_ambiguous_expression_token1] = ACTIONS(69), - [aux_sym_temp_table_expression_token1] = ACTIONS(69), - [aux_sym_current_changed_expression_token1] = ACTIONS(69), - [aux_sym_locked_expression_token1] = ACTIONS(69), - [aux_sym_dataset_expression_token1] = ACTIONS(69), - [aux_sym_input_expression_token1] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [aux_sym__multiplicative_operator_token1] = ACTIONS(69), - [anon_sym_LT] = ACTIONS(69), - [anon_sym_LT_EQ] = ACTIONS(69), - [anon_sym_LT_GT] = ACTIONS(69), - [anon_sym_EQ] = ACTIONS(69), - [anon_sym_GT] = ACTIONS(69), - [anon_sym_GT_EQ] = ACTIONS(69), - [aux_sym__comparison_operator_token1] = ACTIONS(69), - [aux_sym__comparison_operator_token2] = ACTIONS(69), - [aux_sym__comparison_operator_token3] = ACTIONS(69), - [aux_sym__comparison_operator_token4] = ACTIONS(69), - [aux_sym__comparison_operator_token5] = ACTIONS(69), - [aux_sym__comparison_operator_token6] = ACTIONS(69), - [aux_sym__comparison_operator_token7] = ACTIONS(69), - [aux_sym__comparison_operator_token8] = ACTIONS(69), - [aux_sym__comparison_operator_token9] = ACTIONS(69), - [aux_sym_scope_tuning_token1] = ACTIONS(69), - [aux_sym_if_statement_token1] = ACTIONS(69), - [aux_sym_sort_order_token1] = ACTIONS(69), - [aux_sym_sort_order_token2] = ACTIONS(69), - [aux_sym_sort_order_token3] = ACTIONS(69), - [aux_sym_sort_order_token4] = ACTIONS(69), - [aux_sym_can_find_expression_token1] = ACTIONS(69), - [aux_sym_accumulate_expression_token1] = ACTIONS(69), - [aux_sym_available_expression_token1] = ACTIONS(69), - [aux_sym_available_expression_token2] = ACTIONS(69), - [aux_sym_field_definition_token1] = ACTIONS(69), - [aux_sym_index_definition_token1] = ACTIONS(69), - [sym__namedot] = ACTIONS(1094), - [sym__namecolon] = ACTIONS(1096), - [sym__namedoublecolon] = ACTIONS(1098), - [sym__or_operator] = ACTIONS(63), - [sym__and_operator] = ACTIONS(63), - [sym__escaped_string] = ACTIONS(63), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1086), + [sym_null_expression] = ACTIONS(1084), + [aux_sym_boolean_literal_token1] = ACTIONS(1084), + [aux_sym_boolean_literal_token2] = ACTIONS(1084), + [aux_sym_boolean_literal_token3] = ACTIONS(1084), + [aux_sym_boolean_literal_token4] = ACTIONS(1084), + [sym__integer_literal] = ACTIONS(1084), + [sym_date_literal] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(1084), + [anon_sym_LPAREN] = ACTIONS(1084), + [aux_sym_unary_expression_token1] = ACTIONS(1084), + [aux_sym_unary_expression_token2] = ACTIONS(1084), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1084), + [aux_sym_temp_table_expression_token1] = ACTIONS(1084), + [aux_sym_current_changed_expression_token1] = ACTIONS(1084), + [aux_sym_locked_expression_token1] = ACTIONS(1084), + [aux_sym_dataset_expression_token1] = ACTIONS(1084), + [aux_sym_input_expression_token1] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1090), + [anon_sym_LT_GT] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1090), + [aux_sym__comparison_operator_token1] = ACTIONS(1090), + [aux_sym__comparison_operator_token2] = ACTIONS(1090), + [aux_sym__comparison_operator_token3] = ACTIONS(1090), + [aux_sym__comparison_operator_token4] = ACTIONS(1090), + [aux_sym__comparison_operator_token5] = ACTIONS(1090), + [aux_sym__comparison_operator_token6] = ACTIONS(1090), + [aux_sym__comparison_operator_token7] = ACTIONS(1090), + [aux_sym__comparison_operator_token8] = ACTIONS(1090), + [aux_sym__comparison_operator_token9] = ACTIONS(1090), + [aux_sym_scope_tuning_token1] = ACTIONS(1084), + [aux_sym_if_statement_token1] = ACTIONS(1084), + [aux_sym_on_error_phrase_token1] = ACTIONS(1084), + [aux_sym_sort_order_token1] = ACTIONS(1092), + [aux_sym_sort_order_token2] = ACTIONS(1092), + [aux_sym_sort_order_token3] = ACTIONS(1092), + [aux_sym_sort_order_token4] = ACTIONS(1092), + [aux_sym_sort_clause_token1] = ACTIONS(1084), + [aux_sym_sort_clause_token2] = ACTIONS(1084), + [aux_sym_can_find_expression_token1] = ACTIONS(1084), + [aux_sym_accumulate_expression_token1] = ACTIONS(1084), + [aux_sym_available_expression_token1] = ACTIONS(1084), + [aux_sym_available_expression_token2] = ACTIONS(1084), + [sym__or_operator] = ACTIONS(1094), + [sym__and_operator] = ACTIONS(1094), + [sym__escaped_string] = ACTIONS(1096), }, [181] = { [sym_comment] = STATE(181), + [sym_constant] = STATE(30), + [sym_qualified_name] = STATE(30), + [sym_boolean_literal] = STATE(30), + [sym__decimal_literal] = STATE(43), + [sym_number_literal] = STATE(30), + [sym_string_literal] = STATE(30), + [sym_array_literal] = STATE(30), + [sym_parenthesized_expression] = STATE(30), + [sym_logical_expression] = STATE(29), + [sym_unary_expression] = STATE(30), + [sym_ambiguous_expression] = STATE(30), + [sym_temp_table_expression] = STATE(30), + [sym_current_changed_expression] = STATE(30), + [sym_locked_expression] = STATE(30), + [sym_dataset_expression] = STATE(30), + [sym_input_expression] = STATE(30), + [sym_additive_expression] = STATE(29), + [sym_multiplicative_expression] = STATE(29), + [sym_comparison_expression] = STATE(29), + [sym__binary_expression] = STATE(30), + [sym_array_access] = STATE(30), [sym_include] = STATE(181), - [sym_function_arguments] = STATE(773), - [aux_sym_qualified_name_repeat1] = STATE(358), - [aux_sym_object_access_repeat1] = STATE(347), - [aux_sym_member_access_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(85), + [sym_argument_mode] = STATE(3850), + [sym__function_argument_with_mode] = STATE(5513), + [sym_function_call_argument] = STATE(5556), + [sym_function_call] = STATE(13), + [sym_ternary_expression] = STATE(30), + [sym_new_expression] = STATE(13), + [sym_object_access] = STATE(15), + [sym_member_access] = STATE(30), + [sym_can_find_expression] = STATE(30), + [sym_accumulate_expression] = STATE(30), + [sym_available_expression] = STATE(30), + [sym__expression] = STATE(2548), + [sym_identifier] = ACTIONS(645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(85), - [anon_sym_STAR] = ACTIONS(85), - [sym__terminator] = ACTIONS(85), - [sym_null_expression] = ACTIONS(85), - [aux_sym_boolean_literal_token1] = ACTIONS(85), - [aux_sym_boolean_literal_token2] = ACTIONS(85), - [aux_sym_boolean_literal_token3] = ACTIONS(85), - [aux_sym_boolean_literal_token4] = ACTIONS(85), - [sym__integer_literal] = ACTIONS(85), - [sym_date_literal] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_unary_expression_token1] = ACTIONS(85), - [aux_sym_unary_expression_token2] = ACTIONS(85), - [aux_sym_ambiguous_expression_token1] = ACTIONS(85), - [aux_sym_temp_table_expression_token1] = ACTIONS(85), - [aux_sym_current_changed_expression_token1] = ACTIONS(85), - [aux_sym_locked_expression_token1] = ACTIONS(85), - [aux_sym_dataset_expression_token1] = ACTIONS(85), - [aux_sym_input_expression_token1] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(85), - [aux_sym__multiplicative_operator_token1] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(85), - [anon_sym_LT_GT] = ACTIONS(85), - [anon_sym_EQ] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [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_scope_tuning_token1] = ACTIONS(85), - [aux_sym_if_statement_token1] = ACTIONS(85), - [aux_sym_sort_order_token1] = ACTIONS(85), - [aux_sym_sort_order_token2] = ACTIONS(85), - [aux_sym_sort_order_token3] = ACTIONS(85), - [aux_sym_sort_order_token4] = ACTIONS(85), - [aux_sym_can_find_expression_token1] = ACTIONS(85), - [aux_sym_accumulate_expression_token1] = ACTIONS(85), - [aux_sym_available_expression_token1] = ACTIONS(85), - [aux_sym_available_expression_token2] = ACTIONS(85), - [aux_sym_field_definition_token1] = ACTIONS(85), - [aux_sym_index_definition_token1] = ACTIONS(85), - [sym__namedot] = ACTIONS(1094), - [sym__namecolon] = ACTIONS(1096), - [sym__namedoublecolon] = ACTIONS(1098), - [sym__or_operator] = ACTIONS(83), - [sym__and_operator] = ACTIONS(83), - [sym__escaped_string] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(647), + [sym_null_expression] = ACTIONS(649), + [aux_sym_boolean_literal_token1] = ACTIONS(651), + [aux_sym_boolean_literal_token2] = ACTIONS(651), + [aux_sym_boolean_literal_token3] = ACTIONS(651), + [aux_sym_boolean_literal_token4] = ACTIONS(651), + [sym__integer_literal] = ACTIONS(653), + [sym_date_literal] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(657), + [aux_sym_unary_expression_token1] = ACTIONS(661), + [aux_sym_unary_expression_token2] = ACTIONS(663), + [aux_sym_ambiguous_expression_token1] = ACTIONS(665), + [aux_sym_temp_table_expression_token1] = ACTIONS(667), + [aux_sym_current_changed_expression_token1] = ACTIONS(669), + [aux_sym_locked_expression_token1] = ACTIONS(671), + [aux_sym_dataset_expression_token1] = ACTIONS(673), + [aux_sym_input_expression_token1] = ACTIONS(675), + [aux_sym_scope_tuning_token1] = ACTIONS(677), + [aux_sym_argument_mode_token1] = ACTIONS(679), + [aux_sym_argument_mode_token2] = ACTIONS(679), + [aux_sym_argument_mode_token3] = ACTIONS(679), + [aux_sym_if_statement_token1] = ACTIONS(681), + [aux_sym_can_find_expression_token1] = ACTIONS(683), + [aux_sym_accumulate_expression_token1] = ACTIONS(687), + [aux_sym_available_expression_token1] = ACTIONS(689), + [aux_sym_available_expression_token2] = ACTIONS(689), + [sym__escaped_string] = ACTIONS(691), }, [182] = { [sym_comment] = STATE(182), - [sym__logical_operator] = STATE(956), - [sym__additive_operator] = STATE(955), - [sym__multiplicative_operator] = STATE(954), - [sym__comparison_operator] = STATE(953), [sym_include] = STATE(182), - [sym_identifier] = ACTIONS(1100), - [anon_sym_COLON] = ACTIONS(1100), + [sym_function_arguments] = STATE(350), + [aux_sym_qualified_name_repeat1] = STATE(337), + [aux_sym_object_access_repeat1] = STATE(339), + [aux_sym_member_access_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(71), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(1075), - [sym_null_expression] = ACTIONS(1100), - [aux_sym_boolean_literal_token1] = ACTIONS(1100), - [aux_sym_boolean_literal_token2] = ACTIONS(1100), - [aux_sym_boolean_literal_token3] = ACTIONS(1100), - [aux_sym_boolean_literal_token4] = ACTIONS(1100), - [sym__integer_literal] = ACTIONS(1100), - [sym_date_literal] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_COMMA] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(71), + [sym__terminator] = ACTIONS(71), + [sym_null_expression] = ACTIONS(71), + [aux_sym_boolean_literal_token1] = ACTIONS(71), + [aux_sym_boolean_literal_token2] = ACTIONS(71), + [aux_sym_boolean_literal_token3] = ACTIONS(71), + [aux_sym_boolean_literal_token4] = ACTIONS(71), + [sym__integer_literal] = ACTIONS(71), + [sym_date_literal] = ACTIONS(71), + [anon_sym_LBRACK] = ACTIONS(1098), [anon_sym_LPAREN] = ACTIONS(1100), - [aux_sym_unary_expression_token1] = ACTIONS(1100), - [aux_sym_unary_expression_token2] = ACTIONS(1100), - [aux_sym_ambiguous_expression_token1] = ACTIONS(1100), - [aux_sym_temp_table_expression_token1] = ACTIONS(1100), - [aux_sym_current_changed_expression_token1] = ACTIONS(1100), - [aux_sym_locked_expression_token1] = ACTIONS(1100), - [aux_sym_dataset_expression_token1] = ACTIONS(1100), - [aux_sym_input_expression_token1] = ACTIONS(1100), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [aux_sym__multiplicative_operator_token1] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_LT_EQ] = ACTIONS(1079), - [anon_sym_LT_GT] = ACTIONS(1079), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_GT] = ACTIONS(1079), - [anon_sym_GT_EQ] = ACTIONS(1079), - [aux_sym__comparison_operator_token1] = ACTIONS(1079), - [aux_sym__comparison_operator_token2] = ACTIONS(1079), - [aux_sym__comparison_operator_token3] = ACTIONS(1079), - [aux_sym__comparison_operator_token4] = ACTIONS(1079), - [aux_sym__comparison_operator_token5] = ACTIONS(1079), - [aux_sym__comparison_operator_token6] = ACTIONS(1079), - [aux_sym__comparison_operator_token7] = ACTIONS(1079), - [aux_sym__comparison_operator_token8] = ACTIONS(1079), - [aux_sym__comparison_operator_token9] = ACTIONS(1079), - [aux_sym_scope_tuning_token1] = ACTIONS(1100), - [aux_sym_if_statement_token1] = ACTIONS(1100), - [aux_sym_on_error_phrase_token1] = ACTIONS(1100), - [aux_sym_sort_order_token1] = ACTIONS(1100), - [aux_sym_sort_order_token2] = ACTIONS(1100), - [aux_sym_sort_order_token3] = ACTIONS(1100), - [aux_sym_sort_order_token4] = ACTIONS(1100), - [aux_sym_sort_clause_token1] = ACTIONS(1100), - [aux_sym_sort_clause_token2] = ACTIONS(1100), - [aux_sym_can_find_expression_token1] = ACTIONS(1100), - [aux_sym_accumulate_expression_token1] = ACTIONS(1100), - [aux_sym_available_expression_token1] = ACTIONS(1100), - [aux_sym_available_expression_token2] = ACTIONS(1100), - [sym__or_operator] = ACTIONS(1083), - [sym__and_operator] = ACTIONS(1083), - [sym__escaped_string] = ACTIONS(1102), + [aux_sym_unary_expression_token1] = ACTIONS(71), + [aux_sym_unary_expression_token2] = ACTIONS(71), + [aux_sym_ambiguous_expression_token1] = ACTIONS(71), + [aux_sym_temp_table_expression_token1] = ACTIONS(71), + [aux_sym_current_changed_expression_token1] = ACTIONS(71), + [aux_sym_locked_expression_token1] = ACTIONS(71), + [aux_sym_dataset_expression_token1] = ACTIONS(71), + [aux_sym_input_expression_token1] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [aux_sym__multiplicative_operator_token1] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_LT_EQ] = ACTIONS(71), + [anon_sym_LT_GT] = ACTIONS(71), + [anon_sym_EQ] = ACTIONS(71), + [anon_sym_GT] = ACTIONS(71), + [anon_sym_GT_EQ] = ACTIONS(71), + [aux_sym__comparison_operator_token1] = ACTIONS(71), + [aux_sym__comparison_operator_token2] = ACTIONS(71), + [aux_sym__comparison_operator_token3] = ACTIONS(71), + [aux_sym__comparison_operator_token4] = ACTIONS(71), + [aux_sym__comparison_operator_token5] = ACTIONS(71), + [aux_sym__comparison_operator_token6] = ACTIONS(71), + [aux_sym__comparison_operator_token7] = ACTIONS(71), + [aux_sym__comparison_operator_token8] = ACTIONS(71), + [aux_sym__comparison_operator_token9] = ACTIONS(71), + [aux_sym_scope_tuning_token1] = ACTIONS(71), + [aux_sym_if_statement_token1] = ACTIONS(71), + [aux_sym_sort_order_token1] = ACTIONS(71), + [aux_sym_sort_order_token2] = ACTIONS(71), + [aux_sym_sort_order_token3] = ACTIONS(71), + [aux_sym_sort_order_token4] = ACTIONS(71), + [aux_sym_can_find_expression_token1] = ACTIONS(71), + [aux_sym_accumulate_expression_token1] = ACTIONS(71), + [aux_sym_available_expression_token1] = ACTIONS(71), + [aux_sym_available_expression_token2] = ACTIONS(71), + [aux_sym_field_definition_token1] = ACTIONS(71), + [aux_sym_index_definition_token1] = ACTIONS(71), + [sym__namedot] = ACTIONS(1102), + [sym__namecolon] = ACTIONS(1104), + [sym__namedoublecolon] = ACTIONS(1106), + [sym__or_operator] = ACTIONS(65), + [sym__and_operator] = ACTIONS(65), + [sym__escaped_string] = ACTIONS(65), }, [183] = { [sym_comment] = STATE(183), - [sym__logical_operator] = STATE(956), - [sym__additive_operator] = STATE(955), - [sym__multiplicative_operator] = STATE(954), - [sym__comparison_operator] = STATE(953), [sym_include] = STATE(183), - [sym_identifier] = ACTIONS(1104), - [anon_sym_COLON] = ACTIONS(1104), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(1075), - [sym_null_expression] = ACTIONS(1104), - [aux_sym_boolean_literal_token1] = ACTIONS(1104), - [aux_sym_boolean_literal_token2] = ACTIONS(1104), - [aux_sym_boolean_literal_token3] = ACTIONS(1104), - [aux_sym_boolean_literal_token4] = ACTIONS(1104), - [sym__integer_literal] = ACTIONS(1104), - [sym_date_literal] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_COMMA] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1104), - [aux_sym_unary_expression_token1] = ACTIONS(1104), - [aux_sym_unary_expression_token2] = ACTIONS(1104), - [aux_sym_ambiguous_expression_token1] = ACTIONS(1104), - [aux_sym_temp_table_expression_token1] = ACTIONS(1104), - [aux_sym_current_changed_expression_token1] = ACTIONS(1104), - [aux_sym_locked_expression_token1] = ACTIONS(1104), - [aux_sym_dataset_expression_token1] = ACTIONS(1104), - [aux_sym_input_expression_token1] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [aux_sym__multiplicative_operator_token1] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_LT_EQ] = ACTIONS(1079), - [anon_sym_LT_GT] = ACTIONS(1079), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_GT] = ACTIONS(1079), - [anon_sym_GT_EQ] = ACTIONS(1079), - [aux_sym__comparison_operator_token1] = ACTIONS(1079), - [aux_sym__comparison_operator_token2] = ACTIONS(1079), - [aux_sym__comparison_operator_token3] = ACTIONS(1079), - [aux_sym__comparison_operator_token4] = ACTIONS(1079), - [aux_sym__comparison_operator_token5] = ACTIONS(1079), - [aux_sym__comparison_operator_token6] = ACTIONS(1079), - [aux_sym__comparison_operator_token7] = ACTIONS(1079), - [aux_sym__comparison_operator_token8] = ACTIONS(1079), - [aux_sym__comparison_operator_token9] = ACTIONS(1079), - [aux_sym_scope_tuning_token1] = ACTIONS(1104), - [aux_sym_if_statement_token1] = ACTIONS(1104), - [aux_sym_on_error_phrase_token1] = ACTIONS(1104), - [aux_sym_sort_order_token1] = ACTIONS(1104), - [aux_sym_sort_order_token2] = ACTIONS(1104), - [aux_sym_sort_order_token3] = ACTIONS(1104), - [aux_sym_sort_order_token4] = ACTIONS(1104), - [aux_sym_sort_clause_token1] = ACTIONS(1104), - [aux_sym_sort_clause_token2] = ACTIONS(1104), - [aux_sym_can_find_expression_token1] = ACTIONS(1104), - [aux_sym_accumulate_expression_token1] = ACTIONS(1104), - [aux_sym_available_expression_token1] = ACTIONS(1104), - [aux_sym_available_expression_token2] = ACTIONS(1104), - [sym__or_operator] = ACTIONS(1083), - [sym__and_operator] = ACTIONS(1083), - [sym__escaped_string] = ACTIONS(1106), + [anon_sym_COLON] = ACTIONS(202), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_LBRACE] = ACTIONS(73), + [sym__terminator] = ACTIONS(202), + [aux_sym__block_terminator_token1] = ACTIONS(202), + [anon_sym_RBRACK] = ACTIONS(202), + [aux_sym_type_tuning_token2] = ACTIONS(202), + [aux_sym_unary_expression_token2] = ACTIONS(202), + [aux_sym_variable_tuning_token1] = ACTIONS(202), + [aux_sym_variable_tuning_token2] = ACTIONS(204), + [aux_sym_variable_tuning_token3] = ACTIONS(202), + [aux_sym_variable_tuning_token4] = ACTIONS(202), + [aux_sym_variable_tuning_token5] = ACTIONS(202), + [aux_sym_variable_tuning_token6] = ACTIONS(202), + [aux_sym_variable_tuning_token7] = ACTIONS(202), + [aux_sym_variable_tuning_token8] = ACTIONS(202), + [aux_sym_access_tuning_token1] = ACTIONS(202), + [aux_sym_access_tuning_token2] = ACTIONS(202), + [aux_sym_access_tuning_token3] = ACTIONS(202), + [aux_sym_access_tuning_token4] = ACTIONS(202), + [aux_sym_access_tuning_token5] = ACTIONS(202), + [aux_sym_query_definition_tuning_token1] = ACTIONS(202), + [anon_sym_SCROLLING] = ACTIONS(202), + [aux_sym_query_definition_tuning_token2] = ACTIONS(202), + [aux_sym_while_phrase_token1] = ACTIONS(202), + [aux_sym_repeat_tuning_token1] = ACTIONS(202), + [aux_sym_getter_token1] = ACTIONS(202), + [aux_sym_setter_token1] = ACTIONS(202), + [aux_sym_using_statement_token2] = ACTIONS(202), + [aux_sym_on_error_phrase_token1] = ACTIONS(202), + [aux_sym_stop_after_phrase_token1] = ACTIONS(202), + [aux_sym_do_tuning_token1] = ACTIONS(202), + [aux_sym_sort_clause_token2] = ACTIONS(202), + [aux_sym_field_option_token1] = ACTIONS(202), + [aux_sym_field_option_token2] = ACTIONS(202), + [aux_sym_field_option_token3] = ACTIONS(202), + [aux_sym_field_option_token4] = ACTIONS(202), + [aux_sym_field_option_token5] = ACTIONS(202), + [aux_sym_field_option_token6] = ACTIONS(202), + [aux_sym_field_definition_token1] = ACTIONS(202), + [aux_sym_index_definition_token1] = ACTIONS(202), + [aux_sym_image_phrase_token1] = ACTIONS(204), + [aux_sym_image_phrase_token2] = ACTIONS(202), + [aux_sym_image_phrase_token8] = ACTIONS(202), + [aux_sym_image_phrase_token10] = ACTIONS(204), + [aux_sym_size_phrase_token1] = ACTIONS(204), + [aux_sym_size_phrase_token2] = ACTIONS(202), + [aux_sym_size_phrase_token3] = ACTIONS(202), + [aux_sym_button_tuning_token1] = ACTIONS(202), + [aux_sym_button_tuning_token3] = ACTIONS(202), + [aux_sym_button_tuning_token4] = ACTIONS(202), + [aux_sym_button_tuning_token5] = ACTIONS(202), + [aux_sym_button_tuning_token6] = ACTIONS(202), + [aux_sym_button_tuning_token7] = ACTIONS(202), + [aux_sym_button_tuning_token8] = ACTIONS(202), + [aux_sym_button_tuning_token9] = ACTIONS(202), + [aux_sym_button_tuning_token10] = ACTIONS(202), + [aux_sym_button_tuning_token11] = ACTIONS(202), + [aux_sym_button_tuning_token12] = ACTIONS(202), + [aux_sym_button_tuning_token13] = ACTIONS(202), + [aux_sym_button_tuning_token14] = ACTIONS(202), + [aux_sym_button_tuning_token16] = ACTIONS(202), + [aux_sym_button_tuning_token17] = ACTIONS(202), }, [184] = { [sym_comment] = STATE(184), [sym_include] = STATE(184), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(124), - [sym__terminator] = ACTIONS(124), - [anon_sym_LBRACK] = ACTIONS(124), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_LPAREN] = ACTIONS(124), - [aux_sym_type_tuning_token2] = ACTIONS(124), - [anon_sym_PLUS] = ACTIONS(124), - [anon_sym_DASH] = ACTIONS(124), - [aux_sym__multiplicative_operator_token1] = ACTIONS(124), - [anon_sym_LT] = ACTIONS(126), - [anon_sym_LT_EQ] = ACTIONS(124), - [anon_sym_LT_GT] = ACTIONS(124), - [anon_sym_EQ] = ACTIONS(124), - [anon_sym_GT] = ACTIONS(126), - [anon_sym_GT_EQ] = ACTIONS(124), - [aux_sym__comparison_operator_token1] = ACTIONS(124), - [aux_sym__comparison_operator_token2] = ACTIONS(124), - [aux_sym__comparison_operator_token3] = ACTIONS(124), - [aux_sym__comparison_operator_token4] = ACTIONS(124), - [aux_sym__comparison_operator_token5] = ACTIONS(124), - [aux_sym__comparison_operator_token6] = ACTIONS(124), - [aux_sym__comparison_operator_token7] = ACTIONS(124), - [aux_sym__comparison_operator_token8] = ACTIONS(124), - [aux_sym__comparison_operator_token9] = ACTIONS(124), - [aux_sym_variable_tuning_token4] = ACTIONS(124), - [aux_sym_function_call_token1] = ACTIONS(124), - [aux_sym_using_statement_token1] = ACTIONS(124), - [aux_sym_on_error_phrase_token1] = ACTIONS(124), - [aux_sym_query_tuning_token1] = ACTIONS(124), - [aux_sym_query_tuning_token2] = ACTIONS(124), - [aux_sym_query_tuning_token3] = ACTIONS(124), - [aux_sym_query_tuning_token4] = ACTIONS(124), - [aux_sym_query_tuning_token5] = ACTIONS(124), - [aux_sym_sort_clause_token1] = ACTIONS(124), - [aux_sym_sort_clause_token2] = ACTIONS(124), - [aux_sym_image_phrase_token1] = ACTIONS(126), - [aux_sym_image_phrase_token2] = ACTIONS(124), - [aux_sym_size_phrase_token1] = ACTIONS(126), - [aux_sym_size_phrase_token2] = ACTIONS(124), - [aux_sym_size_phrase_token3] = ACTIONS(124), - [aux_sym_button_tuning_token1] = ACTIONS(124), - [aux_sym_button_tuning_token3] = ACTIONS(124), - [aux_sym_button_tuning_token4] = ACTIONS(124), - [aux_sym_button_tuning_token5] = ACTIONS(124), - [aux_sym_button_tuning_token6] = ACTIONS(124), - [aux_sym_button_tuning_token7] = ACTIONS(124), - [aux_sym_button_tuning_token8] = ACTIONS(124), - [aux_sym_button_tuning_token9] = ACTIONS(124), - [aux_sym_button_tuning_token10] = ACTIONS(124), - [aux_sym_button_tuning_token11] = ACTIONS(124), - [aux_sym_button_tuning_token12] = ACTIONS(124), - [aux_sym_button_tuning_token13] = ACTIONS(124), - [aux_sym_button_tuning_token14] = ACTIONS(124), - [aux_sym_button_tuning_token16] = ACTIONS(124), - [aux_sym_button_tuning_token17] = ACTIONS(124), - [sym__namecolon] = ACTIONS(124), - [sym__or_operator] = ACTIONS(124), - [sym__and_operator] = ACTIONS(124), + [aux_sym_object_access_repeat1] = STATE(188), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(89), + [sym__terminator] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(89), + [aux_sym_type_tuning_token2] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [aux_sym__multiplicative_operator_token1] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(91), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(91), + [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_token4] = ACTIONS(89), + [aux_sym_function_call_token1] = ACTIONS(89), + [aux_sym_using_statement_token1] = ACTIONS(89), + [aux_sym_on_error_phrase_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_sort_clause_token1] = ACTIONS(89), + [aux_sym_sort_clause_token2] = ACTIONS(89), + [aux_sym_image_phrase_token1] = ACTIONS(91), + [aux_sym_image_phrase_token2] = ACTIONS(89), + [aux_sym_size_phrase_token1] = ACTIONS(91), + [aux_sym_size_phrase_token2] = ACTIONS(89), + [aux_sym_size_phrase_token3] = ACTIONS(89), + [aux_sym_button_tuning_token1] = ACTIONS(89), + [aux_sym_button_tuning_token3] = ACTIONS(89), + [aux_sym_button_tuning_token4] = ACTIONS(89), + [aux_sym_button_tuning_token5] = ACTIONS(89), + [aux_sym_button_tuning_token6] = ACTIONS(89), + [aux_sym_button_tuning_token7] = ACTIONS(89), + [aux_sym_button_tuning_token8] = ACTIONS(89), + [aux_sym_button_tuning_token9] = ACTIONS(89), + [aux_sym_button_tuning_token10] = ACTIONS(89), + [aux_sym_button_tuning_token11] = ACTIONS(89), + [aux_sym_button_tuning_token12] = ACTIONS(89), + [aux_sym_button_tuning_token13] = ACTIONS(89), + [aux_sym_button_tuning_token14] = ACTIONS(89), + [aux_sym_button_tuning_token16] = ACTIONS(89), + [aux_sym_button_tuning_token17] = ACTIONS(89), + [sym__namecolon] = ACTIONS(855), + [sym__or_operator] = ACTIONS(89), + [sym__and_operator] = ACTIONS(89), }, [185] = { [sym_comment] = STATE(185), [sym_include] = STATE(185), - [sym_function_arguments] = STATE(293), - [anon_sym_COLON] = ACTIONS(63), - [anon_sym_SLASH_SLASH] = ACTIONS(65), - [anon_sym_SLASH_STAR] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(63), - [sym__terminator] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(840), - [aux_sym_type_tuning_token2] = ACTIONS(63), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [aux_sym__multiplicative_operator_token1] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(69), - [anon_sym_LT_EQ] = ACTIONS(63), - [anon_sym_LT_GT] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(69), - [anon_sym_GT_EQ] = ACTIONS(63), - [aux_sym__comparison_operator_token1] = ACTIONS(63), - [aux_sym__comparison_operator_token2] = ACTIONS(63), - [aux_sym__comparison_operator_token3] = ACTIONS(63), - [aux_sym__comparison_operator_token4] = ACTIONS(63), - [aux_sym__comparison_operator_token5] = ACTIONS(63), - [aux_sym__comparison_operator_token6] = ACTIONS(63), - [aux_sym__comparison_operator_token7] = ACTIONS(63), - [aux_sym__comparison_operator_token8] = ACTIONS(63), - [aux_sym__comparison_operator_token9] = ACTIONS(63), - [aux_sym_variable_tuning_token4] = ACTIONS(63), - [aux_sym_function_call_token1] = ACTIONS(63), - [aux_sym_using_statement_token1] = ACTIONS(63), - [aux_sym_on_error_phrase_token1] = ACTIONS(63), - [aux_sym_query_tuning_token1] = ACTIONS(63), - [aux_sym_query_tuning_token2] = ACTIONS(63), - [aux_sym_query_tuning_token3] = ACTIONS(63), - [aux_sym_query_tuning_token4] = ACTIONS(63), - [aux_sym_query_tuning_token5] = ACTIONS(63), - [aux_sym_sort_clause_token1] = ACTIONS(63), - [aux_sym_sort_clause_token2] = ACTIONS(63), - [aux_sym_image_phrase_token1] = ACTIONS(69), - [aux_sym_image_phrase_token2] = ACTIONS(63), - [aux_sym_size_phrase_token1] = ACTIONS(69), - [aux_sym_size_phrase_token2] = ACTIONS(63), - [aux_sym_size_phrase_token3] = ACTIONS(63), - [aux_sym_button_tuning_token1] = ACTIONS(63), - [aux_sym_button_tuning_token3] = ACTIONS(63), - [aux_sym_button_tuning_token4] = ACTIONS(63), - [aux_sym_button_tuning_token5] = ACTIONS(63), - [aux_sym_button_tuning_token6] = ACTIONS(63), - [aux_sym_button_tuning_token7] = ACTIONS(63), - [aux_sym_button_tuning_token8] = ACTIONS(63), - [aux_sym_button_tuning_token9] = ACTIONS(63), - [aux_sym_button_tuning_token10] = ACTIONS(63), - [aux_sym_button_tuning_token11] = ACTIONS(63), - [aux_sym_button_tuning_token12] = ACTIONS(63), - [aux_sym_button_tuning_token13] = ACTIONS(63), - [aux_sym_button_tuning_token14] = ACTIONS(63), - [aux_sym_button_tuning_token16] = ACTIONS(63), - [aux_sym_button_tuning_token17] = ACTIONS(63), - [sym__or_operator] = ACTIONS(63), - [sym__and_operator] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(150), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_LBRACE] = ACTIONS(73), + [sym__terminator] = ACTIONS(150), + [aux_sym__block_terminator_token1] = ACTIONS(150), + [anon_sym_RBRACK] = ACTIONS(150), + [aux_sym_type_tuning_token2] = ACTIONS(150), + [aux_sym_unary_expression_token2] = ACTIONS(150), + [aux_sym_variable_tuning_token1] = ACTIONS(150), + [aux_sym_variable_tuning_token2] = ACTIONS(152), + [aux_sym_variable_tuning_token3] = ACTIONS(150), + [aux_sym_variable_tuning_token4] = ACTIONS(150), + [aux_sym_variable_tuning_token5] = ACTIONS(150), + [aux_sym_variable_tuning_token6] = ACTIONS(150), + [aux_sym_variable_tuning_token7] = ACTIONS(150), + [aux_sym_variable_tuning_token8] = ACTIONS(150), + [aux_sym_access_tuning_token1] = ACTIONS(150), + [aux_sym_access_tuning_token2] = ACTIONS(150), + [aux_sym_access_tuning_token3] = ACTIONS(150), + [aux_sym_access_tuning_token4] = ACTIONS(150), + [aux_sym_access_tuning_token5] = ACTIONS(150), + [aux_sym_query_definition_tuning_token1] = ACTIONS(150), + [anon_sym_SCROLLING] = ACTIONS(150), + [aux_sym_query_definition_tuning_token2] = ACTIONS(150), + [aux_sym_while_phrase_token1] = ACTIONS(150), + [aux_sym_repeat_tuning_token1] = ACTIONS(150), + [aux_sym_getter_token1] = ACTIONS(150), + [aux_sym_setter_token1] = ACTIONS(150), + [aux_sym_using_statement_token2] = ACTIONS(150), + [aux_sym_on_error_phrase_token1] = ACTIONS(150), + [aux_sym_stop_after_phrase_token1] = ACTIONS(150), + [aux_sym_do_tuning_token1] = ACTIONS(150), + [aux_sym_sort_clause_token2] = ACTIONS(150), + [aux_sym_field_option_token1] = ACTIONS(150), + [aux_sym_field_option_token2] = ACTIONS(150), + [aux_sym_field_option_token3] = ACTIONS(150), + [aux_sym_field_option_token4] = ACTIONS(150), + [aux_sym_field_option_token5] = ACTIONS(150), + [aux_sym_field_option_token6] = ACTIONS(150), + [aux_sym_field_definition_token1] = ACTIONS(150), + [aux_sym_index_definition_token1] = ACTIONS(150), + [aux_sym_image_phrase_token1] = ACTIONS(152), + [aux_sym_image_phrase_token2] = ACTIONS(150), + [aux_sym_image_phrase_token8] = ACTIONS(150), + [aux_sym_image_phrase_token10] = ACTIONS(152), + [aux_sym_size_phrase_token1] = ACTIONS(152), + [aux_sym_size_phrase_token2] = ACTIONS(150), + [aux_sym_size_phrase_token3] = ACTIONS(150), + [aux_sym_button_tuning_token1] = ACTIONS(150), + [aux_sym_button_tuning_token3] = ACTIONS(150), + [aux_sym_button_tuning_token4] = ACTIONS(150), + [aux_sym_button_tuning_token5] = ACTIONS(150), + [aux_sym_button_tuning_token6] = ACTIONS(150), + [aux_sym_button_tuning_token7] = ACTIONS(150), + [aux_sym_button_tuning_token8] = ACTIONS(150), + [aux_sym_button_tuning_token9] = ACTIONS(150), + [aux_sym_button_tuning_token10] = ACTIONS(150), + [aux_sym_button_tuning_token11] = ACTIONS(150), + [aux_sym_button_tuning_token12] = ACTIONS(150), + [aux_sym_button_tuning_token13] = ACTIONS(150), + [aux_sym_button_tuning_token14] = ACTIONS(150), + [aux_sym_button_tuning_token16] = ACTIONS(150), + [aux_sym_button_tuning_token17] = ACTIONS(150), }, [186] = { [sym_comment] = STATE(186), - [sym_constant] = STATE(1004), - [sym_qualified_name] = STATE(1004), - [sym_boolean_literal] = STATE(1004), - [sym__decimal_literal] = STATE(982), - [sym_number_literal] = STATE(1004), - [sym_string_literal] = STATE(1004), - [sym_array_literal] = STATE(1004), - [sym_parenthesized_expression] = STATE(1004), - [sym_logical_expression] = STATE(1002), - [sym_unary_expression] = STATE(1004), - [sym_ambiguous_expression] = STATE(1004), - [sym_temp_table_expression] = STATE(1004), - [sym_current_changed_expression] = STATE(1004), - [sym_locked_expression] = STATE(1004), - [sym_dataset_expression] = STATE(1004), - [sym_input_expression] = STATE(1004), - [sym_additive_expression] = STATE(1002), - [sym_multiplicative_expression] = STATE(1002), - [sym_comparison_expression] = STATE(1002), - [sym__binary_expression] = STATE(1004), - [sym_array_access] = STATE(1004), [sym_include] = STATE(186), - [sym_function_call] = STATE(1004), - [sym_ternary_expression] = STATE(1004), - [sym_new_expression] = STATE(1004), - [sym_object_access] = STATE(698), - [sym_member_access] = STATE(1004), - [sym_sort_column] = STATE(2492), - [sym_can_find_expression] = STATE(1004), - [sym_accumulate_expression] = STATE(1004), - [sym_available_expression] = STATE(1004), - [sym__expression] = STATE(200), - [aux_sym_sort_clause_repeat1] = STATE(189), - [sym_identifier] = ACTIONS(852), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(854), - [sym__terminator] = ACTIONS(898), - [sym_null_expression] = ACTIONS(858), - [aux_sym_boolean_literal_token1] = ACTIONS(860), - [aux_sym_boolean_literal_token2] = ACTIONS(860), - [aux_sym_boolean_literal_token3] = ACTIONS(860), - [aux_sym_boolean_literal_token4] = ACTIONS(860), - [sym__integer_literal] = ACTIONS(862), - [sym_date_literal] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(864), - [anon_sym_LPAREN] = ACTIONS(866), - [aux_sym_unary_expression_token1] = ACTIONS(870), - [aux_sym_unary_expression_token2] = ACTIONS(872), - [aux_sym_ambiguous_expression_token1] = ACTIONS(874), - [aux_sym_temp_table_expression_token1] = ACTIONS(876), - [aux_sym_current_changed_expression_token1] = ACTIONS(878), - [aux_sym_locked_expression_token1] = ACTIONS(880), - [aux_sym_dataset_expression_token1] = ACTIONS(882), - [aux_sym_input_expression_token1] = ACTIONS(884), - [aux_sym_scope_tuning_token1] = ACTIONS(886), - [aux_sym_if_statement_token1] = ACTIONS(888), - [aux_sym_can_find_expression_token1] = ACTIONS(890), - [aux_sym_accumulate_expression_token1] = ACTIONS(892), - [aux_sym_available_expression_token1] = ACTIONS(894), - [aux_sym_available_expression_token2] = ACTIONS(894), - [aux_sym_field_definition_token1] = ACTIONS(898), - [aux_sym_index_definition_token1] = ACTIONS(898), - [sym__escaped_string] = ACTIONS(896), + [aux_sym_object_access_repeat1] = STATE(188), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(89), + [sym__terminator] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(89), + [aux_sym_type_tuning_token2] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [aux_sym__multiplicative_operator_token1] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(91), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(91), + [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_token4] = ACTIONS(89), + [aux_sym_function_call_token1] = ACTIONS(89), + [aux_sym_using_statement_token1] = ACTIONS(89), + [aux_sym_on_error_phrase_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_sort_clause_token1] = ACTIONS(89), + [aux_sym_sort_clause_token2] = ACTIONS(89), + [aux_sym_image_phrase_token1] = ACTIONS(91), + [aux_sym_image_phrase_token2] = ACTIONS(89), + [aux_sym_size_phrase_token1] = ACTIONS(91), + [aux_sym_size_phrase_token2] = ACTIONS(89), + [aux_sym_size_phrase_token3] = ACTIONS(89), + [aux_sym_button_tuning_token1] = ACTIONS(89), + [aux_sym_button_tuning_token3] = ACTIONS(89), + [aux_sym_button_tuning_token4] = ACTIONS(89), + [aux_sym_button_tuning_token5] = ACTIONS(89), + [aux_sym_button_tuning_token6] = ACTIONS(89), + [aux_sym_button_tuning_token7] = ACTIONS(89), + [aux_sym_button_tuning_token8] = ACTIONS(89), + [aux_sym_button_tuning_token9] = ACTIONS(89), + [aux_sym_button_tuning_token10] = ACTIONS(89), + [aux_sym_button_tuning_token11] = ACTIONS(89), + [aux_sym_button_tuning_token12] = ACTIONS(89), + [aux_sym_button_tuning_token13] = ACTIONS(89), + [aux_sym_button_tuning_token14] = ACTIONS(89), + [aux_sym_button_tuning_token16] = ACTIONS(89), + [aux_sym_button_tuning_token17] = ACTIONS(89), + [sym__namecolon] = ACTIONS(855), + [sym__or_operator] = ACTIONS(89), + [sym__and_operator] = ACTIONS(89), }, [187] = { [sym_comment] = STATE(187), - [sym_constant] = STATE(1004), - [sym_qualified_name] = STATE(1004), - [sym_boolean_literal] = STATE(1004), - [sym__decimal_literal] = STATE(982), - [sym_number_literal] = STATE(1004), - [sym_string_literal] = STATE(1004), - [sym_array_literal] = STATE(1004), - [sym_parenthesized_expression] = STATE(1004), - [sym_logical_expression] = STATE(1002), - [sym_unary_expression] = STATE(1004), - [sym_ambiguous_expression] = STATE(1004), - [sym_temp_table_expression] = STATE(1004), - [sym_current_changed_expression] = STATE(1004), - [sym_locked_expression] = STATE(1004), - [sym_dataset_expression] = STATE(1004), - [sym_input_expression] = STATE(1004), - [sym_additive_expression] = STATE(1002), - [sym_multiplicative_expression] = STATE(1002), - [sym_comparison_expression] = STATE(1002), - [sym__binary_expression] = STATE(1004), - [sym_array_access] = STATE(1004), [sym_include] = STATE(187), - [sym_function_call] = STATE(1004), - [sym_ternary_expression] = STATE(1004), - [sym_new_expression] = STATE(1004), - [sym_object_access] = STATE(698), - [sym_member_access] = STATE(1004), - [sym_sort_column] = STATE(2492), - [sym_can_find_expression] = STATE(1004), - [sym_accumulate_expression] = STATE(1004), - [sym_available_expression] = STATE(1004), - [sym__expression] = STATE(200), - [aux_sym_sort_clause_repeat1] = STATE(189), - [sym_identifier] = ACTIONS(852), + [sym_function_arguments] = STATE(350), + [aux_sym_qualified_name_repeat1] = STATE(337), + [aux_sym_object_access_repeat1] = STATE(339), + [aux_sym_member_access_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(87), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(854), - [sym__terminator] = ACTIONS(1108), - [sym_null_expression] = ACTIONS(858), - [aux_sym_boolean_literal_token1] = ACTIONS(860), - [aux_sym_boolean_literal_token2] = ACTIONS(860), - [aux_sym_boolean_literal_token3] = ACTIONS(860), - [aux_sym_boolean_literal_token4] = ACTIONS(860), - [sym__integer_literal] = ACTIONS(862), - [sym_date_literal] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(864), - [anon_sym_LPAREN] = ACTIONS(866), - [aux_sym_unary_expression_token1] = ACTIONS(870), - [aux_sym_unary_expression_token2] = ACTIONS(872), - [aux_sym_ambiguous_expression_token1] = ACTIONS(874), - [aux_sym_temp_table_expression_token1] = ACTIONS(876), - [aux_sym_current_changed_expression_token1] = ACTIONS(878), - [aux_sym_locked_expression_token1] = ACTIONS(880), - [aux_sym_dataset_expression_token1] = ACTIONS(882), - [aux_sym_input_expression_token1] = ACTIONS(884), - [aux_sym_scope_tuning_token1] = ACTIONS(886), - [aux_sym_if_statement_token1] = ACTIONS(888), - [aux_sym_can_find_expression_token1] = ACTIONS(890), - [aux_sym_accumulate_expression_token1] = ACTIONS(892), - [aux_sym_available_expression_token1] = ACTIONS(894), - [aux_sym_available_expression_token2] = ACTIONS(894), - [aux_sym_field_definition_token1] = ACTIONS(1108), - [aux_sym_index_definition_token1] = ACTIONS(1108), - [sym__escaped_string] = ACTIONS(896), + [anon_sym_SLASH] = ACTIONS(87), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(87), + [sym__terminator] = ACTIONS(87), + [sym_null_expression] = ACTIONS(87), + [aux_sym_boolean_literal_token1] = ACTIONS(87), + [aux_sym_boolean_literal_token2] = ACTIONS(87), + [aux_sym_boolean_literal_token3] = ACTIONS(87), + [aux_sym_boolean_literal_token4] = ACTIONS(87), + [sym__integer_literal] = ACTIONS(87), + [sym_date_literal] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1100), + [aux_sym_unary_expression_token1] = ACTIONS(87), + [aux_sym_unary_expression_token2] = ACTIONS(87), + [aux_sym_ambiguous_expression_token1] = ACTIONS(87), + [aux_sym_temp_table_expression_token1] = ACTIONS(87), + [aux_sym_current_changed_expression_token1] = ACTIONS(87), + [aux_sym_locked_expression_token1] = ACTIONS(87), + [aux_sym_dataset_expression_token1] = ACTIONS(87), + [aux_sym_input_expression_token1] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [aux_sym__multiplicative_operator_token1] = ACTIONS(87), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(87), + [anon_sym_LT_GT] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_EQ] = ACTIONS(87), + [aux_sym__comparison_operator_token1] = ACTIONS(87), + [aux_sym__comparison_operator_token2] = ACTIONS(87), + [aux_sym__comparison_operator_token3] = ACTIONS(87), + [aux_sym__comparison_operator_token4] = ACTIONS(87), + [aux_sym__comparison_operator_token5] = ACTIONS(87), + [aux_sym__comparison_operator_token6] = ACTIONS(87), + [aux_sym__comparison_operator_token7] = ACTIONS(87), + [aux_sym__comparison_operator_token8] = ACTIONS(87), + [aux_sym__comparison_operator_token9] = ACTIONS(87), + [aux_sym_scope_tuning_token1] = ACTIONS(87), + [aux_sym_if_statement_token1] = ACTIONS(87), + [aux_sym_sort_order_token1] = ACTIONS(87), + [aux_sym_sort_order_token2] = ACTIONS(87), + [aux_sym_sort_order_token3] = ACTIONS(87), + [aux_sym_sort_order_token4] = ACTIONS(87), + [aux_sym_can_find_expression_token1] = ACTIONS(87), + [aux_sym_accumulate_expression_token1] = ACTIONS(87), + [aux_sym_available_expression_token1] = ACTIONS(87), + [aux_sym_available_expression_token2] = ACTIONS(87), + [aux_sym_field_definition_token1] = ACTIONS(87), + [aux_sym_index_definition_token1] = ACTIONS(87), + [sym__namedot] = ACTIONS(1102), + [sym__namecolon] = ACTIONS(1104), + [sym__namedoublecolon] = ACTIONS(1106), + [sym__or_operator] = ACTIONS(85), + [sym__and_operator] = ACTIONS(85), + [sym__escaped_string] = ACTIONS(85), }, [188] = { [sym_comment] = STATE(188), - [sym__logical_operator] = STATE(956), - [sym__additive_operator] = STATE(955), - [sym__multiplicative_operator] = STATE(954), - [sym__comparison_operator] = STATE(953), [sym_include] = STATE(188), - [sym_identifier] = ACTIONS(1110), - [anon_sym_COLON] = ACTIONS(1110), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_STAR] = ACTIONS(1075), - [sym_null_expression] = ACTIONS(1110), - [aux_sym_boolean_literal_token1] = ACTIONS(1110), - [aux_sym_boolean_literal_token2] = ACTIONS(1110), - [aux_sym_boolean_literal_token3] = ACTIONS(1110), - [aux_sym_boolean_literal_token4] = ACTIONS(1110), - [sym__integer_literal] = ACTIONS(1110), - [sym_date_literal] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1110), - [anon_sym_COMMA] = ACTIONS(1110), - [anon_sym_LPAREN] = ACTIONS(1110), - [aux_sym_unary_expression_token1] = ACTIONS(1110), - [aux_sym_unary_expression_token2] = ACTIONS(1110), - [aux_sym_ambiguous_expression_token1] = ACTIONS(1110), - [aux_sym_temp_table_expression_token1] = ACTIONS(1110), - [aux_sym_current_changed_expression_token1] = ACTIONS(1110), - [aux_sym_locked_expression_token1] = ACTIONS(1110), - [aux_sym_dataset_expression_token1] = ACTIONS(1110), - [aux_sym_input_expression_token1] = ACTIONS(1110), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [aux_sym__multiplicative_operator_token1] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_LT_EQ] = ACTIONS(1079), - [anon_sym_LT_GT] = ACTIONS(1079), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_GT] = ACTIONS(1079), - [anon_sym_GT_EQ] = ACTIONS(1079), - [aux_sym__comparison_operator_token1] = ACTIONS(1079), - [aux_sym__comparison_operator_token2] = ACTIONS(1079), - [aux_sym__comparison_operator_token3] = ACTIONS(1079), - [aux_sym__comparison_operator_token4] = ACTIONS(1079), - [aux_sym__comparison_operator_token5] = ACTIONS(1079), - [aux_sym__comparison_operator_token6] = ACTIONS(1079), - [aux_sym__comparison_operator_token7] = ACTIONS(1079), - [aux_sym__comparison_operator_token8] = ACTIONS(1079), - [aux_sym__comparison_operator_token9] = ACTIONS(1079), - [aux_sym_scope_tuning_token1] = ACTIONS(1110), - [aux_sym_if_statement_token1] = ACTIONS(1110), - [aux_sym_on_error_phrase_token1] = ACTIONS(1110), - [aux_sym_sort_order_token1] = ACTIONS(1110), - [aux_sym_sort_order_token2] = ACTIONS(1110), - [aux_sym_sort_order_token3] = ACTIONS(1110), - [aux_sym_sort_order_token4] = ACTIONS(1110), - [aux_sym_sort_clause_token1] = ACTIONS(1110), - [aux_sym_sort_clause_token2] = ACTIONS(1110), - [aux_sym_can_find_expression_token1] = ACTIONS(1110), - [aux_sym_accumulate_expression_token1] = ACTIONS(1110), - [aux_sym_available_expression_token1] = ACTIONS(1110), - [aux_sym_available_expression_token2] = ACTIONS(1110), - [sym__or_operator] = ACTIONS(1083), - [sym__and_operator] = ACTIONS(1083), - [sym__escaped_string] = ACTIONS(1112), + [aux_sym_object_access_repeat1] = STATE(188), + [anon_sym_COLON] = ACTIONS(93), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(93), + [sym__terminator] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(93), + [aux_sym_type_tuning_token2] = ACTIONS(93), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [aux_sym__multiplicative_operator_token1] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(93), + [anon_sym_LT_GT] = ACTIONS(93), + [anon_sym_EQ] = ACTIONS(93), + [anon_sym_GT] = ACTIONS(95), + [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_token4] = ACTIONS(93), + [aux_sym_function_call_token1] = ACTIONS(93), + [aux_sym_using_statement_token1] = ACTIONS(93), + [aux_sym_on_error_phrase_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_sort_clause_token1] = ACTIONS(93), + [aux_sym_sort_clause_token2] = ACTIONS(93), + [aux_sym_image_phrase_token1] = ACTIONS(95), + [aux_sym_image_phrase_token2] = ACTIONS(93), + [aux_sym_size_phrase_token1] = ACTIONS(95), + [aux_sym_size_phrase_token2] = ACTIONS(93), + [aux_sym_size_phrase_token3] = ACTIONS(93), + [aux_sym_button_tuning_token1] = ACTIONS(93), + [aux_sym_button_tuning_token3] = ACTIONS(93), + [aux_sym_button_tuning_token4] = ACTIONS(93), + [aux_sym_button_tuning_token5] = ACTIONS(93), + [aux_sym_button_tuning_token6] = ACTIONS(93), + [aux_sym_button_tuning_token7] = ACTIONS(93), + [aux_sym_button_tuning_token8] = ACTIONS(93), + [aux_sym_button_tuning_token9] = ACTIONS(93), + [aux_sym_button_tuning_token10] = ACTIONS(93), + [aux_sym_button_tuning_token11] = ACTIONS(93), + [aux_sym_button_tuning_token12] = ACTIONS(93), + [aux_sym_button_tuning_token13] = ACTIONS(93), + [aux_sym_button_tuning_token14] = ACTIONS(93), + [aux_sym_button_tuning_token16] = ACTIONS(93), + [aux_sym_button_tuning_token17] = ACTIONS(93), + [sym__namecolon] = ACTIONS(1108), + [sym__or_operator] = ACTIONS(93), + [sym__and_operator] = ACTIONS(93), }, [189] = { [sym_comment] = STATE(189), - [sym_constant] = STATE(1004), - [sym_qualified_name] = STATE(1004), - [sym_boolean_literal] = STATE(1004), - [sym__decimal_literal] = STATE(982), - [sym_number_literal] = STATE(1004), - [sym_string_literal] = STATE(1004), - [sym_array_literal] = STATE(1004), - [sym_parenthesized_expression] = STATE(1004), - [sym_logical_expression] = STATE(1002), - [sym_unary_expression] = STATE(1004), - [sym_ambiguous_expression] = STATE(1004), - [sym_temp_table_expression] = STATE(1004), - [sym_current_changed_expression] = STATE(1004), - [sym_locked_expression] = STATE(1004), - [sym_dataset_expression] = STATE(1004), - [sym_input_expression] = STATE(1004), - [sym_additive_expression] = STATE(1002), - [sym_multiplicative_expression] = STATE(1002), - [sym_comparison_expression] = STATE(1002), - [sym__binary_expression] = STATE(1004), - [sym_array_access] = STATE(1004), [sym_include] = STATE(189), - [sym_function_call] = STATE(1004), - [sym_ternary_expression] = STATE(1004), - [sym_new_expression] = STATE(1004), - [sym_object_access] = STATE(698), - [sym_member_access] = STATE(1004), - [sym_sort_column] = STATE(2492), - [sym_can_find_expression] = STATE(1004), - [sym_accumulate_expression] = STATE(1004), - [sym_available_expression] = STATE(1004), - [sym__expression] = STATE(200), - [aux_sym_sort_clause_repeat1] = STATE(189), - [sym_identifier] = ACTIONS(1114), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(1117), - [sym__terminator] = ACTIONS(983), - [sym_null_expression] = ACTIONS(1120), - [aux_sym_boolean_literal_token1] = ACTIONS(1123), - [aux_sym_boolean_literal_token2] = ACTIONS(1123), - [aux_sym_boolean_literal_token3] = ACTIONS(1123), - [aux_sym_boolean_literal_token4] = ACTIONS(1123), - [sym__integer_literal] = ACTIONS(1126), - [sym_date_literal] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1132), - [aux_sym_unary_expression_token1] = ACTIONS(1135), - [aux_sym_unary_expression_token2] = ACTIONS(1138), - [aux_sym_ambiguous_expression_token1] = ACTIONS(1141), - [aux_sym_temp_table_expression_token1] = ACTIONS(1144), - [aux_sym_current_changed_expression_token1] = ACTIONS(1147), - [aux_sym_locked_expression_token1] = ACTIONS(1150), - [aux_sym_dataset_expression_token1] = ACTIONS(1153), - [aux_sym_input_expression_token1] = ACTIONS(1156), - [aux_sym_scope_tuning_token1] = ACTIONS(1159), - [aux_sym_if_statement_token1] = ACTIONS(1162), - [aux_sym_can_find_expression_token1] = ACTIONS(1165), - [aux_sym_accumulate_expression_token1] = ACTIONS(1168), - [aux_sym_available_expression_token1] = ACTIONS(1171), - [aux_sym_available_expression_token2] = ACTIONS(1171), - [aux_sym_field_definition_token1] = ACTIONS(983), - [aux_sym_index_definition_token1] = ACTIONS(983), - [sym__escaped_string] = ACTIONS(1174), + [aux_sym_object_access_repeat1] = STATE(188), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(89), + [sym__terminator] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(89), + [aux_sym_type_tuning_token2] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [aux_sym__multiplicative_operator_token1] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(91), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(91), + [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_token4] = ACTIONS(89), + [aux_sym_function_call_token1] = ACTIONS(89), + [aux_sym_using_statement_token1] = ACTIONS(89), + [aux_sym_on_error_phrase_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_sort_clause_token1] = ACTIONS(89), + [aux_sym_sort_clause_token2] = ACTIONS(89), + [aux_sym_image_phrase_token1] = ACTIONS(91), + [aux_sym_image_phrase_token2] = ACTIONS(89), + [aux_sym_size_phrase_token1] = ACTIONS(91), + [aux_sym_size_phrase_token2] = ACTIONS(89), + [aux_sym_size_phrase_token3] = ACTIONS(89), + [aux_sym_button_tuning_token1] = ACTIONS(89), + [aux_sym_button_tuning_token3] = ACTIONS(89), + [aux_sym_button_tuning_token4] = ACTIONS(89), + [aux_sym_button_tuning_token5] = ACTIONS(89), + [aux_sym_button_tuning_token6] = ACTIONS(89), + [aux_sym_button_tuning_token7] = ACTIONS(89), + [aux_sym_button_tuning_token8] = ACTIONS(89), + [aux_sym_button_tuning_token9] = ACTIONS(89), + [aux_sym_button_tuning_token10] = ACTIONS(89), + [aux_sym_button_tuning_token11] = ACTIONS(89), + [aux_sym_button_tuning_token12] = ACTIONS(89), + [aux_sym_button_tuning_token13] = ACTIONS(89), + [aux_sym_button_tuning_token14] = ACTIONS(89), + [aux_sym_button_tuning_token16] = ACTIONS(89), + [aux_sym_button_tuning_token17] = ACTIONS(89), + [sym__namecolon] = ACTIONS(855), + [sym__or_operator] = ACTIONS(89), + [sym__and_operator] = ACTIONS(89), }, [190] = { [sym_comment] = STATE(190), - [sym__logical_operator] = STATE(956), - [sym__additive_operator] = STATE(955), - [sym__multiplicative_operator] = STATE(954), - [sym__comparison_operator] = STATE(953), [sym_include] = STATE(190), - [sym_identifier] = ACTIONS(1177), - [anon_sym_COLON] = ACTIONS(1177), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1075), - [sym_null_expression] = ACTIONS(1177), - [aux_sym_boolean_literal_token1] = ACTIONS(1177), - [aux_sym_boolean_literal_token2] = ACTIONS(1177), - [aux_sym_boolean_literal_token3] = ACTIONS(1177), - [aux_sym_boolean_literal_token4] = ACTIONS(1177), - [sym__integer_literal] = ACTIONS(1177), - [sym_date_literal] = ACTIONS(1177), - [anon_sym_LBRACK] = ACTIONS(1177), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(1177), - [aux_sym_unary_expression_token1] = ACTIONS(1177), - [aux_sym_unary_expression_token2] = ACTIONS(1177), - [aux_sym_ambiguous_expression_token1] = ACTIONS(1177), - [aux_sym_temp_table_expression_token1] = ACTIONS(1177), - [aux_sym_current_changed_expression_token1] = ACTIONS(1177), - [aux_sym_locked_expression_token1] = ACTIONS(1177), - [aux_sym_dataset_expression_token1] = ACTIONS(1177), - [aux_sym_input_expression_token1] = ACTIONS(1177), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [aux_sym__multiplicative_operator_token1] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1177), - [anon_sym_LT_GT] = ACTIONS(1177), - [anon_sym_EQ] = ACTIONS(1177), - [anon_sym_GT] = ACTIONS(1177), - [anon_sym_GT_EQ] = ACTIONS(1177), - [aux_sym__comparison_operator_token1] = ACTIONS(1177), - [aux_sym__comparison_operator_token2] = ACTIONS(1177), - [aux_sym__comparison_operator_token3] = ACTIONS(1177), - [aux_sym__comparison_operator_token4] = ACTIONS(1177), - [aux_sym__comparison_operator_token5] = ACTIONS(1177), - [aux_sym__comparison_operator_token6] = ACTIONS(1177), - [aux_sym__comparison_operator_token7] = ACTIONS(1177), - [aux_sym__comparison_operator_token8] = ACTIONS(1177), - [aux_sym__comparison_operator_token9] = ACTIONS(1177), - [aux_sym_scope_tuning_token1] = ACTIONS(1177), - [aux_sym_if_statement_token1] = ACTIONS(1177), - [aux_sym_on_error_phrase_token1] = ACTIONS(1177), - [aux_sym_sort_order_token1] = ACTIONS(1177), - [aux_sym_sort_order_token2] = ACTIONS(1177), - [aux_sym_sort_order_token3] = ACTIONS(1177), - [aux_sym_sort_order_token4] = ACTIONS(1177), - [aux_sym_sort_clause_token1] = ACTIONS(1177), - [aux_sym_sort_clause_token2] = ACTIONS(1177), - [aux_sym_can_find_expression_token1] = ACTIONS(1177), - [aux_sym_accumulate_expression_token1] = ACTIONS(1177), - [aux_sym_available_expression_token1] = ACTIONS(1177), - [aux_sym_available_expression_token2] = ACTIONS(1177), - [sym__or_operator] = ACTIONS(1179), - [sym__and_operator] = ACTIONS(1179), - [sym__escaped_string] = ACTIONS(1179), + [anon_sym_COLON] = ACTIONS(100), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(102), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(100), + [sym__terminator] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(100), + [anon_sym_COMMA] = ACTIONS(100), + [anon_sym_LPAREN] = ACTIONS(100), + [aux_sym_type_tuning_token2] = ACTIONS(100), + [anon_sym_PLUS] = ACTIONS(100), + [anon_sym_DASH] = ACTIONS(100), + [aux_sym__multiplicative_operator_token1] = ACTIONS(100), + [anon_sym_LT] = ACTIONS(102), + [anon_sym_LT_EQ] = ACTIONS(100), + [anon_sym_LT_GT] = ACTIONS(100), + [anon_sym_EQ] = ACTIONS(100), + [anon_sym_GT] = ACTIONS(102), + [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_token4] = ACTIONS(100), + [aux_sym_function_call_token1] = ACTIONS(100), + [aux_sym_using_statement_token1] = ACTIONS(100), + [aux_sym_on_error_phrase_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_sort_clause_token1] = ACTIONS(100), + [aux_sym_sort_clause_token2] = ACTIONS(100), + [aux_sym_image_phrase_token1] = ACTIONS(102), + [aux_sym_image_phrase_token2] = ACTIONS(100), + [aux_sym_size_phrase_token1] = ACTIONS(102), + [aux_sym_size_phrase_token2] = ACTIONS(100), + [aux_sym_size_phrase_token3] = ACTIONS(100), + [aux_sym_button_tuning_token1] = ACTIONS(100), + [aux_sym_button_tuning_token3] = ACTIONS(100), + [aux_sym_button_tuning_token4] = ACTIONS(100), + [aux_sym_button_tuning_token5] = ACTIONS(100), + [aux_sym_button_tuning_token6] = ACTIONS(100), + [aux_sym_button_tuning_token7] = ACTIONS(100), + [aux_sym_button_tuning_token8] = ACTIONS(100), + [aux_sym_button_tuning_token9] = ACTIONS(100), + [aux_sym_button_tuning_token10] = ACTIONS(100), + [aux_sym_button_tuning_token11] = ACTIONS(100), + [aux_sym_button_tuning_token12] = ACTIONS(100), + [aux_sym_button_tuning_token13] = ACTIONS(100), + [aux_sym_button_tuning_token14] = ACTIONS(100), + [aux_sym_button_tuning_token16] = ACTIONS(100), + [aux_sym_button_tuning_token17] = ACTIONS(100), + [sym__namecolon] = ACTIONS(100), + [sym__or_operator] = ACTIONS(100), + [sym__and_operator] = ACTIONS(100), }, [191] = { [sym_comment] = STATE(191), - [sym__logical_operator] = STATE(956), - [sym__additive_operator] = STATE(955), - [sym__multiplicative_operator] = STATE(954), - [sym__comparison_operator] = STATE(953), + [sym__logical_operator] = STATE(915), + [sym__additive_operator] = STATE(914), + [sym__multiplicative_operator] = STATE(913), + [sym__comparison_operator] = STATE(912), [sym_include] = STATE(191), - [sym_identifier] = ACTIONS(238), - [anon_sym_COLON] = ACTIONS(238), + [sym_identifier] = ACTIONS(1111), + [anon_sym_COLON] = ACTIONS(1111), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(238), - [anon_sym_STAR] = ACTIONS(1075), - [sym_null_expression] = ACTIONS(238), - [aux_sym_boolean_literal_token1] = ACTIONS(238), - [aux_sym_boolean_literal_token2] = ACTIONS(238), - [aux_sym_boolean_literal_token3] = ACTIONS(238), - [aux_sym_boolean_literal_token4] = ACTIONS(238), - [sym__integer_literal] = ACTIONS(238), - [sym_date_literal] = ACTIONS(238), - [anon_sym_LBRACK] = ACTIONS(238), - [anon_sym_COMMA] = ACTIONS(238), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_unary_expression_token1] = ACTIONS(238), - [aux_sym_unary_expression_token2] = ACTIONS(238), - [aux_sym_ambiguous_expression_token1] = ACTIONS(238), - [aux_sym_temp_table_expression_token1] = ACTIONS(238), - [aux_sym_current_changed_expression_token1] = ACTIONS(238), - [aux_sym_locked_expression_token1] = ACTIONS(238), - [aux_sym_dataset_expression_token1] = ACTIONS(238), - [aux_sym_input_expression_token1] = ACTIONS(238), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [aux_sym__multiplicative_operator_token1] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_LT_EQ] = ACTIONS(1079), - [anon_sym_LT_GT] = ACTIONS(1079), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_GT] = ACTIONS(1079), - [anon_sym_GT_EQ] = ACTIONS(1079), - [aux_sym__comparison_operator_token1] = ACTIONS(1079), - [aux_sym__comparison_operator_token2] = ACTIONS(1079), - [aux_sym__comparison_operator_token3] = ACTIONS(1079), - [aux_sym__comparison_operator_token4] = ACTIONS(1079), - [aux_sym__comparison_operator_token5] = ACTIONS(1079), - [aux_sym__comparison_operator_token6] = ACTIONS(1079), - [aux_sym__comparison_operator_token7] = ACTIONS(1079), - [aux_sym__comparison_operator_token8] = ACTIONS(1079), - [aux_sym__comparison_operator_token9] = ACTIONS(1079), - [aux_sym_scope_tuning_token1] = ACTIONS(238), - [aux_sym_if_statement_token1] = ACTIONS(238), - [aux_sym_on_error_phrase_token1] = ACTIONS(238), - [aux_sym_sort_order_token1] = ACTIONS(238), - [aux_sym_sort_order_token2] = ACTIONS(238), - [aux_sym_sort_order_token3] = ACTIONS(238), - [aux_sym_sort_order_token4] = ACTIONS(238), - [aux_sym_sort_clause_token1] = ACTIONS(238), - [aux_sym_sort_clause_token2] = ACTIONS(238), - [aux_sym_can_find_expression_token1] = ACTIONS(238), - [aux_sym_accumulate_expression_token1] = ACTIONS(238), - [aux_sym_available_expression_token1] = ACTIONS(238), - [aux_sym_available_expression_token2] = ACTIONS(238), - [sym__or_operator] = ACTIONS(236), - [sym__and_operator] = ACTIONS(236), - [sym__escaped_string] = ACTIONS(236), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_STAR] = ACTIONS(1086), + [sym_null_expression] = ACTIONS(1111), + [aux_sym_boolean_literal_token1] = ACTIONS(1111), + [aux_sym_boolean_literal_token2] = ACTIONS(1111), + [aux_sym_boolean_literal_token3] = ACTIONS(1111), + [aux_sym_boolean_literal_token4] = ACTIONS(1111), + [sym__integer_literal] = ACTIONS(1111), + [sym_date_literal] = ACTIONS(1111), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_COMMA] = ACTIONS(1111), + [anon_sym_LPAREN] = ACTIONS(1111), + [aux_sym_unary_expression_token1] = ACTIONS(1111), + [aux_sym_unary_expression_token2] = ACTIONS(1111), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1111), + [aux_sym_temp_table_expression_token1] = ACTIONS(1111), + [aux_sym_current_changed_expression_token1] = ACTIONS(1111), + [aux_sym_locked_expression_token1] = ACTIONS(1111), + [aux_sym_dataset_expression_token1] = ACTIONS(1111), + [aux_sym_input_expression_token1] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1090), + [anon_sym_LT_GT] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1090), + [aux_sym__comparison_operator_token1] = ACTIONS(1090), + [aux_sym__comparison_operator_token2] = ACTIONS(1090), + [aux_sym__comparison_operator_token3] = ACTIONS(1090), + [aux_sym__comparison_operator_token4] = ACTIONS(1090), + [aux_sym__comparison_operator_token5] = ACTIONS(1090), + [aux_sym__comparison_operator_token6] = ACTIONS(1090), + [aux_sym__comparison_operator_token7] = ACTIONS(1090), + [aux_sym__comparison_operator_token8] = ACTIONS(1090), + [aux_sym__comparison_operator_token9] = ACTIONS(1090), + [aux_sym_scope_tuning_token1] = ACTIONS(1111), + [aux_sym_if_statement_token1] = ACTIONS(1111), + [aux_sym_on_error_phrase_token1] = ACTIONS(1111), + [aux_sym_sort_order_token1] = ACTIONS(1111), + [aux_sym_sort_order_token2] = ACTIONS(1111), + [aux_sym_sort_order_token3] = ACTIONS(1111), + [aux_sym_sort_order_token4] = ACTIONS(1111), + [aux_sym_sort_clause_token1] = ACTIONS(1111), + [aux_sym_sort_clause_token2] = ACTIONS(1111), + [aux_sym_can_find_expression_token1] = ACTIONS(1111), + [aux_sym_accumulate_expression_token1] = ACTIONS(1111), + [aux_sym_available_expression_token1] = ACTIONS(1111), + [aux_sym_available_expression_token2] = ACTIONS(1111), + [sym__or_operator] = ACTIONS(1094), + [sym__and_operator] = ACTIONS(1094), + [sym__escaped_string] = ACTIONS(1113), }, [192] = { [sym_comment] = STATE(192), - [sym__logical_operator] = STATE(956), - [sym__additive_operator] = STATE(955), - [sym__multiplicative_operator] = STATE(954), - [sym__comparison_operator] = STATE(953), + [sym__logical_operator] = STATE(915), + [sym__additive_operator] = STATE(914), + [sym__multiplicative_operator] = STATE(913), + [sym__comparison_operator] = STATE(912), [sym_include] = STATE(192), - [sym_identifier] = ACTIONS(1181), - [anon_sym_COLON] = ACTIONS(1181), + [sym_identifier] = ACTIONS(1115), + [anon_sym_COLON] = ACTIONS(1115), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1075), - [sym_null_expression] = ACTIONS(1181), - [aux_sym_boolean_literal_token1] = ACTIONS(1181), - [aux_sym_boolean_literal_token2] = ACTIONS(1181), - [aux_sym_boolean_literal_token3] = ACTIONS(1181), - [aux_sym_boolean_literal_token4] = ACTIONS(1181), - [sym__integer_literal] = ACTIONS(1181), - [sym_date_literal] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(1181), - [anon_sym_COMMA] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1181), - [aux_sym_unary_expression_token1] = ACTIONS(1181), - [aux_sym_unary_expression_token2] = ACTIONS(1181), - [aux_sym_ambiguous_expression_token1] = ACTIONS(1181), - [aux_sym_temp_table_expression_token1] = ACTIONS(1181), - [aux_sym_current_changed_expression_token1] = ACTIONS(1181), - [aux_sym_locked_expression_token1] = ACTIONS(1181), - [aux_sym_dataset_expression_token1] = ACTIONS(1181), - [aux_sym_input_expression_token1] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [aux_sym__multiplicative_operator_token1] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_LT_EQ] = ACTIONS(1079), - [anon_sym_LT_GT] = ACTIONS(1079), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_GT] = ACTIONS(1079), - [anon_sym_GT_EQ] = ACTIONS(1079), - [aux_sym__comparison_operator_token1] = ACTIONS(1079), - [aux_sym__comparison_operator_token2] = ACTIONS(1079), - [aux_sym__comparison_operator_token3] = ACTIONS(1079), - [aux_sym__comparison_operator_token4] = ACTIONS(1079), - [aux_sym__comparison_operator_token5] = ACTIONS(1079), - [aux_sym__comparison_operator_token6] = ACTIONS(1079), - [aux_sym__comparison_operator_token7] = ACTIONS(1079), - [aux_sym__comparison_operator_token8] = ACTIONS(1079), - [aux_sym__comparison_operator_token9] = ACTIONS(1079), - [aux_sym_scope_tuning_token1] = ACTIONS(1181), - [aux_sym_if_statement_token1] = ACTIONS(1181), - [aux_sym_on_error_phrase_token1] = ACTIONS(1181), - [aux_sym_sort_order_token1] = ACTIONS(1181), - [aux_sym_sort_order_token2] = ACTIONS(1181), - [aux_sym_sort_order_token3] = ACTIONS(1181), - [aux_sym_sort_order_token4] = ACTIONS(1181), - [aux_sym_sort_clause_token1] = ACTIONS(1181), - [aux_sym_sort_clause_token2] = ACTIONS(1181), - [aux_sym_can_find_expression_token1] = ACTIONS(1181), - [aux_sym_accumulate_expression_token1] = ACTIONS(1181), - [aux_sym_available_expression_token1] = ACTIONS(1181), - [aux_sym_available_expression_token2] = ACTIONS(1181), - [sym__or_operator] = ACTIONS(1083), - [sym__and_operator] = ACTIONS(1083), - [sym__escaped_string] = ACTIONS(1183), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1086), + [sym_null_expression] = ACTIONS(1115), + [aux_sym_boolean_literal_token1] = ACTIONS(1115), + [aux_sym_boolean_literal_token2] = ACTIONS(1115), + [aux_sym_boolean_literal_token3] = ACTIONS(1115), + [aux_sym_boolean_literal_token4] = ACTIONS(1115), + [sym__integer_literal] = ACTIONS(1115), + [sym_date_literal] = ACTIONS(1115), + [anon_sym_LBRACK] = ACTIONS(1115), + [anon_sym_COMMA] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_unary_expression_token1] = ACTIONS(1115), + [aux_sym_unary_expression_token2] = ACTIONS(1115), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1115), + [aux_sym_temp_table_expression_token1] = ACTIONS(1115), + [aux_sym_current_changed_expression_token1] = ACTIONS(1115), + [aux_sym_locked_expression_token1] = ACTIONS(1115), + [aux_sym_dataset_expression_token1] = ACTIONS(1115), + [aux_sym_input_expression_token1] = ACTIONS(1115), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1090), + [anon_sym_LT_GT] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1090), + [aux_sym__comparison_operator_token1] = ACTIONS(1090), + [aux_sym__comparison_operator_token2] = ACTIONS(1090), + [aux_sym__comparison_operator_token3] = ACTIONS(1090), + [aux_sym__comparison_operator_token4] = ACTIONS(1090), + [aux_sym__comparison_operator_token5] = ACTIONS(1090), + [aux_sym__comparison_operator_token6] = ACTIONS(1090), + [aux_sym__comparison_operator_token7] = ACTIONS(1090), + [aux_sym__comparison_operator_token8] = ACTIONS(1090), + [aux_sym__comparison_operator_token9] = ACTIONS(1090), + [aux_sym_scope_tuning_token1] = ACTIONS(1115), + [aux_sym_if_statement_token1] = ACTIONS(1115), + [aux_sym_on_error_phrase_token1] = ACTIONS(1115), + [aux_sym_sort_order_token1] = ACTIONS(1115), + [aux_sym_sort_order_token2] = ACTIONS(1115), + [aux_sym_sort_order_token3] = ACTIONS(1115), + [aux_sym_sort_order_token4] = ACTIONS(1115), + [aux_sym_sort_clause_token1] = ACTIONS(1115), + [aux_sym_sort_clause_token2] = ACTIONS(1115), + [aux_sym_can_find_expression_token1] = ACTIONS(1115), + [aux_sym_accumulate_expression_token1] = ACTIONS(1115), + [aux_sym_available_expression_token1] = ACTIONS(1115), + [aux_sym_available_expression_token2] = ACTIONS(1115), + [sym__or_operator] = ACTIONS(1094), + [sym__and_operator] = ACTIONS(1094), + [sym__escaped_string] = ACTIONS(1117), }, [193] = { [sym_comment] = STATE(193), - [sym__logical_operator] = STATE(956), - [sym__additive_operator] = STATE(955), - [sym__multiplicative_operator] = STATE(954), - [sym__comparison_operator] = STATE(953), [sym_include] = STATE(193), - [sym_identifier] = ACTIONS(1185), - [anon_sym_COLON] = ACTIONS(1185), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1075), - [sym_null_expression] = ACTIONS(1185), - [aux_sym_boolean_literal_token1] = ACTIONS(1185), - [aux_sym_boolean_literal_token2] = ACTIONS(1185), - [aux_sym_boolean_literal_token3] = ACTIONS(1185), - [aux_sym_boolean_literal_token4] = ACTIONS(1185), - [sym__integer_literal] = ACTIONS(1185), - [sym_date_literal] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(1185), - [aux_sym_unary_expression_token1] = ACTIONS(1185), - [aux_sym_unary_expression_token2] = ACTIONS(1185), - [aux_sym_ambiguous_expression_token1] = ACTIONS(1185), - [aux_sym_temp_table_expression_token1] = ACTIONS(1185), - [aux_sym_current_changed_expression_token1] = ACTIONS(1185), - [aux_sym_locked_expression_token1] = ACTIONS(1185), - [aux_sym_dataset_expression_token1] = ACTIONS(1185), - [aux_sym_input_expression_token1] = ACTIONS(1185), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [aux_sym__multiplicative_operator_token1] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_LT_EQ] = ACTIONS(1079), - [anon_sym_LT_GT] = ACTIONS(1079), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_GT] = ACTIONS(1079), - [anon_sym_GT_EQ] = ACTIONS(1079), - [aux_sym__comparison_operator_token1] = ACTIONS(1079), - [aux_sym__comparison_operator_token2] = ACTIONS(1079), - [aux_sym__comparison_operator_token3] = ACTIONS(1079), - [aux_sym__comparison_operator_token4] = ACTIONS(1079), - [aux_sym__comparison_operator_token5] = ACTIONS(1079), - [aux_sym__comparison_operator_token6] = ACTIONS(1079), - [aux_sym__comparison_operator_token7] = ACTIONS(1079), - [aux_sym__comparison_operator_token8] = ACTIONS(1079), - [aux_sym__comparison_operator_token9] = ACTIONS(1079), - [aux_sym_scope_tuning_token1] = ACTIONS(1185), - [aux_sym_if_statement_token1] = ACTIONS(1185), - [aux_sym_on_error_phrase_token1] = ACTIONS(1185), - [aux_sym_sort_order_token1] = ACTIONS(1185), - [aux_sym_sort_order_token2] = ACTIONS(1185), - [aux_sym_sort_order_token3] = ACTIONS(1185), - [aux_sym_sort_order_token4] = ACTIONS(1185), - [aux_sym_sort_clause_token1] = ACTIONS(1185), - [aux_sym_sort_clause_token2] = ACTIONS(1185), - [aux_sym_can_find_expression_token1] = ACTIONS(1185), - [aux_sym_accumulate_expression_token1] = ACTIONS(1185), - [aux_sym_available_expression_token1] = ACTIONS(1185), - [aux_sym_available_expression_token2] = ACTIONS(1185), - [sym__or_operator] = ACTIONS(1083), - [sym__and_operator] = ACTIONS(1083), - [sym__escaped_string] = ACTIONS(1187), + [sym_function_arguments] = STATE(226), + [anon_sym_COLON] = ACTIONS(65), + [anon_sym_SLASH_SLASH] = ACTIONS(67), + [anon_sym_SLASH_STAR] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(65), + [sym__terminator] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_COMMA] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(851), + [aux_sym_type_tuning_token2] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [aux_sym__multiplicative_operator_token1] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_LT_EQ] = ACTIONS(65), + [anon_sym_LT_GT] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(71), + [anon_sym_GT_EQ] = ACTIONS(65), + [aux_sym__comparison_operator_token1] = ACTIONS(65), + [aux_sym__comparison_operator_token2] = ACTIONS(65), + [aux_sym__comparison_operator_token3] = ACTIONS(65), + [aux_sym__comparison_operator_token4] = ACTIONS(65), + [aux_sym__comparison_operator_token5] = ACTIONS(65), + [aux_sym__comparison_operator_token6] = ACTIONS(65), + [aux_sym__comparison_operator_token7] = ACTIONS(65), + [aux_sym__comparison_operator_token8] = ACTIONS(65), + [aux_sym__comparison_operator_token9] = ACTIONS(65), + [aux_sym_variable_tuning_token4] = ACTIONS(65), + [aux_sym_function_call_token1] = ACTIONS(65), + [aux_sym_using_statement_token1] = ACTIONS(65), + [aux_sym_on_error_phrase_token1] = ACTIONS(65), + [aux_sym_query_tuning_token1] = ACTIONS(65), + [aux_sym_query_tuning_token2] = ACTIONS(65), + [aux_sym_query_tuning_token3] = ACTIONS(65), + [aux_sym_query_tuning_token4] = ACTIONS(65), + [aux_sym_query_tuning_token5] = ACTIONS(65), + [aux_sym_sort_clause_token1] = ACTIONS(65), + [aux_sym_sort_clause_token2] = ACTIONS(65), + [aux_sym_image_phrase_token1] = ACTIONS(71), + [aux_sym_image_phrase_token2] = ACTIONS(65), + [aux_sym_size_phrase_token1] = ACTIONS(71), + [aux_sym_size_phrase_token2] = ACTIONS(65), + [aux_sym_size_phrase_token3] = ACTIONS(65), + [aux_sym_button_tuning_token1] = ACTIONS(65), + [aux_sym_button_tuning_token3] = ACTIONS(65), + [aux_sym_button_tuning_token4] = ACTIONS(65), + [aux_sym_button_tuning_token5] = ACTIONS(65), + [aux_sym_button_tuning_token6] = ACTIONS(65), + [aux_sym_button_tuning_token7] = ACTIONS(65), + [aux_sym_button_tuning_token8] = ACTIONS(65), + [aux_sym_button_tuning_token9] = ACTIONS(65), + [aux_sym_button_tuning_token10] = ACTIONS(65), + [aux_sym_button_tuning_token11] = ACTIONS(65), + [aux_sym_button_tuning_token12] = ACTIONS(65), + [aux_sym_button_tuning_token13] = ACTIONS(65), + [aux_sym_button_tuning_token14] = ACTIONS(65), + [aux_sym_button_tuning_token16] = ACTIONS(65), + [aux_sym_button_tuning_token17] = ACTIONS(65), + [sym__or_operator] = ACTIONS(65), + [sym__and_operator] = ACTIONS(65), }, [194] = { [sym_comment] = STATE(194), - [sym__logical_operator] = STATE(956), - [sym__additive_operator] = STATE(955), - [sym__multiplicative_operator] = STATE(954), - [sym__comparison_operator] = STATE(953), + [sym__logical_operator] = STATE(915), + [sym__additive_operator] = STATE(914), + [sym__multiplicative_operator] = STATE(913), + [sym__comparison_operator] = STATE(912), [sym_include] = STATE(194), - [sym_identifier] = ACTIONS(1189), - [anon_sym_COLON] = ACTIONS(1189), + [sym_identifier] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(1119), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1075), - [sym_null_expression] = ACTIONS(1189), - [aux_sym_boolean_literal_token1] = ACTIONS(1189), - [aux_sym_boolean_literal_token2] = ACTIONS(1189), - [aux_sym_boolean_literal_token3] = ACTIONS(1189), - [aux_sym_boolean_literal_token4] = ACTIONS(1189), - [sym__integer_literal] = ACTIONS(1189), - [sym_date_literal] = ACTIONS(1189), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1189), - [aux_sym_unary_expression_token1] = ACTIONS(1189), - [aux_sym_unary_expression_token2] = ACTIONS(1189), - [aux_sym_ambiguous_expression_token1] = ACTIONS(1189), - [aux_sym_temp_table_expression_token1] = ACTIONS(1189), - [aux_sym_current_changed_expression_token1] = ACTIONS(1189), - [aux_sym_locked_expression_token1] = ACTIONS(1189), - [aux_sym_dataset_expression_token1] = ACTIONS(1189), - [aux_sym_input_expression_token1] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [aux_sym__multiplicative_operator_token1] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_LT_EQ] = ACTIONS(1079), - [anon_sym_LT_GT] = ACTIONS(1079), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_GT] = ACTIONS(1079), - [anon_sym_GT_EQ] = ACTIONS(1079), - [aux_sym__comparison_operator_token1] = ACTIONS(1079), - [aux_sym__comparison_operator_token2] = ACTIONS(1079), - [aux_sym__comparison_operator_token3] = ACTIONS(1079), - [aux_sym__comparison_operator_token4] = ACTIONS(1079), - [aux_sym__comparison_operator_token5] = ACTIONS(1079), - [aux_sym__comparison_operator_token6] = ACTIONS(1079), - [aux_sym__comparison_operator_token7] = ACTIONS(1079), - [aux_sym__comparison_operator_token8] = ACTIONS(1079), - [aux_sym__comparison_operator_token9] = ACTIONS(1079), - [aux_sym_scope_tuning_token1] = ACTIONS(1189), - [aux_sym_if_statement_token1] = ACTIONS(1189), - [aux_sym_on_error_phrase_token1] = ACTIONS(1189), - [aux_sym_sort_order_token1] = ACTIONS(1189), - [aux_sym_sort_order_token2] = ACTIONS(1189), - [aux_sym_sort_order_token3] = ACTIONS(1189), - [aux_sym_sort_order_token4] = ACTIONS(1189), - [aux_sym_sort_clause_token1] = ACTIONS(1189), - [aux_sym_sort_clause_token2] = ACTIONS(1189), - [aux_sym_can_find_expression_token1] = ACTIONS(1189), - [aux_sym_accumulate_expression_token1] = ACTIONS(1189), - [aux_sym_available_expression_token1] = ACTIONS(1189), - [aux_sym_available_expression_token2] = ACTIONS(1189), - [sym__or_operator] = ACTIONS(1083), - [sym__and_operator] = ACTIONS(1083), - [sym__escaped_string] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1086), + [sym_null_expression] = ACTIONS(1119), + [aux_sym_boolean_literal_token1] = ACTIONS(1119), + [aux_sym_boolean_literal_token2] = ACTIONS(1119), + [aux_sym_boolean_literal_token3] = ACTIONS(1119), + [aux_sym_boolean_literal_token4] = ACTIONS(1119), + [sym__integer_literal] = ACTIONS(1119), + [sym_date_literal] = ACTIONS(1119), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_COMMA] = ACTIONS(1119), + [anon_sym_LPAREN] = ACTIONS(1119), + [aux_sym_unary_expression_token1] = ACTIONS(1119), + [aux_sym_unary_expression_token2] = ACTIONS(1119), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1119), + [aux_sym_temp_table_expression_token1] = ACTIONS(1119), + [aux_sym_current_changed_expression_token1] = ACTIONS(1119), + [aux_sym_locked_expression_token1] = ACTIONS(1119), + [aux_sym_dataset_expression_token1] = ACTIONS(1119), + [aux_sym_input_expression_token1] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1119), + [anon_sym_LT_EQ] = ACTIONS(1119), + [anon_sym_LT_GT] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(1119), + [anon_sym_GT] = ACTIONS(1119), + [anon_sym_GT_EQ] = ACTIONS(1119), + [aux_sym__comparison_operator_token1] = ACTIONS(1119), + [aux_sym__comparison_operator_token2] = ACTIONS(1119), + [aux_sym__comparison_operator_token3] = ACTIONS(1119), + [aux_sym__comparison_operator_token4] = ACTIONS(1119), + [aux_sym__comparison_operator_token5] = ACTIONS(1119), + [aux_sym__comparison_operator_token6] = ACTIONS(1119), + [aux_sym__comparison_operator_token7] = ACTIONS(1119), + [aux_sym__comparison_operator_token8] = ACTIONS(1119), + [aux_sym__comparison_operator_token9] = ACTIONS(1119), + [aux_sym_scope_tuning_token1] = ACTIONS(1119), + [aux_sym_if_statement_token1] = ACTIONS(1119), + [aux_sym_on_error_phrase_token1] = ACTIONS(1119), + [aux_sym_sort_order_token1] = ACTIONS(1119), + [aux_sym_sort_order_token2] = ACTIONS(1119), + [aux_sym_sort_order_token3] = ACTIONS(1119), + [aux_sym_sort_order_token4] = ACTIONS(1119), + [aux_sym_sort_clause_token1] = ACTIONS(1119), + [aux_sym_sort_clause_token2] = ACTIONS(1119), + [aux_sym_can_find_expression_token1] = ACTIONS(1119), + [aux_sym_accumulate_expression_token1] = ACTIONS(1119), + [aux_sym_available_expression_token1] = ACTIONS(1119), + [aux_sym_available_expression_token2] = ACTIONS(1119), + [sym__or_operator] = ACTIONS(1121), + [sym__and_operator] = ACTIONS(1121), + [sym__escaped_string] = ACTIONS(1121), }, [195] = { [sym_comment] = STATE(195), - [sym__logical_operator] = STATE(956), - [sym__additive_operator] = STATE(955), - [sym__multiplicative_operator] = STATE(954), - [sym__comparison_operator] = STATE(953), + [sym__logical_operator] = STATE(915), + [sym__additive_operator] = STATE(914), + [sym__multiplicative_operator] = STATE(913), + [sym__comparison_operator] = STATE(912), [sym_include] = STATE(195), - [sym_identifier] = ACTIONS(1193), - [anon_sym_COLON] = ACTIONS(1193), + [sym_identifier] = ACTIONS(232), + [anon_sym_COLON] = ACTIONS(232), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [sym_null_expression] = ACTIONS(1193), - [aux_sym_boolean_literal_token1] = ACTIONS(1193), - [aux_sym_boolean_literal_token2] = ACTIONS(1193), - [aux_sym_boolean_literal_token3] = ACTIONS(1193), - [aux_sym_boolean_literal_token4] = ACTIONS(1193), - [sym__integer_literal] = ACTIONS(1193), - [sym_date_literal] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_COMMA] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1193), - [aux_sym_unary_expression_token1] = ACTIONS(1193), - [aux_sym_unary_expression_token2] = ACTIONS(1193), - [aux_sym_ambiguous_expression_token1] = ACTIONS(1193), - [aux_sym_temp_table_expression_token1] = ACTIONS(1193), - [aux_sym_current_changed_expression_token1] = ACTIONS(1193), - [aux_sym_locked_expression_token1] = ACTIONS(1193), - [aux_sym_dataset_expression_token1] = ACTIONS(1193), - [aux_sym_input_expression_token1] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [aux_sym__multiplicative_operator_token1] = ACTIONS(1193), - [anon_sym_LT] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_LT_GT] = ACTIONS(1193), - [anon_sym_EQ] = ACTIONS(1193), - [anon_sym_GT] = ACTIONS(1193), - [anon_sym_GT_EQ] = ACTIONS(1193), - [aux_sym__comparison_operator_token1] = ACTIONS(1193), - [aux_sym__comparison_operator_token2] = ACTIONS(1193), - [aux_sym__comparison_operator_token3] = ACTIONS(1193), - [aux_sym__comparison_operator_token4] = ACTIONS(1193), - [aux_sym__comparison_operator_token5] = ACTIONS(1193), - [aux_sym__comparison_operator_token6] = ACTIONS(1193), - [aux_sym__comparison_operator_token7] = ACTIONS(1193), - [aux_sym__comparison_operator_token8] = ACTIONS(1193), - [aux_sym__comparison_operator_token9] = ACTIONS(1193), - [aux_sym_scope_tuning_token1] = ACTIONS(1193), - [aux_sym_if_statement_token1] = ACTIONS(1193), - [aux_sym_on_error_phrase_token1] = ACTIONS(1193), - [aux_sym_sort_order_token1] = ACTIONS(1193), - [aux_sym_sort_order_token2] = ACTIONS(1193), - [aux_sym_sort_order_token3] = ACTIONS(1193), - [aux_sym_sort_order_token4] = ACTIONS(1193), - [aux_sym_sort_clause_token1] = ACTIONS(1193), - [aux_sym_sort_clause_token2] = ACTIONS(1193), - [aux_sym_can_find_expression_token1] = ACTIONS(1193), - [aux_sym_accumulate_expression_token1] = ACTIONS(1193), - [aux_sym_available_expression_token1] = ACTIONS(1193), - [aux_sym_available_expression_token2] = ACTIONS(1193), - [sym__or_operator] = ACTIONS(1195), - [sym__and_operator] = ACTIONS(1195), - [sym__escaped_string] = ACTIONS(1195), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(232), + [anon_sym_STAR] = ACTIONS(1086), + [sym_null_expression] = ACTIONS(232), + [aux_sym_boolean_literal_token1] = ACTIONS(232), + [aux_sym_boolean_literal_token2] = ACTIONS(232), + [aux_sym_boolean_literal_token3] = ACTIONS(232), + [aux_sym_boolean_literal_token4] = ACTIONS(232), + [sym__integer_literal] = ACTIONS(232), + [sym_date_literal] = ACTIONS(232), + [anon_sym_LBRACK] = ACTIONS(232), + [anon_sym_COMMA] = ACTIONS(232), + [anon_sym_LPAREN] = ACTIONS(232), + [aux_sym_unary_expression_token1] = ACTIONS(232), + [aux_sym_unary_expression_token2] = ACTIONS(232), + [aux_sym_ambiguous_expression_token1] = ACTIONS(232), + [aux_sym_temp_table_expression_token1] = ACTIONS(232), + [aux_sym_current_changed_expression_token1] = ACTIONS(232), + [aux_sym_locked_expression_token1] = ACTIONS(232), + [aux_sym_dataset_expression_token1] = ACTIONS(232), + [aux_sym_input_expression_token1] = ACTIONS(232), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1090), + [anon_sym_LT_GT] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1090), + [aux_sym__comparison_operator_token1] = ACTIONS(1090), + [aux_sym__comparison_operator_token2] = ACTIONS(1090), + [aux_sym__comparison_operator_token3] = ACTIONS(1090), + [aux_sym__comparison_operator_token4] = ACTIONS(1090), + [aux_sym__comparison_operator_token5] = ACTIONS(1090), + [aux_sym__comparison_operator_token6] = ACTIONS(1090), + [aux_sym__comparison_operator_token7] = ACTIONS(1090), + [aux_sym__comparison_operator_token8] = ACTIONS(1090), + [aux_sym__comparison_operator_token9] = ACTIONS(1090), + [aux_sym_scope_tuning_token1] = ACTIONS(232), + [aux_sym_if_statement_token1] = ACTIONS(232), + [aux_sym_on_error_phrase_token1] = ACTIONS(232), + [aux_sym_sort_order_token1] = ACTIONS(232), + [aux_sym_sort_order_token2] = ACTIONS(232), + [aux_sym_sort_order_token3] = ACTIONS(232), + [aux_sym_sort_order_token4] = ACTIONS(232), + [aux_sym_sort_clause_token1] = ACTIONS(232), + [aux_sym_sort_clause_token2] = ACTIONS(232), + [aux_sym_can_find_expression_token1] = ACTIONS(232), + [aux_sym_accumulate_expression_token1] = ACTIONS(232), + [aux_sym_available_expression_token1] = ACTIONS(232), + [aux_sym_available_expression_token2] = ACTIONS(232), + [sym__or_operator] = ACTIONS(230), + [sym__and_operator] = ACTIONS(230), + [sym__escaped_string] = ACTIONS(230), }, [196] = { [sym_comment] = STATE(196), - [sym__logical_operator] = STATE(956), - [sym__additive_operator] = STATE(955), - [sym__multiplicative_operator] = STATE(954), - [sym__comparison_operator] = STATE(953), + [sym__logical_operator] = STATE(915), + [sym__additive_operator] = STATE(914), + [sym__multiplicative_operator] = STATE(913), + [sym__comparison_operator] = STATE(912), [sym_include] = STATE(196), - [sym_identifier] = ACTIONS(1197), - [anon_sym_COLON] = ACTIONS(1197), + [sym_identifier] = ACTIONS(1123), + [anon_sym_COLON] = ACTIONS(1123), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1075), - [sym_null_expression] = ACTIONS(1197), - [aux_sym_boolean_literal_token1] = ACTIONS(1197), - [aux_sym_boolean_literal_token2] = ACTIONS(1197), - [aux_sym_boolean_literal_token3] = ACTIONS(1197), - [aux_sym_boolean_literal_token4] = ACTIONS(1197), - [sym__integer_literal] = ACTIONS(1197), - [sym_date_literal] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1197), - [anon_sym_COMMA] = ACTIONS(1197), - [anon_sym_LPAREN] = ACTIONS(1197), - [aux_sym_unary_expression_token1] = ACTIONS(1197), - [aux_sym_unary_expression_token2] = ACTIONS(1197), - [aux_sym_ambiguous_expression_token1] = ACTIONS(1197), - [aux_sym_temp_table_expression_token1] = ACTIONS(1197), - [aux_sym_current_changed_expression_token1] = ACTIONS(1197), - [aux_sym_locked_expression_token1] = ACTIONS(1197), - [aux_sym_dataset_expression_token1] = ACTIONS(1197), - [aux_sym_input_expression_token1] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [aux_sym__multiplicative_operator_token1] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_LT_EQ] = ACTIONS(1079), - [anon_sym_LT_GT] = ACTIONS(1079), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_GT] = ACTIONS(1079), - [anon_sym_GT_EQ] = ACTIONS(1079), - [aux_sym__comparison_operator_token1] = ACTIONS(1079), - [aux_sym__comparison_operator_token2] = ACTIONS(1079), - [aux_sym__comparison_operator_token3] = ACTIONS(1079), - [aux_sym__comparison_operator_token4] = ACTIONS(1079), - [aux_sym__comparison_operator_token5] = ACTIONS(1079), - [aux_sym__comparison_operator_token6] = ACTIONS(1079), - [aux_sym__comparison_operator_token7] = ACTIONS(1079), - [aux_sym__comparison_operator_token8] = ACTIONS(1079), - [aux_sym__comparison_operator_token9] = ACTIONS(1079), - [aux_sym_scope_tuning_token1] = ACTIONS(1197), - [aux_sym_if_statement_token1] = ACTIONS(1197), - [aux_sym_on_error_phrase_token1] = ACTIONS(1197), - [aux_sym_sort_order_token1] = ACTIONS(1197), - [aux_sym_sort_order_token2] = ACTIONS(1197), - [aux_sym_sort_order_token3] = ACTIONS(1197), - [aux_sym_sort_order_token4] = ACTIONS(1197), - [aux_sym_sort_clause_token1] = ACTIONS(1197), - [aux_sym_sort_clause_token2] = ACTIONS(1197), - [aux_sym_can_find_expression_token1] = ACTIONS(1197), - [aux_sym_accumulate_expression_token1] = ACTIONS(1197), - [aux_sym_available_expression_token1] = ACTIONS(1197), - [aux_sym_available_expression_token2] = ACTIONS(1197), - [sym__or_operator] = ACTIONS(1083), - [sym__and_operator] = ACTIONS(1083), - [sym__escaped_string] = ACTIONS(1199), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1086), + [sym_null_expression] = ACTIONS(1123), + [aux_sym_boolean_literal_token1] = ACTIONS(1123), + [aux_sym_boolean_literal_token2] = ACTIONS(1123), + [aux_sym_boolean_literal_token3] = ACTIONS(1123), + [aux_sym_boolean_literal_token4] = ACTIONS(1123), + [sym__integer_literal] = ACTIONS(1123), + [sym_date_literal] = ACTIONS(1123), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_COMMA] = ACTIONS(1123), + [anon_sym_LPAREN] = ACTIONS(1123), + [aux_sym_unary_expression_token1] = ACTIONS(1123), + [aux_sym_unary_expression_token2] = ACTIONS(1123), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1123), + [aux_sym_temp_table_expression_token1] = ACTIONS(1123), + [aux_sym_current_changed_expression_token1] = ACTIONS(1123), + [aux_sym_locked_expression_token1] = ACTIONS(1123), + [aux_sym_dataset_expression_token1] = ACTIONS(1123), + [aux_sym_input_expression_token1] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1090), + [anon_sym_LT_GT] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1090), + [aux_sym__comparison_operator_token1] = ACTIONS(1090), + [aux_sym__comparison_operator_token2] = ACTIONS(1090), + [aux_sym__comparison_operator_token3] = ACTIONS(1090), + [aux_sym__comparison_operator_token4] = ACTIONS(1090), + [aux_sym__comparison_operator_token5] = ACTIONS(1090), + [aux_sym__comparison_operator_token6] = ACTIONS(1090), + [aux_sym__comparison_operator_token7] = ACTIONS(1090), + [aux_sym__comparison_operator_token8] = ACTIONS(1090), + [aux_sym__comparison_operator_token9] = ACTIONS(1090), + [aux_sym_scope_tuning_token1] = ACTIONS(1123), + [aux_sym_if_statement_token1] = ACTIONS(1123), + [aux_sym_on_error_phrase_token1] = ACTIONS(1123), + [aux_sym_sort_order_token1] = ACTIONS(1123), + [aux_sym_sort_order_token2] = ACTIONS(1123), + [aux_sym_sort_order_token3] = ACTIONS(1123), + [aux_sym_sort_order_token4] = ACTIONS(1123), + [aux_sym_sort_clause_token1] = ACTIONS(1123), + [aux_sym_sort_clause_token2] = ACTIONS(1123), + [aux_sym_can_find_expression_token1] = ACTIONS(1123), + [aux_sym_accumulate_expression_token1] = ACTIONS(1123), + [aux_sym_available_expression_token1] = ACTIONS(1123), + [aux_sym_available_expression_token2] = ACTIONS(1123), + [sym__or_operator] = ACTIONS(1094), + [sym__and_operator] = ACTIONS(1094), + [sym__escaped_string] = ACTIONS(1125), }, [197] = { [sym_comment] = STATE(197), - [sym__logical_operator] = STATE(956), - [sym__additive_operator] = STATE(955), - [sym__multiplicative_operator] = STATE(954), - [sym__comparison_operator] = STATE(953), + [sym_constant] = STATE(997), + [sym_qualified_name] = STATE(997), + [sym_boolean_literal] = STATE(997), + [sym__decimal_literal] = STATE(1000), + [sym_number_literal] = STATE(997), + [sym_string_literal] = STATE(997), + [sym_array_literal] = STATE(997), + [sym_parenthesized_expression] = STATE(997), + [sym_logical_expression] = STATE(1014), + [sym_unary_expression] = STATE(997), + [sym_ambiguous_expression] = STATE(997), + [sym_temp_table_expression] = STATE(997), + [sym_current_changed_expression] = STATE(997), + [sym_locked_expression] = STATE(997), + [sym_dataset_expression] = STATE(997), + [sym_input_expression] = STATE(997), + [sym_additive_expression] = STATE(1014), + [sym_multiplicative_expression] = STATE(1014), + [sym_comparison_expression] = STATE(1014), + [sym__binary_expression] = STATE(997), + [sym_array_access] = STATE(997), [sym_include] = STATE(197), - [sym_identifier] = ACTIONS(1201), - [anon_sym_COLON] = ACTIONS(1201), + [sym_function_call] = STATE(355), + [sym_ternary_expression] = STATE(997), + [sym_new_expression] = STATE(355), + [sym_object_access] = STATE(668), + [sym_member_access] = STATE(997), + [sym_sort_column] = STATE(2541), + [sym_can_find_expression] = STATE(997), + [sym_accumulate_expression] = STATE(997), + [sym_available_expression] = STATE(997), + [sym__expression] = STATE(218), + [aux_sym_sort_clause_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1127), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1075), - [sym_null_expression] = ACTIONS(1201), - [aux_sym_boolean_literal_token1] = ACTIONS(1201), - [aux_sym_boolean_literal_token2] = ACTIONS(1201), - [aux_sym_boolean_literal_token3] = ACTIONS(1201), - [aux_sym_boolean_literal_token4] = ACTIONS(1201), - [sym__integer_literal] = ACTIONS(1201), - [sym_date_literal] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1201), - [aux_sym_unary_expression_token1] = ACTIONS(1201), - [aux_sym_unary_expression_token2] = ACTIONS(1201), - [aux_sym_ambiguous_expression_token1] = ACTIONS(1201), - [aux_sym_temp_table_expression_token1] = ACTIONS(1201), - [aux_sym_current_changed_expression_token1] = ACTIONS(1201), - [aux_sym_locked_expression_token1] = ACTIONS(1201), - [aux_sym_dataset_expression_token1] = ACTIONS(1201), - [aux_sym_input_expression_token1] = ACTIONS(1201), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [aux_sym__multiplicative_operator_token1] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_LT_EQ] = ACTIONS(1079), - [anon_sym_LT_GT] = ACTIONS(1079), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_GT] = ACTIONS(1079), - [anon_sym_GT_EQ] = ACTIONS(1079), - [aux_sym__comparison_operator_token1] = ACTIONS(1079), - [aux_sym__comparison_operator_token2] = ACTIONS(1079), - [aux_sym__comparison_operator_token3] = ACTIONS(1079), - [aux_sym__comparison_operator_token4] = ACTIONS(1079), - [aux_sym__comparison_operator_token5] = ACTIONS(1079), - [aux_sym__comparison_operator_token6] = ACTIONS(1079), - [aux_sym__comparison_operator_token7] = ACTIONS(1079), - [aux_sym__comparison_operator_token8] = ACTIONS(1079), - [aux_sym__comparison_operator_token9] = ACTIONS(1079), - [aux_sym_scope_tuning_token1] = ACTIONS(1201), - [aux_sym_if_statement_token1] = ACTIONS(1201), - [aux_sym_on_error_phrase_token1] = ACTIONS(1201), - [aux_sym_sort_order_token1] = ACTIONS(1201), - [aux_sym_sort_order_token2] = ACTIONS(1201), - [aux_sym_sort_order_token3] = ACTIONS(1201), - [aux_sym_sort_order_token4] = ACTIONS(1201), - [aux_sym_sort_clause_token1] = ACTIONS(1201), - [aux_sym_sort_clause_token2] = ACTIONS(1201), - [aux_sym_can_find_expression_token1] = ACTIONS(1201), - [aux_sym_accumulate_expression_token1] = ACTIONS(1201), - [aux_sym_available_expression_token1] = ACTIONS(1201), - [aux_sym_available_expression_token2] = ACTIONS(1201), - [sym__or_operator] = ACTIONS(1083), - [sym__and_operator] = ACTIONS(1083), - [sym__escaped_string] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1130), + [sym__terminator] = ACTIONS(990), + [sym_null_expression] = ACTIONS(1133), + [aux_sym_boolean_literal_token1] = ACTIONS(1136), + [aux_sym_boolean_literal_token2] = ACTIONS(1136), + [aux_sym_boolean_literal_token3] = ACTIONS(1136), + [aux_sym_boolean_literal_token4] = ACTIONS(1136), + [sym__integer_literal] = ACTIONS(1139), + [sym_date_literal] = ACTIONS(1133), + [anon_sym_LBRACK] = ACTIONS(1142), + [anon_sym_LPAREN] = ACTIONS(1145), + [aux_sym_unary_expression_token1] = ACTIONS(1148), + [aux_sym_unary_expression_token2] = ACTIONS(1151), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1154), + [aux_sym_temp_table_expression_token1] = ACTIONS(1157), + [aux_sym_current_changed_expression_token1] = ACTIONS(1160), + [aux_sym_locked_expression_token1] = ACTIONS(1163), + [aux_sym_dataset_expression_token1] = ACTIONS(1166), + [aux_sym_input_expression_token1] = ACTIONS(1169), + [aux_sym_scope_tuning_token1] = ACTIONS(1172), + [aux_sym_if_statement_token1] = ACTIONS(1175), + [aux_sym_can_find_expression_token1] = ACTIONS(1178), + [aux_sym_accumulate_expression_token1] = ACTIONS(1181), + [aux_sym_available_expression_token1] = ACTIONS(1184), + [aux_sym_available_expression_token2] = ACTIONS(1184), + [aux_sym_field_definition_token1] = ACTIONS(990), + [aux_sym_index_definition_token1] = ACTIONS(990), + [sym__escaped_string] = ACTIONS(1187), }, [198] = { [sym_comment] = STATE(198), - [sym__logical_operator] = STATE(956), - [sym__additive_operator] = STATE(955), - [sym__multiplicative_operator] = STATE(954), - [sym__comparison_operator] = STATE(953), + [sym__logical_operator] = STATE(915), + [sym__additive_operator] = STATE(914), + [sym__multiplicative_operator] = STATE(913), + [sym__comparison_operator] = STATE(912), [sym_include] = STATE(198), - [sym_identifier] = ACTIONS(1205), - [anon_sym_COLON] = ACTIONS(1205), + [sym_identifier] = ACTIONS(1190), + [anon_sym_COLON] = ACTIONS(1190), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1086), + [sym_null_expression] = ACTIONS(1190), + [aux_sym_boolean_literal_token1] = ACTIONS(1190), + [aux_sym_boolean_literal_token2] = ACTIONS(1190), + [aux_sym_boolean_literal_token3] = ACTIONS(1190), + [aux_sym_boolean_literal_token4] = ACTIONS(1190), + [sym__integer_literal] = ACTIONS(1190), + [sym_date_literal] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_COMMA] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1190), + [aux_sym_unary_expression_token1] = ACTIONS(1190), + [aux_sym_unary_expression_token2] = ACTIONS(1190), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1190), + [aux_sym_temp_table_expression_token1] = ACTIONS(1190), + [aux_sym_current_changed_expression_token1] = ACTIONS(1190), + [aux_sym_locked_expression_token1] = ACTIONS(1190), + [aux_sym_dataset_expression_token1] = ACTIONS(1190), + [aux_sym_input_expression_token1] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1090), + [anon_sym_LT_GT] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1090), + [aux_sym__comparison_operator_token1] = ACTIONS(1090), + [aux_sym__comparison_operator_token2] = ACTIONS(1090), + [aux_sym__comparison_operator_token3] = ACTIONS(1090), + [aux_sym__comparison_operator_token4] = ACTIONS(1090), + [aux_sym__comparison_operator_token5] = ACTIONS(1090), + [aux_sym__comparison_operator_token6] = ACTIONS(1090), + [aux_sym__comparison_operator_token7] = ACTIONS(1090), + [aux_sym__comparison_operator_token8] = ACTIONS(1090), + [aux_sym__comparison_operator_token9] = ACTIONS(1090), + [aux_sym_scope_tuning_token1] = ACTIONS(1190), + [aux_sym_if_statement_token1] = ACTIONS(1190), + [aux_sym_on_error_phrase_token1] = ACTIONS(1190), + [aux_sym_sort_order_token1] = ACTIONS(1190), + [aux_sym_sort_order_token2] = ACTIONS(1190), + [aux_sym_sort_order_token3] = ACTIONS(1190), + [aux_sym_sort_order_token4] = ACTIONS(1190), + [aux_sym_sort_clause_token1] = ACTIONS(1190), + [aux_sym_sort_clause_token2] = ACTIONS(1190), + [aux_sym_can_find_expression_token1] = ACTIONS(1190), + [aux_sym_accumulate_expression_token1] = ACTIONS(1190), + [aux_sym_available_expression_token1] = ACTIONS(1190), + [aux_sym_available_expression_token2] = ACTIONS(1190), + [sym__or_operator] = ACTIONS(1094), + [sym__and_operator] = ACTIONS(1094), + [sym__escaped_string] = ACTIONS(1192), + }, + [199] = { + [sym_comment] = STATE(199), + [sym__logical_operator] = STATE(915), + [sym__additive_operator] = STATE(914), + [sym__multiplicative_operator] = STATE(913), + [sym__comparison_operator] = STATE(912), + [sym_include] = STATE(199), + [sym_identifier] = ACTIONS(1194), + [anon_sym_COLON] = ACTIONS(1194), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_STAR] = ACTIONS(1075), - [sym_null_expression] = ACTIONS(1205), - [aux_sym_boolean_literal_token1] = ACTIONS(1205), - [aux_sym_boolean_literal_token2] = ACTIONS(1205), - [aux_sym_boolean_literal_token3] = ACTIONS(1205), - [aux_sym_boolean_literal_token4] = ACTIONS(1205), - [sym__integer_literal] = ACTIONS(1205), - [sym_date_literal] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(1205), - [anon_sym_COMMA] = ACTIONS(1205), - [anon_sym_LPAREN] = ACTIONS(1205), - [aux_sym_unary_expression_token1] = ACTIONS(1205), - [aux_sym_unary_expression_token2] = ACTIONS(1205), - [aux_sym_ambiguous_expression_token1] = ACTIONS(1205), - [aux_sym_temp_table_expression_token1] = ACTIONS(1205), - [aux_sym_current_changed_expression_token1] = ACTIONS(1205), - [aux_sym_locked_expression_token1] = ACTIONS(1205), - [aux_sym_dataset_expression_token1] = ACTIONS(1205), - [aux_sym_input_expression_token1] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_DASH] = ACTIONS(1205), - [aux_sym__multiplicative_operator_token1] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_LT_EQ] = ACTIONS(1205), - [anon_sym_LT_GT] = ACTIONS(1205), - [anon_sym_EQ] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1205), - [anon_sym_GT_EQ] = ACTIONS(1205), - [aux_sym__comparison_operator_token1] = ACTIONS(1205), - [aux_sym__comparison_operator_token2] = ACTIONS(1205), - [aux_sym__comparison_operator_token3] = ACTIONS(1205), - [aux_sym__comparison_operator_token4] = ACTIONS(1205), - [aux_sym__comparison_operator_token5] = ACTIONS(1205), - [aux_sym__comparison_operator_token6] = ACTIONS(1205), - [aux_sym__comparison_operator_token7] = ACTIONS(1205), - [aux_sym__comparison_operator_token8] = ACTIONS(1205), - [aux_sym__comparison_operator_token9] = ACTIONS(1205), - [aux_sym_scope_tuning_token1] = ACTIONS(1205), - [aux_sym_if_statement_token1] = ACTIONS(1205), - [aux_sym_on_error_phrase_token1] = ACTIONS(1205), - [aux_sym_sort_order_token1] = ACTIONS(1205), - [aux_sym_sort_order_token2] = ACTIONS(1205), - [aux_sym_sort_order_token3] = ACTIONS(1205), - [aux_sym_sort_order_token4] = ACTIONS(1205), - [aux_sym_sort_clause_token1] = ACTIONS(1205), - [aux_sym_sort_clause_token2] = ACTIONS(1205), - [aux_sym_can_find_expression_token1] = ACTIONS(1205), - [aux_sym_accumulate_expression_token1] = ACTIONS(1205), - [aux_sym_available_expression_token1] = ACTIONS(1205), - [aux_sym_available_expression_token2] = ACTIONS(1205), - [sym__or_operator] = ACTIONS(1207), - [sym__and_operator] = ACTIONS(1207), - [sym__escaped_string] = ACTIONS(1207), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1194), + [anon_sym_STAR] = ACTIONS(1086), + [sym_null_expression] = ACTIONS(1194), + [aux_sym_boolean_literal_token1] = ACTIONS(1194), + [aux_sym_boolean_literal_token2] = ACTIONS(1194), + [aux_sym_boolean_literal_token3] = ACTIONS(1194), + [aux_sym_boolean_literal_token4] = ACTIONS(1194), + [sym__integer_literal] = ACTIONS(1194), + [sym_date_literal] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1194), + [anon_sym_COMMA] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1194), + [aux_sym_unary_expression_token1] = ACTIONS(1194), + [aux_sym_unary_expression_token2] = ACTIONS(1194), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1194), + [aux_sym_temp_table_expression_token1] = ACTIONS(1194), + [aux_sym_current_changed_expression_token1] = ACTIONS(1194), + [aux_sym_locked_expression_token1] = ACTIONS(1194), + [aux_sym_dataset_expression_token1] = ACTIONS(1194), + [aux_sym_input_expression_token1] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1090), + [anon_sym_LT_GT] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1090), + [aux_sym__comparison_operator_token1] = ACTIONS(1090), + [aux_sym__comparison_operator_token2] = ACTIONS(1090), + [aux_sym__comparison_operator_token3] = ACTIONS(1090), + [aux_sym__comparison_operator_token4] = ACTIONS(1090), + [aux_sym__comparison_operator_token5] = ACTIONS(1090), + [aux_sym__comparison_operator_token6] = ACTIONS(1090), + [aux_sym__comparison_operator_token7] = ACTIONS(1090), + [aux_sym__comparison_operator_token8] = ACTIONS(1090), + [aux_sym__comparison_operator_token9] = ACTIONS(1090), + [aux_sym_scope_tuning_token1] = ACTIONS(1194), + [aux_sym_if_statement_token1] = ACTIONS(1194), + [aux_sym_on_error_phrase_token1] = ACTIONS(1194), + [aux_sym_sort_order_token1] = ACTIONS(1194), + [aux_sym_sort_order_token2] = ACTIONS(1194), + [aux_sym_sort_order_token3] = ACTIONS(1194), + [aux_sym_sort_order_token4] = ACTIONS(1194), + [aux_sym_sort_clause_token1] = ACTIONS(1194), + [aux_sym_sort_clause_token2] = ACTIONS(1194), + [aux_sym_can_find_expression_token1] = ACTIONS(1194), + [aux_sym_accumulate_expression_token1] = ACTIONS(1194), + [aux_sym_available_expression_token1] = ACTIONS(1194), + [aux_sym_available_expression_token2] = ACTIONS(1194), + [sym__or_operator] = ACTIONS(1094), + [sym__and_operator] = ACTIONS(1094), + [sym__escaped_string] = ACTIONS(1196), + }, + [200] = { + [sym_comment] = STATE(200), + [sym__logical_operator] = STATE(915), + [sym__additive_operator] = STATE(914), + [sym__multiplicative_operator] = STATE(913), + [sym__comparison_operator] = STATE(912), + [sym_include] = STATE(200), + [sym_identifier] = ACTIONS(1198), + [anon_sym_COLON] = ACTIONS(1198), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1086), + [sym_null_expression] = ACTIONS(1198), + [aux_sym_boolean_literal_token1] = ACTIONS(1198), + [aux_sym_boolean_literal_token2] = ACTIONS(1198), + [aux_sym_boolean_literal_token3] = ACTIONS(1198), + [aux_sym_boolean_literal_token4] = ACTIONS(1198), + [sym__integer_literal] = ACTIONS(1198), + [sym_date_literal] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_COMMA] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1198), + [aux_sym_unary_expression_token1] = ACTIONS(1198), + [aux_sym_unary_expression_token2] = ACTIONS(1198), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1198), + [aux_sym_temp_table_expression_token1] = ACTIONS(1198), + [aux_sym_current_changed_expression_token1] = ACTIONS(1198), + [aux_sym_locked_expression_token1] = ACTIONS(1198), + [aux_sym_dataset_expression_token1] = ACTIONS(1198), + [aux_sym_input_expression_token1] = ACTIONS(1198), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1090), + [anon_sym_LT_GT] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1090), + [aux_sym__comparison_operator_token1] = ACTIONS(1090), + [aux_sym__comparison_operator_token2] = ACTIONS(1090), + [aux_sym__comparison_operator_token3] = ACTIONS(1090), + [aux_sym__comparison_operator_token4] = ACTIONS(1090), + [aux_sym__comparison_operator_token5] = ACTIONS(1090), + [aux_sym__comparison_operator_token6] = ACTIONS(1090), + [aux_sym__comparison_operator_token7] = ACTIONS(1090), + [aux_sym__comparison_operator_token8] = ACTIONS(1090), + [aux_sym__comparison_operator_token9] = ACTIONS(1090), + [aux_sym_scope_tuning_token1] = ACTIONS(1198), + [aux_sym_if_statement_token1] = ACTIONS(1198), + [aux_sym_on_error_phrase_token1] = ACTIONS(1198), + [aux_sym_sort_order_token1] = ACTIONS(1198), + [aux_sym_sort_order_token2] = ACTIONS(1198), + [aux_sym_sort_order_token3] = ACTIONS(1198), + [aux_sym_sort_order_token4] = ACTIONS(1198), + [aux_sym_sort_clause_token1] = ACTIONS(1198), + [aux_sym_sort_clause_token2] = ACTIONS(1198), + [aux_sym_can_find_expression_token1] = ACTIONS(1198), + [aux_sym_accumulate_expression_token1] = ACTIONS(1198), + [aux_sym_available_expression_token1] = ACTIONS(1198), + [aux_sym_available_expression_token2] = ACTIONS(1198), + [sym__or_operator] = ACTIONS(1094), + [sym__and_operator] = ACTIONS(1094), + [sym__escaped_string] = ACTIONS(1200), + }, + [201] = { + [sym_comment] = STATE(201), + [sym__logical_operator] = STATE(915), + [sym__additive_operator] = STATE(914), + [sym__multiplicative_operator] = STATE(913), + [sym__comparison_operator] = STATE(912), + [sym_include] = STATE(201), + [sym_identifier] = ACTIONS(1202), + [anon_sym_COLON] = ACTIONS(1202), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_STAR] = ACTIONS(1086), + [sym_null_expression] = ACTIONS(1202), + [aux_sym_boolean_literal_token1] = ACTIONS(1202), + [aux_sym_boolean_literal_token2] = ACTIONS(1202), + [aux_sym_boolean_literal_token3] = ACTIONS(1202), + [aux_sym_boolean_literal_token4] = ACTIONS(1202), + [sym__integer_literal] = ACTIONS(1202), + [sym_date_literal] = ACTIONS(1202), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_COMMA] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1202), + [aux_sym_unary_expression_token1] = ACTIONS(1202), + [aux_sym_unary_expression_token2] = ACTIONS(1202), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1202), + [aux_sym_temp_table_expression_token1] = ACTIONS(1202), + [aux_sym_current_changed_expression_token1] = ACTIONS(1202), + [aux_sym_locked_expression_token1] = ACTIONS(1202), + [aux_sym_dataset_expression_token1] = ACTIONS(1202), + [aux_sym_input_expression_token1] = ACTIONS(1202), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1090), + [anon_sym_LT_GT] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1090), + [aux_sym__comparison_operator_token1] = ACTIONS(1090), + [aux_sym__comparison_operator_token2] = ACTIONS(1090), + [aux_sym__comparison_operator_token3] = ACTIONS(1090), + [aux_sym__comparison_operator_token4] = ACTIONS(1090), + [aux_sym__comparison_operator_token5] = ACTIONS(1090), + [aux_sym__comparison_operator_token6] = ACTIONS(1090), + [aux_sym__comparison_operator_token7] = ACTIONS(1090), + [aux_sym__comparison_operator_token8] = ACTIONS(1090), + [aux_sym__comparison_operator_token9] = ACTIONS(1090), + [aux_sym_scope_tuning_token1] = ACTIONS(1202), + [aux_sym_if_statement_token1] = ACTIONS(1202), + [aux_sym_on_error_phrase_token1] = ACTIONS(1202), + [aux_sym_sort_order_token1] = ACTIONS(1202), + [aux_sym_sort_order_token2] = ACTIONS(1202), + [aux_sym_sort_order_token3] = ACTIONS(1202), + [aux_sym_sort_order_token4] = ACTIONS(1202), + [aux_sym_sort_clause_token1] = ACTIONS(1202), + [aux_sym_sort_clause_token2] = ACTIONS(1202), + [aux_sym_can_find_expression_token1] = ACTIONS(1202), + [aux_sym_accumulate_expression_token1] = ACTIONS(1202), + [aux_sym_available_expression_token1] = ACTIONS(1202), + [aux_sym_available_expression_token2] = ACTIONS(1202), + [sym__or_operator] = ACTIONS(1094), + [sym__and_operator] = ACTIONS(1094), + [sym__escaped_string] = ACTIONS(1204), + }, + [202] = { + [sym_comment] = STATE(202), + [sym__logical_operator] = STATE(915), + [sym__additive_operator] = STATE(914), + [sym__multiplicative_operator] = STATE(913), + [sym__comparison_operator] = STATE(912), + [sym_include] = STATE(202), + [sym_identifier] = ACTIONS(1206), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1086), + [sym_null_expression] = ACTIONS(1206), + [aux_sym_boolean_literal_token1] = ACTIONS(1206), + [aux_sym_boolean_literal_token2] = ACTIONS(1206), + [aux_sym_boolean_literal_token3] = ACTIONS(1206), + [aux_sym_boolean_literal_token4] = ACTIONS(1206), + [sym__integer_literal] = ACTIONS(1206), + [sym_date_literal] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_COMMA] = ACTIONS(1206), + [anon_sym_LPAREN] = ACTIONS(1206), + [aux_sym_unary_expression_token1] = ACTIONS(1206), + [aux_sym_unary_expression_token2] = ACTIONS(1206), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1206), + [aux_sym_temp_table_expression_token1] = ACTIONS(1206), + [aux_sym_current_changed_expression_token1] = ACTIONS(1206), + [aux_sym_locked_expression_token1] = ACTIONS(1206), + [aux_sym_dataset_expression_token1] = ACTIONS(1206), + [aux_sym_input_expression_token1] = ACTIONS(1206), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1090), + [anon_sym_LT_GT] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1090), + [aux_sym__comparison_operator_token1] = ACTIONS(1090), + [aux_sym__comparison_operator_token2] = ACTIONS(1090), + [aux_sym__comparison_operator_token3] = ACTIONS(1090), + [aux_sym__comparison_operator_token4] = ACTIONS(1090), + [aux_sym__comparison_operator_token5] = ACTIONS(1090), + [aux_sym__comparison_operator_token6] = ACTIONS(1090), + [aux_sym__comparison_operator_token7] = ACTIONS(1090), + [aux_sym__comparison_operator_token8] = ACTIONS(1090), + [aux_sym__comparison_operator_token9] = ACTIONS(1090), + [aux_sym_scope_tuning_token1] = ACTIONS(1206), + [aux_sym_if_statement_token1] = ACTIONS(1206), + [aux_sym_on_error_phrase_token1] = ACTIONS(1206), + [aux_sym_sort_order_token1] = ACTIONS(1206), + [aux_sym_sort_order_token2] = ACTIONS(1206), + [aux_sym_sort_order_token3] = ACTIONS(1206), + [aux_sym_sort_order_token4] = ACTIONS(1206), + [aux_sym_sort_clause_token1] = ACTIONS(1206), + [aux_sym_sort_clause_token2] = ACTIONS(1206), + [aux_sym_can_find_expression_token1] = ACTIONS(1206), + [aux_sym_accumulate_expression_token1] = ACTIONS(1206), + [aux_sym_available_expression_token1] = ACTIONS(1206), + [aux_sym_available_expression_token2] = ACTIONS(1206), + [sym__or_operator] = ACTIONS(1094), + [sym__and_operator] = ACTIONS(1094), + [sym__escaped_string] = ACTIONS(1208), + }, + [203] = { + [sym_comment] = STATE(203), + [sym_constant] = STATE(997), + [sym_qualified_name] = STATE(997), + [sym_boolean_literal] = STATE(997), + [sym__decimal_literal] = STATE(1000), + [sym_number_literal] = STATE(997), + [sym_string_literal] = STATE(997), + [sym_array_literal] = STATE(997), + [sym_parenthesized_expression] = STATE(997), + [sym_logical_expression] = STATE(1014), + [sym_unary_expression] = STATE(997), + [sym_ambiguous_expression] = STATE(997), + [sym_temp_table_expression] = STATE(997), + [sym_current_changed_expression] = STATE(997), + [sym_locked_expression] = STATE(997), + [sym_dataset_expression] = STATE(997), + [sym_input_expression] = STATE(997), + [sym_additive_expression] = STATE(1014), + [sym_multiplicative_expression] = STATE(1014), + [sym_comparison_expression] = STATE(1014), + [sym__binary_expression] = STATE(997), + [sym_array_access] = STATE(997), + [sym_include] = STATE(203), + [sym_function_call] = STATE(355), + [sym_ternary_expression] = STATE(997), + [sym_new_expression] = STATE(355), + [sym_object_access] = STATE(668), + [sym_member_access] = STATE(997), + [sym_sort_column] = STATE(2541), + [sym_can_find_expression] = STATE(997), + [sym_accumulate_expression] = STATE(997), + [sym_available_expression] = STATE(997), + [sym__expression] = STATE(218), + [aux_sym_sort_clause_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(859), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(861), + [sym__terminator] = ACTIONS(905), + [sym_null_expression] = ACTIONS(865), + [aux_sym_boolean_literal_token1] = ACTIONS(867), + [aux_sym_boolean_literal_token2] = ACTIONS(867), + [aux_sym_boolean_literal_token3] = ACTIONS(867), + [aux_sym_boolean_literal_token4] = ACTIONS(867), + [sym__integer_literal] = ACTIONS(869), + [sym_date_literal] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(873), + [aux_sym_unary_expression_token1] = ACTIONS(877), + [aux_sym_unary_expression_token2] = ACTIONS(879), + [aux_sym_ambiguous_expression_token1] = ACTIONS(881), + [aux_sym_temp_table_expression_token1] = ACTIONS(883), + [aux_sym_current_changed_expression_token1] = ACTIONS(885), + [aux_sym_locked_expression_token1] = ACTIONS(887), + [aux_sym_dataset_expression_token1] = ACTIONS(889), + [aux_sym_input_expression_token1] = ACTIONS(891), + [aux_sym_scope_tuning_token1] = ACTIONS(893), + [aux_sym_if_statement_token1] = ACTIONS(895), + [aux_sym_can_find_expression_token1] = ACTIONS(897), + [aux_sym_accumulate_expression_token1] = ACTIONS(899), + [aux_sym_available_expression_token1] = ACTIONS(901), + [aux_sym_available_expression_token2] = ACTIONS(901), + [aux_sym_field_definition_token1] = ACTIONS(905), + [aux_sym_index_definition_token1] = ACTIONS(905), + [sym__escaped_string] = ACTIONS(903), + }, + [204] = { + [sym_comment] = STATE(204), + [sym__logical_operator] = STATE(915), + [sym__additive_operator] = STATE(914), + [sym__multiplicative_operator] = STATE(913), + [sym__comparison_operator] = STATE(912), + [sym_include] = STATE(204), + [sym_identifier] = ACTIONS(1210), + [anon_sym_COLON] = ACTIONS(1210), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_STAR] = ACTIONS(1086), + [sym_null_expression] = ACTIONS(1210), + [aux_sym_boolean_literal_token1] = ACTIONS(1210), + [aux_sym_boolean_literal_token2] = ACTIONS(1210), + [aux_sym_boolean_literal_token3] = ACTIONS(1210), + [aux_sym_boolean_literal_token4] = ACTIONS(1210), + [sym__integer_literal] = ACTIONS(1210), + [sym_date_literal] = ACTIONS(1210), + [anon_sym_LBRACK] = ACTIONS(1210), + [anon_sym_COMMA] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(1210), + [aux_sym_unary_expression_token1] = ACTIONS(1210), + [aux_sym_unary_expression_token2] = ACTIONS(1210), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1210), + [aux_sym_temp_table_expression_token1] = ACTIONS(1210), + [aux_sym_current_changed_expression_token1] = ACTIONS(1210), + [aux_sym_locked_expression_token1] = ACTIONS(1210), + [aux_sym_dataset_expression_token1] = ACTIONS(1210), + [aux_sym_input_expression_token1] = ACTIONS(1210), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1090), + [anon_sym_LT_GT] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_EQ] = ACTIONS(1090), + [aux_sym__comparison_operator_token1] = ACTIONS(1090), + [aux_sym__comparison_operator_token2] = ACTIONS(1090), + [aux_sym__comparison_operator_token3] = ACTIONS(1090), + [aux_sym__comparison_operator_token4] = ACTIONS(1090), + [aux_sym__comparison_operator_token5] = ACTIONS(1090), + [aux_sym__comparison_operator_token6] = ACTIONS(1090), + [aux_sym__comparison_operator_token7] = ACTIONS(1090), + [aux_sym__comparison_operator_token8] = ACTIONS(1090), + [aux_sym__comparison_operator_token9] = ACTIONS(1090), + [aux_sym_scope_tuning_token1] = ACTIONS(1210), + [aux_sym_if_statement_token1] = ACTIONS(1210), + [aux_sym_on_error_phrase_token1] = ACTIONS(1210), + [aux_sym_sort_order_token1] = ACTIONS(1210), + [aux_sym_sort_order_token2] = ACTIONS(1210), + [aux_sym_sort_order_token3] = ACTIONS(1210), + [aux_sym_sort_order_token4] = ACTIONS(1210), + [aux_sym_sort_clause_token1] = ACTIONS(1210), + [aux_sym_sort_clause_token2] = ACTIONS(1210), + [aux_sym_can_find_expression_token1] = ACTIONS(1210), + [aux_sym_accumulate_expression_token1] = ACTIONS(1210), + [aux_sym_available_expression_token1] = ACTIONS(1210), + [aux_sym_available_expression_token2] = ACTIONS(1210), + [sym__or_operator] = ACTIONS(1212), + [sym__and_operator] = ACTIONS(1212), + [sym__escaped_string] = ACTIONS(1212), + }, + [205] = { + [sym_comment] = STATE(205), + [sym__logical_operator] = STATE(915), + [sym__additive_operator] = STATE(914), + [sym__multiplicative_operator] = STATE(913), + [sym__comparison_operator] = STATE(912), + [sym_include] = STATE(205), + [sym_identifier] = ACTIONS(1214), + [anon_sym_COLON] = ACTIONS(1214), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SLASH] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_STAR] = ACTIONS(1214), + [sym_null_expression] = ACTIONS(1214), + [aux_sym_boolean_literal_token1] = ACTIONS(1214), + [aux_sym_boolean_literal_token2] = ACTIONS(1214), + [aux_sym_boolean_literal_token3] = ACTIONS(1214), + [aux_sym_boolean_literal_token4] = ACTIONS(1214), + [sym__integer_literal] = ACTIONS(1214), + [sym_date_literal] = ACTIONS(1214), + [anon_sym_LBRACK] = ACTIONS(1214), + [anon_sym_COMMA] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1214), + [aux_sym_unary_expression_token1] = ACTIONS(1214), + [aux_sym_unary_expression_token2] = ACTIONS(1214), + [aux_sym_ambiguous_expression_token1] = ACTIONS(1214), + [aux_sym_temp_table_expression_token1] = ACTIONS(1214), + [aux_sym_current_changed_expression_token1] = ACTIONS(1214), + [aux_sym_locked_expression_token1] = ACTIONS(1214), + [aux_sym_dataset_expression_token1] = ACTIONS(1214), + [aux_sym_input_expression_token1] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [aux_sym__multiplicative_operator_token1] = ACTIONS(1214), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_LT_EQ] = ACTIONS(1214), + [anon_sym_LT_GT] = ACTIONS(1214), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_GT] = ACTIONS(1214), + [anon_sym_GT_EQ] = ACTIONS(1214), + [aux_sym__comparison_operator_token1] = ACTIONS(1214), + [aux_sym__comparison_operator_token2] = ACTIONS(1214), + [aux_sym__comparison_operator_token3] = ACTIONS(1214), + [aux_sym__comparison_operator_token4] = ACTIONS(1214), + [aux_sym__comparison_operator_token5] = ACTIONS(1214), + [aux_sym__comparison_operator_token6] = ACTIONS(1214), + [aux_sym__comparison_operator_token7] = ACTIONS(1214), + [aux_sym__comparison_operator_token8] = ACTIONS(1214), + [aux_sym__comparison_operator_token9] = ACTIONS(1214), + [aux_sym_scope_tuning_token1] = ACTIONS(1214), + [aux_sym_if_statement_token1] = ACTIONS(1214), + [aux_sym_on_error_phrase_token1] = ACTIONS(1214), + [aux_sym_sort_order_token1] = ACTIONS(1214), + [aux_sym_sort_order_token2] = ACTIONS(1214), + [aux_sym_sort_order_token3] = ACTIONS(1214), + [aux_sym_sort_order_token4] = ACTIONS(1214), + [aux_sym_sort_clause_token1] = ACTIONS(1214), + [aux_sym_sort_clause_token2] = ACTIONS(1214), + [aux_sym_can_find_expression_token1] = ACTIONS(1214), + [aux_sym_accumulate_expression_token1] = ACTIONS(1214), + [aux_sym_available_expression_token1] = ACTIONS(1214), + [aux_sym_available_expression_token2] = ACTIONS(1214), + [sym__or_operator] = ACTIONS(1216), + [sym__and_operator] = ACTIONS(1216), + [sym__escaped_string] = ACTIONS(1216), + }, + [206] = { + [sym_comment] = STATE(206), + [sym_constant] = STATE(997), + [sym_qualified_name] = STATE(997), + [sym_boolean_literal] = STATE(997), + [sym__decimal_literal] = STATE(1000), + [sym_number_literal] = STATE(997), + [sym_string_literal] = STATE(997), + [sym_array_literal] = STATE(997), + [sym_parenthesized_expression] = STATE(997), + [sym_logical_expression] = STATE(1014), + [sym_unary_expression] = STATE(997), + [sym_ambiguous_expression] = STATE(997), + [sym_temp_table_expression] = STATE(997), + [sym_current_changed_expression] = STATE(997), + [sym_locked_expression] = STATE(997), + [sym_dataset_expression] = STATE(997), + [sym_input_expression] = STATE(997), + [sym_additive_expression] = STATE(1014), + [sym_multiplicative_expression] = STATE(1014), + [sym_comparison_expression] = STATE(1014), + [sym__binary_expression] = STATE(997), + [sym_array_access] = STATE(997), + [sym_include] = STATE(206), + [sym_function_call] = STATE(355), + [sym_ternary_expression] = STATE(997), + [sym_new_expression] = STATE(355), + [sym_object_access] = STATE(668), + [sym_member_access] = STATE(997), + [sym_sort_column] = STATE(2541), + [sym_can_find_expression] = STATE(997), + [sym_accumulate_expression] = STATE(997), + [sym_available_expression] = STATE(997), + [sym__expression] = STATE(218), + [aux_sym_sort_clause_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(859), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(861), + [sym__terminator] = ACTIONS(1218), + [sym_null_expression] = ACTIONS(865), + [aux_sym_boolean_literal_token1] = ACTIONS(867), + [aux_sym_boolean_literal_token2] = ACTIONS(867), + [aux_sym_boolean_literal_token3] = ACTIONS(867), + [aux_sym_boolean_literal_token4] = ACTIONS(867), + [sym__integer_literal] = ACTIONS(869), + [sym_date_literal] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(873), + [aux_sym_unary_expression_token1] = ACTIONS(877), + [aux_sym_unary_expression_token2] = ACTIONS(879), + [aux_sym_ambiguous_expression_token1] = ACTIONS(881), + [aux_sym_temp_table_expression_token1] = ACTIONS(883), + [aux_sym_current_changed_expression_token1] = ACTIONS(885), + [aux_sym_locked_expression_token1] = ACTIONS(887), + [aux_sym_dataset_expression_token1] = ACTIONS(889), + [aux_sym_input_expression_token1] = ACTIONS(891), + [aux_sym_scope_tuning_token1] = ACTIONS(893), + [aux_sym_if_statement_token1] = ACTIONS(895), + [aux_sym_can_find_expression_token1] = ACTIONS(897), + [aux_sym_accumulate_expression_token1] = ACTIONS(899), + [aux_sym_available_expression_token1] = ACTIONS(901), + [aux_sym_available_expression_token2] = ACTIONS(901), + [aux_sym_field_definition_token1] = ACTIONS(1218), + [aux_sym_index_definition_token1] = ACTIONS(1218), + [sym__escaped_string] = ACTIONS(903), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 33, + [0] = 8, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(857), 1, + sym__namedoublecolon, + STATE(222), 1, + aux_sym_member_access_repeat1, + STATE(207), 2, + sym_comment, + sym_include, + ACTIONS(121), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(119), 52, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + aux_sym_type_tuning_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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_token4, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [81] = 33, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(1220), 1, sym_identifier, - ACTIONS(1211), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(1217), 1, + ACTIONS(1232), 1, sym__integer_literal, - ACTIONS(1219), 1, + ACTIONS(1235), 1, anon_sym_LBRACK, - ACTIONS(1221), 1, + ACTIONS(1238), 1, anon_sym_LPAREN, - ACTIONS(1223), 1, + ACTIONS(1241), 1, aux_sym_unary_expression_token1, - ACTIONS(1225), 1, + ACTIONS(1244), 1, aux_sym_unary_expression_token2, - ACTIONS(1227), 1, + ACTIONS(1247), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1229), 1, + ACTIONS(1250), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1231), 1, + ACTIONS(1253), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1233), 1, + ACTIONS(1256), 1, aux_sym_locked_expression_token1, - ACTIONS(1235), 1, + ACTIONS(1259), 1, aux_sym_dataset_expression_token1, - ACTIONS(1237), 1, + ACTIONS(1262), 1, aux_sym_input_expression_token1, - ACTIONS(1239), 1, + ACTIONS(1265), 1, aux_sym_scope_tuning_token1, - ACTIONS(1241), 1, + ACTIONS(1268), 1, aux_sym_if_statement_token1, - ACTIONS(1243), 1, + ACTIONS(1271), 1, aux_sym_if_statement_token2, - ACTIONS(1245), 1, + ACTIONS(1273), 1, aux_sym_case_conditon_token1, - ACTIONS(1247), 1, + ACTIONS(1276), 1, aux_sym_can_find_expression_token1, - ACTIONS(1249), 1, + ACTIONS(1279), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1253), 1, + ACTIONS(1285), 1, sym__escaped_string, - STATE(209), 1, - aux_sym_case_when_branch_repeat1, - STATE(1024), 1, + STATE(1027), 1, sym__expression, - STATE(1086), 1, + STATE(1115), 1, sym_object_access, - STATE(1116), 1, + STATE(1135), 1, sym__decimal_literal, - STATE(2738), 1, + STATE(2863), 1, sym_case_conditon, - ACTIONS(1213), 2, + ACTIONS(1226), 2, sym_null_expression, sym_date_literal, - ACTIONS(1251), 2, + ACTIONS(1282), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(199), 2, + STATE(1078), 2, + sym_function_call, + sym_new_expression, + STATE(208), 3, sym_comment, sym_include, - ACTIONS(1215), 4, + aux_sym_case_when_branch_repeat1, + ACTIONS(1229), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1133), 4, + STATE(1137), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1124), 23, + STATE(1141), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59777,114 +61139,30 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [131] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1085), 1, - sym__escaped_string, - STATE(902), 1, - sym__comparison_operator, - STATE(904), 1, - sym__multiplicative_operator, - STATE(905), 1, - sym__additive_operator, - STATE(906), 1, - sym__logical_operator, - STATE(2485), 1, - sym_sort_order, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(200), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1255), 4, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - ACTIONS(1079), 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(1073), 28, - 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_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, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [226] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [212] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(846), 1, - sym__namedoublecolon, - STATE(208), 1, - aux_sym_member_access_repeat1, - STATE(201), 2, + STATE(209), 2, sym_comment, sym_include, - ACTIONS(130), 5, + ACTIONS(140), 6, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_NO_DASHERROR, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(128), 52, + ACTIONS(138), 53, + sym__namecolon, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -59937,81 +61215,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [307] = 33, + [289] = 34, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(1288), 1, sym_identifier, - ACTIONS(1211), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(1217), 1, + ACTIONS(1296), 1, sym__integer_literal, - ACTIONS(1219), 1, + ACTIONS(1298), 1, anon_sym_LBRACK, - ACTIONS(1221), 1, + ACTIONS(1300), 1, anon_sym_LPAREN, - ACTIONS(1223), 1, + ACTIONS(1302), 1, aux_sym_unary_expression_token1, - ACTIONS(1225), 1, + ACTIONS(1304), 1, aux_sym_unary_expression_token2, - ACTIONS(1227), 1, + ACTIONS(1306), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1229), 1, + ACTIONS(1308), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1231), 1, + ACTIONS(1310), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1233), 1, + ACTIONS(1312), 1, aux_sym_locked_expression_token1, - ACTIONS(1235), 1, + ACTIONS(1314), 1, aux_sym_dataset_expression_token1, - ACTIONS(1237), 1, + ACTIONS(1316), 1, aux_sym_input_expression_token1, - ACTIONS(1239), 1, + ACTIONS(1318), 1, aux_sym_scope_tuning_token1, - ACTIONS(1241), 1, + ACTIONS(1320), 1, aux_sym_if_statement_token1, - ACTIONS(1245), 1, + ACTIONS(1322), 1, + aux_sym_if_statement_token2, + ACTIONS(1324), 1, aux_sym_case_conditon_token1, - ACTIONS(1247), 1, + ACTIONS(1326), 1, aux_sym_can_find_expression_token1, - ACTIONS(1249), 1, + ACTIONS(1328), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1253), 1, + ACTIONS(1332), 1, sym__escaped_string, - ACTIONS(1257), 1, - aux_sym_if_statement_token2, - STATE(199), 1, + STATE(208), 1, aux_sym_case_when_branch_repeat1, - STATE(1024), 1, + STATE(1027), 1, sym__expression, - STATE(1086), 1, + STATE(1115), 1, sym_object_access, - STATE(1116), 1, + STATE(1135), 1, sym__decimal_literal, - STATE(2738), 1, + STATE(2863), 1, sym_case_conditon, - ACTIONS(1213), 2, + ACTIONS(1292), 2, sym_null_expression, sym_date_literal, - ACTIONS(1251), 2, + ACTIONS(1330), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(202), 2, + STATE(210), 2, sym_comment, sym_include, - ACTIONS(1215), 4, + STATE(1078), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1294), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1133), 4, + STATE(1137), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1124), 23, + STATE(1141), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60028,34 +61309,130 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [438] = 8, - ACTIONS(65), 1, + [422] = 34, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1288), 1, + sym_identifier, + ACTIONS(1290), 1, + anon_sym_LBRACE, + ACTIONS(1296), 1, + sym__integer_literal, + ACTIONS(1298), 1, + anon_sym_LBRACK, + ACTIONS(1300), 1, + anon_sym_LPAREN, + ACTIONS(1302), 1, + aux_sym_unary_expression_token1, + ACTIONS(1304), 1, + aux_sym_unary_expression_token2, + ACTIONS(1306), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(1308), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(1310), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(1312), 1, + aux_sym_locked_expression_token1, + ACTIONS(1314), 1, + aux_sym_dataset_expression_token1, + ACTIONS(1316), 1, + aux_sym_input_expression_token1, + ACTIONS(1318), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1320), 1, + aux_sym_if_statement_token1, + ACTIONS(1324), 1, + aux_sym_case_conditon_token1, + ACTIONS(1326), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1328), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(1332), 1, + sym__escaped_string, + ACTIONS(1334), 1, + aux_sym_if_statement_token2, + STATE(210), 1, + aux_sym_case_when_branch_repeat1, + STATE(1027), 1, + sym__expression, + STATE(1115), 1, + sym_object_access, + STATE(1135), 1, + sym__decimal_literal, + STATE(2863), 1, + sym_case_conditon, + ACTIONS(1292), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(1330), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(211), 2, + sym_comment, + sym_include, + STATE(1078), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1294), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1137), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1141), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [555] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(842), 1, + ACTIONS(1336), 1, sym__namedot, - STATE(205), 1, - aux_sym_qualified_name_repeat1, - STATE(203), 2, + STATE(212), 3, sym_comment, sym_include, - ACTIONS(108), 5, + aux_sym_qualified_name_repeat1, + ACTIONS(110), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(106), 52, + ACTIONS(108), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -60108,27 +61485,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [519] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [634] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(842), 1, - sym__namedot, - STATE(205), 1, - aux_sym_qualified_name_repeat1, - STATE(204), 2, + ACTIONS(855), 1, + sym__namecolon, + STATE(186), 1, + aux_sym_object_access_repeat1, + STATE(213), 2, sym_comment, sym_include, - ACTIONS(104), 5, + ACTIONS(71), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(102), 52, + ACTIONS(65), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -60181,27 +61558,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [600] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [715] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(842), 1, - sym__namedot, - STATE(207), 1, - aux_sym_qualified_name_repeat1, - STATE(205), 2, + ACTIONS(855), 1, + sym__namecolon, + STATE(186), 1, + aux_sym_object_access_repeat1, + STATE(214), 2, sym_comment, sym_include, - ACTIONS(100), 5, + ACTIONS(87), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(98), 52, + ACTIONS(85), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -60254,27 +61631,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [681] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [796] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(840), 1, - anon_sym_LPAREN, - STATE(293), 1, - sym_function_arguments, - STATE(206), 2, + ACTIONS(853), 1, + sym__namedot, + STATE(212), 1, + aux_sym_qualified_name_repeat1, + STATE(215), 2, sym_comment, sym_include, - ACTIONS(85), 5, + ACTIONS(106), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(83), 52, + ACTIONS(104), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -60327,26 +61704,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [762] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [877] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1259), 1, - sym__namedot, - STATE(207), 3, + STATE(216), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(119), 5, + ACTIONS(117), 6, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_NO_DASHERROR, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(117), 52, + ACTIONS(115), 53, + sym__namecolon, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -60399,26 +61775,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [841] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [954] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1262), 1, - sym__namedoublecolon, - STATE(208), 3, + STATE(217), 2, sym_comment, sym_include, - aux_sym_member_access_repeat1, - ACTIONS(112), 5, + ACTIONS(144), 6, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_NO_DASHERROR, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(110), 52, + ACTIONS(142), 53, + sym__namecolon, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -60471,132 +61846,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [920] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1265), 1, - sym_identifier, - ACTIONS(1268), 1, - anon_sym_LBRACE, - ACTIONS(1277), 1, - sym__integer_literal, - ACTIONS(1280), 1, - anon_sym_LBRACK, - ACTIONS(1283), 1, - anon_sym_LPAREN, - ACTIONS(1286), 1, - aux_sym_unary_expression_token1, - ACTIONS(1289), 1, - aux_sym_unary_expression_token2, - ACTIONS(1292), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(1295), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(1298), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(1301), 1, - aux_sym_locked_expression_token1, - ACTIONS(1304), 1, - aux_sym_dataset_expression_token1, - ACTIONS(1307), 1, - aux_sym_input_expression_token1, - ACTIONS(1310), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1313), 1, - aux_sym_if_statement_token1, - ACTIONS(1316), 1, - aux_sym_if_statement_token2, - ACTIONS(1318), 1, - aux_sym_case_conditon_token1, - ACTIONS(1321), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1324), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(1330), 1, - sym__escaped_string, - STATE(1024), 1, - sym__expression, - STATE(1086), 1, - sym_object_access, - STATE(1116), 1, - sym__decimal_literal, - STATE(2738), 1, - sym_case_conditon, - ACTIONS(1271), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(1327), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(209), 3, - sym_comment, - sym_include, - aux_sym_case_when_branch_repeat1, - ACTIONS(1274), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(1133), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(1124), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [1049] = 13, + [1031] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1187), 1, + ACTIONS(1096), 1, sym__escaped_string, - STATE(902), 1, + STATE(860), 1, sym__comparison_operator, - STATE(904), 1, + STATE(862), 1, sym__multiplicative_operator, - STATE(905), 1, + STATE(865), 1, sym__additive_operator, - STATE(906), 1, + STATE(868), 1, sym__logical_operator, - ACTIONS(1077), 2, + STATE(2519), 1, + sym_sort_order, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(210), 2, + STATE(218), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1339), 4, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -60612,7 +61897,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(1185), 32, + ACTIONS(1084), 28, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -60635,49 +61920,119 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_expression_token1, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [1139] = 12, - ACTIONS(3), 1, + [1126] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - STATE(902), 1, - sym__comparison_operator, - STATE(904), 1, - sym__multiplicative_operator, - STATE(905), 1, - sym__additive_operator, - STATE(906), 1, - sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(851), 1, + anon_sym_LPAREN, + STATE(226), 1, + sym_function_arguments, + STATE(219), 2, + sym_comment, + sym_include, + ACTIONS(87), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(85), 52, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + aux_sym_type_tuning_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(211), 2, + aux_sym__multiplicative_operator_token1, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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_token4, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [1207] = 8, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(853), 1, + sym__namedot, + STATE(215), 1, + aux_sym_qualified_name_repeat1, + STATE(220), 2, sym_comment, sym_include, - ACTIONS(236), 3, + ACTIONS(136), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(134), 52, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(1075), 3, - anon_sym_SLASH, + anon_sym_COLON, anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + aux_sym_type_tuning_token2, + anon_sym_PLUS, + anon_sym_DASH, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 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, @@ -60688,57 +62043,128 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(238), 32, + aux_sym_variable_tuning_token4, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [1288] = 8, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, anon_sym_LBRACE, - sym_identifier, + ACTIONS(853), 1, + sym__namedot, + STATE(215), 1, + aux_sym_qualified_name_repeat1, + STATE(221), 2, + sym_comment, + sym_include, + ACTIONS(125), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(123), 52, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, + 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [1227] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + aux_sym_type_tuning_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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_token4, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [1369] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(212), 2, + ACTIONS(1341), 1, + sym__namedoublecolon, + STATE(222), 3, sym_comment, sym_include, - ACTIONS(144), 5, + aux_sym_member_access_repeat1, + ACTIONS(129), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(142), 53, - sym__namedoublecolon, + ACTIONS(127), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -60791,23 +62217,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [1303] = 7, + [1448] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(902), 1, + ACTIONS(909), 1, sym__namedot, - STATE(220), 1, + STATE(233), 1, aux_sym_qualified_name_repeat1, - STATE(213), 2, + STATE(223), 2, sym_comment, sym_include, - ACTIONS(102), 3, + ACTIONS(104), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(104), 54, + ACTIONS(106), 54, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -60862,28 +62288,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [1381] = 7, + [1526] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(902), 1, - sym__namedot, - STATE(220), 1, - aux_sym_qualified_name_repeat1, - STATE(214), 2, - sym_comment, - sym_include, - ACTIONS(106), 3, + ACTIONS(1196), 1, + sym__escaped_string, + STATE(860), 1, + sym__comparison_operator, + STATE(862), 1, + sym__multiplicative_operator, + STATE(865), 1, + sym__additive_operator, + STATE(868), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(108), 54, - anon_sym_COLON, + STATE(224), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1090), 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(1194), 32, anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, + sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, @@ -60892,7 +62344,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -60902,14 +62353,121 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_locked_expression_token1, aux_sym_dataset_expression_token1, aux_sym_input_expression_token1, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [1616] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(225), 2, + sym_comment, + sym_include, + ACTIONS(148), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(146), 53, + sym__namecolon, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + aux_sym_type_tuning_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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_token4, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [1692] = 7, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1344), 1, + aux_sym_function_call_token1, + STATE(226), 2, + sym_comment, + sym_include, + ACTIONS(158), 5, + anon_sym_SLASH, + anon_sym_LT, anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(156), 52, + sym__namecolon, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + aux_sym_type_tuning_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -60920,38 +62478,193 @@ 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_variable_tuning_token4, + aux_sym_using_statement_token1, 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_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [1459] = 7, - ACTIONS(65), 1, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [1770] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1346), 1, + sym__namedot, + STATE(227), 2, + sym_comment, + sym_include, + ACTIONS(152), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(150), 52, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + aux_sym_type_tuning_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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_token4, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [1848] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1333), 1, + STATE(228), 2, + sym_comment, + sym_include, + ACTIONS(110), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(108), 53, sym__namedot, - STATE(215), 2, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + aux_sym_type_tuning_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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_token4, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [1924] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(229), 2, sym_comment, sym_include, - ACTIONS(134), 5, + ACTIONS(168), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(132), 52, + ACTIONS(166), 53, + sym__namecolon, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -61004,23 +62717,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [1537] = 7, + [2000] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(904), 1, - sym__namecolon, - STATE(218), 1, - aux_sym_object_access_repeat1, - STATE(216), 2, + STATE(230), 2, sym_comment, sym_include, - ACTIONS(94), 3, + ACTIONS(115), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(96), 54, + ACTIONS(117), 55, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -61064,6 +62774,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + anon_sym_NO_DASHERROR, aux_sym_on_error_phrase_token1, aux_sym_sort_order_token1, aux_sym_sort_order_token2, @@ -61075,23 +62786,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [1615] = 7, + [2074] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(906), 1, - sym__namedoublecolon, - STATE(219), 1, - aux_sym_member_access_repeat1, - STATE(217), 2, + STATE(231), 2, sym_comment, sym_include, - ACTIONS(128), 3, + ACTIONS(142), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(130), 54, + ACTIONS(144), 55, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -61135,6 +62843,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + anon_sym_NO_DASHERROR, aux_sym_on_error_phrase_token1, aux_sym_sort_order_token1, aux_sym_sort_order_token2, @@ -61146,22 +62855,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [1693] = 6, + [2148] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1335), 1, + STATE(232), 2, + sym_comment, + sym_include, + ACTIONS(138), 4, sym__namecolon, - ACTIONS(87), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - STATE(218), 3, - sym_comment, - sym_include, - aux_sym_object_access_repeat1, - ACTIONS(89), 54, + ACTIONS(140), 55, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -61205,6 +62912,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + anon_sym_NO_DASHERROR, aux_sym_on_error_phrase_token1, aux_sym_sort_order_token1, aux_sym_sort_order_token2, @@ -61216,22 +62924,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [1769] = 6, + [2222] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1338), 1, - sym__namedoublecolon, - ACTIONS(110), 3, + ACTIONS(1348), 1, + sym__namedot, + ACTIONS(108), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - STATE(219), 3, + STATE(233), 3, sym_comment, sym_include, - aux_sym_member_access_repeat1, - ACTIONS(112), 54, + aux_sym_qualified_name_repeat1, + ACTIONS(110), 54, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -61286,27 +62994,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [1845] = 7, + [2298] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(902), 1, - sym__namedot, - STATE(221), 1, - aux_sym_qualified_name_repeat1, - STATE(220), 2, + ACTIONS(1351), 1, + sym_identifier, + ACTIONS(1356), 1, + aux_sym_input_expression_token2, + STATE(378), 1, + sym_qualified_name, + STATE(234), 2, sym_comment, sym_include, - ACTIONS(98), 3, + ACTIONS(1358), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(100), 54, + ACTIONS(1354), 53, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, - sym_identifier, anon_sym_STAR, sym_null_expression, aux_sym_boolean_literal_token1, @@ -61357,22 +63066,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [1923] = 6, + [2378] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1341), 1, - sym__namedot, - ACTIONS(117), 3, + STATE(235), 2, + sym_comment, + sym_include, + ACTIONS(138), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - STATE(221), 3, - sym_comment, - sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(119), 54, + ACTIONS(140), 55, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -61415,6 +63122,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, aux_sym_if_statement_token1, aux_sym_on_error_phrase_token1, aux_sym_sort_order_token1, @@ -61427,37 +63135,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [1999] = 11, + [2452] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(902), 1, - sym__comparison_operator, - STATE(904), 1, - sym__multiplicative_operator, - STATE(905), 1, - sym__additive_operator, - STATE(906), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(222), 2, + STATE(236), 2, sym_comment, sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1179), 3, + ACTIONS(142), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(1177), 47, + ACTIONS(144), 55, + anon_sym_COLON, + anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, - sym__terminator, + anon_sym_STAR, sym_null_expression, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, @@ -61466,6 +63162,7 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -61475,6 +63172,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_locked_expression_token1, aux_sym_dataset_expression_token1, aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -61491,43 +63191,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, aux_sym_if_statement_token1, + 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [2085] = 9, + [2526] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(902), 1, - sym__comparison_operator, - STATE(904), 1, - sym__multiplicative_operator, - STATE(905), 1, - sym__additive_operator, - STATE(906), 1, - sym__logical_operator, - STATE(223), 2, + STATE(237), 2, sym_comment, sym_include, - ACTIONS(1195), 3, + ACTIONS(115), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(1193), 52, + ACTIONS(117), 55, + anon_sym_COLON, 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, @@ -61536,6 +63231,7 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -61564,42 +63260,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, aux_sym_if_statement_token1, + 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [2167] = 10, + [2600] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(902), 1, + ACTIONS(1204), 1, + sym__escaped_string, + STATE(860), 1, sym__comparison_operator, - STATE(904), 1, + STATE(862), 1, sym__multiplicative_operator, - STATE(905), 1, + STATE(865), 1, sym__additive_operator, - STATE(906), 1, + STATE(868), 1, sym__logical_operator, - STATE(224), 2, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(238), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1207), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(1205), 49, + ACTIONS(1090), 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(1202), 32, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -61620,23 +63338,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_locked_expression_token1, aux_sym_dataset_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_sort_order_token1, @@ -61649,35 +63350,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [2251] = 13, + [2690] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1203), 1, - sym__escaped_string, - STATE(902), 1, + STATE(860), 1, sym__comparison_operator, - STATE(904), 1, + STATE(862), 1, sym__multiplicative_operator, - STATE(905), 1, + STATE(865), 1, sym__additive_operator, - STATE(906), 1, + STATE(868), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(225), 2, + STATE(239), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1212), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -61693,7 +63393,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(1201), 32, + ACTIONS(1210), 32, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -61726,99 +63426,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [2341] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(226), 2, - sym_comment, - sym_include, - ACTIONS(119), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(117), 53, - sym__namedot, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - aux_sym_type_tuning_token2, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_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_token4, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [2417] = 8, + [2778] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1344), 1, - sym_identifier, - ACTIONS(1349), 1, - aux_sym_input_expression_token2, - STATE(333), 1, - sym_qualified_name, - STATE(227), 2, + STATE(860), 1, + sym__comparison_operator, + STATE(862), 1, + sym__multiplicative_operator, + STATE(865), 1, + sym__additive_operator, + STATE(868), 1, + sym__logical_operator, + STATE(240), 2, sym_comment, sym_include, - ACTIONS(1351), 3, + ACTIONS(1216), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(1347), 53, - anon_sym_COLON, + ACTIONS(1214), 52, 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, @@ -61827,7 +63460,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -61857,62 +63489,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [2497] = 13, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [2860] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1102), 1, - sym__escaped_string, - STATE(902), 1, + STATE(860), 1, sym__comparison_operator, - STATE(904), 1, + STATE(862), 1, sym__multiplicative_operator, - STATE(905), 1, + STATE(865), 1, sym__additive_operator, - STATE(906), 1, + STATE(868), 1, sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(228), 2, + STATE(241), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 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(1100), 32, + ACTIONS(1121), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(1119), 49, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -61933,119 +63544,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_locked_expression_token1, aux_sym_dataset_expression_token1, aux_sym_input_expression_token1, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [2587] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(229), 2, - sym_comment, - sym_include, - ACTIONS(140), 6, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_NO_DASHERROR, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(138), 52, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - aux_sym_type_tuning_token2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_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_token4, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [2663] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(230), 2, - sym_comment, - sym_include, - ACTIONS(152), 6, - anon_sym_SLASH, anon_sym_LT, - anon_sym_GT, - anon_sym_NO_DASHERROR, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(150), 52, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - aux_sym_type_tuning_token2, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -62056,53 +63561,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_variable_tuning_token4, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [2739] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [2944] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(231), 2, + STATE(242), 2, sym_comment, sym_include, - ACTIONS(148), 6, + ACTIONS(164), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_NO_DASHERROR, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(146), 52, + ACTIONS(162), 53, + sym__namedoublecolon, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -62155,35 +63643,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [2815] = 13, + [3020] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1183), 1, + ACTIONS(1117), 1, sym__escaped_string, - STATE(902), 1, + STATE(860), 1, sym__comparison_operator, - STATE(904), 1, + STATE(862), 1, sym__multiplicative_operator, - STATE(905), 1, + STATE(865), 1, sym__additive_operator, - STATE(906), 1, + STATE(868), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(232), 2, + STATE(243), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -62199,7 +63687,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(1181), 32, + ACTIONS(1115), 32, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -62232,43 +63720,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [2905] = 13, + [3110] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, - sym__escaped_string, - STATE(902), 1, - sym__comparison_operator, - STATE(904), 1, - sym__multiplicative_operator, - STATE(905), 1, - sym__additive_operator, - STATE(906), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(233), 2, + ACTIONS(1360), 1, + anon_sym_NO_DASHERROR, + STATE(244), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(391), 4, + sym__namecolon, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(393), 54, + anon_sym_COLON, anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 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, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, @@ -62276,7 +63777,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(1189), 32, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + 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, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [3186] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1200), 1, + sym__escaped_string, + STATE(860), 1, + sym__comparison_operator, + STATE(862), 1, + sym__multiplicative_operator, + STATE(865), 1, + sym__additive_operator, + STATE(868), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(245), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1090), 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(1198), 32, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -62309,35 +63867,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [2995] = 13, + [3276] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1106), 1, + ACTIONS(1113), 1, sym__escaped_string, - STATE(902), 1, + STATE(860), 1, sym__comparison_operator, - STATE(904), 1, + STATE(862), 1, sym__multiplicative_operator, - STATE(905), 1, + STATE(865), 1, sym__additive_operator, - STATE(906), 1, + STATE(868), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(234), 2, + STATE(246), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -62353,7 +63911,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(1104), 32, + ACTIONS(1111), 32, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -62386,35 +63944,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [3085] = 13, + [3366] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1112), 1, + ACTIONS(1208), 1, sym__escaped_string, - STATE(902), 1, + STATE(860), 1, sym__comparison_operator, - STATE(904), 1, + STATE(862), 1, sym__multiplicative_operator, - STATE(905), 1, + STATE(865), 1, sym__additive_operator, - STATE(906), 1, + STATE(868), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(235), 2, + STATE(247), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -62430,7 +63988,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(1110), 32, + ACTIONS(1206), 32, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -62463,35 +64021,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [3175] = 13, + [3456] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1199), 1, + ACTIONS(1192), 1, sym__escaped_string, - STATE(902), 1, + STATE(860), 1, sym__comparison_operator, - STATE(904), 1, + STATE(862), 1, sym__multiplicative_operator, - STATE(905), 1, + STATE(865), 1, sym__additive_operator, - STATE(906), 1, + STATE(868), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(236), 2, + STATE(248), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -62507,7 +64065,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(1197), 32, + ACTIONS(1190), 32, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -62540,36 +64098,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [3265] = 6, - ACTIONS(65), 1, + [3546] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(237), 2, + ACTIONS(1125), 1, + sym__escaped_string, + STATE(860), 1, + sym__comparison_operator, + STATE(862), 1, + sym__multiplicative_operator, + STATE(865), 1, + sym__additive_operator, + STATE(868), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(249), 2, sym_comment, sym_include, - ACTIONS(156), 5, + ACTIONS(1086), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(154), 52, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - aux_sym_type_tuning_token2, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_token1, + ACTIONS(1090), 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, @@ -62580,53 +64142,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token4, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [3340] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(238), 2, - sym_comment, - sym_include, - ACTIONS(150), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(152), 55, - anon_sym_COLON, - anon_sym_SLASH, + ACTIONS(1123), 32, anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, + sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, @@ -62635,7 +64154,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -62645,9 +64163,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_locked_expression_token1, aux_sym_dataset_expression_token1, aux_sym_input_expression_token1, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [3636] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(860), 1, + sym__comparison_operator, + STATE(862), 1, + sym__multiplicative_operator, + STATE(865), 1, + sym__additive_operator, + STATE(868), 1, + sym__logical_operator, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(250), 2, + sym_comment, + sym_include, + ACTIONS(230), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, aux_sym__multiplicative_operator_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -62663,33 +64218,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + ACTIONS(232), 32, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, aux_sym_scope_tuning_token1, - aux_sym_function_call_token1, aux_sym_if_statement_token1, - 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [3413] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [3724] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(239), 2, - sym_comment, - sym_include, - ACTIONS(150), 3, + ACTIONS(1362), 1, + sym__namecolon, + ACTIONS(93), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(152), 55, + STATE(251), 3, + sym_comment, + sym_include, + aux_sym_object_access_repeat1, + ACTIONS(95), 54, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -62733,7 +64310,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - anon_sym_NO_DASHERROR, aux_sym_on_error_phrase_token1, aux_sym_sort_order_token1, aux_sym_sort_order_token2, @@ -62745,40 +64321,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [3486] = 13, + [3800] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1353), 1, - anon_sym_LPAREN, - ACTIONS(1355), 1, - sym__namedot, - ACTIONS(1357), 1, + ACTIONS(911), 1, sym__namecolon, - ACTIONS(1359), 1, - sym__namedoublecolon, - STATE(1026), 1, + STATE(251), 1, aux_sym_object_access_repeat1, - STATE(1027), 1, - aux_sym_qualified_name_repeat1, - STATE(1034), 1, - aux_sym_member_access_repeat1, - STATE(1045), 1, - sym_function_arguments, - STATE(240), 2, + STATE(252), 2, sym_comment, sym_include, - ACTIONS(83), 3, + ACTIONS(89), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(85), 47, + ACTIONS(91), 54, + anon_sym_COLON, 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, @@ -62788,7 +64352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_date_literal, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -62817,23 +64381,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [3575] = 5, + [3878] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(241), 2, + ACTIONS(911), 1, + sym__namecolon, + STATE(251), 1, + aux_sym_object_access_repeat1, + STATE(253), 2, sym_comment, sym_include, - ACTIONS(146), 3, + ACTIONS(89), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(148), 55, + ACTIONS(91), 54, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -62877,7 +64452,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - anon_sym_NO_DASHERROR, aux_sym_on_error_phrase_token1, aux_sym_sort_order_token1, aux_sym_sort_order_token2, @@ -62889,26 +64463,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [3648] = 7, + [3956] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1361), 1, - sym_identifier, - STATE(318), 1, - sym_qualified_name, - STATE(242), 2, + ACTIONS(911), 1, + sym__namecolon, + STATE(251), 1, + aux_sym_object_access_repeat1, + STATE(254), 2, sym_comment, sym_include, - ACTIONS(1366), 3, + ACTIONS(89), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(1364), 53, + ACTIONS(91), 54, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, + sym_identifier, anon_sym_STAR, sym_null_expression, aux_sym_boolean_literal_token1, @@ -62959,105 +64534,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [3725] = 6, - ACTIONS(65), 1, + [4034] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(243), 2, - sym_comment, - sym_include, - ACTIONS(104), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(102), 52, + ACTIONS(1365), 1, + sym__namedoublecolon, + ACTIONS(127), 3, sym__or_operator, sym__and_operator, - anon_sym_COLON, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - aux_sym_type_tuning_token2, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_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_token4, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [3800] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(244), 2, + sym__escaped_string, + STATE(255), 3, sym_comment, sym_include, - ACTIONS(220), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(218), 52, - sym__or_operator, - sym__and_operator, + aux_sym_member_access_repeat1, + ACTIONS(129), 54, anon_sym_COLON, + 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, + sym_date_literal, + anon_sym_LBRACK, anon_sym_COMMA, - aux_sym_type_tuning_token2, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -63068,347 +64591,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_variable_tuning_token4, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, + aux_sym_sort_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, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [3875] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(772), 1, - sym_identifier, - ACTIONS(776), 1, - anon_sym_LBRACE, - ACTIONS(784), 1, - sym__integer_literal, - ACTIONS(786), 1, - anon_sym_LBRACK, - ACTIONS(790), 1, - aux_sym_unary_expression_token1, - ACTIONS(792), 1, - aux_sym_unary_expression_token2, - ACTIONS(794), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, - aux_sym_locked_expression_token1, - ACTIONS(802), 1, - aux_sym_dataset_expression_token1, - ACTIONS(804), 1, - aux_sym_input_expression_token1, - ACTIONS(808), 1, - aux_sym_scope_tuning_token1, - ACTIONS(810), 1, - aux_sym_if_statement_token1, - ACTIONS(812), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, - sym__escaped_string, - ACTIONS(1368), 1, - anon_sym_RBRACK, - ACTIONS(1370), 1, - anon_sym_LPAREN, - STATE(247), 1, - aux_sym_array_literal_repeat1, - STATE(1016), 1, - sym__expression, - STATE(1039), 1, - sym_object_access, - STATE(1075), 1, - sym__decimal_literal, - ACTIONS(780), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(816), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(245), 2, - sym_comment, - sym_include, - ACTIONS(782), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(1074), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(1098), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [4000] = 31, + [4110] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, - sym_identifier, - ACTIONS(776), 1, - anon_sym_LBRACE, - ACTIONS(784), 1, - sym__integer_literal, - ACTIONS(786), 1, - anon_sym_LBRACK, - ACTIONS(790), 1, - aux_sym_unary_expression_token1, - ACTIONS(792), 1, - aux_sym_unary_expression_token2, - ACTIONS(794), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, - aux_sym_locked_expression_token1, - ACTIONS(802), 1, - aux_sym_dataset_expression_token1, - ACTIONS(804), 1, - aux_sym_input_expression_token1, - ACTIONS(808), 1, - aux_sym_scope_tuning_token1, - ACTIONS(810), 1, - aux_sym_if_statement_token1, - ACTIONS(812), 1, - aux_sym_can_find_expression_token1, - ACTIONS(814), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, - sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, - ACTIONS(1372), 1, - sym__terminator, - STATE(257), 1, - aux_sym_abl_statement_repeat1, - STATE(1032), 1, - sym__expression, - STATE(1039), 1, - sym_object_access, - STATE(1075), 1, - sym__decimal_literal, - ACTIONS(780), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(816), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(246), 2, + ACTIONS(913), 1, + sym__namedoublecolon, + STATE(255), 1, + aux_sym_member_access_repeat1, + STATE(256), 2, sym_comment, sym_include, - ACTIONS(782), 4, + ACTIONS(119), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(121), 54, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + sym_null_expression, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(1098), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [4125] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(772), 1, - sym_identifier, - ACTIONS(776), 1, - anon_sym_LBRACE, - ACTIONS(784), 1, sym__integer_literal, - ACTIONS(786), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(790), 1, + anon_sym_COMMA, + anon_sym_LPAREN, aux_sym_unary_expression_token1, - ACTIONS(792), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, - aux_sym_scope_tuning_token1, - ACTIONS(810), 1, - aux_sym_if_statement_token1, - ACTIONS(812), 1, - aux_sym_can_find_expression_token1, - ACTIONS(814), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, - sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, - ACTIONS(1374), 1, - anon_sym_RBRACK, - STATE(261), 1, - aux_sym_array_literal_repeat1, - STATE(1016), 1, - sym__expression, - STATE(1039), 1, - sym_object_access, - STATE(1075), 1, - sym__decimal_literal, - ACTIONS(780), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(816), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(247), 2, - sym_comment, - sym_include, - ACTIONS(782), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(1074), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(1098), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [4250] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(248), 2, - sym_comment, - sym_include, - ACTIONS(238), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(236), 52, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - aux_sym_type_tuning_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -63419,65 +64662,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token4, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, + aux_sym_sort_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, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [4325] = 6, - ACTIONS(65), 1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [4188] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(249), 2, + ACTIONS(1368), 1, + aux_sym_function_call_token1, + STATE(257), 2, sym_comment, sym_include, - ACTIONS(85), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(83), 52, + ACTIONS(156), 4, + sym__namecolon, sym__or_operator, sym__and_operator, + sym__escaped_string, + ACTIONS(158), 54, anon_sym_COLON, + 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, + sym_date_literal, + anon_sym_LBRACK, anon_sym_COMMA, - aux_sym_type_tuning_token2, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -63488,65 +64732,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_variable_tuning_token4, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, + aux_sym_sort_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, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [4400] = 6, - ACTIONS(65), 1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [4264] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(250), 2, + ACTIONS(909), 1, + sym__namedot, + STATE(223), 1, + aux_sym_qualified_name_repeat1, + STATE(258), 2, sym_comment, sym_include, - ACTIONS(246), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(244), 52, + ACTIONS(123), 3, sym__or_operator, sym__and_operator, + sym__escaped_string, + ACTIONS(125), 54, anon_sym_COLON, + 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, + sym_date_literal, + anon_sym_LBRACK, anon_sym_COMMA, - aux_sym_type_tuning_token2, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -63557,65 +64803,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_variable_tuning_token4, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, + aux_sym_sort_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, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [4475] = 6, - ACTIONS(65), 1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [4342] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(251), 2, + ACTIONS(909), 1, + sym__namedot, + STATE(223), 1, + aux_sym_qualified_name_repeat1, + STATE(259), 2, sym_comment, sym_include, - ACTIONS(216), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(214), 52, + ACTIONS(134), 3, sym__or_operator, sym__and_operator, + sym__escaped_string, + ACTIONS(136), 54, anon_sym_COLON, + 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, + sym_date_literal, + anon_sym_LBRACK, anon_sym_COMMA, - aux_sym_type_tuning_token2, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -63626,65 +64874,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_variable_tuning_token4, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, + aux_sym_sort_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, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [4550] = 6, - ACTIONS(65), 1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [4420] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(252), 2, + ACTIONS(911), 1, + sym__namecolon, + STATE(253), 1, + aux_sym_object_access_repeat1, + STATE(260), 2, sym_comment, sym_include, - ACTIONS(176), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(174), 52, + ACTIONS(85), 3, sym__or_operator, sym__and_operator, + sym__escaped_string, + ACTIONS(87), 54, anon_sym_COLON, + 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, + sym_date_literal, + anon_sym_LBRACK, anon_sym_COMMA, - aux_sym_type_tuning_token2, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -63695,71 +64945,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token4, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, + aux_sym_sort_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, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [4625] = 14, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [4498] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1353), 1, - anon_sym_LPAREN, - ACTIONS(1355), 1, - sym__namedot, - ACTIONS(1357), 1, + ACTIONS(911), 1, sym__namecolon, - ACTIONS(1359), 1, - sym__namedoublecolon, - ACTIONS(1376), 1, - anon_sym_LBRACK, - STATE(1026), 1, + STATE(253), 1, aux_sym_object_access_repeat1, - STATE(1027), 1, - aux_sym_qualified_name_repeat1, - STATE(1034), 1, - aux_sym_member_access_repeat1, - STATE(1045), 1, - sym_function_arguments, - STATE(253), 2, + STATE(261), 2, sym_comment, sym_include, - ACTIONS(63), 3, + ACTIONS(65), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(69), 46, + ACTIONS(71), 54, + anon_sym_COLON, 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, @@ -63767,8 +64987,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token4, sym__integer_literal, sym_date_literal, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -63797,27 +65018,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [4716] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [4576] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(254), 2, + STATE(262), 2, sym_comment, sym_include, - ACTIONS(69), 5, + ACTIONS(180), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(63), 52, + ACTIONS(178), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -63870,77 +65098,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [4791] = 31, + [4651] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(939), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(943), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(949), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(951), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(953), 1, + anon_sym_LPAREN, + ACTIONS(955), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(957), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(959), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(961), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(963), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(965), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(967), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(969), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(971), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(973), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(975), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(977), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(981), 1, sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, - ACTIONS(1378), 1, - anon_sym_RBRACK, - STATE(292), 1, - aux_sym_array_literal_repeat1, - STATE(1016), 1, + STATE(158), 1, + aux_sym_sort_clause_repeat1, + STATE(180), 1, sym__expression, - STATE(1039), 1, + STATE(270), 1, sym_object_access, - STATE(1075), 1, + STATE(363), 1, sym__decimal_literal, - ACTIONS(780), 2, + STATE(2307), 1, + sym_sort_column, + ACTIONS(945), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(979), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(255), 2, + STATE(261), 2, + sym_function_call, + sym_new_expression, + STATE(263), 2, sym_comment, sym_include, - ACTIONS(782), 4, + ACTIONS(947), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(382), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(384), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63957,84 +65188,84 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [4916] = 31, + [4778] = 31, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(1370), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(1373), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(1382), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(1385), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(1388), 1, + anon_sym_RBRACK, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1393), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(1396), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(1399), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(1402), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(1405), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(1408), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(1411), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(1414), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(1417), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(1420), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(1423), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(1426), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(1432), 1, sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, - ACTIONS(1380), 1, - anon_sym_RBRACK, - STATE(261), 1, - aux_sym_array_literal_repeat1, - STATE(1016), 1, + STATE(1038), 1, sym__expression, - STATE(1039), 1, + STATE(1065), 1, sym_object_access, - STATE(1075), 1, + STATE(1125), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(1376), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(1429), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(256), 2, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + STATE(264), 3, sym_comment, sym_include, - ACTIONS(782), 4, + aux_sym_array_literal_repeat1, + ACTIONS(1379), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64051,83 +65282,162 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5041] = 30, + [4903] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1382), 1, - sym_identifier, - ACTIONS(1385), 1, + ACTIONS(1435), 1, + anon_sym_LBRACK, + ACTIONS(1437), 1, + anon_sym_LPAREN, + ACTIONS(1439), 1, + sym__namedot, + ACTIONS(1441), 1, + sym__namecolon, + ACTIONS(1443), 1, + sym__namedoublecolon, + STATE(1044), 1, + sym_function_arguments, + STATE(1047), 1, + aux_sym_qualified_name_repeat1, + STATE(1048), 1, + aux_sym_object_access_repeat1, + STATE(1049), 1, + aux_sym_member_access_repeat1, + STATE(265), 2, + sym_comment, + sym_include, + ACTIONS(65), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(71), 46, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(1388), 1, + sym_identifier, + anon_sym_STAR, sym__terminator, - ACTIONS(1396), 1, + 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, - ACTIONS(1399), 1, + sym_date_literal, + anon_sym_COMMA, + anon_sym_RBRACK, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [4994] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(777), 1, + sym_identifier, + ACTIONS(781), 1, + anon_sym_LBRACE, + ACTIONS(789), 1, + sym__integer_literal, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(1402), 1, - anon_sym_LPAREN, - ACTIONS(1405), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(1408), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(1411), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1414), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1417), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1420), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(1423), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(1426), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(1429), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(1432), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(1435), 1, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, - ACTIONS(1438), 1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1444), 1, + ACTIONS(831), 1, sym__escaped_string, - STATE(1032), 1, + ACTIONS(1445), 1, + anon_sym_RBRACK, + ACTIONS(1447), 1, + anon_sym_LPAREN, + STATE(271), 1, + aux_sym_array_literal_repeat1, + STATE(1038), 1, sym__expression, - STATE(1039), 1, + STATE(1065), 1, sym_object_access, - STATE(1075), 1, + STATE(1125), 1, sym__decimal_literal, - ACTIONS(1390), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(1441), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(257), 3, + STATE(266), 2, sym_comment, sym_include, - aux_sym_abl_statement_repeat1, - ACTIONS(1393), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64144,84 +65454,85 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5164] = 31, + [5121] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(831), 1, sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1449), 1, anon_sym_RBRACK, - STATE(256), 1, + STATE(264), 1, aux_sym_array_literal_repeat1, - STATE(1016), 1, + STATE(1038), 1, sym__expression, - STATE(1039), 1, + STATE(1065), 1, sym_object_access, - STATE(1075), 1, + STATE(1125), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(258), 2, + STATE(267), 2, sym_comment, sym_include, - ACTIONS(782), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64238,84 +65549,85 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5289] = 31, + [5248] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(831), 1, sym__escaped_string, - ACTIONS(1370), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1449), 1, + ACTIONS(1451), 1, anon_sym_RBRACK, - STATE(262), 1, + STATE(264), 1, aux_sym_array_literal_repeat1, - STATE(1016), 1, + STATE(1038), 1, sym__expression, - STATE(1039), 1, + STATE(1065), 1, sym_object_access, - STATE(1075), 1, + STATE(1125), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(259), 2, + STATE(268), 2, sym_comment, sym_include, - ACTIONS(782), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64332,84 +65644,85 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5414] = 31, + [5375] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(831), 1, sym__escaped_string, - ACTIONS(1370), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1451), 1, - sym__terminator, - STATE(257), 1, - aux_sym_abl_statement_repeat1, - STATE(1032), 1, + ACTIONS(1453), 1, + anon_sym_RBRACK, + STATE(268), 1, + aux_sym_array_literal_repeat1, + STATE(1038), 1, sym__expression, - STATE(1039), 1, + STATE(1065), 1, sym_object_access, - STATE(1075), 1, + STATE(1125), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(260), 2, + STATE(269), 2, sym_comment, sym_include, - ACTIONS(782), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64426,83 +65739,156 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5539] = 30, + [5502] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1453), 1, + ACTIONS(907), 1, + anon_sym_LPAREN, + ACTIONS(915), 1, + anon_sym_LBRACK, + STATE(257), 1, + sym_function_arguments, + STATE(270), 2, + sym_comment, + sym_include, + ACTIONS(65), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(71), 52, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + 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, + sym_date_literal, + anon_sym_COMMA, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_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, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [5581] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(777), 1, sym_identifier, - ACTIONS(1456), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(1465), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(1468), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, - anon_sym_RBRACK, - ACTIONS(1473), 1, - anon_sym_LPAREN, - ACTIONS(1476), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(1479), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(1482), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1485), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1488), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1491), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(1494), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(1497), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(1500), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(1503), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(1506), 1, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, - ACTIONS(1509), 1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1515), 1, + ACTIONS(831), 1, sym__escaped_string, - STATE(1016), 1, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1455), 1, + anon_sym_RBRACK, + STATE(264), 1, + aux_sym_array_literal_repeat1, + STATE(1038), 1, sym__expression, - STATE(1039), 1, + STATE(1065), 1, sym_object_access, - STATE(1075), 1, + STATE(1125), 1, sym__decimal_literal, - ACTIONS(1459), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(1512), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(261), 3, + STATE(271), 2, sym_comment, sym_include, - aux_sym_array_literal_repeat1, - ACTIONS(1462), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64519,84 +65905,85 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5662] = 31, + [5708] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(831), 1, sym__escaped_string, - ACTIONS(1370), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1518), 1, + ACTIONS(1457), 1, anon_sym_RBRACK, - STATE(261), 1, + STATE(264), 1, aux_sym_array_literal_repeat1, - STATE(1016), 1, + STATE(1038), 1, sym__expression, - STATE(1039), 1, + STATE(1065), 1, sym_object_access, - STATE(1075), 1, + STATE(1125), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(262), 2, + STATE(272), 2, sym_comment, sym_include, - ACTIONS(782), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64613,101 +66000,122 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5787] = 8, + [5835] = 31, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(900), 1, - anon_sym_LPAREN, - ACTIONS(908), 1, + ACTIONS(1459), 1, + sym_identifier, + ACTIONS(1462), 1, + anon_sym_LBRACE, + ACTIONS(1465), 1, + sym__terminator, + ACTIONS(1473), 1, + sym__integer_literal, + ACTIONS(1476), 1, anon_sym_LBRACK, - STATE(300), 1, - sym_function_arguments, - STATE(263), 2, - sym_comment, - sym_include, - ACTIONS(63), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(69), 52, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LBRACE, - sym_identifier, - anon_sym_STAR, - 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, - sym_date_literal, - anon_sym_COMMA, + ACTIONS(1479), 1, + anon_sym_LPAREN, + ACTIONS(1482), 1, aux_sym_unary_expression_token1, + ACTIONS(1485), 1, aux_sym_unary_expression_token2, + ACTIONS(1488), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(1491), 1, aux_sym_temp_table_expression_token1, + ACTIONS(1494), 1, aux_sym_current_changed_expression_token1, + ACTIONS(1497), 1, aux_sym_locked_expression_token1, + ACTIONS(1500), 1, aux_sym_dataset_expression_token1, + ACTIONS(1503), 1, aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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(1506), 1, aux_sym_scope_tuning_token1, + ACTIONS(1509), 1, aux_sym_if_statement_token1, - 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, + ACTIONS(1512), 1, aux_sym_can_find_expression_token1, + ACTIONS(1515), 1, aux_sym_accumulate_expression_token1, + ACTIONS(1521), 1, + sym__escaped_string, + STATE(1061), 1, + sym__expression, + STATE(1065), 1, + sym_object_access, + STATE(1125), 1, + sym__decimal_literal, + ACTIONS(1467), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(1518), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [5866] = 7, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + STATE(273), 3, + sym_comment, + sym_include, + aux_sym_abl_statement_repeat1, + ACTIONS(1470), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1093), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1107), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [5960] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(900), 1, + ACTIONS(907), 1, anon_sym_LPAREN, - STATE(300), 1, + STATE(257), 1, sym_function_arguments, - STATE(264), 2, + STATE(274), 2, sym_comment, sym_include, - ACTIONS(83), 3, + ACTIONS(85), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(85), 53, + ACTIONS(87), 53, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -64761,215 +66169,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [5943] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(265), 2, - sym_comment, - sym_include, - ACTIONS(208), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(206), 52, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - aux_sym_type_tuning_token2, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_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_token4, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [6018] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(266), 2, - sym_comment, - sym_include, - ACTIONS(204), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(202), 52, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - aux_sym_type_tuning_token2, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_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_token4, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [6093] = 31, + [6037] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(914), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(918), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(924), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(926), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(932), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(934), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(936), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(938), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(940), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(942), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(944), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - ACTIONS(956), 1, + ACTIONS(831), 1, sym__escaped_string, - STATE(157), 1, - aux_sym_sort_clause_repeat1, - STATE(175), 1, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1524), 1, + anon_sym_RBRACK, + STATE(272), 1, + aux_sym_array_literal_repeat1, + STATE(1038), 1, sym__expression, - STATE(263), 1, + STATE(1065), 1, sym_object_access, - STATE(319), 1, + STATE(1125), 1, sym__decimal_literal, - STATE(1955), 1, - sym_sort_column, - ACTIONS(920), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(954), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(267), 2, + STATE(275), 2, sym_comment, sym_include, - ACTIONS(922), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(354), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(357), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64986,152 +66259,275 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6218] = 5, + [6164] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(268), 2, - sym_comment, - sym_include, - ACTIONS(138), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(140), 55, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(777), 1, sym_identifier, - anon_sym_STAR, + ACTIONS(781), 1, + anon_sym_LBRACE, + ACTIONS(789), 1, + sym__integer_literal, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, + aux_sym_unary_expression_token1, + ACTIONS(797), 1, + aux_sym_unary_expression_token2, + ACTIONS(799), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(801), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(803), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(805), 1, + aux_sym_locked_expression_token1, + ACTIONS(807), 1, + aux_sym_dataset_expression_token1, + ACTIONS(809), 1, + aux_sym_input_expression_token1, + ACTIONS(813), 1, + aux_sym_scope_tuning_token1, + ACTIONS(815), 1, + aux_sym_if_statement_token1, + ACTIONS(817), 1, + aux_sym_can_find_expression_token1, + ACTIONS(819), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(831), 1, + sym__escaped_string, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1526), 1, + anon_sym_RBRACK, + STATE(264), 1, + aux_sym_array_literal_repeat1, + STATE(1038), 1, + sym__expression, + STATE(1065), 1, + sym_object_access, + STATE(1125), 1, + sym__decimal_literal, + ACTIONS(785), 2, sym_null_expression, + sym_date_literal, + ACTIONS(821), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(276), 2, + sym_comment, + sym_include, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, + STATE(1093), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1107), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [6291] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(777), 1, + sym_identifier, + ACTIONS(781), 1, + anon_sym_LBRACE, + ACTIONS(789), 1, sym__integer_literal, - sym_date_literal, + ACTIONS(791), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(795), 1, aux_sym_unary_expression_token1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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(813), 1, aux_sym_scope_tuning_token1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - anon_sym_NO_DASHERROR, - 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, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, + ACTIONS(831), 1, + sym__escaped_string, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1528), 1, + anon_sym_RBRACK, + STATE(276), 1, + aux_sym_array_literal_repeat1, + STATE(1038), 1, + sym__expression, + STATE(1065), 1, + sym_object_access, + STATE(1125), 1, + sym__decimal_literal, + ACTIONS(785), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [6291] = 31, + STATE(277), 2, + sym_comment, + sym_include, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1093), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1107), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [6418] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(831), 1, sym__escaped_string, - ACTIONS(1370), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1520), 1, + ACTIONS(1530), 1, anon_sym_RBRACK, - STATE(261), 1, + STATE(264), 1, aux_sym_array_literal_repeat1, - STATE(1016), 1, + STATE(1038), 1, sym__expression, - STATE(1039), 1, + STATE(1065), 1, sym_object_access, - STATE(1075), 1, + STATE(1125), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(269), 2, + STATE(278), 2, sym_comment, sym_include, - ACTIONS(782), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65148,84 +66544,85 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6416] = 31, + [6545] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(831), 1, sym__escaped_string, - ACTIONS(1370), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1522), 1, + ACTIONS(1532), 1, anon_sym_RBRACK, - STATE(272), 1, + STATE(278), 1, aux_sym_array_literal_repeat1, - STATE(1016), 1, + STATE(1038), 1, sym__expression, - STATE(1039), 1, + STATE(1065), 1, sym_object_access, - STATE(1075), 1, + STATE(1125), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(270), 2, + STATE(279), 2, sym_comment, sym_include, - ACTIONS(782), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65242,84 +66639,85 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6541] = 31, + [6672] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(831), 1, sym__escaped_string, - ACTIONS(1370), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1534), 1, sym__terminator, - STATE(257), 1, + STATE(273), 1, aux_sym_abl_statement_repeat1, - STATE(1032), 1, + STATE(1061), 1, sym__expression, - STATE(1039), 1, + STATE(1065), 1, sym_object_access, - STATE(1075), 1, + STATE(1125), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(271), 2, + STATE(280), 2, sym_comment, sym_include, - ACTIONS(782), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65336,84 +66734,85 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6666] = 31, + [6799] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(939), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(943), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(949), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(951), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(953), 1, + anon_sym_LPAREN, + ACTIONS(955), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(957), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(959), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(961), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(963), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(965), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(967), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(969), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(971), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(973), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(975), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(977), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(981), 1, sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, - ACTIONS(1526), 1, - anon_sym_RBRACK, - STATE(261), 1, - aux_sym_array_literal_repeat1, - STATE(1016), 1, + STATE(159), 1, + aux_sym_sort_clause_repeat1, + STATE(180), 1, sym__expression, - STATE(1039), 1, + STATE(270), 1, sym_object_access, - STATE(1075), 1, + STATE(363), 1, sym__decimal_literal, - ACTIONS(780), 2, + STATE(2307), 1, + sym_sort_column, + ACTIONS(945), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(979), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(272), 2, + STATE(261), 2, + sym_function_call, + sym_new_expression, + STATE(281), 2, sym_comment, sym_include, - ACTIONS(782), 4, + ACTIONS(947), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(382), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(384), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65430,100 +66829,45 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6791] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(273), 2, - sym_comment, - sym_include, - ACTIONS(192), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(190), 52, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - aux_sym_type_tuning_token2, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_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_token4, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [6866] = 5, + [6926] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(274), 2, + ACTIONS(1437), 1, + anon_sym_LPAREN, + ACTIONS(1439), 1, + sym__namedot, + ACTIONS(1441), 1, + sym__namecolon, + ACTIONS(1443), 1, + sym__namedoublecolon, + STATE(1044), 1, + sym_function_arguments, + STATE(1047), 1, + aux_sym_qualified_name_repeat1, + STATE(1048), 1, + aux_sym_object_access_repeat1, + STATE(1049), 1, + aux_sym_member_access_repeat1, + STATE(282), 2, sym_comment, sym_include, - ACTIONS(146), 3, + ACTIONS(85), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(148), 55, - anon_sym_COLON, + ACTIONS(87), 47, 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, @@ -65533,7 +66877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_date_literal, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACK, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -65561,159 +66905,370 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, - aux_sym_function_call_token1, aux_sym_if_statement_token1, - 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [6939] = 6, + [7015] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1528), 1, - anon_sym_NO_DASHERROR, - STATE(275), 2, + ACTIONS(777), 1, + sym_identifier, + ACTIONS(781), 1, + anon_sym_LBRACE, + ACTIONS(789), 1, + sym__integer_literal, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, + aux_sym_unary_expression_token1, + ACTIONS(797), 1, + aux_sym_unary_expression_token2, + ACTIONS(799), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(801), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(803), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(805), 1, + aux_sym_locked_expression_token1, + ACTIONS(807), 1, + aux_sym_dataset_expression_token1, + ACTIONS(809), 1, + aux_sym_input_expression_token1, + ACTIONS(813), 1, + aux_sym_scope_tuning_token1, + ACTIONS(815), 1, + aux_sym_if_statement_token1, + ACTIONS(817), 1, + aux_sym_can_find_expression_token1, + ACTIONS(819), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(831), 1, + sym__escaped_string, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1536), 1, + anon_sym_RBRACK, + STATE(264), 1, + aux_sym_array_literal_repeat1, + STATE(1038), 1, + sym__expression, + STATE(1065), 1, + sym_object_access, + STATE(1125), 1, + sym__decimal_literal, + ACTIONS(785), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(821), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(283), 2, sym_comment, sym_include, - ACTIONS(248), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(250), 54, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LBRACE, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1093), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1107), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [7142] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(777), 1, sym_identifier, - anon_sym_STAR, + ACTIONS(781), 1, + anon_sym_LBRACE, + ACTIONS(789), 1, + sym__integer_literal, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, + aux_sym_unary_expression_token1, + ACTIONS(797), 1, + aux_sym_unary_expression_token2, + ACTIONS(799), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(801), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(803), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(805), 1, + aux_sym_locked_expression_token1, + ACTIONS(807), 1, + aux_sym_dataset_expression_token1, + ACTIONS(809), 1, + aux_sym_input_expression_token1, + ACTIONS(813), 1, + aux_sym_scope_tuning_token1, + ACTIONS(815), 1, + aux_sym_if_statement_token1, + ACTIONS(817), 1, + aux_sym_can_find_expression_token1, + ACTIONS(819), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(831), 1, + sym__escaped_string, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1538), 1, + anon_sym_RBRACK, + STATE(283), 1, + aux_sym_array_literal_repeat1, + STATE(1038), 1, + sym__expression, + STATE(1065), 1, + sym_object_access, + STATE(1125), 1, + sym__decimal_literal, + ACTIONS(785), 2, sym_null_expression, + sym_date_literal, + ACTIONS(821), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(284), 2, + sym_comment, + sym_include, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, + STATE(1093), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1107), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [7269] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(777), 1, + sym_identifier, + ACTIONS(781), 1, + anon_sym_LBRACE, + ACTIONS(789), 1, sym__integer_literal, - sym_date_literal, + ACTIONS(791), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(795), 1, aux_sym_unary_expression_token1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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(813), 1, aux_sym_scope_tuning_token1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - 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, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, + ACTIONS(831), 1, + sym__escaped_string, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1540), 1, + anon_sym_RBRACK, + STATE(264), 1, + aux_sym_array_literal_repeat1, + STATE(1038), 1, + sym__expression, + STATE(1065), 1, + sym_object_access, + STATE(1125), 1, + sym__decimal_literal, + ACTIONS(785), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [7014] = 31, + STATE(285), 2, + sym_comment, + sym_include, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1093), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1107), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [7396] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(831), 1, sym__escaped_string, - ACTIONS(1370), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1530), 1, + ACTIONS(1542), 1, anon_sym_RBRACK, - STATE(261), 1, + STATE(285), 1, aux_sym_array_literal_repeat1, - STATE(1016), 1, + STATE(1038), 1, sym__expression, - STATE(1039), 1, + STATE(1065), 1, sym_object_access, - STATE(1075), 1, + STATE(1125), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(276), 2, + STATE(286), 2, sym_comment, sym_include, - ACTIONS(782), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65730,153 +67285,180 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7139] = 6, - ACTIONS(65), 1, + [7523] = 32, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(777), 1, + sym_identifier, + ACTIONS(781), 1, anon_sym_LBRACE, - STATE(277), 2, + ACTIONS(789), 1, + sym__integer_literal, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, + aux_sym_unary_expression_token1, + ACTIONS(797), 1, + aux_sym_unary_expression_token2, + ACTIONS(799), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(801), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(803), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(805), 1, + aux_sym_locked_expression_token1, + ACTIONS(807), 1, + aux_sym_dataset_expression_token1, + ACTIONS(809), 1, + aux_sym_input_expression_token1, + ACTIONS(813), 1, + aux_sym_scope_tuning_token1, + ACTIONS(815), 1, + aux_sym_if_statement_token1, + ACTIONS(817), 1, + aux_sym_can_find_expression_token1, + ACTIONS(819), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(831), 1, + sym__escaped_string, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1544), 1, + anon_sym_RBRACK, + STATE(264), 1, + aux_sym_array_literal_repeat1, + STATE(1038), 1, + sym__expression, + STATE(1065), 1, + sym_object_access, + STATE(1125), 1, + sym__decimal_literal, + ACTIONS(785), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(821), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(287), 2, sym_comment, sym_include, - ACTIONS(134), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(132), 52, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - aux_sym_type_tuning_token2, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_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_token4, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [7214] = 31, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1093), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1107), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [7650] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(831), 1, sym__escaped_string, - ACTIONS(1370), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1532), 1, + ACTIONS(1546), 1, anon_sym_RBRACK, - STATE(269), 1, + STATE(287), 1, aux_sym_array_literal_repeat1, - STATE(1016), 1, + STATE(1038), 1, sym__expression, - STATE(1039), 1, + STATE(1065), 1, sym_object_access, - STATE(1075), 1, + STATE(1125), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(278), 2, + STATE(288), 2, sym_comment, sym_include, - ACTIONS(782), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65893,84 +67475,85 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7339] = 31, + [7777] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(831), 1, sym__escaped_string, - ACTIONS(1370), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1534), 1, + ACTIONS(1548), 1, anon_sym_RBRACK, - STATE(282), 1, + STATE(264), 1, aux_sym_array_literal_repeat1, - STATE(1016), 1, + STATE(1038), 1, sym__expression, - STATE(1039), 1, + STATE(1065), 1, sym_object_access, - STATE(1075), 1, + STATE(1125), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(279), 2, + STATE(289), 2, sym_comment, sym_include, - ACTIONS(782), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65987,84 +67570,85 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7464] = 31, + [7904] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(831), 1, sym__escaped_string, - ACTIONS(1370), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1536), 1, + ACTIONS(1550), 1, sym__terminator, - STATE(257), 1, + STATE(273), 1, aux_sym_abl_statement_repeat1, - STATE(1032), 1, + STATE(1061), 1, sym__expression, - STATE(1039), 1, + STATE(1065), 1, sym_object_access, - STATE(1075), 1, + STATE(1125), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(280), 2, + STATE(290), 2, sym_comment, sym_include, - ACTIONS(782), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66081,26 +67665,26 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7589] = 5, + [8031] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(281), 2, + ACTIONS(1552), 1, + sym__namedot, + STATE(291), 2, sym_comment, sym_include, - ACTIONS(138), 3, + ACTIONS(150), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(140), 55, + ACTIONS(152), 54, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -66143,7 +67727,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, - aux_sym_function_call_token1, aux_sym_if_statement_token1, aux_sym_on_error_phrase_token1, aux_sym_sort_order_token1, @@ -66156,77 +67739,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [7662] = 31, + [8106] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(831), 1, sym__escaped_string, - ACTIONS(1370), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1538), 1, + ACTIONS(1554), 1, anon_sym_RBRACK, - STATE(261), 1, + STATE(289), 1, aux_sym_array_literal_repeat1, - STATE(1016), 1, + STATE(1038), 1, sym__expression, - STATE(1039), 1, + STATE(1065), 1, sym_object_access, - STATE(1075), 1, + STATE(1125), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(282), 2, + STATE(292), 2, sym_comment, sym_include, - ACTIONS(782), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66243,27 +67829,25 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7787] = 5, + [8233] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(283), 2, + STATE(293), 2, sym_comment, sym_include, - ACTIONS(117), 4, - sym__namedot, + ACTIONS(162), 4, + sym__namedoublecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(119), 54, + ACTIONS(164), 54, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -66318,105 +67902,146 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [7860] = 6, - ACTIONS(65), 1, + [8306] = 32, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(777), 1, + sym_identifier, + ACTIONS(781), 1, anon_sym_LBRACE, - STATE(284), 2, + ACTIONS(789), 1, + sym__integer_literal, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, + aux_sym_unary_expression_token1, + ACTIONS(797), 1, + aux_sym_unary_expression_token2, + ACTIONS(799), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(801), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(803), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(805), 1, + aux_sym_locked_expression_token1, + ACTIONS(807), 1, + aux_sym_dataset_expression_token1, + ACTIONS(809), 1, + aux_sym_input_expression_token1, + ACTIONS(813), 1, + aux_sym_scope_tuning_token1, + ACTIONS(815), 1, + aux_sym_if_statement_token1, + ACTIONS(817), 1, + aux_sym_can_find_expression_token1, + ACTIONS(819), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(831), 1, + sym__escaped_string, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1556), 1, + anon_sym_RBRACK, + STATE(264), 1, + aux_sym_array_literal_repeat1, + STATE(1038), 1, + sym__expression, + STATE(1065), 1, + sym_object_access, + STATE(1125), 1, + sym__decimal_literal, + ACTIONS(785), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(821), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(294), 2, sym_comment, sym_include, - ACTIONS(228), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(226), 52, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - aux_sym_type_tuning_token2, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_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_token4, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [7935] = 6, - ACTIONS(65), 1, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1093), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1107), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [8433] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(285), 2, + STATE(295), 2, sym_comment, sym_include, - ACTIONS(108), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(106), 52, + ACTIONS(146), 4, + sym__namecolon, sym__or_operator, sym__and_operator, + sym__escaped_string, + ACTIONS(148), 54, anon_sym_COLON, + 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, + sym_date_literal, + anon_sym_LBRACK, anon_sym_COMMA, - aux_sym_type_tuning_token2, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -66427,65 +68052,159 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token4, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, + aux_sym_sort_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, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [8010] = 6, - ACTIONS(65), 1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [8506] = 32, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(777), 1, + sym_identifier, + ACTIONS(781), 1, anon_sym_LBRACE, - STATE(286), 2, + ACTIONS(789), 1, + sym__integer_literal, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, + aux_sym_unary_expression_token1, + ACTIONS(797), 1, + aux_sym_unary_expression_token2, + ACTIONS(799), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(801), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(803), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(805), 1, + aux_sym_locked_expression_token1, + ACTIONS(807), 1, + aux_sym_dataset_expression_token1, + ACTIONS(809), 1, + aux_sym_input_expression_token1, + ACTIONS(813), 1, + aux_sym_scope_tuning_token1, + ACTIONS(815), 1, + aux_sym_if_statement_token1, + ACTIONS(817), 1, + aux_sym_can_find_expression_token1, + ACTIONS(819), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(831), 1, + sym__escaped_string, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1558), 1, + sym__terminator, + STATE(273), 1, + aux_sym_abl_statement_repeat1, + STATE(1061), 1, + sym__expression, + STATE(1065), 1, + sym_object_access, + STATE(1125), 1, + sym__decimal_literal, + ACTIONS(785), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(821), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(296), 2, sym_comment, sym_include, - ACTIONS(180), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(178), 52, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1093), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1107), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [8633] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(297), 2, + sym_comment, + sym_include, + ACTIONS(100), 4, + sym__namecolon, sym__or_operator, sym__and_operator, + sym__escaped_string, + ACTIONS(102), 54, anon_sym_COLON, + 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, + sym_date_literal, + anon_sym_LBRACK, anon_sym_COMMA, - aux_sym_type_tuning_token2, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -66496,65 +68215,159 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token4, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, + aux_sym_sort_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, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [8085] = 6, - ACTIONS(65), 1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [8706] = 32, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(777), 1, + sym_identifier, + ACTIONS(781), 1, anon_sym_LBRACE, - STATE(287), 2, + ACTIONS(789), 1, + sym__integer_literal, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, + aux_sym_unary_expression_token1, + ACTIONS(797), 1, + aux_sym_unary_expression_token2, + ACTIONS(799), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(801), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(803), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(805), 1, + aux_sym_locked_expression_token1, + ACTIONS(807), 1, + aux_sym_dataset_expression_token1, + ACTIONS(809), 1, + aux_sym_input_expression_token1, + ACTIONS(813), 1, + aux_sym_scope_tuning_token1, + ACTIONS(815), 1, + aux_sym_if_statement_token1, + ACTIONS(817), 1, + aux_sym_can_find_expression_token1, + ACTIONS(819), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(831), 1, + sym__escaped_string, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1560), 1, + anon_sym_RBRACK, + STATE(294), 1, + aux_sym_array_literal_repeat1, + STATE(1038), 1, + sym__expression, + STATE(1065), 1, + sym_object_access, + STATE(1125), 1, + sym__decimal_literal, + ACTIONS(785), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(821), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(298), 2, sym_comment, sym_include, - ACTIONS(172), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(170), 52, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1093), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1107), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [8833] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(299), 2, + sym_comment, + sym_include, + ACTIONS(166), 4, + sym__namecolon, sym__or_operator, sym__and_operator, + sym__escaped_string, + ACTIONS(168), 54, anon_sym_COLON, + 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, + sym_date_literal, + anon_sym_LBRACK, anon_sym_COMMA, - aux_sym_type_tuning_token2, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -66565,106 +68378,93 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token4, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, + aux_sym_sort_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, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [8160] = 31, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [8906] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(831), 1, sym__escaped_string, - ACTIONS(1370), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1540), 1, - sym__terminator, - STATE(257), 1, - aux_sym_abl_statement_repeat1, - STATE(1032), 1, + ACTIONS(1562), 1, + anon_sym_RBRACK, + STATE(264), 1, + aux_sym_array_literal_repeat1, + STATE(1038), 1, sym__expression, - STATE(1039), 1, + STATE(1065), 1, sym_object_access, - STATE(1075), 1, + STATE(1125), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(288), 2, + STATE(300), 2, sym_comment, sym_include, - ACTIONS(782), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66681,84 +68481,85 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8285] = 31, + [9033] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(831), 1, sym__escaped_string, - ACTIONS(1370), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1542), 1, - anon_sym_RBRACK, - STATE(261), 1, - aux_sym_array_literal_repeat1, - STATE(1016), 1, + ACTIONS(1564), 1, + sym__terminator, + STATE(273), 1, + aux_sym_abl_statement_repeat1, + STATE(1061), 1, sym__expression, - STATE(1039), 1, + STATE(1065), 1, sym_object_access, - STATE(1075), 1, + STATE(1125), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(289), 2, + STATE(301), 2, sym_comment, sym_include, - ACTIONS(782), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66775,84 +68576,85 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8410] = 31, + [9160] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(831), 1, sym__escaped_string, - ACTIONS(1370), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1544), 1, + ACTIONS(1566), 1, anon_sym_RBRACK, - STATE(294), 1, + STATE(300), 1, aux_sym_array_literal_repeat1, - STATE(1016), 1, + STATE(1038), 1, sym__expression, - STATE(1039), 1, + STATE(1065), 1, sym_object_access, - STATE(1075), 1, + STATE(1125), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(290), 2, + STATE(302), 2, sym_comment, sym_include, - ACTIONS(782), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66869,153 +68671,85 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8535] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(291), 2, - sym_comment, - sym_include, - ACTIONS(188), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(186), 52, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - aux_sym_type_tuning_token2, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_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_token4, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [8610] = 31, + [9287] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(831), 1, sym__escaped_string, - ACTIONS(1370), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1546), 1, + ACTIONS(1568), 1, anon_sym_RBRACK, - STATE(261), 1, + STATE(267), 1, aux_sym_array_literal_repeat1, - STATE(1016), 1, + STATE(1038), 1, sym__expression, - STATE(1039), 1, + STATE(1065), 1, sym_object_access, - STATE(1075), 1, + STATE(1125), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(292), 2, + STATE(303), 2, sym_comment, sym_include, - ACTIONS(782), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67032,154 +68766,180 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8735] = 7, - ACTIONS(65), 1, + [9414] = 32, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(777), 1, + sym_identifier, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(1548), 1, - aux_sym_function_call_token1, - STATE(293), 2, + ACTIONS(789), 1, + sym__integer_literal, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, + aux_sym_unary_expression_token1, + ACTIONS(797), 1, + aux_sym_unary_expression_token2, + ACTIONS(799), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(801), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(803), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(805), 1, + aux_sym_locked_expression_token1, + ACTIONS(807), 1, + aux_sym_dataset_expression_token1, + ACTIONS(809), 1, + aux_sym_input_expression_token1, + ACTIONS(813), 1, + aux_sym_scope_tuning_token1, + ACTIONS(815), 1, + aux_sym_if_statement_token1, + ACTIONS(817), 1, + aux_sym_can_find_expression_token1, + ACTIONS(819), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(831), 1, + sym__escaped_string, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1570), 1, + anon_sym_RBRACK, + STATE(264), 1, + aux_sym_array_literal_repeat1, + STATE(1038), 1, + sym__expression, + STATE(1065), 1, + sym_object_access, + STATE(1125), 1, + sym__decimal_literal, + ACTIONS(785), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(821), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(304), 2, sym_comment, sym_include, - ACTIONS(232), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(230), 51, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - aux_sym_type_tuning_token2, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_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_token4, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [8812] = 31, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1093), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1107), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [9541] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(831), 1, sym__escaped_string, - ACTIONS(1370), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1550), 1, - anon_sym_RBRACK, - STATE(261), 1, - aux_sym_array_literal_repeat1, - STATE(1016), 1, + ACTIONS(1572), 1, + sym__terminator, + STATE(273), 1, + aux_sym_abl_statement_repeat1, + STATE(1061), 1, sym__expression, - STATE(1039), 1, + STATE(1065), 1, sym_object_access, - STATE(1075), 1, + STATE(1125), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(294), 2, + STATE(305), 2, sym_comment, sym_include, - ACTIONS(782), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67196,84 +68956,85 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8937] = 31, + [9668] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(831), 1, sym__escaped_string, - ACTIONS(1370), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1552), 1, + ACTIONS(1574), 1, anon_sym_RBRACK, - STATE(289), 1, + STATE(304), 1, aux_sym_array_literal_repeat1, - STATE(1016), 1, + STATE(1038), 1, sym__expression, - STATE(1039), 1, + STATE(1065), 1, sym_object_access, - STATE(1075), 1, + STATE(1125), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(295), 2, + STATE(306), 2, sym_comment, sym_include, - ACTIONS(782), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67290,31 +69051,31 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9062] = 5, + [9795] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(296), 2, + ACTIONS(1576), 1, + sym_identifier, + STATE(373), 1, + sym_qualified_name, + STATE(307), 2, sym_comment, sym_include, - ACTIONS(142), 4, - sym__namedoublecolon, + ACTIONS(1581), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(144), 54, + ACTIONS(1579), 53, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, - sym_identifier, anon_sym_STAR, sym_null_expression, aux_sym_boolean_literal_token1, @@ -67365,51 +69126,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [9135] = 5, - ACTIONS(3), 1, + [9872] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - STATE(297), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(308), 2, sym_comment, sym_include, - ACTIONS(124), 4, - sym__namecolon, + ACTIONS(248), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(246), 52, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(126), 54, anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LBRACE, - sym_identifier, anon_sym_STAR, - 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, - sym_date_literal, - anon_sym_LBRACK, + sym__terminator, anon_sym_COMMA, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, + aux_sym_type_tuning_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -67420,36 +69166,52 @@ 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_variable_tuning_token4, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, 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_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [9208] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [9947] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(298), 2, + STATE(309), 2, sym_comment, sym_include, - ACTIONS(200), 5, + ACTIONS(244), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(198), 52, + ACTIONS(242), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -67502,23 +69264,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [9283] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [10022] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(299), 2, + STATE(310), 2, sym_comment, sym_include, - ACTIONS(184), 5, + ACTIONS(204), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(182), 52, + ACTIONS(202), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -67571,52 +69333,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [9358] = 6, - ACTIONS(3), 1, + [10097] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(1554), 1, - aux_sym_function_call_token1, - STATE(300), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(311), 2, sym_comment, sym_include, - ACTIONS(230), 3, + ACTIONS(152), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(150), 52, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(232), 54, anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LBRACE, - sym_identifier, anon_sym_STAR, - 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, - sym_date_literal, - anon_sym_LBRACK, + sym__terminator, anon_sym_COMMA, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, + aux_sym_type_tuning_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -67627,222 +69373,49 @@ 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_variable_tuning_token4, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, 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_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [9433] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(772), 1, - sym_identifier, - ACTIONS(776), 1, - anon_sym_LBRACE, - ACTIONS(784), 1, - sym__integer_literal, - ACTIONS(786), 1, - anon_sym_LBRACK, - ACTIONS(790), 1, - aux_sym_unary_expression_token1, - ACTIONS(792), 1, - aux_sym_unary_expression_token2, - ACTIONS(794), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, - aux_sym_locked_expression_token1, - ACTIONS(802), 1, - aux_sym_dataset_expression_token1, - ACTIONS(804), 1, - aux_sym_input_expression_token1, - ACTIONS(808), 1, - aux_sym_scope_tuning_token1, - ACTIONS(810), 1, - aux_sym_if_statement_token1, - ACTIONS(812), 1, - aux_sym_can_find_expression_token1, - ACTIONS(814), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, - sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, - ACTIONS(1556), 1, - anon_sym_RBRACK, - STATE(302), 1, - aux_sym_array_literal_repeat1, - STATE(1016), 1, - sym__expression, - STATE(1039), 1, - sym_object_access, - STATE(1075), 1, - sym__decimal_literal, - ACTIONS(780), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(816), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(301), 2, - sym_comment, - sym_include, - ACTIONS(782), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(1074), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(1098), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [9558] = 31, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [10172] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, - sym_identifier, - ACTIONS(776), 1, - anon_sym_LBRACE, - ACTIONS(784), 1, - sym__integer_literal, - ACTIONS(786), 1, - anon_sym_LBRACK, - ACTIONS(790), 1, - aux_sym_unary_expression_token1, - ACTIONS(792), 1, - aux_sym_unary_expression_token2, - ACTIONS(794), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, - aux_sym_locked_expression_token1, - ACTIONS(802), 1, - aux_sym_dataset_expression_token1, - ACTIONS(804), 1, - aux_sym_input_expression_token1, - ACTIONS(808), 1, - aux_sym_scope_tuning_token1, - ACTIONS(810), 1, - aux_sym_if_statement_token1, - ACTIONS(812), 1, - aux_sym_can_find_expression_token1, - ACTIONS(814), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, - sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, - ACTIONS(1558), 1, - anon_sym_RBRACK, - STATE(261), 1, - aux_sym_array_literal_repeat1, - STATE(1016), 1, - sym__expression, - STATE(1039), 1, - sym_object_access, - STATE(1075), 1, - sym__decimal_literal, - ACTIONS(780), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(816), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(302), 2, + STATE(312), 2, sym_comment, sym_include, - ACTIONS(782), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(1074), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(1098), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [9683] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1560), 1, + ACTIONS(108), 4, sym__namedot, - STATE(303), 2, - sym_comment, - sym_include, - ACTIONS(132), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(134), 54, + ACTIONS(110), 54, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -67897,23 +69470,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [9758] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [10245] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(304), 2, + STATE(313), 2, sym_comment, sym_include, - ACTIONS(212), 5, + ACTIONS(236), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(210), 52, + ACTIONS(234), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -67966,211 +69539,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [9833] = 31, - ACTIONS(3), 1, + [10320] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, - sym_identifier, - ACTIONS(776), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - sym__integer_literal, - ACTIONS(786), 1, - anon_sym_LBRACK, - ACTIONS(790), 1, - aux_sym_unary_expression_token1, - ACTIONS(792), 1, - aux_sym_unary_expression_token2, - ACTIONS(794), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, - aux_sym_locked_expression_token1, - ACTIONS(802), 1, - aux_sym_dataset_expression_token1, - ACTIONS(804), 1, - aux_sym_input_expression_token1, - ACTIONS(808), 1, - aux_sym_scope_tuning_token1, - ACTIONS(810), 1, - aux_sym_if_statement_token1, - ACTIONS(812), 1, - aux_sym_can_find_expression_token1, - ACTIONS(814), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, - sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, - ACTIONS(1562), 1, - anon_sym_RBRACK, - STATE(306), 1, - aux_sym_array_literal_repeat1, - STATE(1016), 1, - sym__expression, - STATE(1039), 1, - sym_object_access, - STATE(1075), 1, - sym__decimal_literal, - ACTIONS(780), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(816), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(305), 2, - sym_comment, - sym_include, - ACTIONS(782), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(1074), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(1098), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [9958] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(772), 1, - sym_identifier, - ACTIONS(776), 1, - anon_sym_LBRACE, - ACTIONS(784), 1, - sym__integer_literal, - ACTIONS(786), 1, - anon_sym_LBRACK, - ACTIONS(790), 1, - aux_sym_unary_expression_token1, - ACTIONS(792), 1, - aux_sym_unary_expression_token2, - ACTIONS(794), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, - aux_sym_locked_expression_token1, - ACTIONS(802), 1, - aux_sym_dataset_expression_token1, - ACTIONS(804), 1, - aux_sym_input_expression_token1, - ACTIONS(808), 1, - aux_sym_scope_tuning_token1, - ACTIONS(810), 1, - aux_sym_if_statement_token1, - ACTIONS(812), 1, - aux_sym_can_find_expression_token1, - ACTIONS(814), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, - sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, - ACTIONS(1564), 1, - anon_sym_RBRACK, - STATE(261), 1, - aux_sym_array_literal_repeat1, - STATE(1016), 1, - sym__expression, - STATE(1039), 1, - sym_object_access, - STATE(1075), 1, - sym__decimal_literal, - ACTIONS(780), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(816), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(306), 2, - sym_comment, - sym_include, - ACTIONS(782), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(1074), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(1098), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [10083] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(307), 2, + STATE(314), 2, sym_comment, sym_include, - ACTIONS(224), 5, + ACTIONS(71), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(222), 52, + ACTIONS(65), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -68223,117 +69608,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [10158] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(772), 1, - sym_identifier, - ACTIONS(776), 1, - anon_sym_LBRACE, - ACTIONS(784), 1, - sym__integer_literal, - ACTIONS(786), 1, - anon_sym_LBRACK, - ACTIONS(790), 1, - aux_sym_unary_expression_token1, - ACTIONS(792), 1, - aux_sym_unary_expression_token2, - ACTIONS(794), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, - aux_sym_locked_expression_token1, - ACTIONS(802), 1, - aux_sym_dataset_expression_token1, - ACTIONS(804), 1, - aux_sym_input_expression_token1, - ACTIONS(808), 1, - aux_sym_scope_tuning_token1, - ACTIONS(810), 1, - aux_sym_if_statement_token1, - ACTIONS(812), 1, - aux_sym_can_find_expression_token1, - ACTIONS(814), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, - sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, - ACTIONS(1566), 1, - anon_sym_RBRACK, - STATE(310), 1, - aux_sym_array_literal_repeat1, - STATE(1016), 1, - sym__expression, - STATE(1039), 1, - sym_object_access, - STATE(1075), 1, - sym__decimal_literal, - ACTIONS(780), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(816), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(308), 2, - sym_comment, - sym_include, - ACTIONS(782), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(1074), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(1098), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [10283] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [10395] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(309), 2, + STATE(315), 2, sym_comment, sym_include, - ACTIONS(242), 5, + ACTIONS(208), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(240), 52, + ACTIONS(206), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -68386,117 +69677,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [10358] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(772), 1, - sym_identifier, - ACTIONS(776), 1, - anon_sym_LBRACE, - ACTIONS(784), 1, - sym__integer_literal, - ACTIONS(786), 1, - anon_sym_LBRACK, - ACTIONS(790), 1, - aux_sym_unary_expression_token1, - ACTIONS(792), 1, - aux_sym_unary_expression_token2, - ACTIONS(794), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, - aux_sym_locked_expression_token1, - ACTIONS(802), 1, - aux_sym_dataset_expression_token1, - ACTIONS(804), 1, - aux_sym_input_expression_token1, - ACTIONS(808), 1, - aux_sym_scope_tuning_token1, - ACTIONS(810), 1, - aux_sym_if_statement_token1, - ACTIONS(812), 1, - aux_sym_can_find_expression_token1, - ACTIONS(814), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, - sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, - ACTIONS(1568), 1, - anon_sym_RBRACK, - STATE(261), 1, - aux_sym_array_literal_repeat1, - STATE(1016), 1, - sym__expression, - STATE(1039), 1, - sym_object_access, - STATE(1075), 1, - sym__decimal_literal, - ACTIONS(780), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(816), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(310), 2, - sym_comment, - sym_include, - ACTIONS(782), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(1074), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(1098), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [10483] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [10470] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(311), 2, + STATE(316), 2, sym_comment, sym_include, - ACTIONS(196), 5, + ACTIONS(172), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(194), 52, + ACTIONS(170), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -68549,23 +69746,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [10558] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [10545] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(312), 2, + STATE(317), 2, sym_comment, sym_include, - ACTIONS(160), 5, + ACTIONS(240), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(158), 52, + ACTIONS(238), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -68618,23 +69815,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [10633] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [10620] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(313), 2, + STATE(318), 2, sym_comment, sym_include, - ACTIONS(164), 5, + ACTIONS(87), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(162), 52, + ACTIONS(85), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -68687,211 +69884,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [10708] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(914), 1, - sym_identifier, - ACTIONS(918), 1, - anon_sym_LBRACE, - ACTIONS(924), 1, - sym__integer_literal, - ACTIONS(926), 1, - anon_sym_LBRACK, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - aux_sym_unary_expression_token1, - ACTIONS(932), 1, - aux_sym_unary_expression_token2, - ACTIONS(934), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(936), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(938), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(940), 1, - aux_sym_locked_expression_token1, - ACTIONS(942), 1, - aux_sym_dataset_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, - ACTIONS(956), 1, - sym__escaped_string, - STATE(145), 1, - aux_sym_sort_clause_repeat1, - STATE(175), 1, - sym__expression, - STATE(263), 1, - sym_object_access, - STATE(319), 1, - sym__decimal_literal, - STATE(1955), 1, - sym_sort_column, - ACTIONS(920), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(954), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(314), 2, - sym_comment, - sym_include, - ACTIONS(922), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(354), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(357), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [10833] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(772), 1, - sym_identifier, - ACTIONS(776), 1, - anon_sym_LBRACE, - ACTIONS(784), 1, - sym__integer_literal, - ACTIONS(786), 1, - anon_sym_LBRACK, - ACTIONS(790), 1, - aux_sym_unary_expression_token1, - ACTIONS(792), 1, - aux_sym_unary_expression_token2, - ACTIONS(794), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, - aux_sym_locked_expression_token1, - ACTIONS(802), 1, - aux_sym_dataset_expression_token1, - ACTIONS(804), 1, - aux_sym_input_expression_token1, - ACTIONS(808), 1, - aux_sym_scope_tuning_token1, - ACTIONS(810), 1, - aux_sym_if_statement_token1, - ACTIONS(812), 1, - aux_sym_can_find_expression_token1, - ACTIONS(814), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, - sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, - ACTIONS(1570), 1, - anon_sym_RBRACK, - STATE(276), 1, - aux_sym_array_literal_repeat1, - STATE(1016), 1, - sym__expression, - STATE(1039), 1, - sym_object_access, - STATE(1075), 1, - sym__decimal_literal, - ACTIONS(780), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(816), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(315), 2, - sym_comment, - sym_include, - ACTIONS(782), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(1074), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(1098), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [10958] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [10695] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(316), 2, + STATE(319), 2, sym_comment, sym_include, - ACTIONS(168), 5, + ACTIONS(232), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(166), 52, + ACTIONS(230), 52, sym__or_operator, sym__and_operator, anon_sym_COLON, @@ -68944,53 +69953,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [11033] = 7, - ACTIONS(3), 1, + [10770] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(1094), 1, - sym__namedot, - STATE(358), 1, - aux_sym_qualified_name_repeat1, - STATE(317), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(320), 2, sym_comment, sym_include, - ACTIONS(102), 3, + ACTIONS(136), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(134), 52, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(104), 52, - anon_sym_SLASH, - anon_sym_LBRACE, - sym_identifier, + anon_sym_COLON, 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, + anon_sym_COMMA, + aux_sym_type_tuning_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -69001,62 +69993,65 @@ 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_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [11109] = 5, - ACTIONS(3), 1, + aux_sym_variable_tuning_token4, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [10845] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - STATE(318), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(321), 2, sym_comment, sym_include, - ACTIONS(106), 3, + ACTIONS(212), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(210), 52, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(108), 54, anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LBRACE, - sym_identifier, anon_sym_STAR, - 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, - sym_date_literal, - anon_sym_LBRACK, + sym__terminator, anon_sym_COMMA, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, + aux_sym_type_tuning_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -69067,63 +70062,65 @@ 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_variable_tuning_token4, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, 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_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [11181] = 5, - ACTIONS(3), 1, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [10920] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - STATE(319), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(322), 2, sym_comment, sym_include, - ACTIONS(132), 3, + ACTIONS(228), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(226), 52, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(134), 54, anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LBRACE, - sym_identifier, anon_sym_STAR, - 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, - sym_date_literal, - anon_sym_LBRACK, + sym__terminator, anon_sym_COMMA, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, + aux_sym_type_tuning_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -69134,77 +70131,65 @@ 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_variable_tuning_token4, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, 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_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [11253] = 14, - ACTIONS(3), 1, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [10995] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(1572), 1, - anon_sym_LBRACK, - ACTIONS(1574), 1, - anon_sym_LPAREN, - ACTIONS(1576), 1, - sym__namedot, - ACTIONS(1578), 1, - sym__namecolon, - ACTIONS(1580), 1, - sym__namedoublecolon, - STATE(1042), 1, - aux_sym_qualified_name_repeat1, - STATE(1051), 1, - aux_sym_member_access_repeat1, - STATE(1052), 1, - aux_sym_object_access_repeat1, - STATE(1100), 1, - sym_function_arguments, - STATE(320), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(323), 2, sym_comment, sym_include, - ACTIONS(63), 3, + ACTIONS(200), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(198), 52, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(69), 45, - anon_sym_SLASH, - anon_sym_LBRACE, - sym_identifier, + anon_sym_COLON, anon_sym_STAR, - 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, - sym_date_literal, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, + sym__terminator, + anon_sym_COMMA, + aux_sym_type_tuning_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -69215,58 +70200,65 @@ 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_if_statement_token2, - aux_sym_case_conditon_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [11343] = 5, - ACTIONS(3), 1, + aux_sym_variable_tuning_token4, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [11070] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - STATE(321), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(324), 2, sym_comment, sym_include, - ACTIONS(154), 3, + ACTIONS(196), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(194), 52, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(156), 54, anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LBRACE, - sym_identifier, anon_sym_STAR, - 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, - sym_date_literal, - anon_sym_LBRACK, + sym__terminator, anon_sym_COMMA, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, + aux_sym_type_tuning_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -69277,63 +70269,65 @@ 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_variable_tuning_token4, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, 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_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [11415] = 5, - ACTIONS(3), 1, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [11145] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - STATE(322), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(325), 2, sym_comment, sym_include, - ACTIONS(190), 3, + ACTIONS(184), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(182), 52, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(192), 54, anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LBRACE, - sym_identifier, anon_sym_STAR, - 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, - sym_date_literal, - anon_sym_LBRACK, + sym__terminator, anon_sym_COMMA, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, + aux_sym_type_tuning_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -69344,63 +70338,65 @@ 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_variable_tuning_token4, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, 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_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [11487] = 5, - ACTIONS(3), 1, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [11220] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - STATE(323), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(326), 2, sym_comment, sym_include, - ACTIONS(158), 3, + ACTIONS(125), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(123), 52, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(160), 54, anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LBRACE, - sym_identifier, anon_sym_STAR, - 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, - sym_date_literal, - anon_sym_LBRACK, + sym__terminator, anon_sym_COMMA, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, + aux_sym_type_tuning_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -69411,63 +70407,65 @@ 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_variable_tuning_token4, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, 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_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [11559] = 5, - ACTIONS(3), 1, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [11295] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - STATE(324), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(327), 2, sym_comment, sym_include, - ACTIONS(194), 3, + ACTIONS(176), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(174), 52, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(196), 54, anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LBRACE, - sym_identifier, anon_sym_STAR, - 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, - sym_date_literal, - anon_sym_LBRACK, + sym__terminator, anon_sym_COMMA, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, + aux_sym_type_tuning_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -69478,63 +70476,341 @@ 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_variable_tuning_token4, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, 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_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [11631] = 5, - ACTIONS(3), 1, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [11370] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - STATE(325), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(328), 2, sym_comment, sym_include, - ACTIONS(222), 3, + ACTIONS(216), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(214), 52, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(224), 54, anon_sym_COLON, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + aux_sym_type_tuning_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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_token4, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [11445] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(329), 2, + sym_comment, + sym_include, + ACTIONS(188), 5, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(186), 52, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + aux_sym_type_tuning_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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_token4, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [11520] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, anon_sym_LBRACE, - sym_identifier, + STATE(330), 2, + sym_comment, + sym_include, + ACTIONS(192), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(190), 52, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, anon_sym_STAR, - 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, - sym_date_literal, - anon_sym_LBRACK, + sym__terminator, anon_sym_COMMA, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, + aux_sym_type_tuning_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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_token4, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [11595] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(331), 2, + sym_comment, + sym_include, + ACTIONS(220), 5, + anon_sym_SLASH, anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(218), 52, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + aux_sym_type_tuning_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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_token4, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [11670] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(332), 2, + sym_comment, + sym_include, + ACTIONS(224), 5, + anon_sym_SLASH, + anon_sym_LT, anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(222), 52, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + aux_sym_type_tuning_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -69545,37 +70821,56 @@ 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_variable_tuning_token4, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, 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_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [11703] = 5, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [11745] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(326), 2, + ACTIONS(1583), 1, + anon_sym_NO_DASHERROR, + STATE(333), 2, sym_comment, sym_include, - ACTIONS(162), 3, + ACTIONS(391), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(164), 54, - anon_sym_COLON, + ACTIONS(393), 52, 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, @@ -69584,7 +70879,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -69614,35 +70908,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [11775] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [11819] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(327), 2, - sym_comment, - sym_include, - ACTIONS(166), 3, + ACTIONS(1585), 1, + sym__namecolon, + ACTIONS(93), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(168), 54, - anon_sym_COLON, + STATE(334), 3, + sym_comment, + sym_include, + aux_sym_object_access_repeat1, + ACTIONS(95), 52, 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, @@ -69651,7 +70947,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -69681,35 +70976,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [11847] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [11893] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(328), 2, + ACTIONS(1104), 1, + sym__namecolon, + STATE(334), 1, + aux_sym_object_access_repeat1, + STATE(335), 2, sym_comment, sym_include, - ACTIONS(170), 3, + ACTIONS(89), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(172), 54, - anon_sym_COLON, + ACTIONS(91), 52, 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, @@ -69718,7 +71016,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -69748,35 +71045,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [11919] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [11969] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(329), 2, + ACTIONS(1104), 1, + sym__namecolon, + STATE(334), 1, + aux_sym_object_access_repeat1, + STATE(336), 2, sym_comment, sym_include, - ACTIONS(178), 3, + ACTIONS(89), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(180), 54, - anon_sym_COLON, + ACTIONS(91), 52, 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, @@ -69785,7 +71085,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -69815,35 +71114,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [11991] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [12045] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(330), 2, + ACTIONS(1102), 1, + sym__namedot, + STATE(338), 1, + aux_sym_qualified_name_repeat1, + STATE(337), 2, sym_comment, sym_include, - ACTIONS(202), 3, + ACTIONS(104), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(204), 54, - anon_sym_COLON, + ACTIONS(106), 52, 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, @@ -69852,7 +71154,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -69882,35 +71183,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [12063] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [12121] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(331), 2, - sym_comment, - sym_include, - ACTIONS(206), 3, + ACTIONS(1588), 1, + sym__namedot, + ACTIONS(108), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(208), 54, - anon_sym_COLON, + STATE(338), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(110), 52, 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, @@ -69919,7 +71222,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -69949,35 +71251,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [12135] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [12195] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(332), 2, + ACTIONS(1104), 1, + sym__namecolon, + STATE(334), 1, + aux_sym_object_access_repeat1, + STATE(339), 2, sym_comment, sym_include, - ACTIONS(218), 3, + ACTIONS(89), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(220), 54, - anon_sym_COLON, + ACTIONS(91), 52, 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, @@ -69986,7 +71291,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -70016,35 +71320,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [12207] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [12271] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(333), 2, - sym_comment, - sym_include, - ACTIONS(102), 3, + ACTIONS(1591), 1, + sym__namedoublecolon, + ACTIONS(127), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(104), 54, - anon_sym_COLON, + STATE(340), 3, + sym_comment, + sym_include, + aux_sym_member_access_repeat1, + ACTIONS(129), 52, 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, @@ -70053,7 +71359,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -70083,38 +71388,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [12279] = 8, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [12345] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1582), 1, - sym_identifier, - ACTIONS(1585), 1, - aux_sym_input_expression_token2, - STATE(990), 1, - sym_qualified_name, - STATE(334), 2, + STATE(341), 2, sym_comment, sym_include, - ACTIONS(1351), 3, + ACTIONS(115), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(1347), 51, + ACTIONS(117), 53, anon_sym_SLASH, anon_sym_LBRACE, + sym_identifier, anon_sym_STAR, sym__terminator, sym_null_expression, @@ -70153,6 +71453,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, aux_sym_if_statement_token1, aux_sym_sort_order_token1, aux_sym_sort_order_token2, @@ -70164,39 +71465,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [12357] = 13, + [12417] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1574), 1, - anon_sym_LPAREN, - ACTIONS(1576), 1, - sym__namedot, - ACTIONS(1578), 1, - sym__namecolon, - ACTIONS(1580), 1, - sym__namedoublecolon, - STATE(1042), 1, - aux_sym_qualified_name_repeat1, - STATE(1051), 1, - aux_sym_member_access_repeat1, - STATE(1052), 1, - aux_sym_object_access_repeat1, - STATE(1100), 1, - sym_function_arguments, - STATE(335), 2, + STATE(342), 2, sym_comment, sym_include, - ACTIONS(83), 3, + ACTIONS(142), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(85), 46, + ACTIONS(144), 53, 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, @@ -70205,6 +71492,7 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -70232,31 +71520,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_case_conditon_token1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [12445] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [12489] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(336), 2, + STATE(343), 2, sym_comment, sym_include, - ACTIONS(240), 3, + ACTIONS(138), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(242), 54, - anon_sym_COLON, + ACTIONS(140), 53, 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, @@ -70265,7 +71559,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -70294,36 +71587,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, aux_sym_if_statement_token1, - 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [12517] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [12561] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(337), 2, + ACTIONS(1106), 1, + sym__namedoublecolon, + STATE(340), 1, + aux_sym_member_access_repeat1, + STATE(344), 2, sym_comment, sym_include, - ACTIONS(210), 3, + ACTIONS(119), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(212), 54, - anon_sym_COLON, + ACTIONS(121), 52, 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, @@ -70332,7 +71629,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -70362,35 +71658,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [12589] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [12637] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(338), 2, + STATE(345), 2, sym_comment, sym_include, - ACTIONS(182), 3, + ACTIONS(115), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(184), 54, - anon_sym_COLON, + ACTIONS(117), 53, 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, @@ -70399,7 +71695,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -70429,35 +71724,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_on_error_phrase_token1, + anon_sym_NO_DASHERROR, 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [12661] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [12709] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(339), 2, + STATE(346), 2, sym_comment, sym_include, - ACTIONS(198), 3, + ACTIONS(142), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(200), 54, - anon_sym_COLON, + ACTIONS(144), 53, 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, @@ -70466,7 +71762,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -70496,105 +71791,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_on_error_phrase_token1, + anon_sym_NO_DASHERROR, 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [12733] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(100), 1, - aux_sym_variable_tuning_token2, - ACTIONS(818), 1, - sym__namedot, - STATE(360), 1, - aux_sym_qualified_name_repeat1, - STATE(340), 2, - sym_comment, - sym_include, - ACTIONS(98), 53, - anon_sym_COLON, - sym__terminator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_unary_expression_token2, - aux_sym_input_expression_token2, - anon_sym_EQ, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_serialization_tuning_token1, - aux_sym_function_call_token1, - aux_sym_property_type_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_tuning_token1, - aux_sym_data_relation_token1, - aux_sym_data_relation_token2, - aux_sym_using_statement_token1, - aux_sym_using_statement_token2, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_on_error_phrase_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_of_token1, - aux_sym_using_token1, - aux_sym_field_option_token1, - aux_sym_field_option_token2, - aux_sym_field_option_token3, - aux_sym_field_option_token4, - aux_sym_field_option_token5, - aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - aux_sym_prompt_for_statement_token2, - [12811] = 5, + [12781] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(341), 2, + STATE(347), 2, sym_comment, sym_include, - ACTIONS(186), 3, + ACTIONS(138), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(188), 54, - anon_sym_COLON, + ACTIONS(140), 53, 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, @@ -70603,7 +71829,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -70633,35 +71858,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_on_error_phrase_token1, + anon_sym_NO_DASHERROR, 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [12883] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [12853] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(342), 2, + ACTIONS(1594), 1, + sym_identifier, + ACTIONS(1597), 1, + aux_sym_input_expression_token2, + STATE(1022), 1, + sym_qualified_name, + STATE(348), 2, sym_comment, sym_include, - ACTIONS(226), 3, + ACTIONS(1358), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(228), 54, - anon_sym_COLON, + ACTIONS(1354), 51, 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, @@ -70670,7 +71900,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -70700,270 +71929,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [12955] = 30, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [12931] = 31, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1587), 1, + ACTIONS(1599), 1, sym__terminator, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, - sym_object_access, - STATE(21), 1, - sym__decimal_literal, - STATE(2610), 1, - sym__expression, - ACTIONS(644), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(684), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(343), 2, - sym_comment, - sym_include, - ACTIONS(646), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(40), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(25), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [13077] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, - anon_sym_LBRACE, - ACTIONS(648), 1, - sym__integer_literal, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, - aux_sym_unary_expression_token1, - ACTIONS(658), 1, - aux_sym_unary_expression_token2, - ACTIONS(660), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, - aux_sym_locked_expression_token1, - ACTIONS(668), 1, - aux_sym_dataset_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(676), 1, - aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, + ACTIONS(1601), 1, aux_sym_input_expression_token1, - ACTIONS(1591), 1, - sym__terminator, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2584), 1, + STATE(2845), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(344), 2, - sym_comment, - sym_include, - ACTIONS(646), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(40), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(25), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, + STATE(13), 2, sym_function_call, - sym_ternary_expression, sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [13199] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, - anon_sym_LBRACE, - ACTIONS(648), 1, - sym__integer_literal, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, - aux_sym_unary_expression_token1, - ACTIONS(658), 1, - aux_sym_unary_expression_token2, - ACTIONS(660), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, - aux_sym_locked_expression_token1, - ACTIONS(668), 1, - aux_sym_dataset_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(676), 1, - aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - ACTIONS(1593), 1, - sym__terminator, - STATE(9), 1, - sym_object_access, - STATE(21), 1, - sym__decimal_literal, - STATE(2654), 1, - sym__expression, - ACTIONS(644), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(684), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(345), 2, + STATE(349), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -70980,30 +72027,27 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13321] = 7, + [13055] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1094), 1, - sym__namedot, - STATE(358), 1, - aux_sym_qualified_name_repeat1, - STATE(346), 2, + ACTIONS(1603), 1, + aux_sym_function_call_token1, + STATE(350), 2, sym_comment, sym_include, - ACTIONS(106), 3, + ACTIONS(156), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(108), 52, + ACTIONS(158), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71056,23 +72100,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [13397] = 7, + [13129] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1096), 1, - sym__namecolon, - STATE(352), 1, - aux_sym_object_access_repeat1, - STATE(347), 2, + ACTIONS(1102), 1, + sym__namedot, + STATE(337), 1, + aux_sym_qualified_name_repeat1, + STATE(351), 2, sym_comment, sym_include, - ACTIONS(94), 3, + ACTIONS(123), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(96), 52, + ACTIONS(125), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71125,24 +72169,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [13473] = 5, + [13205] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(348), 2, + ACTIONS(1102), 1, + sym__namedot, + STATE(337), 1, + aux_sym_qualified_name_repeat1, + STATE(352), 2, sym_comment, sym_include, - ACTIONS(236), 3, + ACTIONS(134), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(238), 54, - anon_sym_COLON, + ACTIONS(136), 52, 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, @@ -71151,7 +72199,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -71181,35 +72228,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [13545] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [13281] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(349), 2, + ACTIONS(1104), 1, + sym__namecolon, + STATE(336), 1, + aux_sym_object_access_repeat1, + STATE(353), 2, sym_comment, sym_include, - ACTIONS(83), 3, + ACTIONS(85), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(85), 54, - anon_sym_COLON, + ACTIONS(87), 52, 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, @@ -71218,7 +72268,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -71248,101 +72297,126 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [13617] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [13357] = 31, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(350), 2, - sym_comment, - sym_include, - ACTIONS(244), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(246), 54, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(645), 1, sym_identifier, - anon_sym_STAR, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, + ACTIONS(647), 1, + anon_sym_LBRACE, + ACTIONS(653), 1, sym__integer_literal, - sym_date_literal, + ACTIONS(655), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(657), 1, anon_sym_LPAREN, + ACTIONS(661), 1, aux_sym_unary_expression_token1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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(677), 1, aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - 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, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + ACTIONS(1605), 1, + sym__terminator, + STATE(15), 1, + sym_object_access, + STATE(43), 1, + sym__decimal_literal, + STATE(2769), 1, + sym__expression, + ACTIONS(649), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [13689] = 7, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(354), 2, + sym_comment, + sym_include, + ACTIONS(651), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(29), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(30), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [13481] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1098), 1, - sym__namedoublecolon, - STATE(353), 1, - aux_sym_member_access_repeat1, - STATE(351), 2, + ACTIONS(1104), 1, + sym__namecolon, + STATE(336), 1, + aux_sym_object_access_repeat1, + STATE(355), 2, sym_comment, sym_include, - ACTIONS(128), 3, + ACTIONS(65), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(130), 52, + ACTIONS(71), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71395,27 +72469,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [13765] = 6, + [13557] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1595), 1, - sym__namecolon, - ACTIONS(87), 3, + STATE(356), 2, + sym_comment, + sym_include, + ACTIONS(246), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - STATE(352), 3, - sym_comment, - sym_include, - aux_sym_object_access_repeat1, - ACTIONS(89), 52, + ACTIONS(248), 54, + anon_sym_COLON, 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, @@ -71424,6 +72495,7 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -71453,37 +72525,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [13839] = 6, + [13629] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1598), 1, - sym__namedoublecolon, - ACTIONS(110), 3, + STATE(357), 2, + sym_comment, + sym_include, + ACTIONS(242), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - STATE(353), 3, - sym_comment, - sym_include, - aux_sym_member_access_repeat1, - ACTIONS(112), 52, + ACTIONS(244), 54, + anon_sym_COLON, 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, @@ -71492,6 +72562,7 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -71521,60 +72592,154 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [13913] = 5, + [13701] = 31, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(354), 2, - sym_comment, - sym_include, - ACTIONS(214), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(216), 54, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(645), 1, sym_identifier, - anon_sym_STAR, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, + ACTIONS(647), 1, + anon_sym_LBRACE, + ACTIONS(653), 1, sym__integer_literal, - sym_date_literal, + ACTIONS(655), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(657), 1, anon_sym_LPAREN, + ACTIONS(661), 1, aux_sym_unary_expression_token1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, + aux_sym_if_statement_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(1607), 1, + sym__terminator, + STATE(15), 1, + sym_object_access, + STATE(43), 1, + sym__decimal_literal, + STATE(2724), 1, + sym__expression, + ACTIONS(649), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(689), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(358), 2, + sym_comment, + sym_include, + ACTIONS(651), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(29), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(30), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [13825] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(359), 2, + sym_comment, + sym_include, + ACTIONS(178), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(180), 54, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, @@ -71598,75 +72763,220 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [13985] = 30, + [13897] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, + STATE(360), 2, + sym_comment, + sym_include, + ACTIONS(202), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(204), 54, + anon_sym_COLON, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(648), 1, + sym_identifier, + anon_sym_STAR, + 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, - ACTIONS(650), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(652), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(656), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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(676), 1, aux_sym_if_statement_token1, - ACTIONS(678), 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, aux_sym_can_find_expression_token1, - ACTIONS(682), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [13969] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1609), 1, + anon_sym_LPAREN, + ACTIONS(1611), 1, + sym__namedot, + ACTIONS(1613), 1, + sym__namecolon, + ACTIONS(1615), 1, + sym__namedoublecolon, + STATE(1067), 1, + aux_sym_object_access_repeat1, + STATE(1076), 1, + aux_sym_qualified_name_repeat1, + STATE(1084), 1, + aux_sym_member_access_repeat1, + STATE(1088), 1, + sym_function_arguments, + STATE(361), 2, + sym_comment, + sym_include, + ACTIONS(85), 3, + sym__or_operator, + sym__and_operator, sym__escaped_string, - ACTIONS(1589), 1, + ACTIONS(87), 46, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + 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, + sym_date_literal, + anon_sym_LBRACK, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [14057] = 31, + 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(653), 1, + sym__integer_literal, + ACTIONS(655), 1, + anon_sym_LBRACK, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + aux_sym_unary_expression_token1, + ACTIONS(663), 1, + aux_sym_unary_expression_token2, + ACTIONS(665), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(667), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(669), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(671), 1, + aux_sym_locked_expression_token1, + ACTIONS(673), 1, + aux_sym_dataset_expression_token1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, + aux_sym_if_statement_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, ACTIONS(1601), 1, + aux_sym_input_expression_token1, + ACTIONS(1617), 1, sym__terminator, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2593), 1, + STATE(2684), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(355), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(362), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -71683,26 +72993,24 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14107] = 5, + [14181] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(356), 2, + STATE(363), 2, sym_comment, sym_include, - ACTIONS(174), 3, + ACTIONS(150), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(176), 54, + ACTIONS(152), 54, anon_sym_COLON, anon_sym_SLASH, anon_sym_LBRACE, @@ -71757,20 +73065,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [14179] = 5, + [14253] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(357), 2, + ACTIONS(1609), 1, + anon_sym_LPAREN, + ACTIONS(1611), 1, + sym__namedot, + ACTIONS(1613), 1, + sym__namecolon, + ACTIONS(1615), 1, + sym__namedoublecolon, + ACTIONS(1619), 1, + anon_sym_LBRACK, + STATE(1067), 1, + aux_sym_object_access_repeat1, + STATE(1076), 1, + aux_sym_qualified_name_repeat1, + STATE(1084), 1, + aux_sym_member_access_repeat1, + STATE(1088), 1, + sym_function_arguments, + STATE(364), 2, sym_comment, sym_include, - ACTIONS(63), 3, + ACTIONS(65), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(69), 54, - anon_sym_COLON, + ACTIONS(71), 45, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71782,9 +73107,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token4, sym__integer_literal, sym_date_literal, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -71813,39 +73135,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - 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, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [14251] = 7, + [14343] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1094), 1, - sym__namedot, - STATE(359), 1, - aux_sym_qualified_name_repeat1, - STATE(358), 2, + STATE(365), 2, sym_comment, sym_include, - ACTIONS(98), 3, + ACTIONS(234), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(100), 52, + ACTIONS(236), 54, + anon_sym_COLON, 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, @@ -71854,6 +73167,7 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -71883,37 +73197,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [14327] = 6, + [14415] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1603), 1, - sym__namedot, - ACTIONS(117), 3, + STATE(366), 2, + sym_comment, + sym_include, + ACTIONS(226), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - STATE(359), 3, - sym_comment, - sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(119), 52, + ACTIONS(228), 54, + anon_sym_COLON, 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, @@ -71922,6 +73234,7 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -71951,874 +73264,1295 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + 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, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [14401] = 7, - ACTIONS(65), 1, + [14487] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(119), 1, - aux_sym_variable_tuning_token2, - ACTIONS(1606), 1, - sym__namedot, - STATE(360), 3, + STATE(367), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(117), 53, + ACTIONS(222), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(224), 54, anon_sym_COLON, - sym__terminator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_unary_expression_token2, - aux_sym_input_expression_token2, - anon_sym_EQ, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_serialization_tuning_token1, - aux_sym_function_call_token1, - aux_sym_property_type_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_tuning_token1, - aux_sym_data_relation_token1, - aux_sym_data_relation_token2, - aux_sym_using_statement_token1, - aux_sym_using_statement_token2, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_on_error_phrase_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_of_token1, - aux_sym_using_token1, - aux_sym_field_option_token1, - aux_sym_field_option_token2, - aux_sym_field_option_token3, - aux_sym_field_option_token4, - aux_sym_field_option_token5, - aux_sym_field_option_token6, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - aux_sym_prompt_for_statement_token2, - [14477] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(648), 1, + sym_identifier, + anon_sym_STAR, + 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, - ACTIONS(650), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(652), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(656), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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(676), 1, aux_sym_if_statement_token1, - ACTIONS(678), 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, aux_sym_can_find_expression_token1, - ACTIONS(682), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - ACTIONS(1609), 1, - sym__terminator, - STATE(9), 1, - sym_object_access, - STATE(21), 1, - sym__decimal_literal, - STATE(2621), 1, - sym__expression, - ACTIONS(644), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(684), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(361), 2, + [14559] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(368), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(218), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(220), 54, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + sym_null_expression, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(25), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [14599] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, - anon_sym_LBRACE, - ACTIONS(648), 1, sym__integer_literal, - ACTIONS(650), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(652), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(656), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1611), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - ACTIONS(1627), 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, + aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, - STATE(9), 1, - sym_object_access, - STATE(21), 1, - sym__decimal_literal, - STATE(2723), 1, - sym__expression, - ACTIONS(644), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(684), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(362), 2, + [14631] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(369), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(190), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(192), 54, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + sym_null_expression, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(25), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [14718] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, - anon_sym_LBRACE, - ACTIONS(648), 1, sym__integer_literal, - ACTIONS(650), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(652), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(656), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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(676), 1, aux_sym_if_statement_token1, - ACTIONS(678), 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, aux_sym_can_find_expression_token1, - ACTIONS(682), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, - sym_object_access, - STATE(21), 1, - sym__decimal_literal, - STATE(2724), 1, - sym__expression, - ACTIONS(644), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(684), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(363), 2, + [14703] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(370), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(186), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(188), 54, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + sym_null_expression, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(25), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [14837] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, - anon_sym_LBRACE, - ACTIONS(648), 1, sym__integer_literal, - ACTIONS(650), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(652), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(656), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1611), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - ACTIONS(1627), 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, + aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, - STATE(9), 1, - sym_object_access, - STATE(21), 1, - sym__decimal_literal, - STATE(2710), 1, - sym__expression, - ACTIONS(644), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(684), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(364), 2, + [14775] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(371), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(214), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(216), 54, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + sym_null_expression, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(25), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [14956] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, - anon_sym_LBRACE, - ACTIONS(648), 1, sym__integer_literal, - ACTIONS(650), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(652), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(656), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1611), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - ACTIONS(1627), 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, + aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, - STATE(9), 1, - sym_object_access, - STATE(21), 1, - sym__decimal_literal, - STATE(2709), 1, - sym__expression, - ACTIONS(644), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(684), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(365), 2, + [14847] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(372), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(174), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(176), 54, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + sym_null_expression, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(25), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [15075] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, - anon_sym_LBRACE, - ACTIONS(648), 1, sym__integer_literal, - ACTIONS(650), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(652), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(656), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1611), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - ACTIONS(1627), 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, + aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, - STATE(9), 1, - sym_object_access, - STATE(21), 1, - sym__decimal_literal, - STATE(2701), 1, - sym__expression, - ACTIONS(644), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(684), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(366), 2, + [14919] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(373), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(123), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(125), 54, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + sym_null_expression, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(25), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [15194] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(642), 1, - anon_sym_LBRACE, - ACTIONS(648), 1, sym__integer_literal, - ACTIONS(650), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(652), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(656), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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(676), 1, aux_sym_if_statement_token1, - ACTIONS(678), 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, aux_sym_can_find_expression_token1, - ACTIONS(682), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - ACTIONS(1629), 1, - sym_identifier, - STATE(9), 1, - sym_object_access, - STATE(21), 1, - sym__decimal_literal, - STATE(2626), 1, - sym__expression, - ACTIONS(644), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(684), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(367), 2, + [14991] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(374), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(182), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(184), 54, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + sym_null_expression, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(25), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [15313] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(642), 1, - anon_sym_LBRACE, - ACTIONS(648), 1, sym__integer_literal, - ACTIONS(650), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(652), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(656), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(676), 1, - aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_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, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [15063] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(375), 2, + sym_comment, + sym_include, + ACTIONS(194), 3, + sym__or_operator, + sym__and_operator, sym__escaped_string, - ACTIONS(1589), 1, + ACTIONS(196), 54, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, aux_sym_input_expression_token1, - ACTIONS(1631), 1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_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, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [15135] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(376), 2, + sym_comment, + sym_include, + ACTIONS(198), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(200), 54, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LBRACE, sym_identifier, - STATE(9), 1, - sym_object_access, - STATE(21), 1, - sym__decimal_literal, - STATE(2640), 1, - sym__expression, - ACTIONS(644), 2, + anon_sym_STAR, 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, sym_date_literal, - ACTIONS(684), 2, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_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, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(368), 2, + [15207] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(377), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(210), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(212), 54, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + sym_null_expression, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(25), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [15432] = 29, + sym__integer_literal, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_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, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [15279] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(378), 2, + sym_comment, + sym_include, + ACTIONS(134), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(136), 54, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_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, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [15351] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(379), 2, + sym_comment, + sym_include, + ACTIONS(230), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(232), 54, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_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, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [15423] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(642), 1, + STATE(380), 2, + sym_comment, + sym_include, + ACTIONS(85), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(87), 54, + anon_sym_COLON, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(648), 1, + sym_identifier, + anon_sym_STAR, + 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, - ACTIONS(650), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(652), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(656), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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(676), 1, aux_sym_if_statement_token1, - ACTIONS(678), 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, aux_sym_can_find_expression_token1, - ACTIONS(682), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [15495] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(381), 2, + sym_comment, + sym_include, + ACTIONS(238), 3, + sym__or_operator, + sym__and_operator, sym__escaped_string, - ACTIONS(1589), 1, + ACTIONS(240), 54, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, aux_sym_input_expression_token1, - ACTIONS(1633), 1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_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, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [15567] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(382), 2, + sym_comment, + sym_include, + ACTIONS(170), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(172), 54, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_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, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [15639] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(383), 2, + sym_comment, + sym_include, + ACTIONS(206), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(208), 54, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_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, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [15711] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(384), 2, + sym_comment, + sym_include, + ACTIONS(65), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(71), 54, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_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, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [15783] = 31, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(645), 1, sym_identifier, - STATE(9), 1, + ACTIONS(647), 1, + anon_sym_LBRACE, + ACTIONS(653), 1, + sym__integer_literal, + ACTIONS(655), 1, + anon_sym_LBRACK, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + aux_sym_unary_expression_token1, + ACTIONS(663), 1, + aux_sym_unary_expression_token2, + ACTIONS(665), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(667), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(669), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(671), 1, + aux_sym_locked_expression_token1, + ACTIONS(673), 1, + aux_sym_dataset_expression_token1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, + aux_sym_if_statement_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + ACTIONS(1621), 1, + sym__terminator, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2691), 1, + STATE(2638), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(369), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(385), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -72835,80 +74569,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15551] = 29, + [15907] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1623), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1625), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1627), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1629), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1631), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1633), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1635), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1637), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1639), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2702), 1, + STATE(1512), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(370), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(386), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -72925,80 +74660,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15670] = 29, + [16028] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1641), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1643), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1645), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1647), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1649), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1651), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1653), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1655), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1657), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2703), 1, + STATE(2371), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(371), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(387), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -73015,80 +74751,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15789] = 29, + [16149] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, - aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + ACTIONS(1659), 1, + sym_identifier, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2707), 1, + STATE(2659), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(372), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(388), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -73105,80 +74842,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15908] = 29, + [16270] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, - aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + ACTIONS(1661), 1, + sym_identifier, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2580), 1, + STATE(2836), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(373), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(389), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -73195,80 +74933,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16027] = 29, + [16391] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, - aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + ACTIONS(1663), 1, + sym_identifier, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2578), 1, + STATE(2883), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(374), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(390), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -73285,80 +75024,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16146] = 29, + [16512] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2560), 1, + STATE(2898), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(375), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(391), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -73375,80 +75115,149 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16265] = 29, + [16633] = 7, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(110), 1, + aux_sym_variable_tuning_token2, + ACTIONS(1683), 1, + sym__namedot, + STATE(392), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(108), 52, + anon_sym_COLON, + sym__terminator, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_unary_expression_token2, + aux_sym_input_expression_token2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_serialization_tuning_token1, + aux_sym_function_call_token1, + aux_sym_property_type_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_tuning_token1, + aux_sym_data_relation_token1, + aux_sym_data_relation_token2, + aux_sym_using_statement_token1, + aux_sym_using_statement_token2, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_on_error_phrase_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + aux_sym_using_token1, + aux_sym_field_option_token1, + aux_sym_field_option_token2, + aux_sym_field_option_token3, + aux_sym_field_option_token4, + aux_sym_field_option_token5, + aux_sym_field_option_token6, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + aux_sym_prompt_for_statement_token2, + [16708] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2550), 1, + STATE(2782), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(376), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(393), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -73465,80 +75274,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16384] = 29, + [16829] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2587), 1, + STATE(2783), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(377), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(394), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -73555,80 +75365,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16503] = 29, + [16950] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2538), 1, + STATE(2784), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(378), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(395), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -73645,80 +75456,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16622] = 29, + [17071] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(678), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(704), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1653), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1655), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1657), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1659), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1661), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1663), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1665), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1667), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1669), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1432), 1, + STATE(2785), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(379), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(396), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -73735,80 +75547,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16741] = 29, + [17192] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(678), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(704), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1653), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1655), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1657), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1659), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1661), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1663), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1665), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1667), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1669), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1439), 1, + STATE(2895), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(380), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(397), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -73825,80 +75638,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16860] = 29, + [17313] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(678), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(704), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1653), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1655), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1657), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1659), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1661), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1663), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1665), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1667), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1669), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1440), 1, + STATE(2786), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(381), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(398), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -73915,80 +75729,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16979] = 29, + [17434] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(678), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(704), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1653), 1, + ACTIONS(1686), 1, aux_sym_unary_expression_token2, - ACTIONS(1655), 1, + ACTIONS(1688), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1657), 1, + ACTIONS(1690), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1659), 1, + ACTIONS(1692), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1661), 1, + ACTIONS(1694), 1, aux_sym_locked_expression_token1, - ACTIONS(1663), 1, + ACTIONS(1696), 1, aux_sym_dataset_expression_token1, - ACTIONS(1665), 1, + ACTIONS(1698), 1, aux_sym_input_expression_token1, - ACTIONS(1667), 1, + ACTIONS(1700), 1, aux_sym_if_statement_token1, - ACTIONS(1669), 1, + ACTIONS(1702), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1445), 1, + STATE(1510), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(382), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(399), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -74005,80 +75820,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17098] = 29, + [17555] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(678), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(704), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1653), 1, + ACTIONS(1686), 1, aux_sym_unary_expression_token2, - ACTIONS(1655), 1, + ACTIONS(1688), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1657), 1, + ACTIONS(1690), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1659), 1, + ACTIONS(1692), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1661), 1, + ACTIONS(1694), 1, aux_sym_locked_expression_token1, - ACTIONS(1663), 1, + ACTIONS(1696), 1, aux_sym_dataset_expression_token1, - ACTIONS(1665), 1, + ACTIONS(1698), 1, aux_sym_input_expression_token1, - ACTIONS(1667), 1, + ACTIONS(1700), 1, aux_sym_if_statement_token1, - ACTIONS(1669), 1, + ACTIONS(1702), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1434), 1, + STATE(1517), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(383), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(400), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -74095,80 +75911,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17217] = 29, + [17676] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(678), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(704), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1653), 1, + ACTIONS(1686), 1, aux_sym_unary_expression_token2, - ACTIONS(1655), 1, + ACTIONS(1688), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1657), 1, + ACTIONS(1690), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1659), 1, + ACTIONS(1692), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1661), 1, + ACTIONS(1694), 1, aux_sym_locked_expression_token1, - ACTIONS(1663), 1, + ACTIONS(1696), 1, aux_sym_dataset_expression_token1, - ACTIONS(1665), 1, + ACTIONS(1698), 1, aux_sym_input_expression_token1, - ACTIONS(1667), 1, + ACTIONS(1700), 1, aux_sym_if_statement_token1, - ACTIONS(1669), 1, + ACTIONS(1702), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1435), 1, + STATE(1518), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(384), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(401), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -74185,80 +76002,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17336] = 29, + [17797] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1686), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1688), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1690), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1692), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1694), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1696), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1698), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1700), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1702), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2708), 1, + STATE(1519), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(385), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(402), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -74275,80 +76093,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17455] = 29, + [17918] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1686), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1688), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1690), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1692), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1694), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1696), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1698), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1700), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1702), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2711), 1, + STATE(1520), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(386), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(403), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -74365,80 +76184,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17574] = 29, + [18039] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1686), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1688), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1690), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1692), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1694), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1696), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1698), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1700), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1702), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2726), 1, + STATE(1522), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(387), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(404), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -74455,80 +76275,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17693] = 29, + [18160] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2715), 1, + STATE(2893), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(388), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(405), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -74545,80 +76366,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17812] = 29, + [18281] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, - aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2716), 1, + STATE(2685), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(389), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(406), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -74635,80 +76457,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17931] = 29, + [18402] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(690), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(692), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(694), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(696), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(698), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(700), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(702), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(704), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(708), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(718), 1, + ACTIONS(817), 1, + aux_sym_can_find_expression_token1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(831), 1, + sym__escaped_string, + ACTIONS(1447), 1, + anon_sym_LPAREN, + STATE(1009), 1, + sym__expression, + STATE(1065), 1, sym_object_access, - STATE(21), 1, + STATE(1125), 1, sym__decimal_literal, - STATE(1345), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(390), 2, + STATE(407), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -74725,80 +76548,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18050] = 29, + [18523] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(690), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(692), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(694), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(696), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(698), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(700), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(702), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(704), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(708), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(718), 1, + ACTIONS(817), 1, + aux_sym_can_find_expression_token1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(831), 1, + sym__escaped_string, + ACTIONS(1447), 1, + anon_sym_LPAREN, + STATE(1008), 1, + sym__expression, + STATE(1065), 1, sym_object_access, - STATE(21), 1, + STATE(1125), 1, sym__decimal_literal, - STATE(1348), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(391), 2, + STATE(408), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -74815,80 +76639,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18169] = 29, + [18644] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(678), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(690), 1, + ACTIONS(1704), 1, aux_sym_unary_expression_token2, - ACTIONS(692), 1, + ACTIONS(1706), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(694), 1, + ACTIONS(1708), 1, aux_sym_temp_table_expression_token1, - ACTIONS(696), 1, + ACTIONS(1710), 1, aux_sym_current_changed_expression_token1, - ACTIONS(698), 1, + ACTIONS(1712), 1, aux_sym_locked_expression_token1, - ACTIONS(700), 1, + ACTIONS(1714), 1, aux_sym_dataset_expression_token1, - ACTIONS(702), 1, + ACTIONS(1716), 1, aux_sym_input_expression_token1, - ACTIONS(704), 1, - aux_sym_scope_tuning_token1, - ACTIONS(708), 1, + ACTIONS(1718), 1, aux_sym_if_statement_token1, - ACTIONS(718), 1, + ACTIONS(1720), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1352), 1, + STATE(2823), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(392), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(409), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -74905,80 +76730,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18288] = 29, + [18765] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2754), 1, + STATE(2888), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(393), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(410), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -74995,80 +76821,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18407] = 29, + [18886] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2748), 1, + STATE(2639), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(394), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(411), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -75085,80 +76912,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18526] = 29, + [19007] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1671), 1, + ACTIONS(709), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1722), 1, aux_sym_unary_expression_token2, - ACTIONS(1673), 1, + ACTIONS(1724), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1726), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1728), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1730), 1, aux_sym_locked_expression_token1, - ACTIONS(1681), 1, + ACTIONS(1732), 1, aux_sym_dataset_expression_token1, - ACTIONS(1683), 1, + ACTIONS(1734), 1, aux_sym_input_expression_token1, - ACTIONS(1685), 1, + ACTIONS(1736), 1, aux_sym_if_statement_token1, - ACTIONS(1687), 1, + ACTIONS(1738), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1936), 1, + STATE(1470), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(395), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(412), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -75175,80 +77003,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18645] = 29, + [19128] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(813), 1, + aux_sym_scope_tuning_token1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(817), 1, + aux_sym_can_find_expression_token1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(831), 1, + sym__escaped_string, + ACTIONS(1447), 1, + anon_sym_LPAREN, + STATE(1007), 1, + sym__expression, + STATE(1065), 1, sym_object_access, - STATE(21), 1, + STATE(1125), 1, sym__decimal_literal, - STATE(2741), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(396), 2, + STATE(413), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -75265,80 +77094,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18764] = 29, + [19249] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(813), 1, + aux_sym_scope_tuning_token1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(817), 1, + aux_sym_can_find_expression_token1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(831), 1, + sym__escaped_string, + ACTIONS(1447), 1, + anon_sym_LPAREN, + STATE(1004), 1, + sym__expression, + STATE(1065), 1, sym_object_access, - STATE(21), 1, + STATE(1125), 1, sym__decimal_literal, - STATE(2740), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(397), 2, + STATE(414), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -75355,80 +77185,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18883] = 29, + [19370] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1719), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, - sym__escaped_string, - STATE(1532), 1, - sym__expression, - STATE(1896), 1, + STATE(15), 1, sym_object_access, - STATE(2582), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1693), 2, + STATE(2832), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(398), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(415), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -75445,80 +77276,150 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19002] = 29, + [19491] = 8, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(106), 1, + aux_sym_variable_tuning_token2, + ACTIONS(1740), 1, + sym__namedot, + STATE(392), 1, + aux_sym_qualified_name_repeat1, + STATE(416), 2, + sym_comment, + sym_include, + ACTIONS(104), 52, + anon_sym_COLON, + sym__terminator, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_unary_expression_token2, + aux_sym_input_expression_token2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_serialization_tuning_token1, + aux_sym_function_call_token1, + aux_sym_property_type_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_tuning_token1, + aux_sym_data_relation_token1, + aux_sym_data_relation_token2, + aux_sym_using_statement_token1, + aux_sym_using_statement_token2, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_on_error_phrase_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + aux_sym_using_token1, + aux_sym_field_option_token1, + aux_sym_field_option_token2, + aux_sym_field_option_token3, + aux_sym_field_option_token4, + aux_sym_field_option_token5, + aux_sym_field_option_token6, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + aux_sym_prompt_for_statement_token2, + [19568] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1719), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, - sym__escaped_string, - STATE(1509), 1, - sym__expression, - STATE(1896), 1, + STATE(15), 1, sym_object_access, - STATE(2582), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1693), 2, + STATE(2736), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(399), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(417), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -75535,80 +77436,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19121] = 29, + [19689] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, + ACTIONS(1770), 1, aux_sym_input_expression_token1, - ACTIONS(1719), 1, + ACTIONS(1772), 1, aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, + ACTIONS(1776), 1, aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, + ACTIONS(1782), 1, sym__escaped_string, - STATE(1514), 1, + STATE(1936), 1, sym__expression, - STATE(1896), 1, + STATE(2002), 1, sym_object_access, - STATE(2582), 1, + STATE(2748), 1, sym__decimal_literal, - ACTIONS(1693), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(400), 2, + STATE(418), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -75625,80 +77527,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19240] = 29, + [19810] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, + ACTIONS(1770), 1, aux_sym_input_expression_token1, - ACTIONS(1719), 1, + ACTIONS(1772), 1, aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, + ACTIONS(1776), 1, aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, + ACTIONS(1782), 1, sym__escaped_string, - STATE(1503), 1, + STATE(1935), 1, sym__expression, - STATE(1896), 1, + STATE(2002), 1, sym_object_access, - STATE(2582), 1, + STATE(2748), 1, sym__decimal_literal, - ACTIONS(1693), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(401), 2, + STATE(419), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -75715,80 +77618,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19359] = 29, + [19931] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, + ACTIONS(1770), 1, aux_sym_input_expression_token1, - ACTIONS(1719), 1, + ACTIONS(1772), 1, aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, + ACTIONS(1776), 1, aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, + ACTIONS(1782), 1, sym__escaped_string, - STATE(1508), 1, + STATE(1934), 1, sym__expression, - STATE(1896), 1, + STATE(2002), 1, sym_object_access, - STATE(2582), 1, + STATE(2748), 1, sym__decimal_literal, - ACTIONS(1693), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(402), 2, + STATE(420), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -75805,80 +77709,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19478] = 29, + [20052] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, + ACTIONS(1770), 1, aux_sym_input_expression_token1, - ACTIONS(1719), 1, + ACTIONS(1772), 1, aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, + ACTIONS(1776), 1, aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, + ACTIONS(1782), 1, sym__escaped_string, - STATE(1505), 1, + STATE(1933), 1, sym__expression, - STATE(1896), 1, + STATE(2002), 1, sym_object_access, - STATE(2582), 1, + STATE(2748), 1, sym__decimal_literal, - ACTIONS(1693), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(403), 2, + STATE(421), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -75895,80 +77800,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19597] = 29, + [20173] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(678), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(690), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(692), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(694), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(696), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(698), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(700), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(702), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(704), 1, - aux_sym_scope_tuning_token1, - ACTIONS(708), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(718), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1360), 1, + STATE(2687), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(404), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(422), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -75985,80 +77891,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19716] = 29, + [20294] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1770), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1772), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1776), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1782), 1, + sym__escaped_string, + STATE(1932), 1, + sym__expression, + STATE(2002), 1, sym_object_access, - STATE(21), 1, + STATE(2748), 1, sym__decimal_literal, - STATE(2592), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(405), 2, + STATE(423), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -76075,80 +77982,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19835] = 29, + [20415] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(642), 1, + ACTIONS(1742), 1, + sym_identifier, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + ACTIONS(1770), 1, + aux_sym_input_expression_token1, + ACTIONS(1772), 1, aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, + ACTIONS(1776), 1, aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, + ACTIONS(1782), 1, sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - ACTIONS(1731), 1, - sym_identifier, - STATE(9), 1, + STATE(1931), 1, + sym__expression, + STATE(2002), 1, sym_object_access, - STATE(21), 1, + STATE(2748), 1, sym__decimal_literal, - STATE(2617), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(406), 2, + STATE(424), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -76165,80 +78073,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19954] = 29, + [20536] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2721), 1, + STATE(2698), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(407), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(425), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -76255,80 +78164,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20073] = 29, + [20657] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(690), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(692), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(694), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(696), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(698), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(700), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(702), 1, - aux_sym_input_expression_token1, - ACTIONS(704), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(708), 1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(718), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + ACTIONS(1802), 1, + sym_identifier, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1365), 1, + STATE(2646), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(408), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(426), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -76345,80 +78255,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20192] = 29, + [20778] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1733), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1735), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1737), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1739), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1741), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1743), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1745), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1747), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1749), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1473), 1, + STATE(2781), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(409), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(427), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -76435,80 +78346,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20311] = 29, + [20899] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1733), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1735), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1737), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1739), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1741), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1743), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1745), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1747), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1749), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1474), 1, + STATE(2647), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(410), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(428), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -76525,80 +78437,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20430] = 29, + [21020] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2720), 1, + STATE(2185), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(411), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(429), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -76615,80 +78528,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20549] = 29, + [21141] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2687), 1, + STATE(2650), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(412), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(430), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -76705,80 +78619,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20668] = 29, + [21262] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(1677), 1, + aux_sym_input_expression_token1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2735), 1, + STATE(2651), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(413), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(431), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -76795,80 +78710,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20787] = 29, + [21383] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1733), 1, + ACTIONS(1822), 1, aux_sym_unary_expression_token2, - ACTIONS(1735), 1, + ACTIONS(1824), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1737), 1, + ACTIONS(1826), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1739), 1, + ACTIONS(1828), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1741), 1, + ACTIONS(1830), 1, aux_sym_locked_expression_token1, - ACTIONS(1743), 1, + ACTIONS(1832), 1, aux_sym_dataset_expression_token1, - ACTIONS(1745), 1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - ACTIONS(1747), 1, + ACTIONS(1836), 1, aux_sym_if_statement_token1, - ACTIONS(1749), 1, + ACTIONS(1838), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1494), 1, + STATE(1409), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(414), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(432), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -76885,80 +78801,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20906] = 29, + [21504] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2686), 1, + STATE(2652), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(415), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(433), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -76975,170 +78892,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21025] = 29, + [21625] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2674), 1, + STATE(2677), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(416), 2, - sym_comment, - sym_include, - ACTIONS(646), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(40), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(25), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, + STATE(13), 2, sym_function_call, - sym_ternary_expression, sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [21144] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, - anon_sym_LBRACE, - ACTIONS(648), 1, - sym__integer_literal, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, - aux_sym_unary_expression_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(690), 1, - aux_sym_unary_expression_token2, - ACTIONS(692), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(694), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(696), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(698), 1, - aux_sym_locked_expression_token1, - ACTIONS(700), 1, - aux_sym_dataset_expression_token1, - ACTIONS(702), 1, - aux_sym_input_expression_token1, - ACTIONS(704), 1, - aux_sym_scope_tuning_token1, - ACTIONS(708), 1, - aux_sym_if_statement_token1, - ACTIONS(718), 1, - aux_sym_accumulate_expression_token1, - STATE(9), 1, - sym_object_access, - STATE(21), 1, - sym__decimal_literal, - STATE(1367), 1, - sym__expression, - ACTIONS(644), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(684), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(417), 2, + STATE(434), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -77155,170 +78983,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21263] = 29, + [21746] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1733), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1735), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1737), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1739), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1741), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1743), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1745), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1747), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1749), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1497), 1, + STATE(2680), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(418), 2, - sym_comment, - sym_include, - ACTIONS(646), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(40), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(25), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, + STATE(13), 2, sym_function_call, - sym_ternary_expression, sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [21382] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1751), 1, - sym_identifier, - ACTIONS(1753), 1, - anon_sym_LBRACE, - ACTIONS(1759), 1, - sym__integer_literal, - ACTIONS(1761), 1, - anon_sym_LBRACK, - ACTIONS(1763), 1, - anon_sym_LPAREN, - ACTIONS(1765), 1, - aux_sym_unary_expression_token1, - ACTIONS(1767), 1, - aux_sym_unary_expression_token2, - ACTIONS(1769), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(1771), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(1773), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(1775), 1, - aux_sym_locked_expression_token1, - ACTIONS(1777), 1, - aux_sym_dataset_expression_token1, - ACTIONS(1779), 1, - aux_sym_input_expression_token1, - ACTIONS(1781), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1783), 1, - aux_sym_if_statement_token1, - ACTIONS(1785), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1787), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(1791), 1, - sym__escaped_string, - STATE(1773), 1, - sym__expression, - STATE(2187), 1, - sym_object_access, - STATE(2779), 1, - sym__decimal_literal, - ACTIONS(1755), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(1789), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(419), 2, + STATE(435), 2, sym_comment, sym_include, - ACTIONS(1757), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2787), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2783), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -77335,80 +79074,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21501] = 29, + [21867] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1733), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1735), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1737), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1739), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1741), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1743), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1745), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1747), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1749), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1498), 1, + STATE(2682), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(420), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(436), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -77425,80 +79165,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21620] = 29, + [21988] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(1822), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(1824), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(1826), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(1828), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(1830), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(1832), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(1836), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(1838), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1340), 1, + STATE(1310), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(421), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(437), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -77515,80 +79256,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21739] = 29, + [22109] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1733), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(1735), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1737), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1739), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1741), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(1743), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(1745), 1, - aux_sym_input_expression_token1, - ACTIONS(1747), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(1749), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1457), 1, + STATE(1800), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(422), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(438), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -77605,80 +79347,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21858] = 29, + [22230] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1751), 1, + ACTIONS(1840), 1, sym_identifier, - ACTIONS(1753), 1, + ACTIONS(1842), 1, anon_sym_LBRACE, - ACTIONS(1759), 1, + ACTIONS(1848), 1, sym__integer_literal, - ACTIONS(1761), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1852), 1, anon_sym_LPAREN, - ACTIONS(1765), 1, + ACTIONS(1854), 1, aux_sym_unary_expression_token1, - ACTIONS(1767), 1, + ACTIONS(1856), 1, aux_sym_unary_expression_token2, - ACTIONS(1769), 1, + ACTIONS(1858), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1771), 1, + ACTIONS(1860), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1773), 1, + ACTIONS(1862), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1775), 1, + ACTIONS(1864), 1, aux_sym_locked_expression_token1, - ACTIONS(1777), 1, + ACTIONS(1866), 1, aux_sym_dataset_expression_token1, - ACTIONS(1779), 1, + ACTIONS(1868), 1, aux_sym_input_expression_token1, - ACTIONS(1781), 1, + ACTIONS(1870), 1, aux_sym_scope_tuning_token1, - ACTIONS(1783), 1, + ACTIONS(1872), 1, aux_sym_if_statement_token1, - ACTIONS(1785), 1, + ACTIONS(1874), 1, aux_sym_can_find_expression_token1, - ACTIONS(1787), 1, + ACTIONS(1876), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1791), 1, + ACTIONS(1880), 1, sym__escaped_string, - STATE(1772), 1, + STATE(1735), 1, sym__expression, - STATE(2187), 1, + STATE(2197), 1, sym_object_access, - STATE(2779), 1, + STATE(2691), 1, sym__decimal_literal, - ACTIONS(1755), 2, + ACTIONS(1844), 2, sym_null_expression, sym_date_literal, - ACTIONS(1789), 2, + ACTIONS(1878), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(423), 2, + STATE(439), 2, sym_comment, sym_include, - ACTIONS(1757), 4, + STATE(2459), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1846), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2787), 4, + STATE(2692), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2783), 23, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -77695,80 +79438,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21977] = 29, + [22351] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1751), 1, + ACTIONS(1840), 1, sym_identifier, - ACTIONS(1753), 1, + ACTIONS(1842), 1, anon_sym_LBRACE, - ACTIONS(1759), 1, + ACTIONS(1848), 1, sym__integer_literal, - ACTIONS(1761), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1852), 1, anon_sym_LPAREN, - ACTIONS(1765), 1, + ACTIONS(1854), 1, aux_sym_unary_expression_token1, - ACTIONS(1767), 1, + ACTIONS(1856), 1, aux_sym_unary_expression_token2, - ACTIONS(1769), 1, + ACTIONS(1858), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1771), 1, + ACTIONS(1860), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1773), 1, + ACTIONS(1862), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1775), 1, + ACTIONS(1864), 1, aux_sym_locked_expression_token1, - ACTIONS(1777), 1, + ACTIONS(1866), 1, aux_sym_dataset_expression_token1, - ACTIONS(1779), 1, + ACTIONS(1868), 1, aux_sym_input_expression_token1, - ACTIONS(1781), 1, + ACTIONS(1870), 1, aux_sym_scope_tuning_token1, - ACTIONS(1783), 1, + ACTIONS(1872), 1, aux_sym_if_statement_token1, - ACTIONS(1785), 1, + ACTIONS(1874), 1, aux_sym_can_find_expression_token1, - ACTIONS(1787), 1, + ACTIONS(1876), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1791), 1, + ACTIONS(1880), 1, sym__escaped_string, - STATE(1768), 1, + STATE(1734), 1, sym__expression, - STATE(2187), 1, + STATE(2197), 1, sym_object_access, - STATE(2779), 1, + STATE(2691), 1, sym__decimal_literal, - ACTIONS(1755), 2, + ACTIONS(1844), 2, sym_null_expression, sym_date_literal, - ACTIONS(1789), 2, + ACTIONS(1878), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(424), 2, + STATE(440), 2, sym_comment, sym_include, - ACTIONS(1757), 4, + STATE(2459), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1846), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2787), 4, + STATE(2692), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2783), 23, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -77785,80 +79529,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22096] = 29, + [22472] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1751), 1, + ACTIONS(1840), 1, sym_identifier, - ACTIONS(1753), 1, + ACTIONS(1842), 1, anon_sym_LBRACE, - ACTIONS(1759), 1, + ACTIONS(1848), 1, sym__integer_literal, - ACTIONS(1761), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1852), 1, anon_sym_LPAREN, - ACTIONS(1765), 1, + ACTIONS(1854), 1, aux_sym_unary_expression_token1, - ACTIONS(1767), 1, + ACTIONS(1856), 1, aux_sym_unary_expression_token2, - ACTIONS(1769), 1, + ACTIONS(1858), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1771), 1, + ACTIONS(1860), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1773), 1, + ACTIONS(1862), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1775), 1, + ACTIONS(1864), 1, aux_sym_locked_expression_token1, - ACTIONS(1777), 1, + ACTIONS(1866), 1, aux_sym_dataset_expression_token1, - ACTIONS(1779), 1, + ACTIONS(1868), 1, aux_sym_input_expression_token1, - ACTIONS(1781), 1, + ACTIONS(1870), 1, aux_sym_scope_tuning_token1, - ACTIONS(1783), 1, + ACTIONS(1872), 1, aux_sym_if_statement_token1, - ACTIONS(1785), 1, + ACTIONS(1874), 1, aux_sym_can_find_expression_token1, - ACTIONS(1787), 1, + ACTIONS(1876), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1791), 1, + ACTIONS(1880), 1, sym__escaped_string, - STATE(1767), 1, + STATE(1733), 1, sym__expression, - STATE(2187), 1, + STATE(2197), 1, sym_object_access, - STATE(2779), 1, + STATE(2691), 1, sym__decimal_literal, - ACTIONS(1755), 2, + ACTIONS(1844), 2, sym_null_expression, sym_date_literal, - ACTIONS(1789), 2, + ACTIONS(1878), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(425), 2, + STATE(441), 2, sym_comment, sym_include, - ACTIONS(1757), 4, + STATE(2459), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1846), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2787), 4, + STATE(2692), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2783), 23, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -77875,80 +79620,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22215] = 29, + [22593] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1840), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1842), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1848), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1852), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1854), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(1856), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(1858), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(1860), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(1862), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(1864), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(1866), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, + ACTIONS(1868), 1, aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(1870), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1872), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(1874), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1876), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1880), 1, + sym__escaped_string, + STATE(1730), 1, + sym__expression, + STATE(2197), 1, sym_object_access, - STATE(21), 1, + STATE(2691), 1, sym__decimal_literal, - STATE(1289), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1844), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1878), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(426), 2, + STATE(442), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2459), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1846), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2692), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -77965,80 +79711,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22334] = 29, + [22714] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1751), 1, + ACTIONS(1840), 1, sym_identifier, - ACTIONS(1753), 1, + ACTIONS(1842), 1, anon_sym_LBRACE, - ACTIONS(1759), 1, + ACTIONS(1848), 1, sym__integer_literal, - ACTIONS(1761), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1852), 1, anon_sym_LPAREN, - ACTIONS(1765), 1, + ACTIONS(1854), 1, aux_sym_unary_expression_token1, - ACTIONS(1767), 1, + ACTIONS(1856), 1, aux_sym_unary_expression_token2, - ACTIONS(1769), 1, + ACTIONS(1858), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1771), 1, + ACTIONS(1860), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1773), 1, + ACTIONS(1862), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1775), 1, + ACTIONS(1864), 1, aux_sym_locked_expression_token1, - ACTIONS(1777), 1, + ACTIONS(1866), 1, aux_sym_dataset_expression_token1, - ACTIONS(1779), 1, + ACTIONS(1868), 1, aux_sym_input_expression_token1, - ACTIONS(1781), 1, + ACTIONS(1870), 1, aux_sym_scope_tuning_token1, - ACTIONS(1783), 1, + ACTIONS(1872), 1, aux_sym_if_statement_token1, - ACTIONS(1785), 1, + ACTIONS(1874), 1, aux_sym_can_find_expression_token1, - ACTIONS(1787), 1, + ACTIONS(1876), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1791), 1, + ACTIONS(1880), 1, sym__escaped_string, - STATE(1765), 1, + STATE(1729), 1, sym__expression, - STATE(2187), 1, + STATE(2197), 1, sym_object_access, - STATE(2779), 1, + STATE(2691), 1, sym__decimal_literal, - ACTIONS(1755), 2, + ACTIONS(1844), 2, sym_null_expression, sym_date_literal, - ACTIONS(1789), 2, + ACTIONS(1878), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(427), 2, + STATE(443), 2, sym_comment, sym_include, - ACTIONS(1757), 4, + STATE(2459), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1846), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2787), 4, + STATE(2692), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2783), 23, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -78055,80 +79802,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22453] = 29, + [22835] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1751), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1753), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1759), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1761), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1765), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1767), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1623), 1, aux_sym_unary_expression_token2, - ACTIONS(1769), 1, + ACTIONS(1625), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1771), 1, + ACTIONS(1627), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1773), 1, + ACTIONS(1629), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1775), 1, + ACTIONS(1631), 1, aux_sym_locked_expression_token1, - ACTIONS(1777), 1, + ACTIONS(1633), 1, aux_sym_dataset_expression_token1, - ACTIONS(1779), 1, + ACTIONS(1635), 1, aux_sym_input_expression_token1, - ACTIONS(1781), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1783), 1, + ACTIONS(1637), 1, aux_sym_if_statement_token1, - ACTIONS(1785), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1787), 1, + ACTIONS(1639), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1791), 1, - sym__escaped_string, - STATE(1764), 1, - sym__expression, - STATE(2187), 1, + STATE(15), 1, sym_object_access, - STATE(2779), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1755), 2, + STATE(1500), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1789), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(428), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(444), 2, sym_comment, sym_include, - ACTIONS(1757), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2787), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2783), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -78145,80 +79893,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22572] = 29, + [22956] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(642), 1, + ACTIONS(645), 1, + sym_identifier, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1623), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(1625), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(1627), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(1629), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(1631), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(1633), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(1635), 1, + aux_sym_input_expression_token1, + ACTIONS(1637), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(1639), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - ACTIONS(1811), 1, - sym_identifier, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2569), 1, + STATE(1498), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(429), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(445), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -78235,80 +79984,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22691] = 29, + [23077] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1671), 1, + ACTIONS(1623), 1, aux_sym_unary_expression_token2, - ACTIONS(1673), 1, + ACTIONS(1625), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1627), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1629), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1631), 1, aux_sym_locked_expression_token1, - ACTIONS(1681), 1, + ACTIONS(1633), 1, aux_sym_dataset_expression_token1, - ACTIONS(1683), 1, + ACTIONS(1635), 1, aux_sym_input_expression_token1, - ACTIONS(1685), 1, + ACTIONS(1637), 1, aux_sym_if_statement_token1, - ACTIONS(1687), 1, + ACTIONS(1639), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2023), 1, + STATE(1497), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(430), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(446), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -78325,80 +80075,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22810] = 29, + [23198] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1671), 1, + ACTIONS(1623), 1, aux_sym_unary_expression_token2, - ACTIONS(1673), 1, + ACTIONS(1625), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1627), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1629), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1631), 1, aux_sym_locked_expression_token1, - ACTIONS(1681), 1, + ACTIONS(1633), 1, aux_sym_dataset_expression_token1, - ACTIONS(1683), 1, + ACTIONS(1635), 1, aux_sym_input_expression_token1, - ACTIONS(1685), 1, + ACTIONS(1637), 1, aux_sym_if_statement_token1, - ACTIONS(1687), 1, + ACTIONS(1639), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2019), 1, + STATE(1503), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(431), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(447), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -78415,80 +80166,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22929] = 29, + [23319] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(678), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(704), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1653), 1, + ACTIONS(1623), 1, aux_sym_unary_expression_token2, - ACTIONS(1655), 1, + ACTIONS(1625), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1657), 1, + ACTIONS(1627), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1659), 1, + ACTIONS(1629), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1661), 1, + ACTIONS(1631), 1, aux_sym_locked_expression_token1, - ACTIONS(1663), 1, + ACTIONS(1633), 1, aux_sym_dataset_expression_token1, - ACTIONS(1665), 1, + ACTIONS(1635), 1, aux_sym_input_expression_token1, - ACTIONS(1667), 1, + ACTIONS(1637), 1, aux_sym_if_statement_token1, - ACTIONS(1669), 1, + ACTIONS(1639), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1441), 1, + STATE(1513), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(432), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(448), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -78505,80 +80257,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23048] = 29, + [23440] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1671), 1, + ACTIONS(1623), 1, aux_sym_unary_expression_token2, - ACTIONS(1673), 1, + ACTIONS(1625), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1627), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1629), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1631), 1, aux_sym_locked_expression_token1, - ACTIONS(1681), 1, + ACTIONS(1633), 1, aux_sym_dataset_expression_token1, - ACTIONS(1683), 1, + ACTIONS(1635), 1, aux_sym_input_expression_token1, - ACTIONS(1685), 1, + ACTIONS(1637), 1, aux_sym_if_statement_token1, - ACTIONS(1687), 1, + ACTIONS(1639), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2017), 1, + STATE(1515), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(433), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(449), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -78595,80 +80348,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23167] = 29, + [23561] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1840), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1842), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1848), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1852), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1854), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1671), 1, + ACTIONS(1856), 1, aux_sym_unary_expression_token2, - ACTIONS(1673), 1, + ACTIONS(1858), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1860), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1862), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1864), 1, aux_sym_locked_expression_token1, - ACTIONS(1681), 1, + ACTIONS(1866), 1, aux_sym_dataset_expression_token1, - ACTIONS(1683), 1, + ACTIONS(1868), 1, aux_sym_input_expression_token1, - ACTIONS(1685), 1, + ACTIONS(1870), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1872), 1, aux_sym_if_statement_token1, - ACTIONS(1687), 1, + ACTIONS(1874), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1876), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1880), 1, + sym__escaped_string, + STATE(1728), 1, + sym__expression, + STATE(2197), 1, sym_object_access, - STATE(21), 1, + STATE(2691), 1, sym__decimal_literal, - STATE(2016), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1844), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1878), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(434), 2, + STATE(450), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2459), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1846), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2692), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -78685,80 +80439,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23286] = 29, + [23682] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1671), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1673), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1681), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1683), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1685), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1687), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2014), 1, + STATE(2686), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(435), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(451), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -78775,80 +80530,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23405] = 29, + [23803] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, - aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + ACTIONS(1882), 1, + sym_identifier, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2683), 1, + STATE(2801), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(436), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(452), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -78865,80 +80621,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23524] = 29, + [23924] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2679), 1, + STATE(2703), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(437), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(453), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -78955,170 +80712,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23643] = 29, + [24045] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, - aux_sym_if_statement_token1, - ACTIONS(1651), 1, - aux_sym_accumulate_expression_token1, - STATE(9), 1, - sym_object_access, - STATE(21), 1, - sym__decimal_literal, - STATE(2722), 1, - sym__expression, - ACTIONS(644), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(684), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(438), 2, - sym_comment, - sym_include, - ACTIONS(646), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(40), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(25), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [23762] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, - anon_sym_LBRACE, - ACTIONS(648), 1, - sym__integer_literal, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, - aux_sym_unary_expression_token1, - ACTIONS(658), 1, - aux_sym_unary_expression_token2, - ACTIONS(660), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, - aux_sym_locked_expression_token1, - ACTIONS(668), 1, - aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, + ACTIONS(831), 1, sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + ACTIONS(1447), 1, + anon_sym_LPAREN, + STATE(1003), 1, + sym__expression, + STATE(1065), 1, sym_object_access, - STATE(21), 1, + STATE(1125), 1, sym__decimal_literal, - STATE(1506), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(439), 2, + STATE(454), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -79135,80 +80803,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23881] = 29, + [24166] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2675), 1, + STATE(2708), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(440), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(455), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -79225,80 +80894,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24000] = 29, + [24287] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2666), 1, + STATE(2466), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(441), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(456), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -79315,80 +80985,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24119] = 29, + [24408] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2663), 1, + STATE(2465), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(442), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(457), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -79405,80 +81076,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24238] = 29, + [24529] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2662), 1, + STATE(2464), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(443), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(458), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -79495,80 +81167,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24357] = 29, + [24650] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1884), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1886), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1888), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1890), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1892), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1894), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1896), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1898), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2642), 1, + STATE(2568), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(444), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(459), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -79585,80 +81258,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24476] = 29, + [24771] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1884), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1886), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1888), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1890), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1892), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1894), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1896), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1898), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2658), 1, + STATE(2569), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(445), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(460), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -79675,80 +81349,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24595] = 29, + [24892] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1884), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1886), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1888), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1890), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1892), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1894), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1896), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1898), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2651), 1, + STATE(2570), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(446), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(461), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -79765,80 +81440,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24714] = 29, + [25013] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1813), 1, + ACTIONS(1884), 1, aux_sym_unary_expression_token2, - ACTIONS(1815), 1, + ACTIONS(1886), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1817), 1, + ACTIONS(1888), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1819), 1, + ACTIONS(1890), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1821), 1, + ACTIONS(1892), 1, aux_sym_locked_expression_token1, - ACTIONS(1823), 1, + ACTIONS(1894), 1, aux_sym_dataset_expression_token1, - ACTIONS(1825), 1, + ACTIONS(1896), 1, aux_sym_input_expression_token1, - ACTIONS(1827), 1, + ACTIONS(1898), 1, aux_sym_if_statement_token1, - ACTIONS(1829), 1, + ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1462), 1, + STATE(2571), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(447), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(462), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -79855,80 +81531,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24833] = 29, + [25134] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1813), 1, + ACTIONS(1884), 1, aux_sym_unary_expression_token2, - ACTIONS(1815), 1, + ACTIONS(1886), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1817), 1, + ACTIONS(1888), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1819), 1, + ACTIONS(1890), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1821), 1, + ACTIONS(1892), 1, aux_sym_locked_expression_token1, - ACTIONS(1823), 1, + ACTIONS(1894), 1, aux_sym_dataset_expression_token1, - ACTIONS(1825), 1, + ACTIONS(1896), 1, aux_sym_input_expression_token1, - ACTIONS(1827), 1, + ACTIONS(1898), 1, aux_sym_if_statement_token1, - ACTIONS(1829), 1, + ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1463), 1, + STATE(2572), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(448), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(463), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -79945,80 +81622,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24952] = 29, + [25255] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1813), 1, + ACTIONS(1884), 1, aux_sym_unary_expression_token2, - ACTIONS(1815), 1, + ACTIONS(1886), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1817), 1, + ACTIONS(1888), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1819), 1, + ACTIONS(1890), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1821), 1, + ACTIONS(1892), 1, aux_sym_locked_expression_token1, - ACTIONS(1823), 1, + ACTIONS(1894), 1, aux_sym_dataset_expression_token1, - ACTIONS(1825), 1, + ACTIONS(1896), 1, aux_sym_input_expression_token1, - ACTIONS(1827), 1, + ACTIONS(1898), 1, aux_sym_if_statement_token1, - ACTIONS(1829), 1, + ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1453), 1, + STATE(2573), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(449), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(464), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -80035,80 +81713,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25071] = 29, + [25376] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1813), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(1815), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1817), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1819), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1821), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(1823), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(1825), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(1827), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(1829), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1466), 1, + STATE(2463), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(450), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(465), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -80125,80 +81804,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25190] = 29, + [25497] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1813), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(1815), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1817), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1819), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1821), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(1823), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(1825), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(1827), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(1829), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1467), 1, + STATE(2462), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(451), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(466), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -80215,80 +81895,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25309] = 29, + [25618] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1813), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1815), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1817), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1819), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1821), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1823), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1825), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1827), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1829), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1470), 1, + STATE(2710), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(452), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(467), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -80305,80 +81986,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25428] = 29, + [25739] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2650), 1, + STATE(2711), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(453), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(468), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -80395,80 +82077,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25547] = 29, + [25860] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2648), 1, + STATE(2715), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(454), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(469), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -80485,80 +82168,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25666] = 29, + [25981] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2643), 1, + STATE(2716), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(455), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(470), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -80575,80 +82259,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25785] = 29, + [26102] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2766), 1, + STATE(2681), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(456), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(471), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -80665,80 +82350,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25904] = 29, + [26223] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1671), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1673), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1681), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1683), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1685), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1687), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2013), 1, + STATE(2744), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(457), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(472), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -80755,80 +82441,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [26023] = 29, + [26344] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(709), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1722), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(1724), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(1726), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(1728), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(1730), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(1732), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(1734), 1, + aux_sym_input_expression_token1, + ACTIONS(1736), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(1738), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1527), 1, + STATE(1461), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(458), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(473), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -80845,80 +82532,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [26142] = 29, + [26465] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1902), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1904), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1910), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1912), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1914), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1916), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(1918), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(1920), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(1922), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(1924), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(1926), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(1928), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + ACTIONS(1930), 1, + aux_sym_input_expression_token1, + ACTIONS(1932), 1, aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(1934), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, + ACTIONS(1936), 1, aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(1938), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, + ACTIONS(1942), 1, sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(1292), 1, + sym__expression, + STATE(1319), 1, sym_object_access, - STATE(21), 1, + STATE(1412), 1, sym__decimal_literal, - STATE(1526), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1906), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1940), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(459), 2, + STATE(474), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1321), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1908), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1451), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1448), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -80935,80 +82623,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [26261] = 29, + [26586] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1902), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1904), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1910), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1912), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1914), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1916), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1831), 1, + ACTIONS(1918), 1, aux_sym_unary_expression_token2, - ACTIONS(1833), 1, + ACTIONS(1920), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1835), 1, + ACTIONS(1922), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1837), 1, + ACTIONS(1924), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1839), 1, + ACTIONS(1926), 1, aux_sym_locked_expression_token1, - ACTIONS(1841), 1, + ACTIONS(1928), 1, aux_sym_dataset_expression_token1, - ACTIONS(1843), 1, + ACTIONS(1930), 1, aux_sym_input_expression_token1, - ACTIONS(1845), 1, + ACTIONS(1932), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1934), 1, aux_sym_if_statement_token1, - ACTIONS(1847), 1, + ACTIONS(1936), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1938), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1942), 1, + sym__escaped_string, + STATE(1291), 1, + sym__expression, + STATE(1319), 1, sym_object_access, - STATE(21), 1, + STATE(1412), 1, sym__decimal_literal, - STATE(1313), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1906), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1940), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(460), 2, + STATE(475), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1321), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1908), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1451), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1448), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -81025,80 +82714,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [26380] = 29, + [26707] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1902), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1904), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1910), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1912), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1914), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1916), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1831), 1, + ACTIONS(1918), 1, aux_sym_unary_expression_token2, - ACTIONS(1833), 1, + ACTIONS(1920), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1835), 1, + ACTIONS(1922), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1837), 1, + ACTIONS(1924), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1839), 1, + ACTIONS(1926), 1, aux_sym_locked_expression_token1, - ACTIONS(1841), 1, + ACTIONS(1928), 1, aux_sym_dataset_expression_token1, - ACTIONS(1843), 1, + ACTIONS(1930), 1, aux_sym_input_expression_token1, - ACTIONS(1845), 1, + ACTIONS(1932), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1934), 1, aux_sym_if_statement_token1, - ACTIONS(1847), 1, + ACTIONS(1936), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1938), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1942), 1, + sym__escaped_string, + STATE(1290), 1, + sym__expression, + STATE(1319), 1, sym_object_access, - STATE(21), 1, + STATE(1412), 1, sym__decimal_literal, - STATE(1316), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1906), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1940), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(461), 2, + STATE(476), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1321), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1908), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1451), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1448), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -81115,80 +82805,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [26499] = 29, + [26828] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1902), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1904), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1910), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1912), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1914), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1916), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1849), 1, + ACTIONS(1918), 1, aux_sym_unary_expression_token2, - ACTIONS(1851), 1, + ACTIONS(1920), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1853), 1, + ACTIONS(1922), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1855), 1, + ACTIONS(1924), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1857), 1, + ACTIONS(1926), 1, aux_sym_locked_expression_token1, - ACTIONS(1859), 1, + ACTIONS(1928), 1, aux_sym_dataset_expression_token1, - ACTIONS(1861), 1, + ACTIONS(1930), 1, aux_sym_input_expression_token1, - ACTIONS(1863), 1, + ACTIONS(1932), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1934), 1, aux_sym_if_statement_token1, - ACTIONS(1865), 1, + ACTIONS(1936), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1938), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1942), 1, + sym__escaped_string, + STATE(1289), 1, + sym__expression, + STATE(1319), 1, sym_object_access, - STATE(21), 1, + STATE(1412), 1, sym__decimal_literal, - STATE(2507), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1906), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1940), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(462), 2, + STATE(477), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1321), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1908), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1451), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1448), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -81205,80 +82896,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [26618] = 29, + [26949] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1902), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1904), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1910), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1912), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1914), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1916), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1849), 1, + ACTIONS(1918), 1, aux_sym_unary_expression_token2, - ACTIONS(1851), 1, + ACTIONS(1920), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1853), 1, + ACTIONS(1922), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1855), 1, + ACTIONS(1924), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1857), 1, + ACTIONS(1926), 1, aux_sym_locked_expression_token1, - ACTIONS(1859), 1, + ACTIONS(1928), 1, aux_sym_dataset_expression_token1, - ACTIONS(1861), 1, + ACTIONS(1930), 1, aux_sym_input_expression_token1, - ACTIONS(1863), 1, + ACTIONS(1932), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1934), 1, aux_sym_if_statement_token1, - ACTIONS(1865), 1, + ACTIONS(1936), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1938), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1942), 1, + sym__escaped_string, + STATE(1288), 1, + sym__expression, + STATE(1319), 1, sym_object_access, - STATE(21), 1, + STATE(1412), 1, sym__decimal_literal, - STATE(2509), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1906), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1940), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(463), 2, + STATE(478), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1321), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1908), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1451), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1448), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -81295,80 +82987,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [26737] = 29, + [27070] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1902), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1904), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1910), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1912), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1914), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1916), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1849), 1, + ACTIONS(1918), 1, aux_sym_unary_expression_token2, - ACTIONS(1851), 1, + ACTIONS(1920), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1853), 1, + ACTIONS(1922), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1855), 1, + ACTIONS(1924), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1857), 1, + ACTIONS(1926), 1, aux_sym_locked_expression_token1, - ACTIONS(1859), 1, + ACTIONS(1928), 1, aux_sym_dataset_expression_token1, - ACTIONS(1861), 1, + ACTIONS(1930), 1, aux_sym_input_expression_token1, - ACTIONS(1863), 1, + ACTIONS(1932), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1934), 1, aux_sym_if_statement_token1, - ACTIONS(1865), 1, + ACTIONS(1936), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1938), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1942), 1, + sym__escaped_string, + STATE(1286), 1, + sym__expression, + STATE(1319), 1, sym_object_access, - STATE(21), 1, + STATE(1412), 1, sym__decimal_literal, - STATE(2523), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1906), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1940), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(464), 2, + STATE(479), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1321), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1908), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1451), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1448), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -81385,80 +83078,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [26856] = 29, + [27191] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1849), 1, + ACTIONS(1944), 1, aux_sym_unary_expression_token2, - ACTIONS(1851), 1, + ACTIONS(1946), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1853), 1, + ACTIONS(1948), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1855), 1, + ACTIONS(1950), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1857), 1, + ACTIONS(1952), 1, aux_sym_locked_expression_token1, - ACTIONS(1859), 1, + ACTIONS(1954), 1, aux_sym_dataset_expression_token1, - ACTIONS(1861), 1, + ACTIONS(1956), 1, aux_sym_input_expression_token1, - ACTIONS(1863), 1, + ACTIONS(1958), 1, aux_sym_if_statement_token1, - ACTIONS(1865), 1, + ACTIONS(1960), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2512), 1, + STATE(2587), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(465), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(480), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -81475,80 +83169,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [26975] = 29, + [27312] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1849), 1, + ACTIONS(1944), 1, aux_sym_unary_expression_token2, - ACTIONS(1851), 1, + ACTIONS(1946), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1853), 1, + ACTIONS(1948), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1855), 1, + ACTIONS(1950), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1857), 1, + ACTIONS(1952), 1, aux_sym_locked_expression_token1, - ACTIONS(1859), 1, + ACTIONS(1954), 1, aux_sym_dataset_expression_token1, - ACTIONS(1861), 1, + ACTIONS(1956), 1, aux_sym_input_expression_token1, - ACTIONS(1863), 1, + ACTIONS(1958), 1, aux_sym_if_statement_token1, - ACTIONS(1865), 1, + ACTIONS(1960), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2521), 1, + STATE(2588), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(466), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(481), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -81565,80 +83260,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [27094] = 29, + [27433] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1849), 1, + ACTIONS(1944), 1, aux_sym_unary_expression_token2, - ACTIONS(1851), 1, + ACTIONS(1946), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1853), 1, + ACTIONS(1948), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1855), 1, + ACTIONS(1950), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1857), 1, + ACTIONS(1952), 1, aux_sym_locked_expression_token1, - ACTIONS(1859), 1, + ACTIONS(1954), 1, aux_sym_dataset_expression_token1, - ACTIONS(1861), 1, + ACTIONS(1956), 1, aux_sym_input_expression_token1, - ACTIONS(1863), 1, + ACTIONS(1958), 1, aux_sym_if_statement_token1, - ACTIONS(1865), 1, + ACTIONS(1960), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2516), 1, + STATE(2589), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(467), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(482), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -81655,80 +83351,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [27213] = 29, + [27554] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1944), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(1946), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(1948), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(1950), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(1952), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(1954), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(1956), 1, + aux_sym_input_expression_token1, + ACTIONS(1958), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(1960), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1519), 1, + STATE(2590), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(468), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(483), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -81745,80 +83442,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [27332] = 29, + [27675] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1831), 1, + ACTIONS(1944), 1, aux_sym_unary_expression_token2, - ACTIONS(1833), 1, + ACTIONS(1946), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1835), 1, + ACTIONS(1948), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1837), 1, + ACTIONS(1950), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1839), 1, + ACTIONS(1952), 1, aux_sym_locked_expression_token1, - ACTIONS(1841), 1, + ACTIONS(1954), 1, aux_sym_dataset_expression_token1, - ACTIONS(1843), 1, + ACTIONS(1956), 1, aux_sym_input_expression_token1, - ACTIONS(1845), 1, + ACTIONS(1958), 1, aux_sym_if_statement_token1, - ACTIONS(1847), 1, + ACTIONS(1960), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1298), 1, + STATE(2591), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(469), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(484), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -81835,80 +83533,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [27451] = 29, + [27796] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1831), 1, + ACTIONS(1978), 1, aux_sym_unary_expression_token2, - ACTIONS(1833), 1, + ACTIONS(1980), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1835), 1, + ACTIONS(1982), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1837), 1, + ACTIONS(1984), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1839), 1, + ACTIONS(1986), 1, aux_sym_locked_expression_token1, - ACTIONS(1841), 1, + ACTIONS(1988), 1, aux_sym_dataset_expression_token1, - ACTIONS(1843), 1, + ACTIONS(1990), 1, aux_sym_input_expression_token1, - ACTIONS(1845), 1, + ACTIONS(1992), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1994), 1, aux_sym_if_statement_token1, - ACTIONS(1847), 1, + ACTIONS(1996), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1998), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2002), 1, + sym__escaped_string, + STATE(193), 1, sym_object_access, - STATE(21), 1, + STATE(311), 1, sym__decimal_literal, - STATE(1302), 1, + STATE(1148), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(470), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(485), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -81925,80 +83624,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [27570] = 29, + [27917] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1944), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(1946), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(1948), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(1950), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(1952), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(1954), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(1956), 1, + aux_sym_input_expression_token1, + ACTIONS(1958), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(1960), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1516), 1, + STATE(2592), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(471), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(486), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -82015,80 +83715,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [27689] = 29, + [28038] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1831), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1833), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1835), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1837), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1839), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1841), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1843), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1845), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1847), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1303), 1, + STATE(2746), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(472), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(487), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -82105,80 +83806,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [27808] = 29, + [28159] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1869), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1877), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1883), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1885), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1887), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1889), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1891), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1893), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1895), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1897), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1899), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1901), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1903), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1907), 1, - sym__escaped_string, - STATE(185), 1, + STATE(15), 1, sym_object_access, - STATE(277), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1115), 1, + STATE(2777), 1, sym__expression, - ACTIONS(1871), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1905), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(473), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(488), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(251), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(254), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -82195,80 +83897,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [27927] = 29, + [28280] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1831), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1833), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1835), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1837), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1839), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1841), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1843), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1845), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1847), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1305), 1, + STATE(2819), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(474), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(489), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -82285,80 +83988,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [28046] = 29, + [28401] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2620), 1, + STATE(2644), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(475), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(490), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -82375,80 +84079,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [28165] = 29, + [28522] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(1677), 1, + aux_sym_input_expression_token1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1515), 1, + STATE(2851), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(476), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(491), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -82465,80 +84170,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [28284] = 29, + [28643] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, - aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2614), 1, + STATE(1676), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(477), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(492), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -82555,80 +84261,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [28403] = 29, + [28764] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1909), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1911), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1917), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1919), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1921), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1923), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1925), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(709), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1722), 1, aux_sym_unary_expression_token2, - ACTIONS(1927), 1, + ACTIONS(1724), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1929), 1, + ACTIONS(1726), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1931), 1, + ACTIONS(1728), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1933), 1, + ACTIONS(1730), 1, aux_sym_locked_expression_token1, - ACTIONS(1935), 1, + ACTIONS(1732), 1, aux_sym_dataset_expression_token1, - ACTIONS(1937), 1, + ACTIONS(1734), 1, aux_sym_input_expression_token1, - ACTIONS(1939), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1941), 1, + ACTIONS(1736), 1, aux_sym_if_statement_token1, - ACTIONS(1943), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1945), 1, + ACTIONS(1738), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1949), 1, - sym__escaped_string, - STATE(1269), 1, - sym__expression, - STATE(1281), 1, + STATE(15), 1, sym_object_access, - STATE(1406), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1913), 2, + STATE(1472), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1947), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(478), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(493), 2, sym_comment, sym_include, - ACTIONS(1915), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1405), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1390), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -82645,80 +84352,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [28522] = 29, + [28885] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1909), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1911), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1917), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1919), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1921), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1923), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1925), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(1927), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1929), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1931), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1933), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(1935), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(1937), 1, - aux_sym_input_expression_token1, - ACTIONS(1939), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(1941), 1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(1943), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(1945), 1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1949), 1, + ACTIONS(691), 1, sym__escaped_string, - STATE(1267), 1, - sym__expression, - STATE(1281), 1, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(1406), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1913), 2, + STATE(1675), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1947), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(479), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(494), 2, sym_comment, sym_include, - ACTIONS(1915), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1405), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1390), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -82735,80 +84443,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [28641] = 29, + [29006] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1909), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1911), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1917), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1919), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1921), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1923), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1925), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(709), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1722), 1, aux_sym_unary_expression_token2, - ACTIONS(1927), 1, + ACTIONS(1724), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1929), 1, + ACTIONS(1726), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1931), 1, + ACTIONS(1728), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1933), 1, + ACTIONS(1730), 1, aux_sym_locked_expression_token1, - ACTIONS(1935), 1, + ACTIONS(1732), 1, aux_sym_dataset_expression_token1, - ACTIONS(1937), 1, + ACTIONS(1734), 1, aux_sym_input_expression_token1, - ACTIONS(1939), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1941), 1, + ACTIONS(1736), 1, aux_sym_if_statement_token1, - ACTIONS(1943), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1945), 1, + ACTIONS(1738), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1949), 1, - sym__escaped_string, - STATE(1266), 1, - sym__expression, - STATE(1281), 1, + STATE(15), 1, sym_object_access, - STATE(1406), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1913), 2, + STATE(1467), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1947), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(480), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(495), 2, sym_comment, sym_include, - ACTIONS(1915), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1405), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1390), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -82825,80 +84534,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [28760] = 29, + [29127] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1909), 1, + ACTIONS(2004), 1, sym_identifier, - ACTIONS(1911), 1, + ACTIONS(2006), 1, anon_sym_LBRACE, - ACTIONS(1917), 1, + ACTIONS(2012), 1, sym__integer_literal, - ACTIONS(1919), 1, + ACTIONS(2014), 1, anon_sym_LBRACK, - ACTIONS(1921), 1, + ACTIONS(2016), 1, anon_sym_LPAREN, - ACTIONS(1923), 1, + ACTIONS(2018), 1, aux_sym_unary_expression_token1, - ACTIONS(1925), 1, + ACTIONS(2020), 1, aux_sym_unary_expression_token2, - ACTIONS(1927), 1, + ACTIONS(2022), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1929), 1, + ACTIONS(2024), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1931), 1, + ACTIONS(2026), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1933), 1, + ACTIONS(2028), 1, aux_sym_locked_expression_token1, - ACTIONS(1935), 1, + ACTIONS(2030), 1, aux_sym_dataset_expression_token1, - ACTIONS(1937), 1, + ACTIONS(2032), 1, aux_sym_input_expression_token1, - ACTIONS(1939), 1, + ACTIONS(2034), 1, aux_sym_scope_tuning_token1, - ACTIONS(1941), 1, + ACTIONS(2036), 1, aux_sym_if_statement_token1, - ACTIONS(1943), 1, + ACTIONS(2038), 1, aux_sym_can_find_expression_token1, - ACTIONS(1945), 1, + ACTIONS(2040), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1949), 1, + ACTIONS(2044), 1, sym__escaped_string, - STATE(1265), 1, + STATE(2066), 1, sym__expression, - STATE(1281), 1, + STATE(2490), 1, sym_object_access, - STATE(1406), 1, + STATE(2984), 1, sym__decimal_literal, - ACTIONS(1913), 2, + ACTIONS(2008), 2, sym_null_expression, sym_date_literal, - ACTIONS(1947), 2, + ACTIONS(2042), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(481), 2, + STATE(496), 2, sym_comment, sym_include, - ACTIONS(1915), 4, + STATE(2551), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2010), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1405), 4, + STATE(2967), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1390), 23, + STATE(2960), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -82915,80 +84625,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [28879] = 29, + [29248] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1909), 1, + ACTIONS(2004), 1, sym_identifier, - ACTIONS(1911), 1, + ACTIONS(2006), 1, anon_sym_LBRACE, - ACTIONS(1917), 1, + ACTIONS(2012), 1, sym__integer_literal, - ACTIONS(1919), 1, + ACTIONS(2014), 1, anon_sym_LBRACK, - ACTIONS(1921), 1, + ACTIONS(2016), 1, anon_sym_LPAREN, - ACTIONS(1923), 1, + ACTIONS(2018), 1, aux_sym_unary_expression_token1, - ACTIONS(1925), 1, + ACTIONS(2020), 1, aux_sym_unary_expression_token2, - ACTIONS(1927), 1, + ACTIONS(2022), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1929), 1, + ACTIONS(2024), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1931), 1, + ACTIONS(2026), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1933), 1, + ACTIONS(2028), 1, aux_sym_locked_expression_token1, - ACTIONS(1935), 1, + ACTIONS(2030), 1, aux_sym_dataset_expression_token1, - ACTIONS(1937), 1, + ACTIONS(2032), 1, aux_sym_input_expression_token1, - ACTIONS(1939), 1, + ACTIONS(2034), 1, aux_sym_scope_tuning_token1, - ACTIONS(1941), 1, + ACTIONS(2036), 1, aux_sym_if_statement_token1, - ACTIONS(1943), 1, + ACTIONS(2038), 1, aux_sym_can_find_expression_token1, - ACTIONS(1945), 1, + ACTIONS(2040), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1949), 1, + ACTIONS(2044), 1, sym__escaped_string, - STATE(1255), 1, + STATE(2069), 1, sym__expression, - STATE(1281), 1, + STATE(2490), 1, sym_object_access, - STATE(1406), 1, + STATE(2984), 1, sym__decimal_literal, - ACTIONS(1913), 2, + ACTIONS(2008), 2, sym_null_expression, sym_date_literal, - ACTIONS(1947), 2, + ACTIONS(2042), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(482), 2, + STATE(497), 2, sym_comment, sym_include, - ACTIONS(1915), 4, + STATE(2551), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2010), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1405), 4, + STATE(2967), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1390), 23, + STATE(2960), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -83005,80 +84716,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [28998] = 29, + [29369] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1909), 1, + ACTIONS(2004), 1, sym_identifier, - ACTIONS(1911), 1, + ACTIONS(2006), 1, anon_sym_LBRACE, - ACTIONS(1917), 1, + ACTIONS(2012), 1, sym__integer_literal, - ACTIONS(1919), 1, + ACTIONS(2014), 1, anon_sym_LBRACK, - ACTIONS(1921), 1, + ACTIONS(2016), 1, anon_sym_LPAREN, - ACTIONS(1923), 1, + ACTIONS(2018), 1, aux_sym_unary_expression_token1, - ACTIONS(1925), 1, + ACTIONS(2020), 1, aux_sym_unary_expression_token2, - ACTIONS(1927), 1, + ACTIONS(2022), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1929), 1, + ACTIONS(2024), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1931), 1, + ACTIONS(2026), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1933), 1, + ACTIONS(2028), 1, aux_sym_locked_expression_token1, - ACTIONS(1935), 1, + ACTIONS(2030), 1, aux_sym_dataset_expression_token1, - ACTIONS(1937), 1, + ACTIONS(2032), 1, aux_sym_input_expression_token1, - ACTIONS(1939), 1, + ACTIONS(2034), 1, aux_sym_scope_tuning_token1, - ACTIONS(1941), 1, + ACTIONS(2036), 1, aux_sym_if_statement_token1, - ACTIONS(1943), 1, + ACTIONS(2038), 1, aux_sym_can_find_expression_token1, - ACTIONS(1945), 1, + ACTIONS(2040), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1949), 1, + ACTIONS(2044), 1, sym__escaped_string, - STATE(1263), 1, + STATE(2073), 1, sym__expression, - STATE(1281), 1, + STATE(2490), 1, sym_object_access, - STATE(1406), 1, + STATE(2984), 1, sym__decimal_literal, - ACTIONS(1913), 2, + ACTIONS(2008), 2, sym_null_expression, sym_date_literal, - ACTIONS(1947), 2, + ACTIONS(2042), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(483), 2, + STATE(498), 2, sym_comment, sym_include, - ACTIONS(1915), 4, + STATE(2551), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2010), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1405), 4, + STATE(2967), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1390), 23, + STATE(2960), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -83095,80 +84807,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [29117] = 29, + [29490] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1951), 1, + ACTIONS(709), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1722), 1, aux_sym_unary_expression_token2, - ACTIONS(1953), 1, + ACTIONS(1724), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1955), 1, + ACTIONS(1726), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1957), 1, + ACTIONS(1728), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1959), 1, + ACTIONS(1730), 1, aux_sym_locked_expression_token1, - ACTIONS(1961), 1, + ACTIONS(1732), 1, aux_sym_dataset_expression_token1, - ACTIONS(1963), 1, + ACTIONS(1734), 1, aux_sym_input_expression_token1, - ACTIONS(1965), 1, + ACTIONS(1736), 1, aux_sym_if_statement_token1, - ACTIONS(1967), 1, + ACTIONS(1738), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2518), 1, + STATE(1471), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(484), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(499), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -83185,80 +84898,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [29236] = 29, + [29611] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2004), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2006), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2012), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2014), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2016), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2018), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1951), 1, + ACTIONS(2020), 1, aux_sym_unary_expression_token2, - ACTIONS(1953), 1, + ACTIONS(2022), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1955), 1, + ACTIONS(2024), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1957), 1, + ACTIONS(2026), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1959), 1, + ACTIONS(2028), 1, aux_sym_locked_expression_token1, - ACTIONS(1961), 1, + ACTIONS(2030), 1, aux_sym_dataset_expression_token1, - ACTIONS(1963), 1, + ACTIONS(2032), 1, aux_sym_input_expression_token1, - ACTIONS(1965), 1, + ACTIONS(2034), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2036), 1, aux_sym_if_statement_token1, - ACTIONS(1967), 1, + ACTIONS(2038), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2040), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2044), 1, + sym__escaped_string, + STATE(2074), 1, + sym__expression, + STATE(2490), 1, sym_object_access, - STATE(21), 1, + STATE(2984), 1, sym__decimal_literal, - STATE(2515), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2008), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2042), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(485), 2, + STATE(500), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2551), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2010), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2967), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2960), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -83275,80 +84989,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [29355] = 29, + [29732] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2004), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2006), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2012), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2014), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2016), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2018), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1951), 1, + ACTIONS(2020), 1, aux_sym_unary_expression_token2, - ACTIONS(1953), 1, + ACTIONS(2022), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1955), 1, + ACTIONS(2024), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1957), 1, + ACTIONS(2026), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1959), 1, + ACTIONS(2028), 1, aux_sym_locked_expression_token1, - ACTIONS(1961), 1, + ACTIONS(2030), 1, aux_sym_dataset_expression_token1, - ACTIONS(1963), 1, + ACTIONS(2032), 1, aux_sym_input_expression_token1, - ACTIONS(1965), 1, + ACTIONS(2034), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2036), 1, aux_sym_if_statement_token1, - ACTIONS(1967), 1, + ACTIONS(2038), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2040), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2044), 1, + sym__escaped_string, + STATE(2075), 1, + sym__expression, + STATE(2490), 1, sym_object_access, - STATE(21), 1, + STATE(2984), 1, sym__decimal_literal, - STATE(2513), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2008), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2042), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(486), 2, + STATE(501), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2551), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2010), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2967), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2960), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -83365,80 +85080,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [29474] = 29, + [29853] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2004), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2006), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2012), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2014), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2016), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2018), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1671), 1, + ACTIONS(2020), 1, aux_sym_unary_expression_token2, - ACTIONS(1673), 1, + ACTIONS(2022), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1675), 1, + ACTIONS(2024), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1677), 1, + ACTIONS(2026), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1679), 1, + ACTIONS(2028), 1, aux_sym_locked_expression_token1, - ACTIONS(1681), 1, + ACTIONS(2030), 1, aux_sym_dataset_expression_token1, - ACTIONS(1683), 1, + ACTIONS(2032), 1, aux_sym_input_expression_token1, - ACTIONS(1685), 1, + ACTIONS(2034), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2036), 1, aux_sym_if_statement_token1, - ACTIONS(1687), 1, + ACTIONS(2038), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2040), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2044), 1, + sym__escaped_string, + STATE(2076), 1, + sym__expression, + STATE(2490), 1, sym_object_access, - STATE(21), 1, + STATE(2984), 1, sym__decimal_literal, - STATE(1701), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2008), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2042), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(487), 2, + STATE(502), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2551), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2010), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2967), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2960), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -83455,80 +85171,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [29593] = 29, + [29974] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1951), 1, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(1953), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1955), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1957), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1959), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(1961), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(1963), 1, + ACTIONS(2058), 1, aux_sym_input_expression_token1, - ACTIONS(1965), 1, + ACTIONS(2060), 1, aux_sym_if_statement_token1, - ACTIONS(1967), 1, + ACTIONS(2062), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2438), 1, + STATE(2389), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(488), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(503), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -83545,80 +85262,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [29712] = 29, + [30095] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1951), 1, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(1953), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1955), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1957), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1959), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(1961), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(1963), 1, + ACTIONS(2058), 1, aux_sym_input_expression_token1, - ACTIONS(1965), 1, + ACTIONS(2060), 1, aux_sym_if_statement_token1, - ACTIONS(1967), 1, + ACTIONS(2062), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2508), 1, + STATE(2388), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(489), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(504), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -83635,80 +85353,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [29831] = 29, + [30216] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1951), 1, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(1953), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1955), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1957), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1959), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(1961), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(1963), 1, + ACTIONS(2058), 1, aux_sym_input_expression_token1, - ACTIONS(1965), 1, + ACTIONS(2060), 1, aux_sym_if_statement_token1, - ACTIONS(1967), 1, + ACTIONS(2062), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2504), 1, + STATE(2387), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(490), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(505), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -83725,80 +85444,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [29950] = 29, + [30337] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(2058), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(2060), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(2062), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2597), 1, + STATE(2385), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(491), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(506), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -83815,80 +85535,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [30069] = 29, + [30458] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1671), 1, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(1673), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1675), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1677), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1679), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(1681), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(1683), 1, + ACTIONS(2058), 1, aux_sym_input_expression_token1, - ACTIONS(1685), 1, + ACTIONS(2060), 1, aux_sym_if_statement_token1, - ACTIONS(1687), 1, + ACTIONS(2062), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1704), 1, + STATE(2384), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(492), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(507), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -83905,80 +85626,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [30188] = 29, + [30579] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, + ACTIONS(2058), 1, aux_sym_input_expression_token1, - ACTIONS(1719), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(2060), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(2062), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, - sym__escaped_string, - STATE(1364), 1, - sym__expression, - STATE(1896), 1, + STATE(15), 1, sym_object_access, - STATE(2582), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1693), 2, + STATE(2382), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(493), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(508), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -83995,80 +85717,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [30307] = 29, + [30700] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, - aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2714), 1, + STATE(1674), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(494), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(509), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -84085,80 +85808,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [30426] = 29, + [30821] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1671), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(1673), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1675), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1677), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1679), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(1681), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(1683), 1, - aux_sym_input_expression_token1, - ACTIONS(1685), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(1687), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2418), 1, + STATE(1673), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(495), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(510), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -84175,80 +85899,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [30545] = 29, + [30942] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, - aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2585), 1, + STATE(1672), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(496), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(511), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -84265,80 +85990,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [30664] = 29, + [31063] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1671), 1, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(1673), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1675), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1677), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1679), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(1681), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(1683), 1, + ACTIONS(2076), 1, aux_sym_input_expression_token1, - ACTIONS(1685), 1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(1687), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1749), 1, + STATE(1179), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(497), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(512), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -84355,80 +86081,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [30783] = 29, + [31184] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(1677), 1, + aux_sym_input_expression_token1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1520), 1, + STATE(2860), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(498), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(513), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -84445,80 +86172,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [30902] = 29, + [31305] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(1816), 1, + aux_sym_input_expression_token1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1521), 1, + STATE(2105), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(499), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(514), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -84535,80 +86263,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [31021] = 29, + [31426] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1154), 1, + STATE(2875), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(500), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(515), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -84625,170 +86354,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [31140] = 29, + [31547] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1987), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1989), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1995), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1997), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1999), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2003), 1, - aux_sym_unary_expression_token2, - ACTIONS(2005), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(2007), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(2009), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(2011), 1, - aux_sym_locked_expression_token1, - ACTIONS(2013), 1, - aux_sym_dataset_expression_token1, - ACTIONS(2015), 1, - aux_sym_input_expression_token1, - ACTIONS(2017), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(2019), 1, - aux_sym_if_statement_token1, - ACTIONS(2021), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(2023), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(2027), 1, + ACTIONS(691), 1, sym__escaped_string, - STATE(2143), 1, - sym__expression, - STATE(2453), 1, - sym_object_access, - STATE(2980), 1, - sym__decimal_literal, - ACTIONS(1991), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(2025), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(501), 2, - sym_comment, - sym_include, - ACTIONS(1993), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(2962), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(2927), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [31259] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1987), 1, - sym_identifier, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(1995), 1, - sym__integer_literal, - ACTIONS(1997), 1, - anon_sym_LBRACK, - ACTIONS(1999), 1, - anon_sym_LPAREN, - ACTIONS(2001), 1, - aux_sym_unary_expression_token1, - ACTIONS(2003), 1, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(2005), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2007), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2009), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2011), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(2013), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(2015), 1, + ACTIONS(2076), 1, aux_sym_input_expression_token1, - ACTIONS(2017), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2019), 1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(2021), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2023), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2027), 1, - sym__escaped_string, - STATE(2105), 1, - sym__expression, - STATE(2453), 1, + STATE(15), 1, sym_object_access, - STATE(2980), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1991), 2, + STATE(1202), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2025), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(502), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(516), 2, sym_comment, sym_include, - ACTIONS(1993), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2962), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2927), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -84805,80 +86445,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [31378] = 29, + [31668] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1987), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1989), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1995), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1997), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1999), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2003), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(709), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1722), 1, aux_sym_unary_expression_token2, - ACTIONS(2005), 1, + ACTIONS(1724), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2007), 1, + ACTIONS(1726), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2009), 1, + ACTIONS(1728), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2011), 1, + ACTIONS(1730), 1, aux_sym_locked_expression_token1, - ACTIONS(2013), 1, + ACTIONS(1732), 1, aux_sym_dataset_expression_token1, - ACTIONS(2015), 1, + ACTIONS(1734), 1, aux_sym_input_expression_token1, - ACTIONS(2017), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2019), 1, + ACTIONS(1736), 1, aux_sym_if_statement_token1, - ACTIONS(2021), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2023), 1, + ACTIONS(1738), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2027), 1, - sym__escaped_string, - STATE(2101), 1, - sym__expression, - STATE(2453), 1, + STATE(15), 1, sym_object_access, - STATE(2980), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1991), 2, + STATE(1459), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2025), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(503), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(517), 2, sym_comment, sym_include, - ACTIONS(1993), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2962), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2927), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -84895,80 +86536,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [31497] = 29, + [31789] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(2082), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(2084), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(2086), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(2088), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(2090), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(2092), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, + ACTIONS(2094), 1, aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(2096), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(2098), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1178), 1, + STATE(1234), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(504), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(518), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -84985,170 +86627,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [31616] = 29, + [31910] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1987), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1989), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1995), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1997), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1999), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2003), 1, - aux_sym_unary_expression_token2, - ACTIONS(2005), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(2007), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(2009), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(2011), 1, - aux_sym_locked_expression_token1, - ACTIONS(2013), 1, - aux_sym_dataset_expression_token1, - ACTIONS(2015), 1, - aux_sym_input_expression_token1, - ACTIONS(2017), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(2019), 1, - aux_sym_if_statement_token1, - ACTIONS(2021), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(2023), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(2027), 1, + ACTIONS(691), 1, sym__escaped_string, - STATE(2096), 1, - sym__expression, - STATE(2453), 1, - sym_object_access, - STATE(2980), 1, - sym__decimal_literal, - ACTIONS(1991), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(2025), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(505), 2, - sym_comment, - sym_include, - ACTIONS(1993), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(2962), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(2927), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [31735] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1987), 1, - sym_identifier, - ACTIONS(1989), 1, - anon_sym_LBRACE, - ACTIONS(1995), 1, - sym__integer_literal, - ACTIONS(1997), 1, - anon_sym_LBRACK, - ACTIONS(1999), 1, - anon_sym_LPAREN, - ACTIONS(2001), 1, - aux_sym_unary_expression_token1, - ACTIONS(2003), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(2005), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2007), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2009), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2011), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(2013), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(2015), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(2017), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2019), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(2021), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2023), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2027), 1, - sym__escaped_string, - STATE(2093), 1, - sym__expression, - STATE(2453), 1, + STATE(15), 1, sym_object_access, - STATE(2980), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1991), 2, + STATE(2114), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2025), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(506), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(519), 2, sym_comment, sym_include, - ACTIONS(1993), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2962), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2927), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -85165,80 +86718,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [31854] = 29, + [32031] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1987), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1989), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1995), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1997), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1999), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2003), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(2005), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2007), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2009), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2011), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(2013), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(2015), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(2017), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2019), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(2021), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2023), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2027), 1, - sym__escaped_string, - STATE(2092), 1, - sym__expression, - STATE(2453), 1, + STATE(15), 1, sym_object_access, - STATE(2980), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1991), 2, + STATE(2802), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2025), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(507), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(520), 2, sym_comment, sym_include, - ACTIONS(1993), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2962), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2927), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -85255,80 +86809,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [31973] = 29, + [32152] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(1816), 1, + aux_sym_input_expression_token1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1522), 1, + STATE(2133), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(508), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(521), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -85345,80 +86900,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [32092] = 29, + [32273] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2100), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2102), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2108), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2110), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2114), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(2116), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(2118), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(2120), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(2122), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(2124), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(2126), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + ACTIONS(2128), 1, + aux_sym_input_expression_token1, + ACTIONS(2130), 1, aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(2132), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, + ACTIONS(2134), 1, aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(2136), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, + ACTIONS(2140), 1, sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(2107), 1, + sym__expression, + STATE(2485), 1, sym_object_access, - STATE(21), 1, + STATE(2966), 1, sym__decimal_literal, - STATE(1523), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2104), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2138), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(509), 2, + STATE(522), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2558), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2106), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2947), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2959), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -85435,80 +86991,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [32211] = 29, + [32394] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2100), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2102), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2108), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2110), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2114), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(2116), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(2118), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(2120), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(2122), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(2124), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(2126), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + ACTIONS(2128), 1, + aux_sym_input_expression_token1, + ACTIONS(2130), 1, aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(2132), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, + ACTIONS(2134), 1, aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(2136), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, + ACTIONS(2140), 1, sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(2108), 1, + sym__expression, + STATE(2485), 1, sym_object_access, - STATE(21), 1, + STATE(2966), 1, sym__decimal_literal, - STATE(1524), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2104), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2138), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(510), 2, + STATE(523), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2558), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2106), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2947), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2959), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -85525,80 +87082,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [32330] = 29, + [32515] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2100), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2102), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2108), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2110), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2114), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(2116), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(2118), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(2120), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(2122), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(2124), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(2126), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + ACTIONS(2128), 1, + aux_sym_input_expression_token1, + ACTIONS(2130), 1, aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(2132), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, + ACTIONS(2134), 1, aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(2136), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, + ACTIONS(2140), 1, sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(2109), 1, + sym__expression, + STATE(2485), 1, sym_object_access, - STATE(21), 1, + STATE(2966), 1, sym__decimal_literal, - STATE(1525), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2104), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2138), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(511), 2, + STATE(524), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2558), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2106), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2947), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2959), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -85615,80 +87173,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [32449] = 29, + [32636] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(2100), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(2102), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(2108), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(2110), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2114), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(2116), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(2118), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(2120), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(2122), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(2124), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(2126), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(2128), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(2130), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(2132), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(2134), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(2136), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(2140), 1, sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, - STATE(972), 1, + STATE(2110), 1, sym__expression, - STATE(1039), 1, + STATE(2485), 1, sym_object_access, - STATE(1075), 1, + STATE(2966), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(2104), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(2138), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(512), 2, + STATE(525), 2, sym_comment, sym_include, - ACTIONS(782), 4, + STATE(2558), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2106), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(2947), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(2959), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -85705,147 +87264,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [32568] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(119), 1, - aux_sym_variable_tuning_token2, - STATE(513), 2, - sym_comment, - sym_include, - ACTIONS(117), 54, - sym__namedot, - anon_sym_COLON, - sym__terminator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_unary_expression_token2, - aux_sym_input_expression_token2, - anon_sym_EQ, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_serialization_tuning_token1, - aux_sym_function_call_token1, - aux_sym_property_type_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_tuning_token1, - aux_sym_data_relation_token1, - aux_sym_data_relation_token2, - aux_sym_using_statement_token1, - aux_sym_using_statement_token2, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_on_error_phrase_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_of_token1, - aux_sym_using_token1, - aux_sym_field_option_token1, - aux_sym_field_option_token2, - aux_sym_field_option_token3, - aux_sym_field_option_token4, - aux_sym_field_option_token5, - aux_sym_field_option_token6, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - aux_sym_prompt_for_statement_token2, - [32641] = 29, + [32757] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2100), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2102), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2108), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2110), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2114), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(2116), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(2118), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(2120), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(2122), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(2124), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(2126), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + ACTIONS(2128), 1, + aux_sym_input_expression_token1, + ACTIONS(2130), 1, aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(2132), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, + ACTIONS(2134), 1, aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(2136), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, + ACTIONS(2140), 1, sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(2115), 1, + sym__expression, + STATE(2485), 1, sym_object_access, - STATE(21), 1, + STATE(2966), 1, sym__decimal_literal, - STATE(2653), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2104), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2138), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(514), 2, + STATE(526), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2558), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2106), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2947), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2959), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -85862,80 +87355,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [32760] = 29, + [32878] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1733), 1, + ACTIONS(2142), 1, aux_sym_unary_expression_token2, - ACTIONS(1735), 1, + ACTIONS(2144), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1737), 1, + ACTIONS(2146), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1739), 1, + ACTIONS(2148), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1741), 1, + ACTIONS(2150), 1, aux_sym_locked_expression_token1, - ACTIONS(1743), 1, + ACTIONS(2152), 1, aux_sym_dataset_expression_token1, - ACTIONS(1745), 1, + ACTIONS(2154), 1, aux_sym_input_expression_token1, - ACTIONS(1747), 1, + ACTIONS(2156), 1, aux_sym_if_statement_token1, - ACTIONS(1749), 1, + ACTIONS(2158), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1475), 1, + STATE(2468), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(515), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(527), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -85952,146 +87446,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [32879] = 5, + [32999] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(516), 2, - sym_comment, - sym_include, - ACTIONS(138), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(140), 53, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(2100), 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, + ACTIONS(2102), 1, + anon_sym_LBRACE, + ACTIONS(2108), 1, sym__integer_literal, - sym_date_literal, + ACTIONS(2110), 1, anon_sym_LBRACK, + ACTIONS(2112), 1, anon_sym_LPAREN, + ACTIONS(2114), 1, aux_sym_unary_expression_token1, + ACTIONS(2116), 1, aux_sym_unary_expression_token2, + ACTIONS(2118), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(2120), 1, aux_sym_temp_table_expression_token1, + ACTIONS(2122), 1, aux_sym_current_changed_expression_token1, + ACTIONS(2124), 1, aux_sym_locked_expression_token1, + ACTIONS(2126), 1, aux_sym_dataset_expression_token1, + ACTIONS(2128), 1, aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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(2130), 1, aux_sym_scope_tuning_token1, - aux_sym_function_call_token1, + ACTIONS(2132), 1, aux_sym_if_statement_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, + ACTIONS(2134), 1, aux_sym_can_find_expression_token1, + ACTIONS(2136), 1, aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [32950] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, - anon_sym_LBRACE, - ACTIONS(648), 1, - sym__integer_literal, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, - aux_sym_unary_expression_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(2140), 1, sym__escaped_string, - ACTIONS(704), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1653), 1, - aux_sym_unary_expression_token2, - ACTIONS(1655), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(1657), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(1659), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(1661), 1, - aux_sym_locked_expression_token1, - ACTIONS(1663), 1, - aux_sym_dataset_expression_token1, - ACTIONS(1665), 1, - aux_sym_input_expression_token1, - ACTIONS(1667), 1, - aux_sym_if_statement_token1, - ACTIONS(1669), 1, - aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(2129), 1, + sym__expression, + STATE(2485), 1, sym_object_access, - STATE(21), 1, + STATE(2966), 1, sym__decimal_literal, - STATE(1433), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2104), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2138), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(517), 2, + STATE(528), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2558), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2106), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2947), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2959), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -86108,80 +87537,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [33069] = 29, + [33120] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(678), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(704), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1653), 1, + ACTIONS(1641), 1, aux_sym_unary_expression_token2, - ACTIONS(1655), 1, + ACTIONS(1643), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1657), 1, + ACTIONS(1645), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1659), 1, + ACTIONS(1647), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1661), 1, + ACTIONS(1649), 1, aux_sym_locked_expression_token1, - ACTIONS(1663), 1, + ACTIONS(1651), 1, aux_sym_dataset_expression_token1, - ACTIONS(1665), 1, + ACTIONS(1653), 1, aux_sym_input_expression_token1, - ACTIONS(1667), 1, + ACTIONS(1655), 1, aux_sym_if_statement_token1, - ACTIONS(1669), 1, + ACTIONS(1657), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1431), 1, + STATE(2374), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(518), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(529), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -86198,80 +87628,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [33188] = 29, + [33241] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1641), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(1643), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(1645), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(1647), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(1649), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(1651), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(1653), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, - aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(1655), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, - aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(1657), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, - sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, - STATE(975), 1, - sym__expression, - STATE(1039), 1, + STATE(15), 1, sym_object_access, - STATE(1075), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(780), 2, + STATE(2373), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(519), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(530), 2, sym_comment, sym_include, - ACTIONS(782), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -86288,80 +87719,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [33307] = 29, + [33362] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1641), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(1643), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(1645), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(1647), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(1649), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(1651), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(1653), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, - aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(1655), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, - aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(1657), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, - sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, - STATE(1008), 1, - sym__expression, - STATE(1039), 1, + STATE(15), 1, sym_object_access, - STATE(1075), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(780), 2, + STATE(2372), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(520), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(531), 2, sym_comment, sym_include, - ACTIONS(782), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -86378,80 +87810,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [33426] = 29, + [33483] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1623), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(1625), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(1627), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(1629), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(1631), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(1633), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(1635), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, - aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(1637), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, - aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(1639), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, - sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, - STATE(998), 1, - sym__expression, - STATE(1039), 1, + STATE(15), 1, sym_object_access, - STATE(1075), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(780), 2, + STATE(1511), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(521), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(532), 2, sym_comment, sym_include, - ACTIONS(782), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -86468,80 +87901,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [33545] = 29, + [33604] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1641), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(1643), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(1645), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(1647), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(1649), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(1651), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(1653), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, - aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(1655), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, - aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(1657), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, - sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, - STATE(973), 1, - sym__expression, - STATE(1039), 1, + STATE(15), 1, sym_object_access, - STATE(1075), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(780), 2, + STATE(2370), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(522), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(533), 2, sym_comment, sym_include, - ACTIONS(782), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -86558,80 +87992,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [33664] = 29, + [33725] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1869), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1877), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1883), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2082), 1, aux_sym_unary_expression_token2, - ACTIONS(1885), 1, + ACTIONS(2084), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1887), 1, + ACTIONS(2086), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1889), 1, + ACTIONS(2088), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1891), 1, + ACTIONS(2090), 1, aux_sym_locked_expression_token1, - ACTIONS(1893), 1, + ACTIONS(2092), 1, aux_sym_dataset_expression_token1, - ACTIONS(1895), 1, + ACTIONS(2094), 1, aux_sym_input_expression_token1, - ACTIONS(1897), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1899), 1, + ACTIONS(2096), 1, aux_sym_if_statement_token1, - ACTIONS(1901), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1903), 1, + ACTIONS(2098), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1907), 1, - sym__escaped_string, - STATE(185), 1, + STATE(15), 1, sym_object_access, - STATE(277), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1107), 1, + STATE(1226), 1, sym__expression, - ACTIONS(1871), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1905), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(523), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(534), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(251), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(254), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -86648,80 +88083,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [33783] = 29, + [33846] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1869), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1877), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1883), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1641), 1, aux_sym_unary_expression_token2, - ACTIONS(1885), 1, + ACTIONS(1643), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1887), 1, + ACTIONS(1645), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1889), 1, + ACTIONS(1647), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1891), 1, + ACTIONS(1649), 1, aux_sym_locked_expression_token1, - ACTIONS(1893), 1, + ACTIONS(1651), 1, aux_sym_dataset_expression_token1, - ACTIONS(1895), 1, + ACTIONS(1653), 1, aux_sym_input_expression_token1, - ACTIONS(1897), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1899), 1, + ACTIONS(1655), 1, aux_sym_if_statement_token1, - ACTIONS(1901), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1903), 1, + ACTIONS(1657), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1907), 1, - sym__escaped_string, - STATE(185), 1, + STATE(15), 1, sym_object_access, - STATE(277), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1106), 1, + STATE(2369), 1, sym__expression, - ACTIONS(1871), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1905), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(524), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(535), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(251), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(254), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -86738,80 +88174,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [33902] = 29, + [33967] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1869), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1877), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1883), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1704), 1, aux_sym_unary_expression_token2, - ACTIONS(1885), 1, + ACTIONS(1706), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1887), 1, + ACTIONS(1708), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1889), 1, + ACTIONS(1710), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1891), 1, + ACTIONS(1712), 1, aux_sym_locked_expression_token1, - ACTIONS(1893), 1, + ACTIONS(1714), 1, aux_sym_dataset_expression_token1, - ACTIONS(1895), 1, + ACTIONS(1716), 1, aux_sym_input_expression_token1, - ACTIONS(1897), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1899), 1, + ACTIONS(1718), 1, aux_sym_if_statement_token1, - ACTIONS(1901), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1903), 1, + ACTIONS(1720), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1907), 1, - sym__escaped_string, - STATE(185), 1, + STATE(15), 1, sym_object_access, - STATE(277), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1105), 1, + STATE(2839), 1, sym__expression, - ACTIONS(1871), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1905), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(525), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(536), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(251), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(254), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -86828,80 +88265,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [34021] = 29, + [34088] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1869), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1877), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1883), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2082), 1, aux_sym_unary_expression_token2, - ACTIONS(1885), 1, + ACTIONS(2084), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1887), 1, + ACTIONS(2086), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1889), 1, + ACTIONS(2088), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1891), 1, + ACTIONS(2090), 1, aux_sym_locked_expression_token1, - ACTIONS(1893), 1, + ACTIONS(2092), 1, aux_sym_dataset_expression_token1, - ACTIONS(1895), 1, + ACTIONS(2094), 1, aux_sym_input_expression_token1, - ACTIONS(1897), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1899), 1, + ACTIONS(2096), 1, aux_sym_if_statement_token1, - ACTIONS(1901), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1903), 1, + ACTIONS(2098), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1907), 1, - sym__escaped_string, - STATE(185), 1, + STATE(15), 1, sym_object_access, - STATE(277), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1104), 1, + STATE(1235), 1, sym__expression, - ACTIONS(1871), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1905), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(526), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(537), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(251), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(254), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -86918,80 +88356,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [34140] = 29, + [34209] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1869), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1877), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1883), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2082), 1, aux_sym_unary_expression_token2, - ACTIONS(1885), 1, + ACTIONS(2084), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1887), 1, + ACTIONS(2086), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1889), 1, + ACTIONS(2088), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1891), 1, + ACTIONS(2090), 1, aux_sym_locked_expression_token1, - ACTIONS(1893), 1, + ACTIONS(2092), 1, aux_sym_dataset_expression_token1, - ACTIONS(1895), 1, + ACTIONS(2094), 1, aux_sym_input_expression_token1, - ACTIONS(1897), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1899), 1, + ACTIONS(2096), 1, aux_sym_if_statement_token1, - ACTIONS(1901), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1903), 1, + ACTIONS(2098), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1907), 1, - sym__escaped_string, - STATE(185), 1, + STATE(15), 1, sym_object_access, - STATE(277), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1129), 1, + STATE(1238), 1, sym__expression, - ACTIONS(1871), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1905), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(527), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(538), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(251), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(254), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -87008,80 +88447,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [34259] = 29, + [34330] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1869), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1877), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1883), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1885), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1887), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1889), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1891), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1893), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1895), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1897), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1899), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1901), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1903), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1907), 1, - sym__escaped_string, - STATE(185), 1, + STATE(15), 1, sym_object_access, - STATE(277), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1117), 1, + STATE(2828), 1, sym__expression, - ACTIONS(1871), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1905), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(528), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(539), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(251), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(254), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -87098,80 +88538,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [34378] = 29, + [34451] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2029), 1, + ACTIONS(2082), 1, aux_sym_unary_expression_token2, - ACTIONS(2031), 1, + ACTIONS(2084), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2033), 1, + ACTIONS(2086), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2035), 1, + ACTIONS(2088), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2037), 1, + ACTIONS(2090), 1, aux_sym_locked_expression_token1, - ACTIONS(2039), 1, + ACTIONS(2092), 1, aux_sym_dataset_expression_token1, - ACTIONS(2041), 1, + ACTIONS(2094), 1, aux_sym_input_expression_token1, - ACTIONS(2043), 1, + ACTIONS(2096), 1, aux_sym_if_statement_token1, - ACTIONS(2045), 1, + ACTIONS(2098), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1668), 1, + STATE(1239), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(529), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(540), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -87188,80 +88629,263 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [34572] = 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(653), 1, + sym__integer_literal, + ACTIONS(655), 1, + anon_sym_LBRACK, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + aux_sym_unary_expression_token1, + ACTIONS(663), 1, + aux_sym_unary_expression_token2, + ACTIONS(665), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(667), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(669), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(671), 1, + aux_sym_locked_expression_token1, + ACTIONS(673), 1, + aux_sym_dataset_expression_token1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, + aux_sym_if_statement_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, + sym_object_access, + STATE(43), 1, + sym__decimal_literal, + STATE(1628), 1, + sym__expression, + ACTIONS(649), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(689), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(13), 2, sym_function_call, + sym_new_expression, + STATE(541), 2, + sym_comment, + sym_include, + ACTIONS(651), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(29), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(30), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [34693] = 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(653), 1, + sym__integer_literal, + ACTIONS(655), 1, + anon_sym_LBRACK, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + aux_sym_unary_expression_token1, + ACTIONS(663), 1, + aux_sym_unary_expression_token2, + ACTIONS(665), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(667), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(669), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(671), 1, + aux_sym_locked_expression_token1, + ACTIONS(673), 1, + aux_sym_dataset_expression_token1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, + aux_sym_if_statement_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, + sym_object_access, + STATE(43), 1, + sym__decimal_literal, + STATE(1627), 1, + sym__expression, + ACTIONS(649), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(689), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(13), 2, + sym_function_call, sym_new_expression, + STATE(542), 2, + sym_comment, + sym_include, + ACTIONS(651), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(29), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(30), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [34497] = 29, + [34814] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2029), 1, + ACTIONS(2082), 1, aux_sym_unary_expression_token2, - ACTIONS(2031), 1, + ACTIONS(2084), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2033), 1, + ACTIONS(2086), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2035), 1, + ACTIONS(2088), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2037), 1, + ACTIONS(2090), 1, aux_sym_locked_expression_token1, - ACTIONS(2039), 1, + ACTIONS(2092), 1, aux_sym_dataset_expression_token1, - ACTIONS(2041), 1, + ACTIONS(2094), 1, aux_sym_input_expression_token1, - ACTIONS(2043), 1, + ACTIONS(2096), 1, aux_sym_if_statement_token1, - ACTIONS(2045), 1, + ACTIONS(2098), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1675), 1, + STATE(1227), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(530), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(543), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -87278,80 +88902,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [34616] = 29, + [34935] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2029), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(2031), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2033), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2035), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2037), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(2039), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(2041), 1, - aux_sym_input_expression_token1, - ACTIONS(2043), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(2045), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1676), 1, + STATE(1626), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(531), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(544), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -87368,80 +88993,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [34735] = 29, + [35056] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(859), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(861), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(869), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(871), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(877), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2029), 1, + ACTIONS(879), 1, aux_sym_unary_expression_token2, - ACTIONS(2031), 1, + ACTIONS(881), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2033), 1, + ACTIONS(883), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2035), 1, + ACTIONS(885), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2037), 1, + ACTIONS(887), 1, aux_sym_locked_expression_token1, - ACTIONS(2039), 1, + ACTIONS(889), 1, aux_sym_dataset_expression_token1, - ACTIONS(2041), 1, + ACTIONS(891), 1, aux_sym_input_expression_token1, - ACTIONS(2043), 1, + ACTIONS(893), 1, + aux_sym_scope_tuning_token1, + ACTIONS(895), 1, aux_sym_if_statement_token1, - ACTIONS(2045), 1, + ACTIONS(897), 1, + aux_sym_can_find_expression_token1, + ACTIONS(899), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(903), 1, + sym__escaped_string, + STATE(245), 1, + sym__expression, + STATE(668), 1, sym_object_access, - STATE(21), 1, + STATE(1000), 1, sym__decimal_literal, - STATE(1677), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(865), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(901), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(532), 2, + STATE(355), 2, + sym_function_call, + sym_new_expression, + STATE(545), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(867), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1014), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(997), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -87458,80 +89084,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [34854] = 29, + [35177] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(859), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(861), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(869), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(871), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(877), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2029), 1, + ACTIONS(879), 1, aux_sym_unary_expression_token2, - ACTIONS(2031), 1, + ACTIONS(881), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2033), 1, + ACTIONS(883), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2035), 1, + ACTIONS(885), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2037), 1, + ACTIONS(887), 1, aux_sym_locked_expression_token1, - ACTIONS(2039), 1, + ACTIONS(889), 1, aux_sym_dataset_expression_token1, - ACTIONS(2041), 1, + ACTIONS(891), 1, aux_sym_input_expression_token1, - ACTIONS(2043), 1, + ACTIONS(893), 1, + aux_sym_scope_tuning_token1, + ACTIONS(895), 1, aux_sym_if_statement_token1, - ACTIONS(2045), 1, + ACTIONS(897), 1, + aux_sym_can_find_expression_token1, + ACTIONS(899), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(903), 1, + sym__escaped_string, + STATE(246), 1, + sym__expression, + STATE(668), 1, sym_object_access, - STATE(21), 1, + STATE(1000), 1, sym__decimal_literal, - STATE(1683), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(865), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(901), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(533), 2, + STATE(355), 2, + sym_function_call, + sym_new_expression, + STATE(546), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(867), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1014), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(997), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -87548,80 +89175,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [34973] = 29, + [35298] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(859), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(861), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(869), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(871), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(877), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2029), 1, + ACTIONS(879), 1, aux_sym_unary_expression_token2, - ACTIONS(2031), 1, + ACTIONS(881), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2033), 1, + ACTIONS(883), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2035), 1, + ACTIONS(885), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2037), 1, + ACTIONS(887), 1, aux_sym_locked_expression_token1, - ACTIONS(2039), 1, + ACTIONS(889), 1, aux_sym_dataset_expression_token1, - ACTIONS(2041), 1, + ACTIONS(891), 1, aux_sym_input_expression_token1, - ACTIONS(2043), 1, + ACTIONS(893), 1, + aux_sym_scope_tuning_token1, + ACTIONS(895), 1, aux_sym_if_statement_token1, - ACTIONS(2045), 1, + ACTIONS(897), 1, + aux_sym_can_find_expression_token1, + ACTIONS(899), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(903), 1, + sym__escaped_string, + STATE(247), 1, + sym__expression, + STATE(668), 1, sym_object_access, - STATE(21), 1, + STATE(1000), 1, sym__decimal_literal, - STATE(1685), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(865), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(901), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(534), 2, + STATE(355), 2, + sym_function_call, + sym_new_expression, + STATE(547), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(867), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1014), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(997), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -87638,80 +89266,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [35092] = 29, + [35419] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(859), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(861), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(869), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(871), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(873), 1, + anon_sym_LPAREN, + ACTIONS(877), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(879), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(881), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(883), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(885), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(887), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(889), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(891), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(893), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(895), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(897), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(899), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(903), 1, sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, - STATE(974), 1, + STATE(248), 1, sym__expression, - STATE(1039), 1, + STATE(668), 1, sym_object_access, - STATE(1075), 1, + STATE(1000), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(865), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(901), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(535), 2, + STATE(355), 2, + sym_function_call, + sym_new_expression, + STATE(548), 2, sym_comment, sym_include, - ACTIONS(782), 4, + ACTIONS(867), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(1014), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(997), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -87728,80 +89357,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [35211] = 29, + [35540] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(859), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(861), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(869), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(871), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(877), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(879), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(881), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(883), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(885), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(887), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(889), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(891), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(893), 1, + aux_sym_scope_tuning_token1, + ACTIONS(895), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(897), 1, + aux_sym_can_find_expression_token1, + ACTIONS(899), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(903), 1, + sym__escaped_string, + STATE(249), 1, + sym__expression, + STATE(668), 1, sym_object_access, - STATE(21), 1, + STATE(1000), 1, sym__decimal_literal, - STATE(2652), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(865), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(901), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(536), 2, + STATE(355), 2, + sym_function_call, + sym_new_expression, + STATE(549), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(867), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1014), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(997), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -87818,80 +89448,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [35330] = 29, + [35661] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(859), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(861), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(869), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(871), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(877), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(879), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(881), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(883), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(885), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(887), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(889), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(891), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(893), 1, + aux_sym_scope_tuning_token1, + ACTIONS(895), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(897), 1, + aux_sym_can_find_expression_token1, + ACTIONS(899), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(903), 1, + sym__escaped_string, + STATE(250), 1, + sym__expression, + STATE(668), 1, sym_object_access, - STATE(21), 1, + STATE(1000), 1, sym__decimal_literal, - STATE(2737), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(865), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(901), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(537), 2, + STATE(355), 2, + sym_function_call, + sym_new_expression, + STATE(550), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(867), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1014), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(997), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -87908,80 +89539,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [35449] = 29, + [35782] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1671), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(1673), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1675), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1677), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1679), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(1681), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(1683), 1, - aux_sym_input_expression_token1, - ACTIONS(1685), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(1687), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1758), 1, + STATE(1625), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(538), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(551), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -87998,80 +89630,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [35568] = 29, + [35903] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2047), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(2049), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2051), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2053), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2055), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(2057), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(2059), 1, - aux_sym_input_expression_token1, - ACTIONS(2061), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(2063), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1383), 1, + STATE(1624), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(539), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(552), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -88088,80 +89721,172 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [35687] = 29, + [36024] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(663), 1, + aux_sym_unary_expression_token2, + ACTIONS(665), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(667), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(669), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(671), 1, + aux_sym_locked_expression_token1, + ACTIONS(673), 1, + aux_sym_dataset_expression_token1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(681), 1, + aux_sym_if_statement_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(687), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2047), 1, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, + sym_object_access, + STATE(43), 1, + sym__decimal_literal, + STATE(1623), 1, + sym__expression, + ACTIONS(649), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(689), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(553), 2, + sym_comment, + sym_include, + ACTIONS(651), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(29), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(30), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [36145] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1742), 1, + sym_identifier, + ACTIONS(1744), 1, + anon_sym_LBRACE, + ACTIONS(1750), 1, + sym__integer_literal, + ACTIONS(1752), 1, + anon_sym_LBRACK, + ACTIONS(1754), 1, + anon_sym_LPAREN, + ACTIONS(1756), 1, + aux_sym_unary_expression_token1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(2049), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2051), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2053), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2055), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(2057), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(2059), 1, + ACTIONS(1770), 1, aux_sym_input_expression_token1, - ACTIONS(2061), 1, + ACTIONS(1772), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(2063), 1, + ACTIONS(1776), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1782), 1, + sym__escaped_string, + STATE(1391), 1, + sym__expression, + STATE(2002), 1, sym_object_access, - STATE(21), 1, + STATE(2748), 1, sym__decimal_literal, - STATE(1385), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(540), 2, + STATE(554), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -88178,80 +89903,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [35806] = 29, + [36266] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2047), 1, + ACTIONS(1704), 1, aux_sym_unary_expression_token2, - ACTIONS(2049), 1, + ACTIONS(1706), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2051), 1, + ACTIONS(1708), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2053), 1, + ACTIONS(1710), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2055), 1, + ACTIONS(1712), 1, aux_sym_locked_expression_token1, - ACTIONS(2057), 1, + ACTIONS(1714), 1, aux_sym_dataset_expression_token1, - ACTIONS(2059), 1, + ACTIONS(1716), 1, aux_sym_input_expression_token1, - ACTIONS(2061), 1, + ACTIONS(1718), 1, aux_sym_if_statement_token1, - ACTIONS(2063), 1, + ACTIONS(1720), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1394), 1, + STATE(2837), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(541), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(555), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -88268,80 +89994,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [35925] = 29, + [36387] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2047), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(2049), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2051), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2053), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2055), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(2057), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(2059), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(2061), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(2063), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1401), 1, + STATE(2460), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(542), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(556), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -88358,260 +90085,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [36044] = 29, + [36508] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2047), 1, + ACTIONS(2160), 1, aux_sym_unary_expression_token2, - ACTIONS(2049), 1, + ACTIONS(2162), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2051), 1, + ACTIONS(2164), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2053), 1, + ACTIONS(2166), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2055), 1, + ACTIONS(2168), 1, aux_sym_locked_expression_token1, - ACTIONS(2057), 1, + ACTIONS(2170), 1, aux_sym_dataset_expression_token1, - ACTIONS(2059), 1, + ACTIONS(2172), 1, aux_sym_input_expression_token1, - ACTIONS(2061), 1, + ACTIONS(2174), 1, aux_sym_if_statement_token1, - ACTIONS(2063), 1, + ACTIONS(2176), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1407), 1, + STATE(1457), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(543), 2, - sym_comment, - sym_include, - ACTIONS(646), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(40), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(25), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, + STATE(13), 2, sym_function_call, - sym_ternary_expression, sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [36163] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(2065), 1, - sym_identifier, - ACTIONS(2067), 1, - anon_sym_LBRACE, - ACTIONS(2073), 1, - sym__integer_literal, - ACTIONS(2075), 1, - anon_sym_LBRACK, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2079), 1, - aux_sym_unary_expression_token1, - ACTIONS(2081), 1, - aux_sym_unary_expression_token2, - ACTIONS(2083), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(2085), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(2087), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(2089), 1, - aux_sym_locked_expression_token1, - ACTIONS(2091), 1, - aux_sym_dataset_expression_token1, - ACTIONS(2093), 1, - aux_sym_input_expression_token1, - ACTIONS(2095), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2097), 1, - aux_sym_if_statement_token1, - ACTIONS(2099), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2101), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(2105), 1, - sym__escaped_string, - STATE(2005), 1, - sym__expression, - STATE(2444), 1, - sym_object_access, - STATE(2909), 1, - sym__decimal_literal, - ACTIONS(2069), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(2103), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(544), 2, - sym_comment, - sym_include, - ACTIONS(2071), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(2944), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(2945), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [36282] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(2065), 1, - sym_identifier, - ACTIONS(2067), 1, - anon_sym_LBRACE, - ACTIONS(2073), 1, - sym__integer_literal, - ACTIONS(2075), 1, - anon_sym_LBRACK, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(2079), 1, - aux_sym_unary_expression_token1, - ACTIONS(2081), 1, - aux_sym_unary_expression_token2, - ACTIONS(2083), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(2085), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(2087), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(2089), 1, - aux_sym_locked_expression_token1, - ACTIONS(2091), 1, - aux_sym_dataset_expression_token1, - ACTIONS(2093), 1, - aux_sym_input_expression_token1, - ACTIONS(2095), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2097), 1, - aux_sym_if_statement_token1, - ACTIONS(2099), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2101), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(2105), 1, - sym__escaped_string, - STATE(2007), 1, - sym__expression, - STATE(2444), 1, - sym_object_access, - STATE(2909), 1, - sym__decimal_literal, - ACTIONS(2069), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(2103), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(545), 2, + STATE(557), 2, sym_comment, sym_include, - ACTIONS(2071), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2944), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2945), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -88628,80 +90176,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [36401] = 29, + [36629] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2728), 1, + STATE(2149), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(546), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(558), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -88718,80 +90267,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [36520] = 29, + [36750] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, - anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(1719), 1, + ACTIONS(813), 1, aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, + ACTIONS(817), 1, aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, + ACTIONS(831), 1, sym__escaped_string, - STATE(1375), 1, + ACTIONS(1447), 1, + anon_sym_LPAREN, + STATE(991), 1, sym__expression, - STATE(1896), 1, + STATE(1065), 1, sym_object_access, - STATE(2582), 1, + STATE(1125), 1, sym__decimal_literal, - ACTIONS(1693), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(547), 2, + STATE(559), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -88808,80 +90358,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [36639] = 29, + [36871] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2065), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(2067), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(2073), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(2075), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(2077), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(2079), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(2081), 1, + ACTIONS(1978), 1, aux_sym_unary_expression_token2, - ACTIONS(2083), 1, + ACTIONS(1980), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2085), 1, + ACTIONS(1982), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2087), 1, + ACTIONS(1984), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2089), 1, + ACTIONS(1986), 1, aux_sym_locked_expression_token1, - ACTIONS(2091), 1, + ACTIONS(1988), 1, aux_sym_dataset_expression_token1, - ACTIONS(2093), 1, + ACTIONS(1990), 1, aux_sym_input_expression_token1, - ACTIONS(2095), 1, + ACTIONS(1992), 1, aux_sym_scope_tuning_token1, - ACTIONS(2097), 1, + ACTIONS(1994), 1, aux_sym_if_statement_token1, - ACTIONS(2099), 1, + ACTIONS(1996), 1, aux_sym_can_find_expression_token1, - ACTIONS(2101), 1, + ACTIONS(1998), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2105), 1, + ACTIONS(2002), 1, sym__escaped_string, - STATE(2008), 1, - sym__expression, - STATE(2444), 1, + STATE(193), 1, sym_object_access, - STATE(2909), 1, + STATE(311), 1, sym__decimal_literal, - ACTIONS(2069), 2, + STATE(1153), 1, + sym__expression, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(2103), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(548), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(560), 2, sym_comment, sym_include, - ACTIONS(2071), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2944), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2945), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -88898,80 +90449,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [36758] = 29, + [36992] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2065), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(2067), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(2073), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(2075), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(2077), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(2079), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(2081), 1, + ACTIONS(1978), 1, aux_sym_unary_expression_token2, - ACTIONS(2083), 1, + ACTIONS(1980), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2085), 1, + ACTIONS(1982), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2087), 1, + ACTIONS(1984), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2089), 1, + ACTIONS(1986), 1, aux_sym_locked_expression_token1, - ACTIONS(2091), 1, + ACTIONS(1988), 1, aux_sym_dataset_expression_token1, - ACTIONS(2093), 1, + ACTIONS(1990), 1, aux_sym_input_expression_token1, - ACTIONS(2095), 1, + ACTIONS(1992), 1, aux_sym_scope_tuning_token1, - ACTIONS(2097), 1, + ACTIONS(1994), 1, aux_sym_if_statement_token1, - ACTIONS(2099), 1, + ACTIONS(1996), 1, aux_sym_can_find_expression_token1, - ACTIONS(2101), 1, + ACTIONS(1998), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2105), 1, + ACTIONS(2002), 1, sym__escaped_string, - STATE(2010), 1, - sym__expression, - STATE(2444), 1, + STATE(193), 1, sym_object_access, - STATE(2909), 1, + STATE(311), 1, sym__decimal_literal, - ACTIONS(2069), 2, + STATE(1156), 1, + sym__expression, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(2103), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(549), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(561), 2, sym_comment, sym_include, - ACTIONS(2071), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2944), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2945), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -88988,80 +90540,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [36877] = 29, + [37113] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2065), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(2067), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(2073), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(2075), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(2077), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(2079), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(2081), 1, + ACTIONS(1978), 1, aux_sym_unary_expression_token2, - ACTIONS(2083), 1, + ACTIONS(1980), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2085), 1, + ACTIONS(1982), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2087), 1, + ACTIONS(1984), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2089), 1, + ACTIONS(1986), 1, aux_sym_locked_expression_token1, - ACTIONS(2091), 1, + ACTIONS(1988), 1, aux_sym_dataset_expression_token1, - ACTIONS(2093), 1, + ACTIONS(1990), 1, aux_sym_input_expression_token1, - ACTIONS(2095), 1, + ACTIONS(1992), 1, aux_sym_scope_tuning_token1, - ACTIONS(2097), 1, + ACTIONS(1994), 1, aux_sym_if_statement_token1, - ACTIONS(2099), 1, + ACTIONS(1996), 1, aux_sym_can_find_expression_token1, - ACTIONS(2101), 1, + ACTIONS(1998), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2105), 1, + ACTIONS(2002), 1, sym__escaped_string, - STATE(2011), 1, - sym__expression, - STATE(2444), 1, + STATE(193), 1, sym_object_access, - STATE(2909), 1, + STATE(311), 1, sym__decimal_literal, - ACTIONS(2069), 2, + STATE(1160), 1, + sym__expression, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(2103), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(550), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(562), 2, sym_comment, sym_include, - ACTIONS(2071), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2944), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2945), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -89078,80 +90631,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [36996] = 29, + [37234] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2065), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(2067), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(2073), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(2075), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(2077), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(2079), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(2081), 1, + ACTIONS(1978), 1, aux_sym_unary_expression_token2, - ACTIONS(2083), 1, + ACTIONS(1980), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2085), 1, + ACTIONS(1982), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2087), 1, + ACTIONS(1984), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2089), 1, + ACTIONS(1986), 1, aux_sym_locked_expression_token1, - ACTIONS(2091), 1, + ACTIONS(1988), 1, aux_sym_dataset_expression_token1, - ACTIONS(2093), 1, + ACTIONS(1990), 1, aux_sym_input_expression_token1, - ACTIONS(2095), 1, + ACTIONS(1992), 1, aux_sym_scope_tuning_token1, - ACTIONS(2097), 1, + ACTIONS(1994), 1, aux_sym_if_statement_token1, - ACTIONS(2099), 1, + ACTIONS(1996), 1, aux_sym_can_find_expression_token1, - ACTIONS(2101), 1, + ACTIONS(1998), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2105), 1, + ACTIONS(2002), 1, sym__escaped_string, - STATE(2015), 1, - sym__expression, - STATE(2444), 1, + STATE(193), 1, sym_object_access, - STATE(2909), 1, + STATE(311), 1, sym__decimal_literal, - ACTIONS(2069), 2, + STATE(1128), 1, + sym__expression, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(2103), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(551), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(563), 2, sym_comment, sym_include, - ACTIONS(2071), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2944), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2945), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -89168,80 +90722,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [37115] = 29, + [37355] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1978), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1980), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1982), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1984), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1986), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1988), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1990), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1992), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1994), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1996), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1998), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2002), 1, + sym__escaped_string, + STATE(193), 1, sym_object_access, - STATE(21), 1, + STATE(311), 1, sym__decimal_literal, - STATE(2529), 1, + STATE(1151), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(552), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(564), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -89258,80 +90813,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [37234] = 29, + [37476] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, + ACTIONS(2076), 1, aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1292), 1, + STATE(1198), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(553), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(565), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -89348,80 +90904,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [37353] = 29, + [37597] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(2076), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2586), 1, + STATE(1199), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(554), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(566), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -89438,170 +90995,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [37472] = 29, + [37718] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2107), 1, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(2109), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2111), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2113), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2115), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(2117), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(2119), 1, + ACTIONS(2076), 1, aux_sym_input_expression_token1, - ACTIONS(2121), 1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(2123), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2478), 1, + STATE(1205), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(555), 2, - sym_comment, - sym_include, - ACTIONS(646), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(40), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(25), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, + STATE(13), 2, sym_function_call, - sym_ternary_expression, sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [37591] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, - anon_sym_LBRACE, - ACTIONS(648), 1, - sym__integer_literal, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, - aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2107), 1, - aux_sym_unary_expression_token2, - ACTIONS(2109), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(2111), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(2113), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(2115), 1, - aux_sym_locked_expression_token1, - ACTIONS(2117), 1, - aux_sym_dataset_expression_token1, - ACTIONS(2119), 1, - aux_sym_input_expression_token1, - ACTIONS(2121), 1, - aux_sym_if_statement_token1, - ACTIONS(2123), 1, - aux_sym_accumulate_expression_token1, - STATE(9), 1, - sym_object_access, - STATE(21), 1, - sym__decimal_literal, - STATE(2479), 1, - sym__expression, - ACTIONS(644), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(684), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(556), 2, + STATE(567), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -89618,80 +91086,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [37710] = 29, + [37839] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2107), 1, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(2109), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2111), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2113), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2115), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(2117), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(2119), 1, + ACTIONS(2076), 1, aux_sym_input_expression_token1, - ACTIONS(2121), 1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(2123), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2495), 1, + STATE(1171), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(557), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(568), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -89708,80 +91177,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [37829] = 29, + [37960] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2107), 1, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(2109), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2111), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2113), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2115), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(2117), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(2119), 1, + ACTIONS(2076), 1, aux_sym_input_expression_token1, - ACTIONS(2121), 1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(2123), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2496), 1, + STATE(1206), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(558), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(569), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -89798,80 +91268,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [37948] = 29, + [38081] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2107), 1, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(2109), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2111), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2113), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2115), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(2117), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(2119), 1, + ACTIONS(2076), 1, aux_sym_input_expression_token1, - ACTIONS(2121), 1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(2123), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2497), 1, + STATE(1207), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(559), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(570), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -89888,80 +91359,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [38067] = 29, + [38202] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(2076), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2604), 1, + STATE(1208), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(560), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(571), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -89978,80 +91450,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [38186] = 29, + [38323] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2047), 1, + ACTIONS(1978), 1, aux_sym_unary_expression_token2, - ACTIONS(2049), 1, + ACTIONS(1980), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2051), 1, + ACTIONS(1982), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2053), 1, + ACTIONS(1984), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2055), 1, + ACTIONS(1986), 1, aux_sym_locked_expression_token1, - ACTIONS(2057), 1, + ACTIONS(1988), 1, aux_sym_dataset_expression_token1, - ACTIONS(2059), 1, + ACTIONS(1990), 1, aux_sym_input_expression_token1, - ACTIONS(2061), 1, + ACTIONS(1992), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1994), 1, aux_sym_if_statement_token1, - ACTIONS(2063), 1, + ACTIONS(1996), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1998), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2002), 1, + sym__escaped_string, + STATE(193), 1, sym_object_access, - STATE(21), 1, + STATE(311), 1, sym__decimal_literal, - STATE(1408), 1, + STATE(1145), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(561), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(572), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -90068,80 +91541,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [38305] = 29, + [38444] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2656), 1, + STATE(2773), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(562), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(573), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -90158,80 +91632,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [38424] = 29, + [38565] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(813), 1, + aux_sym_scope_tuning_token1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(817), 1, + aux_sym_can_find_expression_token1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(831), 1, + sym__escaped_string, + ACTIONS(1447), 1, + anon_sym_LPAREN, + STATE(1021), 1, + sym__expression, + STATE(1065), 1, sym_object_access, - STATE(21), 1, + STATE(1125), 1, sym__decimal_literal, - STATE(2676), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(563), 2, + STATE(574), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -90248,80 +91723,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [38543] = 29, + [38686] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(813), 1, + aux_sym_scope_tuning_token1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(817), 1, + aux_sym_can_find_expression_token1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(831), 1, + sym__escaped_string, + ACTIONS(1447), 1, + anon_sym_LPAREN, + STATE(1013), 1, + sym__expression, + STATE(1065), 1, sym_object_access, - STATE(21), 1, + STATE(1125), 1, sym__decimal_literal, - STATE(2750), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(564), 2, + STATE(575), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -90338,80 +91814,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [38662] = 29, + [38807] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2125), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(2127), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2129), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2131), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2133), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(2135), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(2137), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(2139), 1, + ACTIONS(813), 1, + aux_sym_scope_tuning_token1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(2141), 1, + ACTIONS(817), 1, + aux_sym_can_find_expression_token1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(831), 1, + sym__escaped_string, + ACTIONS(1447), 1, + anon_sym_LPAREN, + STATE(992), 1, + sym__expression, + STATE(1065), 1, sym_object_access, - STATE(21), 1, + STATE(1125), 1, sym__decimal_literal, - STATE(1723), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(565), 2, + STATE(576), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -90428,80 +91905,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [38781] = 29, + [38928] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2125), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(2127), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2129), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2131), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2133), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(2135), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(2137), 1, - aux_sym_input_expression_token1, - ACTIONS(2139), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(2141), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1725), 1, + STATE(2797), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(566), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(577), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -90518,80 +91996,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [38900] = 29, + [39049] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2125), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(2127), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2129), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2131), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2133), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(2135), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(2137), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(2139), 1, + ACTIONS(813), 1, + aux_sym_scope_tuning_token1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(2141), 1, + ACTIONS(817), 1, + aux_sym_can_find_expression_token1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(831), 1, + sym__escaped_string, + ACTIONS(1447), 1, + anon_sym_LPAREN, + STATE(1012), 1, + sym__expression, + STATE(1065), 1, sym_object_access, - STATE(21), 1, + STATE(1125), 1, sym__decimal_literal, - STATE(1726), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(567), 2, + STATE(578), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -90608,80 +92087,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [39019] = 29, + [39170] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2125), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(2127), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2129), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2131), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2133), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(2135), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(2137), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(2139), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(2141), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1611), 1, + STATE(2756), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(568), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(579), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -90698,80 +92178,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [39138] = 29, + [39291] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2125), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(2127), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2129), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2131), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2133), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(2135), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(2137), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(2139), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(2141), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1750), 1, + STATE(2755), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(569), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(580), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -90788,80 +92269,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [39257] = 29, + [39412] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2125), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(2127), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2129), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2131), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2133), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(2135), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(2137), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(2139), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(2141), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1751), 1, + STATE(2800), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(570), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(581), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -90878,80 +92360,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [39376] = 29, + [39533] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(2142), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(2144), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(2146), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(2148), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(2150), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(2152), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(2154), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(2156), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(2158), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2759), 1, + STATE(2615), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(571), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(582), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -90968,80 +92451,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [39495] = 29, + [39654] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2178), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2180), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2186), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2188), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2192), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(2194), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(2196), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(2198), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(2200), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(2202), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(2204), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(2206), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(2208), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2210), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(2212), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2214), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2218), 1, + sym__escaped_string, + STATE(2222), 1, + sym__expression, + STATE(2433), 1, sym_object_access, - STATE(21), 1, + STATE(2958), 1, sym__decimal_literal, - STATE(2762), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2182), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2216), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(572), 2, + STATE(583), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2525), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2184), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2904), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2906), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -91058,80 +92542,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [39614] = 29, + [39775] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2178), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2180), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2186), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2188), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2192), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(2194), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(2196), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(2198), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(2200), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(2202), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(2204), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(2206), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(2208), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2210), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(2212), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2214), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2218), 1, + sym__escaped_string, + STATE(2226), 1, + sym__expression, + STATE(2433), 1, sym_object_access, - STATE(21), 1, + STATE(2958), 1, sym__decimal_literal, - STATE(2764), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2182), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2216), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(573), 2, + STATE(584), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2525), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2184), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2904), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2906), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -91148,80 +92633,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [39733] = 29, + [39896] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2178), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2180), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2186), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2188), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2192), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(2194), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(2196), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(2198), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(2200), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(2202), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(2204), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(2206), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(2208), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2210), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(2212), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2214), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2218), 1, + sym__escaped_string, + STATE(2229), 1, + sym__expression, + STATE(2433), 1, sym_object_access, - STATE(21), 1, + STATE(2958), 1, sym__decimal_literal, - STATE(2768), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2182), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2216), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(574), 2, + STATE(585), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2525), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2184), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2904), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2906), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -91238,80 +92724,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [39852] = 29, + [40017] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2178), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2180), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2186), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2188), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2192), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(2194), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(2196), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(2198), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(2200), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(2202), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(2204), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(2206), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(2208), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2210), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(2212), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2214), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2218), 1, + sym__escaped_string, + STATE(2230), 1, + sym__expression, + STATE(2433), 1, sym_object_access, - STATE(21), 1, + STATE(2958), 1, sym__decimal_literal, - STATE(2770), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2182), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2216), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(575), 2, + STATE(586), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2525), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2184), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2904), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2906), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -91328,80 +92815,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [39971] = 29, + [40138] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2178), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2180), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2186), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2188), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2192), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(2194), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(2196), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(2198), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(2200), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(2202), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(2204), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(2206), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(2208), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2210), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(2212), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2214), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2218), 1, + sym__escaped_string, + STATE(2232), 1, + sym__expression, + STATE(2433), 1, sym_object_access, - STATE(21), 1, + STATE(2958), 1, sym__decimal_literal, - STATE(2769), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2182), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2216), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(576), 2, + STATE(587), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2525), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2184), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2904), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2906), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -91418,80 +92906,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [40090] = 29, + [40259] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2178), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2180), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2186), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2188), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2192), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2107), 1, + ACTIONS(2194), 1, aux_sym_unary_expression_token2, - ACTIONS(2109), 1, + ACTIONS(2196), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2111), 1, + ACTIONS(2198), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2113), 1, + ACTIONS(2200), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2115), 1, + ACTIONS(2202), 1, aux_sym_locked_expression_token1, - ACTIONS(2117), 1, + ACTIONS(2204), 1, aux_sym_dataset_expression_token1, - ACTIONS(2119), 1, + ACTIONS(2206), 1, aux_sym_input_expression_token1, - ACTIONS(2121), 1, + ACTIONS(2208), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2210), 1, aux_sym_if_statement_token1, - ACTIONS(2123), 1, + ACTIONS(2212), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2214), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2218), 1, + sym__escaped_string, + STATE(2233), 1, + sym__expression, + STATE(2433), 1, sym_object_access, - STATE(21), 1, + STATE(2958), 1, sym__decimal_literal, - STATE(2498), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2182), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2216), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(577), 2, + STATE(588), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2525), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2184), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2904), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2906), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -91508,80 +92997,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [40209] = 29, + [40380] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(2142), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(2144), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(2146), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(2148), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(2150), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(2152), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(2154), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(2156), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(2158), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2525), 1, + STATE(2617), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(578), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(589), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -91598,80 +93088,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [40328] = 29, + [40501] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(2142), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(2144), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(2146), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(2148), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(2150), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(2152), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(2154), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(2156), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(2158), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2765), 1, + STATE(2618), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(579), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(590), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -91688,80 +93179,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [40447] = 29, + [40622] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(2142), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(2144), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(2146), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(2148), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(2150), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(2152), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(2154), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(2156), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(2158), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2761), 1, + STATE(2620), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(580), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(591), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -91778,80 +93270,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [40566] = 29, + [40743] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(852), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(854), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(862), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(864), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(866), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(870), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(872), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2142), 1, aux_sym_unary_expression_token2, - ACTIONS(874), 1, + ACTIONS(2144), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(876), 1, + ACTIONS(2146), 1, aux_sym_temp_table_expression_token1, - ACTIONS(878), 1, + ACTIONS(2148), 1, aux_sym_current_changed_expression_token1, - ACTIONS(880), 1, + ACTIONS(2150), 1, aux_sym_locked_expression_token1, - ACTIONS(882), 1, + ACTIONS(2152), 1, aux_sym_dataset_expression_token1, - ACTIONS(884), 1, + ACTIONS(2154), 1, aux_sym_input_expression_token1, - ACTIONS(886), 1, - aux_sym_scope_tuning_token1, - ACTIONS(888), 1, + ACTIONS(2156), 1, aux_sym_if_statement_token1, - ACTIONS(890), 1, - aux_sym_can_find_expression_token1, - ACTIONS(892), 1, + ACTIONS(2158), 1, aux_sym_accumulate_expression_token1, - ACTIONS(896), 1, - sym__escaped_string, - STATE(236), 1, - sym__expression, - STATE(698), 1, + STATE(15), 1, sym_object_access, - STATE(982), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(858), 2, + STATE(2621), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(894), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(581), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(592), 2, sym_comment, sym_include, - ACTIONS(860), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1002), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1004), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -91868,80 +93361,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [40685] = 29, + [40864] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(852), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(854), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(862), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(864), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(866), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(870), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(872), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(874), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(876), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(878), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(880), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(882), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(884), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(886), 1, - aux_sym_scope_tuning_token1, - ACTIONS(888), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(890), 1, - aux_sym_can_find_expression_token1, - ACTIONS(892), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - ACTIONS(896), 1, - sym__escaped_string, - STATE(234), 1, - sym__expression, - STATE(698), 1, + STATE(15), 1, sym_object_access, - STATE(982), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(858), 2, + STATE(2641), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(894), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(582), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(593), 2, sym_comment, sym_include, - ACTIONS(860), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1002), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1004), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -91958,80 +93452,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [40804] = 29, + [40985] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(852), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(854), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(862), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(864), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(866), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(870), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(872), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2220), 1, aux_sym_unary_expression_token2, - ACTIONS(874), 1, + ACTIONS(2222), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(876), 1, + ACTIONS(2224), 1, aux_sym_temp_table_expression_token1, - ACTIONS(878), 1, + ACTIONS(2226), 1, aux_sym_current_changed_expression_token1, - ACTIONS(880), 1, + ACTIONS(2228), 1, aux_sym_locked_expression_token1, - ACTIONS(882), 1, + ACTIONS(2230), 1, aux_sym_dataset_expression_token1, - ACTIONS(884), 1, + ACTIONS(2232), 1, aux_sym_input_expression_token1, - ACTIONS(886), 1, - aux_sym_scope_tuning_token1, - ACTIONS(888), 1, + ACTIONS(2234), 1, aux_sym_if_statement_token1, - ACTIONS(890), 1, - aux_sym_can_find_expression_token1, - ACTIONS(892), 1, + ACTIONS(2236), 1, aux_sym_accumulate_expression_token1, - ACTIONS(896), 1, - sym__escaped_string, - STATE(233), 1, - sym__expression, - STATE(698), 1, + STATE(15), 1, sym_object_access, - STATE(982), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(858), 2, + STATE(1181), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(894), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(583), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(594), 2, sym_comment, sym_include, - ACTIONS(860), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1002), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1004), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -92048,80 +93543,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [40923] = 29, + [41106] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(852), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(854), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(862), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(864), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(866), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(870), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(872), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2220), 1, aux_sym_unary_expression_token2, - ACTIONS(874), 1, + ACTIONS(2222), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(876), 1, + ACTIONS(2224), 1, aux_sym_temp_table_expression_token1, - ACTIONS(878), 1, + ACTIONS(2226), 1, aux_sym_current_changed_expression_token1, - ACTIONS(880), 1, + ACTIONS(2228), 1, aux_sym_locked_expression_token1, - ACTIONS(882), 1, + ACTIONS(2230), 1, aux_sym_dataset_expression_token1, - ACTIONS(884), 1, + ACTIONS(2232), 1, aux_sym_input_expression_token1, - ACTIONS(886), 1, - aux_sym_scope_tuning_token1, - ACTIONS(888), 1, + ACTIONS(2234), 1, aux_sym_if_statement_token1, - ACTIONS(890), 1, - aux_sym_can_find_expression_token1, - ACTIONS(892), 1, + ACTIONS(2236), 1, aux_sym_accumulate_expression_token1, - ACTIONS(896), 1, - sym__escaped_string, - STATE(210), 1, - sym__expression, - STATE(698), 1, + STATE(15), 1, sym_object_access, - STATE(982), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(858), 2, + STATE(1189), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(894), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(584), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(595), 2, sym_comment, sym_include, - ACTIONS(860), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1002), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1004), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -92138,80 +93634,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [41042] = 29, + [41227] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(852), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(854), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(862), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(864), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(866), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(870), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(872), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2220), 1, aux_sym_unary_expression_token2, - ACTIONS(874), 1, + ACTIONS(2222), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(876), 1, + ACTIONS(2224), 1, aux_sym_temp_table_expression_token1, - ACTIONS(878), 1, + ACTIONS(2226), 1, aux_sym_current_changed_expression_token1, - ACTIONS(880), 1, + ACTIONS(2228), 1, aux_sym_locked_expression_token1, - ACTIONS(882), 1, + ACTIONS(2230), 1, aux_sym_dataset_expression_token1, - ACTIONS(884), 1, + ACTIONS(2232), 1, aux_sym_input_expression_token1, - ACTIONS(886), 1, - aux_sym_scope_tuning_token1, - ACTIONS(888), 1, + ACTIONS(2234), 1, aux_sym_if_statement_token1, - ACTIONS(890), 1, - aux_sym_can_find_expression_token1, - ACTIONS(892), 1, + ACTIONS(2236), 1, aux_sym_accumulate_expression_token1, - ACTIONS(896), 1, - sym__escaped_string, - STATE(232), 1, - sym__expression, - STATE(698), 1, + STATE(15), 1, sym_object_access, - STATE(982), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(858), 2, + STATE(1191), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(894), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(585), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(596), 2, sym_comment, sym_include, - ACTIONS(860), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1002), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1004), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -92228,80 +93725,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [41161] = 29, + [41348] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(852), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(854), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(862), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(864), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(866), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(870), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(872), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2220), 1, aux_sym_unary_expression_token2, - ACTIONS(874), 1, + ACTIONS(2222), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(876), 1, + ACTIONS(2224), 1, aux_sym_temp_table_expression_token1, - ACTIONS(878), 1, + ACTIONS(2226), 1, aux_sym_current_changed_expression_token1, - ACTIONS(880), 1, + ACTIONS(2228), 1, aux_sym_locked_expression_token1, - ACTIONS(882), 1, + ACTIONS(2230), 1, aux_sym_dataset_expression_token1, - ACTIONS(884), 1, + ACTIONS(2232), 1, aux_sym_input_expression_token1, - ACTIONS(886), 1, - aux_sym_scope_tuning_token1, - ACTIONS(888), 1, + ACTIONS(2234), 1, aux_sym_if_statement_token1, - ACTIONS(890), 1, - aux_sym_can_find_expression_token1, - ACTIONS(892), 1, + ACTIONS(2236), 1, aux_sym_accumulate_expression_token1, - ACTIONS(896), 1, - sym__escaped_string, - STATE(211), 1, - sym__expression, - STATE(698), 1, + STATE(15), 1, sym_object_access, - STATE(982), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(858), 2, + STATE(1190), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(894), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(586), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(597), 2, sym_comment, sym_include, - ACTIONS(860), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1002), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1004), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -92318,80 +93816,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [41280] = 29, + [41469] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(2142), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(2144), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(2146), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(2148), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(2150), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(2152), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(2154), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(2156), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(2158), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2757), 1, + STATE(2622), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(587), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(598), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -92408,80 +93907,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [41399] = 29, + [41590] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(2220), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(2222), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(2224), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(2226), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(2228), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(2230), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(2232), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(2234), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(2236), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2755), 1, + STATE(1188), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(588), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(599), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -92498,80 +93998,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [41518] = 29, + [41711] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1704), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(1706), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(1708), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(1710), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(1712), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(1714), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(1716), 1, + aux_sym_input_expression_token1, + ACTIONS(1718), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(1720), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2575), 1, + STATE(2844), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(589), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(600), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -92588,80 +94089,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [41637] = 29, + [41832] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(1822), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(1824), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(1826), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(1828), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(1830), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(1832), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(1836), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(1838), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2753), 1, + STATE(1396), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(590), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(601), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -92678,80 +94180,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [41756] = 29, + [41953] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(1822), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(1824), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(1826), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(1828), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(1830), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(1832), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(1836), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(1838), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2749), 1, + STATE(1397), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(591), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(602), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -92768,80 +94271,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [41875] = 29, + [42074] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(1822), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(1824), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(1826), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(1828), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(1830), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(1832), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(1836), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(1838), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2712), 1, + STATE(1398), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(592), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(603), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -92858,80 +94362,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [41994] = 29, + [42195] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(1822), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(1824), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(1826), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(1828), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(1830), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(1832), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(1836), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(1838), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2659), 1, + STATE(1354), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(593), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(604), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -92948,80 +94453,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [42113] = 29, + [42316] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(914), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(918), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(924), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(926), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(928), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(930), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(932), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1822), 1, aux_sym_unary_expression_token2, - ACTIONS(934), 1, + ACTIONS(1824), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(936), 1, + ACTIONS(1826), 1, aux_sym_temp_table_expression_token1, - ACTIONS(938), 1, + ACTIONS(1828), 1, aux_sym_current_changed_expression_token1, - ACTIONS(940), 1, + ACTIONS(1830), 1, aux_sym_locked_expression_token1, - ACTIONS(942), 1, + ACTIONS(1832), 1, aux_sym_dataset_expression_token1, - ACTIONS(944), 1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, - aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(1836), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, - aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(1838), 1, aux_sym_accumulate_expression_token1, - ACTIONS(956), 1, - sym__escaped_string, - STATE(191), 1, - sym__expression, - STATE(263), 1, + STATE(15), 1, sym_object_access, - STATE(319), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(920), 2, + STATE(1402), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(954), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(594), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(605), 2, sym_comment, sym_include, - ACTIONS(922), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(354), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(357), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -93038,80 +94544,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [42232] = 29, + [42437] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(914), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(918), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(924), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(926), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(928), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(930), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(932), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1822), 1, aux_sym_unary_expression_token2, - ACTIONS(934), 1, + ACTIONS(1824), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(936), 1, + ACTIONS(1826), 1, aux_sym_temp_table_expression_token1, - ACTIONS(938), 1, + ACTIONS(1828), 1, aux_sym_current_changed_expression_token1, - ACTIONS(940), 1, + ACTIONS(1830), 1, aux_sym_locked_expression_token1, - ACTIONS(942), 1, + ACTIONS(1832), 1, aux_sym_dataset_expression_token1, - ACTIONS(944), 1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, - aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(1836), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, - aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(1838), 1, aux_sym_accumulate_expression_token1, - ACTIONS(956), 1, - sym__escaped_string, - STATE(192), 1, - sym__expression, - STATE(263), 1, + STATE(15), 1, sym_object_access, - STATE(319), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(920), 2, + STATE(1403), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(954), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(595), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(606), 2, sym_comment, sym_include, - ACTIONS(922), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(354), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(357), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -93128,80 +94635,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [42351] = 29, + [42558] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(914), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(918), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(924), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(926), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(928), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(930), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(932), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2238), 1, aux_sym_unary_expression_token2, - ACTIONS(934), 1, + ACTIONS(2240), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(936), 1, + ACTIONS(2242), 1, aux_sym_temp_table_expression_token1, - ACTIONS(938), 1, + ACTIONS(2244), 1, aux_sym_current_changed_expression_token1, - ACTIONS(940), 1, + ACTIONS(2246), 1, aux_sym_locked_expression_token1, - ACTIONS(942), 1, + ACTIONS(2248), 1, aux_sym_dataset_expression_token1, - ACTIONS(944), 1, + ACTIONS(2250), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, - aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(2252), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, - aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(2254), 1, aux_sym_accumulate_expression_token1, - ACTIONS(956), 1, - sym__escaped_string, - STATE(193), 1, - sym__expression, - STATE(263), 1, + STATE(15), 1, sym_object_access, - STATE(319), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(920), 2, + STATE(1216), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(954), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(596), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(607), 2, sym_comment, sym_include, - ACTIONS(922), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(354), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(357), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -93218,80 +94726,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [42470] = 29, + [42679] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(914), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(918), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(924), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(926), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(928), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(930), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(932), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1822), 1, aux_sym_unary_expression_token2, - ACTIONS(934), 1, + ACTIONS(1824), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(936), 1, + ACTIONS(1826), 1, aux_sym_temp_table_expression_token1, - ACTIONS(938), 1, + ACTIONS(1828), 1, aux_sym_current_changed_expression_token1, - ACTIONS(940), 1, + ACTIONS(1830), 1, aux_sym_locked_expression_token1, - ACTIONS(942), 1, + ACTIONS(1832), 1, aux_sym_dataset_expression_token1, - ACTIONS(944), 1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, - aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(1836), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, - aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(1838), 1, aux_sym_accumulate_expression_token1, - ACTIONS(956), 1, - sym__escaped_string, - STATE(194), 1, - sym__expression, - STATE(263), 1, + STATE(15), 1, sym_object_access, - STATE(319), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(920), 2, + STATE(1311), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(954), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(597), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(608), 2, sym_comment, sym_include, - ACTIONS(922), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(354), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(357), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -93308,80 +94817,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [42589] = 29, + [42800] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(914), 1, + ACTIONS(939), 1, sym_identifier, - ACTIONS(918), 1, + ACTIONS(943), 1, anon_sym_LBRACE, - ACTIONS(924), 1, + ACTIONS(949), 1, sym__integer_literal, - ACTIONS(926), 1, + ACTIONS(951), 1, anon_sym_LBRACK, - ACTIONS(928), 1, + ACTIONS(953), 1, anon_sym_LPAREN, - ACTIONS(930), 1, + ACTIONS(955), 1, aux_sym_unary_expression_token1, - ACTIONS(932), 1, + ACTIONS(957), 1, aux_sym_unary_expression_token2, - ACTIONS(934), 1, + ACTIONS(959), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(936), 1, + ACTIONS(961), 1, aux_sym_temp_table_expression_token1, - ACTIONS(938), 1, + ACTIONS(963), 1, aux_sym_current_changed_expression_token1, - ACTIONS(940), 1, + ACTIONS(965), 1, aux_sym_locked_expression_token1, - ACTIONS(942), 1, + ACTIONS(967), 1, aux_sym_dataset_expression_token1, - ACTIONS(944), 1, + ACTIONS(969), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, + ACTIONS(971), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(973), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, + ACTIONS(975), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(977), 1, aux_sym_accumulate_expression_token1, - ACTIONS(956), 1, + ACTIONS(981), 1, sym__escaped_string, - STATE(183), 1, + STATE(195), 1, sym__expression, - STATE(263), 1, + STATE(270), 1, sym_object_access, - STATE(319), 1, + STATE(363), 1, sym__decimal_literal, - ACTIONS(920), 2, + ACTIONS(945), 2, sym_null_expression, sym_date_literal, - ACTIONS(954), 2, + ACTIONS(979), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(598), 2, + STATE(261), 2, + sym_function_call, + sym_new_expression, + STATE(609), 2, sym_comment, sym_include, - ACTIONS(922), 4, + ACTIONS(947), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(354), 4, + STATE(382), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(357), 23, + STATE(384), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -93398,80 +94908,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [42708] = 29, + [42921] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(939), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(943), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(949), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(951), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(953), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(955), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(957), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(959), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(961), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(963), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(965), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(967), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, + ACTIONS(969), 1, aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(971), 1, + aux_sym_scope_tuning_token1, + ACTIONS(973), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(975), 1, + aux_sym_can_find_expression_token1, + ACTIONS(977), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(981), 1, + sym__escaped_string, + STATE(196), 1, + sym__expression, + STATE(270), 1, sym_object_access, - STATE(21), 1, + STATE(363), 1, sym__decimal_literal, - STATE(1187), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(945), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(979), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(599), 2, + STATE(261), 2, + sym_function_call, + sym_new_expression, + STATE(610), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(947), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(382), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(384), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -93488,80 +94999,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [42827] = 29, + [43042] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(939), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(943), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(949), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(951), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(953), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(955), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(957), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(959), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(961), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(963), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(965), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(967), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, + ACTIONS(969), 1, aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(971), 1, + aux_sym_scope_tuning_token1, + ACTIONS(973), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(975), 1, + aux_sym_can_find_expression_token1, + ACTIONS(977), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(981), 1, + sym__escaped_string, + STATE(198), 1, + sym__expression, + STATE(270), 1, sym_object_access, - STATE(21), 1, + STATE(363), 1, sym__decimal_literal, - STATE(1175), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(945), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(979), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(600), 2, + STATE(261), 2, + sym_function_call, + sym_new_expression, + STATE(611), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(947), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(382), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(384), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -93578,80 +95090,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [42946] = 29, + [43163] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(939), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(943), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(949), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(951), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(953), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(955), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(957), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(959), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(961), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(963), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(965), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(967), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, + ACTIONS(969), 1, aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(971), 1, + aux_sym_scope_tuning_token1, + ACTIONS(973), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(975), 1, + aux_sym_can_find_expression_token1, + ACTIONS(977), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(981), 1, + sym__escaped_string, + STATE(202), 1, + sym__expression, + STATE(270), 1, sym_object_access, - STATE(21), 1, + STATE(363), 1, sym__decimal_literal, - STATE(1181), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(945), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(979), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(601), 2, + STATE(261), 2, + sym_function_call, + sym_new_expression, + STATE(612), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(947), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(382), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(384), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -93668,80 +95181,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [43065] = 29, + [43284] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(939), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(943), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(949), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(951), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(953), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(955), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(957), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(959), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(961), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(963), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(965), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(967), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, + ACTIONS(969), 1, aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(971), 1, + aux_sym_scope_tuning_token1, + ACTIONS(973), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(975), 1, + aux_sym_can_find_expression_token1, + ACTIONS(977), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(981), 1, + sym__escaped_string, + STATE(191), 1, + sym__expression, + STATE(270), 1, sym_object_access, - STATE(21), 1, + STATE(363), 1, sym__decimal_literal, - STATE(1183), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(945), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(979), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(602), 2, + STATE(261), 2, + sym_function_call, + sym_new_expression, + STATE(613), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(947), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(382), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(384), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -93758,80 +95272,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [43184] = 29, + [43405] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(939), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(943), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(949), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(951), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(953), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(955), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(957), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(959), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(961), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(963), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(965), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(967), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, + ACTIONS(969), 1, aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(971), 1, + aux_sym_scope_tuning_token1, + ACTIONS(973), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(975), 1, + aux_sym_can_find_expression_token1, + ACTIONS(977), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(981), 1, + sym__escaped_string, + STATE(200), 1, + sym__expression, + STATE(270), 1, sym_object_access, - STATE(21), 1, + STATE(363), 1, sym__decimal_literal, - STATE(1186), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(945), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(979), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(603), 2, + STATE(261), 2, + sym_function_call, + sym_new_expression, + STATE(614), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(947), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(382), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(384), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -93848,170 +95363,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [43303] = 29, + [43526] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1172), 1, + STATE(2635), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(604), 2, - sym_comment, - sym_include, - ACTIONS(646), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(40), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(25), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, + STATE(13), 2, sym_function_call, - sym_ternary_expression, sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [43422] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(914), 1, - sym_identifier, - ACTIONS(918), 1, - anon_sym_LBRACE, - ACTIONS(924), 1, - sym__integer_literal, - ACTIONS(926), 1, - anon_sym_LBRACK, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(930), 1, - aux_sym_unary_expression_token1, - ACTIONS(932), 1, - aux_sym_unary_expression_token2, - ACTIONS(934), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(936), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(938), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(940), 1, - aux_sym_locked_expression_token1, - ACTIONS(942), 1, - aux_sym_dataset_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, - ACTIONS(956), 1, - sym__escaped_string, - STATE(196), 1, - sym__expression, - STATE(263), 1, - sym_object_access, - STATE(319), 1, - sym__decimal_literal, - ACTIONS(920), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(954), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(605), 2, + STATE(615), 2, sym_comment, sym_include, - ACTIONS(922), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(354), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(357), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -94028,80 +95454,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [43541] = 29, + [43647] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2143), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(2145), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2147), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2149), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2151), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(2153), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(2155), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(2157), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(2159), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1195), 1, + STATE(2809), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(606), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(616), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -94118,80 +95545,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [43660] = 29, + [43768] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1813), 1, + ACTIONS(1822), 1, aux_sym_unary_expression_token2, - ACTIONS(1815), 1, + ACTIONS(1824), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1817), 1, + ACTIONS(1826), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1819), 1, + ACTIONS(1828), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1821), 1, + ACTIONS(1830), 1, aux_sym_locked_expression_token1, - ACTIONS(1823), 1, + ACTIONS(1832), 1, aux_sym_dataset_expression_token1, - ACTIONS(1825), 1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - ACTIONS(1827), 1, + ACTIONS(1836), 1, aux_sym_if_statement_token1, - ACTIONS(1829), 1, + ACTIONS(1838), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1495), 1, + STATE(1393), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(607), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(617), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -94208,80 +95636,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [43779] = 29, + [43889] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(1822), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(1824), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(1826), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(1828), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(1830), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(1832), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(1836), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(1838), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1144), 1, + STATE(1390), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(608), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(618), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -94298,80 +95727,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [43898] = 29, + [44010] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(1822), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(1824), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(1826), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(1828), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(1830), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(1832), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(1836), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(1838), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2598), 1, + STATE(1382), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(609), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(619), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -94388,80 +95818,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [44017] = 29, + [44131] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(1822), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(1824), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(1826), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(1828), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(1830), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(1832), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(1836), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(1838), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2571), 1, + STATE(1355), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(610), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(620), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -94478,80 +95909,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [44136] = 29, + [44252] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(1822), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(1824), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(1826), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(1828), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(1830), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(1832), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(1836), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(1838), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2553), 1, + STATE(1380), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(611), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(621), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -94568,80 +96000,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [44255] = 29, + [44373] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2178), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2180), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2186), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2188), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2192), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2125), 1, + ACTIONS(2194), 1, aux_sym_unary_expression_token2, - ACTIONS(2127), 1, + ACTIONS(2196), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2129), 1, + ACTIONS(2198), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2131), 1, + ACTIONS(2200), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2133), 1, + ACTIONS(2202), 1, aux_sym_locked_expression_token1, - ACTIONS(2135), 1, + ACTIONS(2204), 1, aux_sym_dataset_expression_token1, - ACTIONS(2137), 1, + ACTIONS(2206), 1, aux_sym_input_expression_token1, - ACTIONS(2139), 1, + ACTIONS(2208), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2210), 1, aux_sym_if_statement_token1, - ACTIONS(2141), 1, + ACTIONS(2212), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2214), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2218), 1, + sym__escaped_string, + STATE(2201), 1, + sym__expression, + STATE(2433), 1, sym_object_access, - STATE(21), 1, + STATE(2958), 1, sym__decimal_literal, - STATE(1890), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2182), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2216), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(612), 2, + STATE(622), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2525), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2184), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2904), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2906), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -94658,80 +96091,172 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [44494] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(777), 1, + sym_identifier, + ACTIONS(781), 1, + anon_sym_LBRACE, + ACTIONS(789), 1, + sym__integer_literal, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, + aux_sym_unary_expression_token1, + ACTIONS(797), 1, + aux_sym_unary_expression_token2, + ACTIONS(799), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(801), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(803), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(805), 1, + aux_sym_locked_expression_token1, + ACTIONS(807), 1, + aux_sym_dataset_expression_token1, + ACTIONS(809), 1, + aux_sym_input_expression_token1, + ACTIONS(813), 1, + aux_sym_scope_tuning_token1, + ACTIONS(815), 1, + aux_sym_if_statement_token1, + ACTIONS(817), 1, + aux_sym_can_find_expression_token1, + ACTIONS(819), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(831), 1, + sym__escaped_string, + ACTIONS(1447), 1, + anon_sym_LPAREN, + STATE(1010), 1, + sym__expression, + STATE(1065), 1, + sym_object_access, + STATE(1125), 1, + sym__decimal_literal, + ACTIONS(785), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(821), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(623), 2, + sym_comment, + sym_include, + STATE(1059), 2, + sym_function_call, sym_new_expression, + ACTIONS(787), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1093), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1107), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [44374] = 29, + [44615] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(1822), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(1824), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(1826), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(1828), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(1830), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(1832), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(1836), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(1838), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2540), 1, + STATE(1377), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(613), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(624), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -94748,80 +96273,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [44493] = 29, + [44736] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2161), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(2163), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2165), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2167), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2169), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(2171), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(2173), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(2175), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(2177), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1159), 1, + STATE(2891), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(614), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(625), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -94838,80 +96364,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [44612] = 29, + [44857] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2179), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(2181), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(2187), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(2189), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(2191), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2195), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(2197), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2199), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2201), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2203), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(2205), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(2207), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(2209), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2211), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(2213), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2215), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2219), 1, - sym__escaped_string, - STATE(1927), 1, - sym__expression, - STATE(2120), 1, + STATE(15), 1, sym_object_access, - STATE(2875), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(2183), 2, + STATE(2671), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2217), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(615), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(626), 2, sym_comment, sym_include, - ACTIONS(2185), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2857), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2852), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -94928,80 +96455,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [44731] = 29, + [44978] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2179), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(2181), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(2187), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(2189), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(2191), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2195), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2220), 1, aux_sym_unary_expression_token2, - ACTIONS(2197), 1, + ACTIONS(2222), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2199), 1, + ACTIONS(2224), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2201), 1, + ACTIONS(2226), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2203), 1, + ACTIONS(2228), 1, aux_sym_locked_expression_token1, - ACTIONS(2205), 1, + ACTIONS(2230), 1, aux_sym_dataset_expression_token1, - ACTIONS(2207), 1, + ACTIONS(2232), 1, aux_sym_input_expression_token1, - ACTIONS(2209), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2211), 1, + ACTIONS(2234), 1, aux_sym_if_statement_token1, - ACTIONS(2213), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2215), 1, + ACTIONS(2236), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2219), 1, - sym__escaped_string, - STATE(1915), 1, - sym__expression, - STATE(2120), 1, + STATE(15), 1, sym_object_access, - STATE(2875), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(2183), 2, + STATE(1183), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2217), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(616), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(627), 2, sym_comment, sym_include, - ACTIONS(2185), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2857), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2852), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -95018,80 +96546,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [44850] = 29, + [45099] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2179), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(2181), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(2187), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(2189), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(2191), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2195), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(2197), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2199), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2201), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2203), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(2205), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(2207), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(2209), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2211), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(2213), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2215), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2219), 1, - sym__escaped_string, - STATE(1924), 1, - sym__expression, - STATE(2120), 1, + STATE(15), 1, sym_object_access, - STATE(2875), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(2183), 2, + STATE(2673), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2217), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(617), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(628), 2, sym_comment, sym_include, - ACTIONS(2185), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2857), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2852), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -95108,80 +96637,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [44969] = 29, + [45220] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2179), 1, + ACTIONS(2256), 1, sym_identifier, - ACTIONS(2181), 1, + ACTIONS(2258), 1, anon_sym_LBRACE, - ACTIONS(2187), 1, + ACTIONS(2264), 1, sym__integer_literal, - ACTIONS(2189), 1, + ACTIONS(2266), 1, anon_sym_LBRACK, - ACTIONS(2191), 1, + ACTIONS(2268), 1, anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(2270), 1, aux_sym_unary_expression_token1, - ACTIONS(2195), 1, + ACTIONS(2272), 1, aux_sym_unary_expression_token2, - ACTIONS(2197), 1, + ACTIONS(2274), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2199), 1, + ACTIONS(2276), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2201), 1, + ACTIONS(2278), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2203), 1, + ACTIONS(2280), 1, aux_sym_locked_expression_token1, - ACTIONS(2205), 1, + ACTIONS(2282), 1, aux_sym_dataset_expression_token1, - ACTIONS(2207), 1, + ACTIONS(2284), 1, aux_sym_input_expression_token1, - ACTIONS(2209), 1, + ACTIONS(2286), 1, aux_sym_scope_tuning_token1, - ACTIONS(2211), 1, + ACTIONS(2288), 1, aux_sym_if_statement_token1, - ACTIONS(2213), 1, + ACTIONS(2290), 1, aux_sym_can_find_expression_token1, - ACTIONS(2215), 1, + ACTIONS(2292), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2219), 1, + ACTIONS(2296), 1, sym__escaped_string, - STATE(1923), 1, + STATE(1946), 1, sym__expression, - STATE(2120), 1, + STATE(2283), 1, sym_object_access, - STATE(2875), 1, + STATE(2886), 1, sym__decimal_literal, - ACTIONS(2183), 2, + ACTIONS(2260), 2, sym_null_expression, sym_date_literal, - ACTIONS(2217), 2, + ACTIONS(2294), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(618), 2, + STATE(629), 2, sym_comment, sym_include, - ACTIONS(2185), 4, + STATE(2500), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2262), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2857), 4, + STATE(2815), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2852), 23, + STATE(2810), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -95198,80 +96728,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [45088] = 29, + [45341] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2256), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2258), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2264), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2266), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2268), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2270), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(2272), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(2274), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(2276), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(2278), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(2280), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(2282), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(2284), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(2286), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2288), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(2290), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2292), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2296), 1, + sym__escaped_string, + STATE(1948), 1, + sym__expression, + STATE(2283), 1, sym_object_access, - STATE(21), 1, + STATE(2886), 1, sym__decimal_literal, - STATE(2734), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2260), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2294), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(619), 2, + STATE(630), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2500), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2262), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2815), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2810), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -95288,80 +96819,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [45207] = 29, + [45462] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2179), 1, + ACTIONS(2256), 1, sym_identifier, - ACTIONS(2181), 1, + ACTIONS(2258), 1, anon_sym_LBRACE, - ACTIONS(2187), 1, + ACTIONS(2264), 1, sym__integer_literal, - ACTIONS(2189), 1, + ACTIONS(2266), 1, anon_sym_LBRACK, - ACTIONS(2191), 1, + ACTIONS(2268), 1, anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(2270), 1, aux_sym_unary_expression_token1, - ACTIONS(2195), 1, + ACTIONS(2272), 1, aux_sym_unary_expression_token2, - ACTIONS(2197), 1, + ACTIONS(2274), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2199), 1, + ACTIONS(2276), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2201), 1, + ACTIONS(2278), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2203), 1, + ACTIONS(2280), 1, aux_sym_locked_expression_token1, - ACTIONS(2205), 1, + ACTIONS(2282), 1, aux_sym_dataset_expression_token1, - ACTIONS(2207), 1, + ACTIONS(2284), 1, aux_sym_input_expression_token1, - ACTIONS(2209), 1, + ACTIONS(2286), 1, aux_sym_scope_tuning_token1, - ACTIONS(2211), 1, + ACTIONS(2288), 1, aux_sym_if_statement_token1, - ACTIONS(2213), 1, + ACTIONS(2290), 1, aux_sym_can_find_expression_token1, - ACTIONS(2215), 1, + ACTIONS(2292), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2219), 1, + ACTIONS(2296), 1, sym__escaped_string, - STATE(1922), 1, + STATE(1947), 1, sym__expression, - STATE(2120), 1, + STATE(2283), 1, sym_object_access, - STATE(2875), 1, + STATE(2886), 1, sym__decimal_literal, - ACTIONS(2183), 2, + ACTIONS(2260), 2, sym_null_expression, sym_date_literal, - ACTIONS(2217), 2, + ACTIONS(2294), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(620), 2, + STATE(631), 2, sym_comment, sym_include, - ACTIONS(2185), 4, + STATE(2500), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2262), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2857), 4, + STATE(2815), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2852), 23, + STATE(2810), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -95378,80 +96910,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [45326] = 29, + [45583] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2179), 1, + ACTIONS(2256), 1, sym_identifier, - ACTIONS(2181), 1, + ACTIONS(2258), 1, anon_sym_LBRACE, - ACTIONS(2187), 1, + ACTIONS(2264), 1, sym__integer_literal, - ACTIONS(2189), 1, + ACTIONS(2266), 1, anon_sym_LBRACK, - ACTIONS(2191), 1, + ACTIONS(2268), 1, anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(2270), 1, aux_sym_unary_expression_token1, - ACTIONS(2195), 1, + ACTIONS(2272), 1, aux_sym_unary_expression_token2, - ACTIONS(2197), 1, + ACTIONS(2274), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2199), 1, + ACTIONS(2276), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2201), 1, + ACTIONS(2278), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2203), 1, + ACTIONS(2280), 1, aux_sym_locked_expression_token1, - ACTIONS(2205), 1, + ACTIONS(2282), 1, aux_sym_dataset_expression_token1, - ACTIONS(2207), 1, + ACTIONS(2284), 1, aux_sym_input_expression_token1, - ACTIONS(2209), 1, + ACTIONS(2286), 1, aux_sym_scope_tuning_token1, - ACTIONS(2211), 1, + ACTIONS(2288), 1, aux_sym_if_statement_token1, - ACTIONS(2213), 1, + ACTIONS(2290), 1, aux_sym_can_find_expression_token1, - ACTIONS(2215), 1, + ACTIONS(2292), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2219), 1, + ACTIONS(2296), 1, sym__escaped_string, - STATE(1921), 1, + STATE(1845), 1, sym__expression, - STATE(2120), 1, + STATE(2283), 1, sym_object_access, - STATE(2875), 1, + STATE(2886), 1, sym__decimal_literal, - ACTIONS(2183), 2, + ACTIONS(2260), 2, sym_null_expression, sym_date_literal, - ACTIONS(2217), 2, + ACTIONS(2294), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(621), 2, + STATE(632), 2, sym_comment, sym_include, - ACTIONS(2185), 4, + STATE(2500), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2262), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2857), 4, + STATE(2815), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2852), 23, + STATE(2810), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -95468,80 +97001,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [45445] = 29, + [45704] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2179), 1, + ACTIONS(2256), 1, sym_identifier, - ACTIONS(2181), 1, + ACTIONS(2258), 1, anon_sym_LBRACE, - ACTIONS(2187), 1, + ACTIONS(2264), 1, sym__integer_literal, - ACTIONS(2189), 1, + ACTIONS(2266), 1, anon_sym_LBRACK, - ACTIONS(2191), 1, + ACTIONS(2268), 1, anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(2270), 1, aux_sym_unary_expression_token1, - ACTIONS(2195), 1, + ACTIONS(2272), 1, aux_sym_unary_expression_token2, - ACTIONS(2197), 1, + ACTIONS(2274), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2199), 1, + ACTIONS(2276), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2201), 1, + ACTIONS(2278), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2203), 1, + ACTIONS(2280), 1, aux_sym_locked_expression_token1, - ACTIONS(2205), 1, + ACTIONS(2282), 1, aux_sym_dataset_expression_token1, - ACTIONS(2207), 1, + ACTIONS(2284), 1, aux_sym_input_expression_token1, - ACTIONS(2209), 1, + ACTIONS(2286), 1, aux_sym_scope_tuning_token1, - ACTIONS(2211), 1, + ACTIONS(2288), 1, aux_sym_if_statement_token1, - ACTIONS(2213), 1, + ACTIONS(2290), 1, aux_sym_can_find_expression_token1, - ACTIONS(2215), 1, + ACTIONS(2292), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2219), 1, + ACTIONS(2296), 1, sym__escaped_string, - STATE(1920), 1, + STATE(1965), 1, sym__expression, - STATE(2120), 1, + STATE(2283), 1, sym_object_access, - STATE(2875), 1, + STATE(2886), 1, sym__decimal_literal, - ACTIONS(2183), 2, + ACTIONS(2260), 2, sym_null_expression, sym_date_literal, - ACTIONS(2217), 2, + ACTIONS(2294), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(622), 2, + STATE(633), 2, sym_comment, sym_include, - ACTIONS(2185), 4, + STATE(2500), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2262), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2857), 4, + STATE(2815), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2852), 23, + STATE(2810), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -95558,80 +97092,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [45564] = 29, + [45825] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2256), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2258), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2264), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2266), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2268), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2270), 1, aux_sym_unary_expression_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(704), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1653), 1, + ACTIONS(2272), 1, aux_sym_unary_expression_token2, - ACTIONS(1655), 1, + ACTIONS(2274), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1657), 1, + ACTIONS(2276), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1659), 1, + ACTIONS(2278), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1661), 1, + ACTIONS(2280), 1, aux_sym_locked_expression_token1, - ACTIONS(1663), 1, + ACTIONS(2282), 1, aux_sym_dataset_expression_token1, - ACTIONS(1665), 1, + ACTIONS(2284), 1, aux_sym_input_expression_token1, - ACTIONS(1667), 1, + ACTIONS(2286), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2288), 1, aux_sym_if_statement_token1, - ACTIONS(1669), 1, + ACTIONS(2290), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2292), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2296), 1, + sym__escaped_string, + STATE(1951), 1, + sym__expression, + STATE(2283), 1, sym_object_access, - STATE(21), 1, + STATE(2886), 1, sym__decimal_literal, - STATE(1436), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2260), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2294), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(623), 2, + STATE(634), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2500), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2262), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2815), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2810), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -95648,80 +97183,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [45683] = 29, + [45946] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(678), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(704), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1653), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(1655), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1657), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1659), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1661), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(1663), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(1665), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(1667), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(1669), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1444), 1, + STATE(2679), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(624), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(635), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -95738,80 +97274,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [45802] = 29, + [46067] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(678), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(704), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1653), 1, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(1655), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1657), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1659), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1661), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(1663), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(1665), 1, + ACTIONS(2076), 1, aux_sym_input_expression_token1, - ACTIONS(1667), 1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(1669), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1446), 1, + STATE(1197), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(625), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(636), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -95828,212 +97365,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [45921] = 5, + [46188] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(626), 2, - sym_comment, - sym_include, - ACTIONS(150), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(152), 53, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(645), 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - aux_sym_scope_tuning_token1, - aux_sym_function_call_token1, - aux_sym_if_statement_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [45992] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(627), 2, - sym_comment, - sym_include, - ACTIONS(146), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(148), 53, - anon_sym_SLASH, + ACTIONS(647), 1, anon_sym_LBRACE, - sym_identifier, - anon_sym_STAR, - sym__terminator, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, + ACTIONS(653), 1, sym__integer_literal, - sym_date_literal, + ACTIONS(655), 1, anon_sym_LBRACK, + ACTIONS(657), 1, anon_sym_LPAREN, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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(677), 1, aux_sym_scope_tuning_token1, - aux_sym_function_call_token1, - aux_sym_if_statement_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [46063] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, - anon_sym_LBRACE, - ACTIONS(648), 1, - sym__integer_literal, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, - aux_sym_unary_expression_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(704), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1653), 1, + ACTIONS(2142), 1, aux_sym_unary_expression_token2, - ACTIONS(1655), 1, + ACTIONS(2144), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1657), 1, + ACTIONS(2146), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1659), 1, + ACTIONS(2148), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1661), 1, + ACTIONS(2150), 1, aux_sym_locked_expression_token1, - ACTIONS(1663), 1, + ACTIONS(2152), 1, aux_sym_dataset_expression_token1, - ACTIONS(1665), 1, + ACTIONS(2154), 1, aux_sym_input_expression_token1, - ACTIONS(1667), 1, + ACTIONS(2156), 1, aux_sym_if_statement_token1, - ACTIONS(1669), 1, + ACTIONS(2158), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1438), 1, + STATE(2614), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(628), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(637), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -96050,80 +97456,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [46182] = 29, + [46309] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, + ACTIONS(2076), 1, aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1349), 1, + STATE(1196), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(629), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(638), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -96140,80 +97547,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [46301] = 29, + [46430] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(2142), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(2144), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(2146), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(2148), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(2150), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(2152), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(2154), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(2156), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(2158), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2696), 1, + STATE(2613), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(630), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(639), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -96230,80 +97638,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [46420] = 29, + [46551] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, + ACTIONS(2076), 1, aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1354), 1, + STATE(1201), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(631), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(640), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -96320,80 +97729,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [46539] = 29, + [46672] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(2142), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(2144), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(2146), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(2148), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(2150), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(2152), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, + ACTIONS(2154), 1, aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(2156), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(2158), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1355), 1, + STATE(2610), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(632), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(641), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -96410,80 +97820,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [46658] = 29, + [46793] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, + ACTIONS(2076), 1, aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1356), 1, + STATE(1204), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(633), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(642), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -96500,80 +97911,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [46777] = 29, + [46914] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, + ACTIONS(2076), 1, aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1357), 1, + STATE(1203), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(634), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(643), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -96590,80 +98002,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [46896] = 29, + [47035] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2673), 1, + STATE(2697), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(635), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(644), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -96680,80 +98093,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [47015] = 29, + [47156] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2298), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(2300), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(2302), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(2304), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(2306), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(2308), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(2310), 1, + aux_sym_input_expression_token1, + ACTIONS(2312), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(2314), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2665), 1, + STATE(1353), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(636), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(645), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -96770,80 +98184,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [47134] = 29, + [47277] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2107), 1, + ACTIONS(1822), 1, aux_sym_unary_expression_token2, - ACTIONS(2109), 1, + ACTIONS(1824), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2111), 1, + ACTIONS(1826), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2113), 1, + ACTIONS(1828), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2115), 1, + ACTIONS(1830), 1, aux_sym_locked_expression_token1, - ACTIONS(2117), 1, + ACTIONS(1832), 1, aux_sym_dataset_expression_token1, - ACTIONS(2119), 1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - ACTIONS(2121), 1, + ACTIONS(1836), 1, aux_sym_if_statement_token1, - ACTIONS(2123), 1, + ACTIONS(1838), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2149), 1, + STATE(1389), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(637), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(646), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -96860,80 +98275,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [47253] = 29, + [47398] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2161), 1, + ACTIONS(2142), 1, aux_sym_unary_expression_token2, - ACTIONS(2163), 1, + ACTIONS(2144), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2165), 1, + ACTIONS(2146), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2167), 1, + ACTIONS(2148), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2169), 1, + ACTIONS(2150), 1, aux_sym_locked_expression_token1, - ACTIONS(2171), 1, + ACTIONS(2152), 1, aux_sym_dataset_expression_token1, - ACTIONS(2173), 1, + ACTIONS(2154), 1, aux_sym_input_expression_token1, - ACTIONS(2175), 1, + ACTIONS(2156), 1, aux_sym_if_statement_token1, - ACTIONS(2177), 1, + ACTIONS(2158), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1164), 1, + STATE(2609), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(638), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(647), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -96950,80 +98366,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [47372] = 29, + [47519] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1751), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1753), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1759), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1761), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1765), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1767), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2142), 1, aux_sym_unary_expression_token2, - ACTIONS(1769), 1, + ACTIONS(2144), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1771), 1, + ACTIONS(2146), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1773), 1, + ACTIONS(2148), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1775), 1, + ACTIONS(2150), 1, aux_sym_locked_expression_token1, - ACTIONS(1777), 1, + ACTIONS(2152), 1, aux_sym_dataset_expression_token1, - ACTIONS(1779), 1, + ACTIONS(2154), 1, aux_sym_input_expression_token1, - ACTIONS(1781), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1783), 1, + ACTIONS(2156), 1, aux_sym_if_statement_token1, - ACTIONS(1785), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1787), 1, + ACTIONS(2158), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1791), 1, - sym__escaped_string, - STATE(1737), 1, - sym__expression, - STATE(2187), 1, + STATE(15), 1, sym_object_access, - STATE(2779), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1755), 2, + STATE(2607), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1789), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(639), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(648), 2, sym_comment, sym_include, - ACTIONS(1757), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2787), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2783), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -97040,80 +98457,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [47491] = 29, + [47640] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1831), 1, + ACTIONS(2238), 1, aux_sym_unary_expression_token2, - ACTIONS(1833), 1, + ACTIONS(2240), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1835), 1, + ACTIONS(2242), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1837), 1, + ACTIONS(2244), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1839), 1, + ACTIONS(2246), 1, aux_sym_locked_expression_token1, - ACTIONS(1841), 1, + ACTIONS(2248), 1, aux_sym_dataset_expression_token1, - ACTIONS(1843), 1, + ACTIONS(2250), 1, aux_sym_input_expression_token1, - ACTIONS(1845), 1, + ACTIONS(2252), 1, aux_sym_if_statement_token1, - ACTIONS(1847), 1, + ACTIONS(2254), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1308), 1, + STATE(1213), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(640), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(649), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -97130,80 +98548,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [47610] = 29, + [47761] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(2142), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(2144), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(2146), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(2148), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(2150), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(2152), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, + ACTIONS(2154), 1, aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(2156), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(2158), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1351), 1, + STATE(2605), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(641), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(650), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -97220,80 +98639,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [47729] = 29, + [47882] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1751), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1753), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1759), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1761), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1765), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1767), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(1769), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1771), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1773), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1775), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(1777), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(1779), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(1781), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1783), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(1785), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1787), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1791), 1, - sym__escaped_string, - STATE(1736), 1, - sym__expression, - STATE(2187), 1, + STATE(15), 1, sym_object_access, - STATE(2779), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1755), 2, + STATE(2702), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1789), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(642), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(651), 2, sym_comment, sym_include, - ACTIONS(1757), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2787), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2783), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -97310,80 +98730,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [47848] = 29, + [48003] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1211), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1217), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1219), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1221), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1223), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1225), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(1227), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1229), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1231), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1233), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(1235), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(1237), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(1239), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1241), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(1247), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1249), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1253), 1, - sym__escaped_string, - STATE(1025), 1, - sym__expression, - STATE(1086), 1, + STATE(15), 1, sym_object_access, - STATE(1116), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1213), 2, + STATE(2704), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1251), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(643), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(652), 2, sym_comment, sym_include, - ACTIONS(1215), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1133), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1124), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -97400,80 +98821,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [47967] = 29, + [48124] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1751), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1753), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1759), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1761), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1765), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1767), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(1769), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1771), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1773), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1775), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(1777), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(1779), 1, + ACTIONS(2076), 1, aux_sym_input_expression_token1, - ACTIONS(1781), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1783), 1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(1785), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1787), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1791), 1, - sym__escaped_string, - STATE(1735), 1, - sym__expression, - STATE(2187), 1, + STATE(15), 1, sym_object_access, - STATE(2779), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1755), 2, + STATE(1200), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1789), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(644), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(653), 2, sym_comment, sym_include, - ACTIONS(1757), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2787), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2783), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -97490,80 +98912,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [48086] = 29, + [48245] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1751), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1753), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1759), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1761), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1765), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1767), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2160), 1, aux_sym_unary_expression_token2, - ACTIONS(1769), 1, + ACTIONS(2162), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1771), 1, + ACTIONS(2164), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1773), 1, + ACTIONS(2166), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1775), 1, + ACTIONS(2168), 1, aux_sym_locked_expression_token1, - ACTIONS(1777), 1, + ACTIONS(2170), 1, aux_sym_dataset_expression_token1, - ACTIONS(1779), 1, + ACTIONS(2172), 1, aux_sym_input_expression_token1, - ACTIONS(1781), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1783), 1, + ACTIONS(2174), 1, aux_sym_if_statement_token1, - ACTIONS(1785), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1787), 1, + ACTIONS(2176), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1791), 1, - sym__escaped_string, - STATE(1734), 1, - sym__expression, - STATE(2187), 1, + STATE(15), 1, sym_object_access, - STATE(2779), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1755), 2, + STATE(1445), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1789), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(645), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(654), 2, sym_comment, sym_include, - ACTIONS(1757), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2787), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2783), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -97580,80 +99003,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [48205] = 29, + [48366] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(1641), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(1643), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(1645), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(1647), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(1649), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(1651), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, + ACTIONS(1653), 1, aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(1655), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(1657), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1346), 1, + STATE(2375), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(646), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(655), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -97670,80 +99094,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [48324] = 29, + [48487] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(1641), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(1643), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(1645), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(1647), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(1649), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(1651), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, + ACTIONS(1653), 1, aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(1655), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(1657), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1344), 1, + STATE(2376), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(647), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(656), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -97760,80 +99185,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [48443] = 29, + [48608] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(1822), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(1824), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(1826), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(1828), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(1830), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(1832), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(1836), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(1838), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1342), 1, + STATE(1317), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(648), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(657), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -97850,80 +99276,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [48562] = 29, + [48729] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(1641), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(1643), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(1645), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(1647), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(1649), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(1651), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, + ACTIONS(1653), 1, aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(1655), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(1657), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1372), 1, + STATE(2377), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(649), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(658), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -97940,80 +99367,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [48681] = 29, + [48850] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(1641), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(1643), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(1645), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(1647), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(1649), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(1651), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, + ACTIONS(1653), 1, aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(1655), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(1657), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1336), 1, + STATE(2378), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(650), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(659), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -98030,80 +99458,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [48800] = 29, + [48971] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, - aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1334), 1, + STATE(2835), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(651), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(660), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -98120,80 +99549,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [48919] = 29, + [49092] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(2076), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2638), 1, + STATE(1172), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(652), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(661), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -98210,80 +99640,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [49038] = 29, + [49213] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(1641), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(1643), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(1645), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(1647), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(1649), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(1651), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, + ACTIONS(1653), 1, aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(1655), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(1657), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1337), 1, + STATE(2379), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(653), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(662), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -98300,80 +99731,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [49157] = 29, + [49334] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1751), 1, + ACTIONS(2004), 1, sym_identifier, - ACTIONS(1753), 1, + ACTIONS(2006), 1, anon_sym_LBRACE, - ACTIONS(1759), 1, + ACTIONS(2012), 1, sym__integer_literal, - ACTIONS(1761), 1, + ACTIONS(2014), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(2016), 1, anon_sym_LPAREN, - ACTIONS(1765), 1, + ACTIONS(2018), 1, aux_sym_unary_expression_token1, - ACTIONS(1767), 1, + ACTIONS(2020), 1, aux_sym_unary_expression_token2, - ACTIONS(1769), 1, + ACTIONS(2022), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1771), 1, + ACTIONS(2024), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1773), 1, + ACTIONS(2026), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1775), 1, + ACTIONS(2028), 1, aux_sym_locked_expression_token1, - ACTIONS(1777), 1, + ACTIONS(2030), 1, aux_sym_dataset_expression_token1, - ACTIONS(1779), 1, + ACTIONS(2032), 1, aux_sym_input_expression_token1, - ACTIONS(1781), 1, + ACTIONS(2034), 1, aux_sym_scope_tuning_token1, - ACTIONS(1783), 1, + ACTIONS(2036), 1, aux_sym_if_statement_token1, - ACTIONS(1785), 1, + ACTIONS(2038), 1, aux_sym_can_find_expression_token1, - ACTIONS(1787), 1, + ACTIONS(2040), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1791), 1, + ACTIONS(2044), 1, sym__escaped_string, - STATE(1733), 1, + STATE(2012), 1, sym__expression, - STATE(2187), 1, + STATE(2490), 1, sym_object_access, - STATE(2779), 1, + STATE(2984), 1, sym__decimal_literal, - ACTIONS(1755), 2, + ACTIONS(2008), 2, sym_null_expression, sym_date_literal, - ACTIONS(1789), 2, + ACTIONS(2042), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(654), 2, + STATE(663), 2, sym_comment, sym_include, - ACTIONS(1757), 4, + STATE(2551), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2010), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2787), 4, + STATE(2967), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2783), 23, + STATE(2960), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -98390,80 +99822,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [49276] = 29, + [49455] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(1641), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(1643), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(1645), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(1647), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(1649), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(1651), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, + ACTIONS(1653), 1, aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(1655), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(1657), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1173), 1, + STATE(2380), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(655), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(664), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -98480,80 +99913,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [49395] = 29, + [49576] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1176), 1, + STATE(2705), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(656), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(665), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -98570,80 +100004,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [49514] = 29, + [49697] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, - aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1177), 1, + STATE(2826), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(657), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(666), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -98660,80 +100095,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [49633] = 29, + [49818] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2161), 1, + ACTIONS(2160), 1, aux_sym_unary_expression_token2, - ACTIONS(2163), 1, + ACTIONS(2162), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2165), 1, + ACTIONS(2164), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2167), 1, + ACTIONS(2166), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2169), 1, + ACTIONS(2168), 1, aux_sym_locked_expression_token1, - ACTIONS(2171), 1, + ACTIONS(2170), 1, aux_sym_dataset_expression_token1, - ACTIONS(2173), 1, + ACTIONS(2172), 1, aux_sym_input_expression_token1, - ACTIONS(2175), 1, + ACTIONS(2174), 1, aux_sym_if_statement_token1, - ACTIONS(2177), 1, + ACTIONS(2176), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1168), 1, + STATE(1447), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(658), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(667), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -98750,80 +100186,150 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [49752] = 29, + [49939] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1098), 1, + anon_sym_LBRACK, + ACTIONS(1100), 1, + anon_sym_LPAREN, + STATE(350), 1, + sym_function_arguments, + STATE(668), 2, + sym_comment, + sym_include, + ACTIONS(65), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(71), 50, + anon_sym_SLASH, + anon_sym_LBRACE, sym_identifier, - ACTIONS(642), 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, + sym_date_literal, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [50016] = 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(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1185), 1, + STATE(2852), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(659), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(669), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -98840,80 +100346,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [49871] = 29, + [50137] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, + ACTIONS(1770), 1, aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(1772), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(1776), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1782), 1, + sym__escaped_string, + STATE(1368), 1, + sym__expression, + STATE(2002), 1, sym_object_access, - STATE(21), 1, + STATE(2748), 1, sym__decimal_literal, - STATE(1179), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(660), 2, + STATE(670), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -98930,80 +100437,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [49990] = 29, + [50258] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2161), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(2163), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2165), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2167), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2169), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(2171), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(2173), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(2175), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(2177), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1169), 1, + STATE(2712), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(661), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(671), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -99020,80 +100528,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [50109] = 29, + [50379] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2160), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(2162), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(2164), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(2166), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(2168), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(2170), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(2172), 1, + aux_sym_input_expression_token1, + ACTIONS(2174), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(2176), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2631), 1, + STATE(1450), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(662), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(672), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -99110,80 +100619,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [50228] = 29, + [50500] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2256), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2258), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2264), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2266), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2268), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2270), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(2272), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(2274), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(2276), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(2278), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(2280), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(2282), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + ACTIONS(2284), 1, + aux_sym_input_expression_token1, + ACTIONS(2286), 1, aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(2288), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, + ACTIONS(2290), 1, aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(2292), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, + ACTIONS(2296), 1, sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(1523), 1, + sym__expression, + STATE(2283), 1, sym_object_access, - STATE(21), 1, + STATE(2886), 1, sym__decimal_literal, - STATE(2629), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2260), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2294), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(663), 2, + STATE(673), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2500), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2262), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2815), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2810), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -99200,80 +100710,149 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [50347] = 29, + [50621] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1100), 1, + anon_sym_LPAREN, + STATE(350), 1, + sym_function_arguments, + STATE(674), 2, + sym_comment, + sym_include, + ACTIONS(85), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(87), 51, + 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, + sym_date_literal, + anon_sym_LBRACK, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [50696] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2161), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(2163), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2165), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2167), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2169), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(2171), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(2173), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(2175), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(2177), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1170), 1, + STATE(2814), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(664), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(675), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -99290,80 +100869,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [50466] = 29, + [50817] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1288), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1296), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1298), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1300), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1302), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2161), 1, + ACTIONS(1304), 1, aux_sym_unary_expression_token2, - ACTIONS(2163), 1, + ACTIONS(1306), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2165), 1, + ACTIONS(1308), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2167), 1, + ACTIONS(1310), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2169), 1, + ACTIONS(1312), 1, aux_sym_locked_expression_token1, - ACTIONS(2171), 1, + ACTIONS(1314), 1, aux_sym_dataset_expression_token1, - ACTIONS(2173), 1, + ACTIONS(1316), 1, aux_sym_input_expression_token1, - ACTIONS(2175), 1, + ACTIONS(1318), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1320), 1, aux_sym_if_statement_token1, - ACTIONS(2177), 1, + ACTIONS(1326), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1328), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1332), 1, + sym__escaped_string, + STATE(1025), 1, + sym__expression, + STATE(1115), 1, sym_object_access, - STATE(21), 1, + STATE(1135), 1, sym__decimal_literal, - STATE(1167), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1292), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1330), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(665), 2, + STATE(676), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1078), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1294), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1137), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1141), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -99380,80 +100960,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [50585] = 29, + [50938] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1288), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1296), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1298), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1300), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1302), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(1304), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(1306), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(1308), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(1310), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(1312), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(1314), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, + ACTIONS(1316), 1, aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(1318), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1320), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(1326), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1328), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1332), 1, + sym__escaped_string, + STATE(1024), 1, + sym__expression, + STATE(1115), 1, sym_object_access, - STATE(21), 1, + STATE(1135), 1, sym__decimal_literal, - STATE(1184), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1292), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1330), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(666), 2, + STATE(677), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1078), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1294), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1137), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1141), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -99470,80 +101051,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [50704] = 29, + [51059] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2603), 1, + STATE(2713), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(667), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(678), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -99560,80 +101142,172 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [50823] = 29, + [51180] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1288), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1296), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1298), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1300), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1302), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(1304), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(1306), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(1308), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(1310), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(1312), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(1314), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + ACTIONS(1316), 1, + aux_sym_input_expression_token1, + ACTIONS(1318), 1, aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(1320), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, + ACTIONS(1326), 1, aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(1328), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, + ACTIONS(1332), 1, sym__escaped_string, - ACTIONS(1589), 1, + STATE(1030), 1, + sym__expression, + STATE(1115), 1, + sym_object_access, + STATE(1135), 1, + sym__decimal_literal, + ACTIONS(1292), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(1330), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(679), 2, + sym_comment, + sym_include, + STATE(1078), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1294), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1137), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1141), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [51301] = 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(653), 1, + sym__integer_literal, + ACTIONS(655), 1, + anon_sym_LBRACK, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + aux_sym_unary_expression_token1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1822), 1, + aux_sym_unary_expression_token2, + ACTIONS(1824), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(1826), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(1828), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(1830), 1, + aux_sym_locked_expression_token1, + ACTIONS(1832), 1, + aux_sym_dataset_expression_token1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - STATE(9), 1, + ACTIONS(1836), 1, + aux_sym_if_statement_token1, + ACTIONS(1838), 1, + aux_sym_accumulate_expression_token1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2594), 1, + STATE(1313), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(668), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(680), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -99650,80 +101324,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [50942] = 29, + [51422] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1288), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1296), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1298), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1300), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1302), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(1304), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(1306), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(1308), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(1310), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(1312), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(1314), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + ACTIONS(1316), 1, + aux_sym_input_expression_token1, + ACTIONS(1318), 1, aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(1320), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, + ACTIONS(1326), 1, aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(1328), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, + ACTIONS(1332), 1, sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(1026), 1, + sym__expression, + STATE(1115), 1, sym_object_access, - STATE(21), 1, + STATE(1135), 1, sym__decimal_literal, - STATE(2664), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1292), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1330), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(669), 2, + STATE(681), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1078), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1294), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1137), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1141), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -99740,80 +101415,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [51061] = 29, + [51543] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1288), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1296), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1298), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1300), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1302), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(1304), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(1306), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(1308), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(1310), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(1312), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(1314), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(1316), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(1318), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1320), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(1326), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1328), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1332), 1, + sym__escaped_string, + STATE(1028), 1, + sym__expression, + STATE(1115), 1, sym_object_access, - STATE(21), 1, + STATE(1135), 1, sym__decimal_literal, - STATE(2552), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1292), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1330), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(670), 2, + STATE(682), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1078), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1294), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1137), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1141), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -99830,80 +101506,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [51180] = 29, + [51664] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1288), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1296), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1298), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1300), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1302), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2125), 1, + ACTIONS(1304), 1, aux_sym_unary_expression_token2, - ACTIONS(2127), 1, + ACTIONS(1306), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2129), 1, + ACTIONS(1308), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2131), 1, + ACTIONS(1310), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2133), 1, + ACTIONS(1312), 1, aux_sym_locked_expression_token1, - ACTIONS(2135), 1, + ACTIONS(1314), 1, aux_sym_dataset_expression_token1, - ACTIONS(2137), 1, + ACTIONS(1316), 1, aux_sym_input_expression_token1, - ACTIONS(2139), 1, + ACTIONS(1318), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1320), 1, aux_sym_if_statement_token1, - ACTIONS(2141), 1, + ACTIONS(1326), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1328), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1332), 1, + sym__escaped_string, + STATE(1029), 1, + sym__expression, + STATE(1115), 1, sym_object_access, - STATE(21), 1, + STATE(1135), 1, sym__decimal_literal, - STATE(1719), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1292), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1330), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(671), 2, + STATE(683), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1078), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1294), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1137), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1141), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -99920,80 +101597,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [51299] = 29, + [51785] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2125), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(2127), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2129), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2131), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2133), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(2135), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(2137), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(2139), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(2141), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1707), 1, + STATE(2469), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(672), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(684), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -100010,80 +101688,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [51418] = 29, + [51906] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2125), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(2127), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2129), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2131), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2133), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(2135), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(2137), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(2139), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(2141), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1706), 1, + STATE(2470), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(673), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(685), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -100100,80 +101779,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [51537] = 29, + [52027] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2125), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(2127), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2129), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2131), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2133), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(2135), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(2137), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(2139), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(2141), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1703), 1, + STATE(2474), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(674), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(686), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -100190,80 +101870,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [51656] = 29, + [52148] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2125), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(2127), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2129), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2131), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2133), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(2135), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(2137), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(2139), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(2141), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1702), 1, + STATE(2475), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(675), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(687), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -100280,80 +101961,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [51775] = 29, + [52269] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(1816), 1, + aux_sym_input_expression_token1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2543), 1, + STATE(2477), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(676), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(688), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -100370,80 +102052,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [51894] = 29, + [52390] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2221), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(2223), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(2231), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(2233), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2235), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2237), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(2239), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2241), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2243), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2245), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(2247), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(2249), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(2251), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2253), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(2255), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2257), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2261), 1, - sym__escaped_string, - STATE(1900), 1, - sym__expression, - STATE(2155), 1, + STATE(15), 1, sym_object_access, - STATE(2856), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(2225), 2, + STATE(2480), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2259), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(677), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(689), 2, sym_comment, sym_include, - ACTIONS(2227), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2789), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2784), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -100460,80 +102143,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [52013] = 29, + [52511] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2221), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(2223), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(2231), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(2233), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2235), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2237), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2160), 1, aux_sym_unary_expression_token2, - ACTIONS(2239), 1, + ACTIONS(2162), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2241), 1, + ACTIONS(2164), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2243), 1, + ACTIONS(2166), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2245), 1, + ACTIONS(2168), 1, aux_sym_locked_expression_token1, - ACTIONS(2247), 1, + ACTIONS(2170), 1, aux_sym_dataset_expression_token1, - ACTIONS(2249), 1, + ACTIONS(2172), 1, aux_sym_input_expression_token1, - ACTIONS(2251), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2253), 1, + ACTIONS(2174), 1, aux_sym_if_statement_token1, - ACTIONS(2255), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2257), 1, + ACTIONS(2176), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2261), 1, - sym__escaped_string, - STATE(1899), 1, - sym__expression, - STATE(2155), 1, + STATE(15), 1, sym_object_access, - STATE(2856), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(2225), 2, + STATE(1440), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2259), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(678), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(690), 2, sym_comment, sym_include, - ACTIONS(2227), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2789), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2784), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -100550,80 +102234,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [52132] = 29, + [52632] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2221), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(2223), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(2231), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(2233), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(2235), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(2237), 1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(2239), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2241), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2243), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2245), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(2247), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(2249), 1, + ACTIONS(1770), 1, aux_sym_input_expression_token1, - ACTIONS(2251), 1, + ACTIONS(1772), 1, aux_sym_scope_tuning_token1, - ACTIONS(2253), 1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(2255), 1, + ACTIONS(1776), 1, aux_sym_can_find_expression_token1, - ACTIONS(2257), 1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2261), 1, + ACTIONS(1782), 1, sym__escaped_string, - STATE(1898), 1, + STATE(1356), 1, sym__expression, - STATE(2155), 1, + STATE(2002), 1, sym_object_access, - STATE(2856), 1, + STATE(2748), 1, sym__decimal_literal, - ACTIONS(2225), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(2259), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(679), 2, + STATE(691), 2, sym_comment, sym_include, - ACTIONS(2227), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2789), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2784), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -100640,80 +102325,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [52251] = 29, + [52753] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2221), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(2223), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(2231), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(2233), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2235), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2237), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(2239), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2241), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2243), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2245), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(2247), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(2249), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(2251), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2253), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(2255), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2257), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2261), 1, - sym__escaped_string, - STATE(1897), 1, - sym__expression, - STATE(2155), 1, + STATE(15), 1, sym_object_access, - STATE(2856), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(2225), 2, + STATE(2722), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2259), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(680), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(692), 2, sym_comment, sym_include, - ACTIONS(2227), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2789), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2784), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -100730,80 +102416,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [52370] = 29, + [52874] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2221), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(2223), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(2231), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(2233), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2235), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2237), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(2239), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2241), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2243), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2245), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(2247), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(2249), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(2251), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2253), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(2255), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2257), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2261), 1, - sym__escaped_string, - STATE(1895), 1, - sym__expression, - STATE(2155), 1, + STATE(15), 1, sym_object_access, - STATE(2856), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(2225), 2, + STATE(2723), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2259), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(681), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(693), 2, sym_comment, sym_include, - ACTIONS(2227), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2789), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2784), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -100820,80 +102507,172 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [52995] = 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(653), 1, + sym__integer_literal, + ACTIONS(655), 1, + anon_sym_LBRACK, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + aux_sym_unary_expression_token1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1784), 1, + aux_sym_unary_expression_token2, + ACTIONS(1786), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(1788), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(1790), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(1792), 1, + aux_sym_locked_expression_token1, + ACTIONS(1794), 1, + aux_sym_dataset_expression_token1, + ACTIONS(1796), 1, + aux_sym_input_expression_token1, + ACTIONS(1798), 1, + aux_sym_if_statement_token1, + ACTIONS(1800), 1, + aux_sym_accumulate_expression_token1, + STATE(15), 1, + sym_object_access, + STATE(43), 1, + sym__decimal_literal, + STATE(2728), 1, + sym__expression, + ACTIONS(649), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(689), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(13), 2, + sym_function_call, sym_new_expression, + STATE(694), 2, + sym_comment, + sym_include, + ACTIONS(651), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(29), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(30), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [52489] = 29, + [53116] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2221), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(2223), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(2231), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(2233), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(2235), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(2237), 1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(2239), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2241), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2243), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2245), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(2247), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(2249), 1, + ACTIONS(1770), 1, aux_sym_input_expression_token1, - ACTIONS(2251), 1, + ACTIONS(1772), 1, aux_sym_scope_tuning_token1, - ACTIONS(2253), 1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(2255), 1, + ACTIONS(1776), 1, aux_sym_can_find_expression_token1, - ACTIONS(2257), 1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2261), 1, + ACTIONS(1782), 1, sym__escaped_string, - STATE(1891), 1, + STATE(1375), 1, sym__expression, - STATE(2155), 1, + STATE(2002), 1, sym_object_access, - STATE(2856), 1, + STATE(2748), 1, sym__decimal_literal, - ACTIONS(2225), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(2259), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(682), 2, + STATE(695), 2, sym_comment, sym_include, - ACTIONS(2227), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2789), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2784), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -100910,80 +102689,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [52608] = 29, + [53237] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2107), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(2109), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2111), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2113), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2115), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(2117), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(2119), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(2121), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(2123), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2490), 1, + STATE(2729), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(683), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(696), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -101000,80 +102780,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [52727] = 29, + [53358] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2107), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(2109), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2111), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2113), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2115), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(2117), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(2119), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(2121), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(2123), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2473), 1, + STATE(2732), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(684), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(697), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -101090,80 +102871,172 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [52846] = 29, + [53479] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(1758), 1, + aux_sym_unary_expression_token2, + ACTIONS(1760), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(1762), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(1764), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(1766), 1, + aux_sym_locked_expression_token1, + ACTIONS(1768), 1, + aux_sym_dataset_expression_token1, + ACTIONS(1770), 1, + aux_sym_input_expression_token1, + ACTIONS(1772), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(1774), 1, + aux_sym_if_statement_token1, + ACTIONS(1776), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(1778), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(1782), 1, sym__escaped_string, - ACTIONS(2047), 1, + STATE(1376), 1, + sym__expression, + STATE(2002), 1, + sym_object_access, + STATE(2748), 1, + sym__decimal_literal, + ACTIONS(1746), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(1780), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(698), 2, + sym_comment, + sym_include, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(2749), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(2700), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [53600] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1902), 1, + sym_identifier, + ACTIONS(1904), 1, + anon_sym_LBRACE, + ACTIONS(1910), 1, + sym__integer_literal, + ACTIONS(1912), 1, + anon_sym_LBRACK, + ACTIONS(1914), 1, + anon_sym_LPAREN, + ACTIONS(1916), 1, + aux_sym_unary_expression_token1, + ACTIONS(1918), 1, aux_sym_unary_expression_token2, - ACTIONS(2049), 1, + ACTIONS(1920), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2051), 1, + ACTIONS(1922), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2053), 1, + ACTIONS(1924), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2055), 1, + ACTIONS(1926), 1, aux_sym_locked_expression_token1, - ACTIONS(2057), 1, + ACTIONS(1928), 1, aux_sym_dataset_expression_token1, - ACTIONS(2059), 1, + ACTIONS(1930), 1, aux_sym_input_expression_token1, - ACTIONS(2061), 1, + ACTIONS(1932), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1934), 1, aux_sym_if_statement_token1, - ACTIONS(2063), 1, + ACTIONS(1936), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1938), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1942), 1, + sym__escaped_string, + STATE(1282), 1, + sym__expression, + STATE(1319), 1, sym_object_access, - STATE(21), 1, + STATE(1412), 1, sym__decimal_literal, - STATE(1404), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1906), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1940), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(685), 2, + STATE(699), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1321), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1908), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1451), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1448), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -101180,80 +103053,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [52965] = 29, + [53721] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2107), 1, + ACTIONS(2160), 1, aux_sym_unary_expression_token2, - ACTIONS(2109), 1, + ACTIONS(2162), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2111), 1, + ACTIONS(2164), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2113), 1, + ACTIONS(2166), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2115), 1, + ACTIONS(2168), 1, aux_sym_locked_expression_token1, - ACTIONS(2117), 1, + ACTIONS(2170), 1, aux_sym_dataset_expression_token1, - ACTIONS(2119), 1, + ACTIONS(2172), 1, aux_sym_input_expression_token1, - ACTIONS(2121), 1, + ACTIONS(2174), 1, aux_sym_if_statement_token1, - ACTIONS(2123), 1, + ACTIONS(2176), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2472), 1, + STATE(1410), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(686), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(700), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -101270,80 +103144,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [53084] = 29, + [53842] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2107), 1, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(2109), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2111), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2113), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2115), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(2117), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(2119), 1, + ACTIONS(2058), 1, aux_sym_input_expression_token1, - ACTIONS(2121), 1, + ACTIONS(2060), 1, aux_sym_if_statement_token1, - ACTIONS(2123), 1, + ACTIONS(2062), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2469), 1, + STATE(2390), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(687), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(701), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -101360,80 +103235,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [53203] = 29, + [53963] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2107), 1, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(2109), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2111), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2113), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2115), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(2117), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(2119), 1, + ACTIONS(2058), 1, aux_sym_input_expression_token1, - ACTIONS(2121), 1, + ACTIONS(2060), 1, aux_sym_if_statement_token1, - ACTIONS(2123), 1, + ACTIONS(2062), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2467), 1, + STATE(2391), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(688), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(702), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -101450,80 +103326,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [53322] = 29, + [54084] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2107), 1, + ACTIONS(1822), 1, aux_sym_unary_expression_token2, - ACTIONS(2109), 1, + ACTIONS(1824), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2111), 1, + ACTIONS(1826), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2113), 1, + ACTIONS(1828), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2115), 1, + ACTIONS(1830), 1, aux_sym_locked_expression_token1, - ACTIONS(2117), 1, + ACTIONS(1832), 1, aux_sym_dataset_expression_token1, - ACTIONS(2119), 1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - ACTIONS(2121), 1, + ACTIONS(1836), 1, aux_sym_if_statement_token1, - ACTIONS(2123), 1, + ACTIONS(1838), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2465), 1, + STATE(1299), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(689), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(703), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -101540,80 +103417,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [53441] = 29, + [54205] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1589), 1, + ACTIONS(1601), 1, aux_sym_input_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2542), 1, + STATE(2762), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(690), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(704), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -101630,80 +103508,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [53560] = 29, + [54326] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2100), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2102), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2108), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2110), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2114), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(2116), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(2118), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(2120), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(2122), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(2124), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(2126), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(2128), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(2130), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2132), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(2134), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2136), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2140), 1, + sym__escaped_string, + STATE(2252), 1, + sym__expression, + STATE(2485), 1, sym_object_access, - STATE(21), 1, + STATE(2966), 1, sym__decimal_literal, - STATE(2655), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2104), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2138), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(691), 2, + STATE(705), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2558), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2106), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2947), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2959), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -101720,80 +103599,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [53679] = 29, + [54447] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(695), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(697), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(699), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(701), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(703), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(705), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + ACTIONS(707), 1, + aux_sym_input_expression_token1, + ACTIONS(709), 1, aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(713), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(723), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2698), 1, + STATE(1359), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(692), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(706), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -101810,80 +103690,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [53798] = 29, + [54568] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1733), 1, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(1735), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1737), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1739), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1741), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(1743), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(1745), 1, + ACTIONS(2058), 1, aux_sym_input_expression_token1, - ACTIONS(1747), 1, + ACTIONS(2060), 1, aux_sym_if_statement_token1, - ACTIONS(1749), 1, + ACTIONS(2062), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1480), 1, + STATE(2393), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(693), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(707), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -101900,80 +103781,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [53917] = 29, + [54689] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2125), 1, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(2127), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2129), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2131), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2133), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(2135), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(2137), 1, + ACTIONS(2076), 1, aux_sym_input_expression_token1, - ACTIONS(2139), 1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(2141), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1700), 1, + STATE(1175), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(694), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(708), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -101990,80 +103872,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [54036] = 29, + [54810] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1733), 1, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(1735), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1737), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1739), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1741), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(1743), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(1745), 1, + ACTIONS(2058), 1, aux_sym_input_expression_token1, - ACTIONS(1747), 1, + ACTIONS(2060), 1, aux_sym_if_statement_token1, - ACTIONS(1749), 1, + ACTIONS(2062), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1496), 1, + STATE(2394), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(695), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(709), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -102080,80 +103963,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [54155] = 29, + [54931] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1751), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1753), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1759), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1761), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1765), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1767), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(1769), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1771), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1773), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1775), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(1777), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(1779), 1, + ACTIONS(2058), 1, aux_sym_input_expression_token1, - ACTIONS(1781), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1783), 1, + ACTIONS(2060), 1, aux_sym_if_statement_token1, - ACTIONS(1785), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1787), 1, + ACTIONS(2062), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1791), 1, - sym__escaped_string, - STATE(1568), 1, - sym__expression, - STATE(2187), 1, + STATE(15), 1, sym_object_access, - STATE(2779), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1755), 2, + STATE(2395), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1789), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(696), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(710), 2, sym_comment, sym_include, - ACTIONS(1757), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2787), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2783), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -102170,80 +104054,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [54274] = 29, + [55052] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1733), 1, + ACTIONS(2238), 1, aux_sym_unary_expression_token2, - ACTIONS(1735), 1, + ACTIONS(2240), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1737), 1, + ACTIONS(2242), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1739), 1, + ACTIONS(2244), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1741), 1, + ACTIONS(2246), 1, aux_sym_locked_expression_token1, - ACTIONS(1743), 1, + ACTIONS(2248), 1, aux_sym_dataset_expression_token1, - ACTIONS(1745), 1, + ACTIONS(2250), 1, aux_sym_input_expression_token1, - ACTIONS(1747), 1, + ACTIONS(2252), 1, aux_sym_if_statement_token1, - ACTIONS(1749), 1, + ACTIONS(2254), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1465), 1, + STATE(1210), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(697), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(711), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -102260,149 +104145,172 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [54393] = 8, + [55173] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1090), 1, - anon_sym_LBRACK, - ACTIONS(1092), 1, - anon_sym_LPAREN, - STATE(773), 1, - sym_function_arguments, - STATE(698), 2, - sym_comment, - sym_include, - ACTIONS(63), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(69), 50, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(645), 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, + ACTIONS(647), 1, + anon_sym_LBRACE, + ACTIONS(653), 1, sym__integer_literal, - sym_date_literal, + ACTIONS(655), 1, + anon_sym_LBRACK, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, aux_sym_unary_expression_token1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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(677), 1, aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, + sym_object_access, + STATE(43), 1, + sym__decimal_literal, + STATE(2758), 1, + sym__expression, + ACTIONS(649), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [54470] = 29, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(712), 2, + sym_comment, + sym_include, + ACTIONS(651), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(29), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(30), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [55294] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1733), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(1735), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1737), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1739), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1741), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(1743), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(1745), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(1747), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(1749), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1468), 1, + STATE(2838), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(699), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(713), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -102419,80 +104327,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [54589] = 29, + [55415] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2647), 1, + STATE(2842), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(700), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(714), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -102509,80 +104418,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [54708] = 29, + [55536] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1987), 1, + ACTIONS(1840), 1, sym_identifier, - ACTIONS(1989), 1, + ACTIONS(1842), 1, anon_sym_LBRACE, - ACTIONS(1995), 1, + ACTIONS(1848), 1, sym__integer_literal, - ACTIONS(1997), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1999), 1, + ACTIONS(1852), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1854), 1, aux_sym_unary_expression_token1, - ACTIONS(2003), 1, + ACTIONS(1856), 1, aux_sym_unary_expression_token2, - ACTIONS(2005), 1, + ACTIONS(1858), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2007), 1, + ACTIONS(1860), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2009), 1, + ACTIONS(1862), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2011), 1, + ACTIONS(1864), 1, aux_sym_locked_expression_token1, - ACTIONS(2013), 1, + ACTIONS(1866), 1, aux_sym_dataset_expression_token1, - ACTIONS(2015), 1, + ACTIONS(1868), 1, aux_sym_input_expression_token1, - ACTIONS(2017), 1, + ACTIONS(1870), 1, aux_sym_scope_tuning_token1, - ACTIONS(2019), 1, + ACTIONS(1872), 1, aux_sym_if_statement_token1, - ACTIONS(2021), 1, + ACTIONS(1874), 1, aux_sym_can_find_expression_token1, - ACTIONS(2023), 1, + ACTIONS(1876), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2027), 1, + ACTIONS(1880), 1, sym__escaped_string, - STATE(2006), 1, + STATE(1507), 1, sym__expression, - STATE(2453), 1, + STATE(2197), 1, sym_object_access, - STATE(2980), 1, + STATE(2691), 1, sym__decimal_literal, - ACTIONS(1991), 2, + ACTIONS(1844), 2, sym_null_expression, sym_date_literal, - ACTIONS(2025), 2, + ACTIONS(1878), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(701), 2, + STATE(715), 2, sym_comment, sym_include, - ACTIONS(1993), 4, + STATE(2459), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1846), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2962), 4, + STATE(2692), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2927), 23, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -102599,80 +104509,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [54827] = 29, + [55657] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2718), 1, + STATE(2846), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(702), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(716), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -102689,80 +104600,172 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [55778] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1742), 1, + sym_identifier, + ACTIONS(1744), 1, + anon_sym_LBRACE, + ACTIONS(1750), 1, + sym__integer_literal, + ACTIONS(1752), 1, + anon_sym_LBRACK, + ACTIONS(1754), 1, + anon_sym_LPAREN, + ACTIONS(1756), 1, + aux_sym_unary_expression_token1, + ACTIONS(1758), 1, + aux_sym_unary_expression_token2, + ACTIONS(1760), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(1762), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(1764), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(1766), 1, + aux_sym_locked_expression_token1, + ACTIONS(1768), 1, + aux_sym_dataset_expression_token1, + ACTIONS(1770), 1, + aux_sym_input_expression_token1, + ACTIONS(1772), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1774), 1, + aux_sym_if_statement_token1, + ACTIONS(1776), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1778), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(1782), 1, + sym__escaped_string, + STATE(1360), 1, + sym__expression, + STATE(2002), 1, + sym_object_access, + STATE(2748), 1, + sym__decimal_literal, + ACTIONS(1746), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(1780), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(717), 2, + sym_comment, + sym_include, + STATE(2498), 2, + sym_function_call, sym_new_expression, + ACTIONS(1748), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(2749), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(2700), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [54946] = 29, + [55899] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2263), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(2265), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2267), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2269), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2271), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(2273), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(2275), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(2277), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(2279), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2599), 1, + STATE(2735), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(703), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(718), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -102779,80 +104782,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [55065] = 29, + [56020] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2719), 1, + STATE(2767), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(704), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(719), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -102869,148 +104873,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [55184] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1092), 1, - anon_sym_LPAREN, - STATE(773), 1, - sym_function_arguments, - STATE(705), 2, - sym_comment, - sym_include, - ACTIONS(83), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(85), 51, - 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, - sym_date_literal, - anon_sym_LBRACK, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [55259] = 29, + [56141] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2263), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(2265), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2267), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2269), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2271), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(2273), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(2275), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(2277), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(2279), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2602), 1, + STATE(2847), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(706), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(720), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -103027,80 +104964,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [55378] = 29, + [56262] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2263), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(2265), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2267), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2269), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2271), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(2273), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(2275), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(2277), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(2279), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2613), 1, + STATE(2882), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(707), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(721), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -103117,80 +105055,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [55497] = 29, + [56383] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2221), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(2223), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(2231), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(2233), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2235), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2237), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(2239), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2241), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2243), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2245), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(2247), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(2249), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(2251), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2253), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(2255), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2257), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2261), 1, - sym__escaped_string, - STATE(1543), 1, - sym__expression, - STATE(2155), 1, + STATE(15), 1, sym_object_access, - STATE(2856), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(2225), 2, + STATE(2894), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2259), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(708), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(722), 2, sym_comment, sym_include, - ACTIONS(2227), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2789), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2784), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -103207,80 +105146,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [55616] = 29, + [56504] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2263), 1, + ACTIONS(2160), 1, aux_sym_unary_expression_token2, - ACTIONS(2265), 1, + ACTIONS(2162), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2267), 1, + ACTIONS(2164), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2269), 1, + ACTIONS(2166), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2271), 1, + ACTIONS(2168), 1, aux_sym_locked_expression_token1, - ACTIONS(2273), 1, + ACTIONS(2170), 1, aux_sym_dataset_expression_token1, - ACTIONS(2275), 1, + ACTIONS(2172), 1, aux_sym_input_expression_token1, - ACTIONS(2277), 1, + ACTIONS(2174), 1, aux_sym_if_statement_token1, - ACTIONS(2279), 1, + ACTIONS(2176), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2618), 1, + STATE(1443), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(709), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(723), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -103297,80 +105237,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [55735] = 29, + [56625] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2221), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(2223), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(2231), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(2233), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2235), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2237), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(2239), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2241), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2243), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2245), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(2247), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(2249), 1, + ACTIONS(2058), 1, aux_sym_input_expression_token1, - ACTIONS(2251), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2253), 1, + ACTIONS(2060), 1, aux_sym_if_statement_token1, - ACTIONS(2255), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2257), 1, + ACTIONS(2062), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2261), 1, - sym__escaped_string, - STATE(1535), 1, - sym__expression, - STATE(2155), 1, + STATE(15), 1, sym_object_access, - STATE(2856), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(2225), 2, + STATE(2396), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2259), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(710), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(724), 2, sym_comment, sym_include, - ACTIONS(2227), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2789), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2784), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -103387,80 +105328,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [55854] = 29, + [56746] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2263), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(2265), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2267), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2269), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2271), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(2273), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(2275), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(2277), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(2279), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2622), 1, + STATE(2848), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(711), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(725), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -103477,80 +105419,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [55973] = 29, + [56867] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2263), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(2265), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2267), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2269), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2271), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(2273), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(2275), 1, - aux_sym_input_expression_token1, - ACTIONS(2277), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(2279), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2623), 1, + STATE(2896), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(712), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(726), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -103567,80 +105510,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [56092] = 29, + [56988] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2143), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(2145), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2147), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2149), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2151), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(2153), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(2155), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(2157), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(2159), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1193), 1, + STATE(2753), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(713), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(727), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -103657,80 +105601,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [56211] = 29, + [57109] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1211), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1217), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1219), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1221), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1223), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1225), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1822), 1, aux_sym_unary_expression_token2, - ACTIONS(1227), 1, + ACTIONS(1824), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1229), 1, + ACTIONS(1826), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1231), 1, + ACTIONS(1828), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1233), 1, + ACTIONS(1830), 1, aux_sym_locked_expression_token1, - ACTIONS(1235), 1, + ACTIONS(1832), 1, aux_sym_dataset_expression_token1, - ACTIONS(1237), 1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - ACTIONS(1239), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1241), 1, + ACTIONS(1836), 1, aux_sym_if_statement_token1, - ACTIONS(1247), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1249), 1, + ACTIONS(1838), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1253), 1, - sym__escaped_string, - STATE(1015), 1, - sym__expression, - STATE(1086), 1, + STATE(15), 1, sym_object_access, - STATE(1116), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1213), 2, + STATE(1303), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1251), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(714), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(728), 2, sym_comment, sym_include, - ACTIONS(1215), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1133), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1124), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -103747,80 +105692,148 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [56330] = 29, + [57230] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, - sym_identifier, - ACTIONS(1211), 1, + ACTIONS(2316), 1, + sym__namedot, + STATE(729), 2, + sym_comment, + sym_include, + ACTIONS(150), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(152), 52, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(1217), 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, - ACTIONS(1219), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(1221), 1, anon_sym_LPAREN, - ACTIONS(1223), 1, aux_sym_unary_expression_token1, - ACTIONS(1225), 1, aux_sym_unary_expression_token2, - ACTIONS(1227), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1229), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1231), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1233), 1, aux_sym_locked_expression_token1, - ACTIONS(1235), 1, aux_sym_dataset_expression_token1, - ACTIONS(1237), 1, aux_sym_input_expression_token1, - ACTIONS(1239), 1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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(1241), 1, aux_sym_if_statement_token1, - ACTIONS(1247), 1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, aux_sym_can_find_expression_token1, - ACTIONS(1249), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1253), 1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [57303] = 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(653), 1, + sym__integer_literal, + ACTIONS(655), 1, + anon_sym_LBRACK, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + aux_sym_unary_expression_token1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, sym__escaped_string, - STATE(1010), 1, - sym__expression, - STATE(1086), 1, + ACTIONS(2298), 1, + aux_sym_unary_expression_token2, + ACTIONS(2300), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(2302), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(2304), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(2306), 1, + aux_sym_locked_expression_token1, + ACTIONS(2308), 1, + aux_sym_dataset_expression_token1, + ACTIONS(2310), 1, + aux_sym_input_expression_token1, + ACTIONS(2312), 1, + aux_sym_if_statement_token1, + ACTIONS(2314), 1, + aux_sym_accumulate_expression_token1, + STATE(15), 1, sym_object_access, - STATE(1116), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1213), 2, + STATE(1344), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1251), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(715), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(730), 2, sym_comment, sym_include, - ACTIONS(1215), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1133), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1124), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -103837,80 +105850,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [56449] = 29, + [57424] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1211), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1217), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1219), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1221), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1223), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1225), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(1227), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1229), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1231), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1233), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(1235), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(1237), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(1239), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1241), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(1247), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1249), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1253), 1, - sym__escaped_string, - STATE(1017), 1, - sym__expression, - STATE(1086), 1, + STATE(15), 1, sym_object_access, - STATE(1116), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1213), 2, + STATE(2885), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1251), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(716), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(731), 2, sym_comment, sym_include, - ACTIONS(1215), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1133), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1124), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -103927,170 +105941,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [56568] = 29, + [57545] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1211), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1217), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1219), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1221), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1223), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1225), 1, - aux_sym_unary_expression_token2, - ACTIONS(1227), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(1229), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(1231), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(1233), 1, - aux_sym_locked_expression_token1, - ACTIONS(1235), 1, - aux_sym_dataset_expression_token1, - ACTIONS(1237), 1, - aux_sym_input_expression_token1, - ACTIONS(1239), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(1241), 1, - aux_sym_if_statement_token1, - ACTIONS(1247), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(1249), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(1253), 1, + ACTIONS(691), 1, sym__escaped_string, - STATE(1018), 1, - sym__expression, - STATE(1086), 1, - sym_object_access, - STATE(1116), 1, - sym__decimal_literal, - ACTIONS(1213), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(1251), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(717), 2, - sym_comment, - sym_include, - ACTIONS(1215), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(1133), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(1124), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [56687] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1209), 1, - sym_identifier, - ACTIONS(1211), 1, - anon_sym_LBRACE, - ACTIONS(1217), 1, - sym__integer_literal, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1221), 1, - anon_sym_LPAREN, - ACTIONS(1223), 1, - aux_sym_unary_expression_token1, - ACTIONS(1225), 1, + ACTIONS(1944), 1, aux_sym_unary_expression_token2, - ACTIONS(1227), 1, + ACTIONS(1946), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1229), 1, + ACTIONS(1948), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1231), 1, + ACTIONS(1950), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1233), 1, + ACTIONS(1952), 1, aux_sym_locked_expression_token1, - ACTIONS(1235), 1, + ACTIONS(1954), 1, aux_sym_dataset_expression_token1, - ACTIONS(1237), 1, + ACTIONS(1956), 1, aux_sym_input_expression_token1, - ACTIONS(1239), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1241), 1, + ACTIONS(1958), 1, aux_sym_if_statement_token1, - ACTIONS(1247), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1249), 1, + ACTIONS(1960), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1253), 1, - sym__escaped_string, - STATE(1019), 1, - sym__expression, - STATE(1086), 1, + STATE(15), 1, sym_object_access, - STATE(1116), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1213), 2, + STATE(2586), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1251), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(718), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(732), 2, sym_comment, sym_include, - ACTIONS(1215), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1133), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1124), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -104107,80 +106032,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [56806] = 29, + [57666] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(1211), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(1217), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(1219), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(1221), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(1223), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(1225), 1, + ACTIONS(1996), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2002), 1, + sym__escaped_string, + ACTIONS(2318), 1, aux_sym_unary_expression_token2, - ACTIONS(1227), 1, + ACTIONS(2320), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1229), 1, + ACTIONS(2322), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1231), 1, + ACTIONS(2324), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1233), 1, + ACTIONS(2326), 1, aux_sym_locked_expression_token1, - ACTIONS(1235), 1, + ACTIONS(2328), 1, aux_sym_dataset_expression_token1, - ACTIONS(1237), 1, + ACTIONS(2330), 1, aux_sym_input_expression_token1, - ACTIONS(1239), 1, + ACTIONS(2332), 1, aux_sym_scope_tuning_token1, - ACTIONS(1241), 1, + ACTIONS(2334), 1, aux_sym_if_statement_token1, - ACTIONS(1247), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1249), 1, + ACTIONS(2336), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1253), 1, - sym__escaped_string, - STATE(1021), 1, - sym__expression, - STATE(1086), 1, + STATE(193), 1, sym_object_access, - STATE(1116), 1, + STATE(311), 1, sym__decimal_literal, - ACTIONS(1213), 2, + STATE(1306), 1, + sym__expression, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(1251), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(719), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(733), 2, sym_comment, sym_include, - ACTIONS(1215), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1133), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1124), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -104197,80 +106123,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [56925] = 29, + [57787] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(1996), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2002), 1, + sym__escaped_string, + ACTIONS(2318), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(2320), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(2322), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(2324), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(2326), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(2328), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + ACTIONS(2330), 1, + aux_sym_input_expression_token1, + ACTIONS(2332), 1, aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(2334), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(2336), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(193), 1, sym_object_access, - STATE(21), 1, + STATE(311), 1, sym__decimal_literal, - STATE(2615), 1, + STATE(1294), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(720), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(734), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -104287,80 +106214,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [57044] = 29, + [57908] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(1996), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(2002), 1, sym__escaped_string, - ACTIONS(1951), 1, + ACTIONS(2318), 1, aux_sym_unary_expression_token2, - ACTIONS(1953), 1, + ACTIONS(2320), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1955), 1, + ACTIONS(2322), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1957), 1, + ACTIONS(2324), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1959), 1, + ACTIONS(2326), 1, aux_sym_locked_expression_token1, - ACTIONS(1961), 1, + ACTIONS(2328), 1, aux_sym_dataset_expression_token1, - ACTIONS(1963), 1, + ACTIONS(2330), 1, aux_sym_input_expression_token1, - ACTIONS(1965), 1, + ACTIONS(2332), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2334), 1, aux_sym_if_statement_token1, - ACTIONS(1967), 1, + ACTIONS(2336), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(193), 1, sym_object_access, - STATE(21), 1, + STATE(311), 1, sym__decimal_literal, - STATE(2442), 1, + STATE(1298), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(721), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(735), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -104377,80 +106305,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [57163] = 29, + [58029] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(1996), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(2002), 1, sym__escaped_string, - ACTIONS(2143), 1, + ACTIONS(2318), 1, aux_sym_unary_expression_token2, - ACTIONS(2145), 1, + ACTIONS(2320), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2147), 1, + ACTIONS(2322), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2149), 1, + ACTIONS(2324), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2151), 1, + ACTIONS(2326), 1, aux_sym_locked_expression_token1, - ACTIONS(2153), 1, + ACTIONS(2328), 1, aux_sym_dataset_expression_token1, - ACTIONS(2155), 1, + ACTIONS(2330), 1, aux_sym_input_expression_token1, - ACTIONS(2157), 1, + ACTIONS(2332), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2334), 1, aux_sym_if_statement_token1, - ACTIONS(2159), 1, + ACTIONS(2336), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(193), 1, sym_object_access, - STATE(21), 1, + STATE(311), 1, sym__decimal_literal, - STATE(1197), 1, + STATE(1302), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(722), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(736), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -104467,80 +106396,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [57282] = 29, + [58150] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(1996), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(2002), 1, sym__escaped_string, - ACTIONS(2143), 1, + ACTIONS(2318), 1, aux_sym_unary_expression_token2, - ACTIONS(2145), 1, + ACTIONS(2320), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2147), 1, + ACTIONS(2322), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2149), 1, + ACTIONS(2324), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2151), 1, + ACTIONS(2326), 1, aux_sym_locked_expression_token1, - ACTIONS(2153), 1, + ACTIONS(2328), 1, aux_sym_dataset_expression_token1, - ACTIONS(2155), 1, + ACTIONS(2330), 1, aux_sym_input_expression_token1, - ACTIONS(2157), 1, + ACTIONS(2332), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2334), 1, aux_sym_if_statement_token1, - ACTIONS(2159), 1, + ACTIONS(2336), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(193), 1, sym_object_access, - STATE(21), 1, + STATE(311), 1, sym__decimal_literal, - STATE(1191), 1, + STATE(1314), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(723), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(737), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -104557,80 +106487,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [57401] = 29, + [58271] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(1996), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(2002), 1, sym__escaped_string, - ACTIONS(1671), 1, + ACTIONS(2318), 1, aux_sym_unary_expression_token2, - ACTIONS(1673), 1, + ACTIONS(2320), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1675), 1, + ACTIONS(2322), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1677), 1, + ACTIONS(2324), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1679), 1, + ACTIONS(2326), 1, aux_sym_locked_expression_token1, - ACTIONS(1681), 1, + ACTIONS(2328), 1, aux_sym_dataset_expression_token1, - ACTIONS(1683), 1, + ACTIONS(2330), 1, aux_sym_input_expression_token1, - ACTIONS(1685), 1, + ACTIONS(2332), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2334), 1, aux_sym_if_statement_token1, - ACTIONS(1687), 1, + ACTIONS(2336), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(193), 1, sym_object_access, - STATE(21), 1, + STATE(311), 1, sym__decimal_literal, - STATE(2031), 1, + STATE(1307), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(724), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(738), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -104647,80 +106578,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [57520] = 29, + [58392] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1671), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1673), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1681), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1683), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1685), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1687), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2045), 1, + STATE(2787), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(725), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(739), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -104737,80 +106669,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [57639] = 29, + [58513] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1671), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1673), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1681), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1683), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1685), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1687), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2052), 1, + STATE(2788), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(726), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(740), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -104827,80 +106760,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [57758] = 29, + [58634] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1671), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1673), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1681), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1683), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1685), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1687), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2053), 1, + STATE(2790), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(727), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(741), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -104917,80 +106851,147 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [57877] = 29, + [58755] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(742), 2, + sym_comment, + sym_include, + ACTIONS(146), 4, + sym__namecolon, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(148), 52, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [58826] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1671), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1673), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1681), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1683), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1685), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1687), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2055), 1, + STATE(2791), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(728), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(743), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -105007,80 +107008,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [57996] = 29, + [58947] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1671), 1, + ACTIONS(1944), 1, aux_sym_unary_expression_token2, - ACTIONS(1673), 1, + ACTIONS(1946), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1675), 1, + ACTIONS(1948), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1677), 1, + ACTIONS(1950), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1679), 1, + ACTIONS(1952), 1, aux_sym_locked_expression_token1, - ACTIONS(1681), 1, + ACTIONS(1954), 1, aux_sym_dataset_expression_token1, - ACTIONS(1683), 1, + ACTIONS(1956), 1, aux_sym_input_expression_token1, - ACTIONS(1685), 1, + ACTIONS(1958), 1, aux_sym_if_statement_token1, - ACTIONS(1687), 1, + ACTIONS(1960), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2056), 1, + STATE(2585), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(729), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(744), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -105097,80 +107099,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [58115] = 29, + [59068] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2143), 1, + ACTIONS(2220), 1, aux_sym_unary_expression_token2, - ACTIONS(2145), 1, + ACTIONS(2222), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2147), 1, + ACTIONS(2224), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2149), 1, + ACTIONS(2226), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2151), 1, + ACTIONS(2228), 1, aux_sym_locked_expression_token1, - ACTIONS(2153), 1, + ACTIONS(2230), 1, aux_sym_dataset_expression_token1, - ACTIONS(2155), 1, + ACTIONS(2232), 1, aux_sym_input_expression_token1, - ACTIONS(2157), 1, + ACTIONS(2234), 1, aux_sym_if_statement_token1, - ACTIONS(2159), 1, + ACTIONS(2236), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1196), 1, + STATE(1185), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(730), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(745), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -105187,80 +107190,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [58234] = 29, + [59189] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(2076), 1, + aux_sym_input_expression_token1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2590), 1, + STATE(1195), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(731), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(746), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -105277,80 +107281,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [58353] = 29, + [59310] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2608), 1, + STATE(2793), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(732), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(747), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -105367,80 +107372,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [58472] = 29, + [59431] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(1677), 1, + aux_sym_input_expression_token1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2611), 1, + STATE(2794), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(733), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(748), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -105457,80 +107463,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [58591] = 29, + [59552] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2143), 1, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(2145), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2147), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2149), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2151), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(2153), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(2155), 1, + ACTIONS(2076), 1, aux_sym_input_expression_token1, - ACTIONS(2157), 1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(2159), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1198), 1, + STATE(1178), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(734), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(749), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -105547,80 +107554,172 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [58710] = 29, + [59673] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1944), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(1946), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(1948), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(1950), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(1952), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(1954), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(1956), 1, + aux_sym_input_expression_token1, + ACTIONS(1958), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(1960), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, + STATE(15), 1, + sym_object_access, + STATE(43), 1, + sym__decimal_literal, + STATE(2584), 1, + sym__expression, + ACTIONS(649), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(689), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(750), 2, + sym_comment, + sym_include, + ACTIONS(651), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(29), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(30), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [59794] = 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(653), 1, + sym__integer_literal, + ACTIONS(655), 1, + anon_sym_LBRACK, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + aux_sym_unary_expression_token1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1589), 1, + ACTIONS(1944), 1, + aux_sym_unary_expression_token2, + ACTIONS(1946), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(1948), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(1950), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(1952), 1, + aux_sym_locked_expression_token1, + ACTIONS(1954), 1, + aux_sym_dataset_expression_token1, + ACTIONS(1956), 1, aux_sym_input_expression_token1, - STATE(9), 1, + ACTIONS(1958), 1, + aux_sym_if_statement_token1, + ACTIONS(1960), 1, + aux_sym_accumulate_expression_token1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2667), 1, + STATE(2583), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(735), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(751), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -105637,80 +107736,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [58829] = 29, + [59915] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(1770), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(1772), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(1776), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1782), 1, + sym__escaped_string, + STATE(1358), 1, + sym__expression, + STATE(2002), 1, sym_object_access, - STATE(21), 1, + STATE(2748), 1, sym__decimal_literal, - STATE(2554), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(736), 2, + STATE(752), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -105727,80 +107827,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [58948] = 29, + [60036] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1733), 1, + ACTIONS(1944), 1, aux_sym_unary_expression_token2, - ACTIONS(1735), 1, + ACTIONS(1946), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1737), 1, + ACTIONS(1948), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1739), 1, + ACTIONS(1950), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1741), 1, + ACTIONS(1952), 1, aux_sym_locked_expression_token1, - ACTIONS(1743), 1, + ACTIONS(1954), 1, aux_sym_dataset_expression_token1, - ACTIONS(1745), 1, + ACTIONS(1956), 1, aux_sym_input_expression_token1, - ACTIONS(1747), 1, + ACTIONS(1958), 1, aux_sym_if_statement_token1, - ACTIONS(1749), 1, + ACTIONS(1960), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1455), 1, + STATE(2582), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(737), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(753), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -105817,80 +107918,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [59067] = 29, + [60157] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2029), 1, + ACTIONS(2082), 1, aux_sym_unary_expression_token2, - ACTIONS(2031), 1, + ACTIONS(2084), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2033), 1, + ACTIONS(2086), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2035), 1, + ACTIONS(2088), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2037), 1, + ACTIONS(2090), 1, aux_sym_locked_expression_token1, - ACTIONS(2039), 1, + ACTIONS(2092), 1, aux_sym_dataset_expression_token1, - ACTIONS(2041), 1, + ACTIONS(2094), 1, aux_sym_input_expression_token1, - ACTIONS(2043), 1, + ACTIONS(2096), 1, aux_sym_if_statement_token1, - ACTIONS(2045), 1, + ACTIONS(2098), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1667), 1, + STATE(1237), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(738), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(754), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -105907,80 +108009,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [59186] = 29, + [60278] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2524), 1, + STATE(2834), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(739), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(755), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -105997,80 +108100,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [59305] = 29, + [60399] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2161), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(2163), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2165), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2167), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2169), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(2171), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(2173), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(2175), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(2177), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1158), 1, + STATE(2808), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(740), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(756), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -106087,80 +108191,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [59424] = 29, + [60520] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(1944), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(1946), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(1948), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(1950), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(1952), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(1954), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, + ACTIONS(1956), 1, aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(1958), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(1960), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1171), 1, + STATE(2581), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(741), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(757), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -106177,80 +108282,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [59543] = 29, + [60641] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2029), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(2031), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2033), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2035), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2037), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(2039), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(2041), 1, - aux_sym_input_expression_token1, - ACTIONS(2043), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(2045), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1570), 1, + STATE(2805), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(742), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(758), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -106267,80 +108373,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [59662] = 29, + [60762] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2029), 1, + ACTIONS(1704), 1, aux_sym_unary_expression_token2, - ACTIONS(2031), 1, + ACTIONS(1706), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2033), 1, + ACTIONS(1708), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2035), 1, + ACTIONS(1710), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2037), 1, + ACTIONS(1712), 1, aux_sym_locked_expression_token1, - ACTIONS(2039), 1, + ACTIONS(1714), 1, aux_sym_dataset_expression_token1, - ACTIONS(2041), 1, + ACTIONS(1716), 1, aux_sym_input_expression_token1, - ACTIONS(2043), 1, + ACTIONS(1718), 1, aux_sym_if_statement_token1, - ACTIONS(2045), 1, + ACTIONS(1720), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1572), 1, + STATE(2807), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(743), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(759), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -106357,260 +108464,147 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [59781] = 29, + [60883] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, - anon_sym_LBRACE, - ACTIONS(648), 1, - sym__integer_literal, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, - aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2029), 1, - aux_sym_unary_expression_token2, - ACTIONS(2031), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(2033), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(2035), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(2037), 1, - aux_sym_locked_expression_token1, - ACTIONS(2039), 1, - aux_sym_dataset_expression_token1, - ACTIONS(2041), 1, - aux_sym_input_expression_token1, - ACTIONS(2043), 1, - aux_sym_if_statement_token1, - ACTIONS(2045), 1, - aux_sym_accumulate_expression_token1, - STATE(9), 1, - sym_object_access, - STATE(21), 1, - sym__decimal_literal, - STATE(1578), 1, - sym__expression, - ACTIONS(644), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(684), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(744), 2, + STATE(760), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(100), 4, + sym__namecolon, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(102), 52, + 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, - STATE(40), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(25), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [59900] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, - anon_sym_LBRACE, - ACTIONS(648), 1, sym__integer_literal, - ACTIONS(650), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(656), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2029), 1, aux_sym_unary_expression_token2, - ACTIONS(2031), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2033), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2035), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2037), 1, aux_sym_locked_expression_token1, - ACTIONS(2039), 1, aux_sym_dataset_expression_token1, - ACTIONS(2041), 1, aux_sym_input_expression_token1, - ACTIONS(2043), 1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - ACTIONS(2045), 1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, - STATE(9), 1, - sym_object_access, - STATE(21), 1, - sym__decimal_literal, - STATE(1579), 1, - sym__expression, - ACTIONS(644), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(684), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(745), 2, - sym_comment, - sym_include, - ACTIONS(646), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(40), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(25), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [60019] = 29, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [60954] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(1770), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(1772), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(1776), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1782), 1, + sym__escaped_string, + STATE(1357), 1, + sym__expression, + STATE(2002), 1, sym_object_access, - STATE(21), 1, + STATE(2748), 1, sym__decimal_literal, - STATE(2730), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(746), 2, + STATE(761), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -106627,80 +108621,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [60138] = 29, + [61075] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(1884), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(1886), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(1888), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(1890), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(1892), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(1894), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, + ACTIONS(1896), 1, aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(1898), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1272), 1, + STATE(2567), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(747), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(762), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -106717,80 +108712,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [60257] = 29, + [61196] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1884), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(1886), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(1888), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(1890), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(1892), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(1894), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(1896), 1, + aux_sym_input_expression_token1, + ACTIONS(1898), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2589), 1, + STATE(2566), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(748), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(763), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -106807,80 +108803,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [60376] = 29, + [61317] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1884), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(1886), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(1888), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(1890), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(1892), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(1894), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(1896), 1, + aux_sym_input_expression_token1, + ACTIONS(1898), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2568), 1, + STATE(2565), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(749), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(764), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -106897,80 +108894,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [60495] = 29, + [61438] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1884), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(1886), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(1888), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(1890), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(1892), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(1894), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, + ACTIONS(1896), 1, aux_sym_input_expression_token1, - ACTIONS(1719), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(1898), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, - sym__escaped_string, - STATE(1333), 1, - sym__expression, - STATE(1896), 1, + STATE(15), 1, sym_object_access, - STATE(2582), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1693), 2, + STATE(2564), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(750), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(765), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -106987,80 +108985,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [60614] = 29, + [61559] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2065), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(2067), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(2073), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(2075), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(2077), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2079), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2081), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1884), 1, aux_sym_unary_expression_token2, - ACTIONS(2083), 1, + ACTIONS(1886), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2085), 1, + ACTIONS(1888), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2087), 1, + ACTIONS(1890), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2089), 1, + ACTIONS(1892), 1, aux_sym_locked_expression_token1, - ACTIONS(2091), 1, + ACTIONS(1894), 1, aux_sym_dataset_expression_token1, - ACTIONS(2093), 1, + ACTIONS(1896), 1, aux_sym_input_expression_token1, - ACTIONS(2095), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2097), 1, + ACTIONS(1898), 1, aux_sym_if_statement_token1, - ACTIONS(2099), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2101), 1, + ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2105), 1, - sym__escaped_string, - STATE(2285), 1, - sym__expression, - STATE(2444), 1, + STATE(15), 1, sym_object_access, - STATE(2909), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(2069), 2, + STATE(2563), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2103), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(751), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(766), 2, sym_comment, sym_include, - ACTIONS(2071), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2944), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2945), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -107077,80 +109076,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [60733] = 29, + [61680] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(678), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(690), 1, + ACTIONS(1822), 1, aux_sym_unary_expression_token2, - ACTIONS(692), 1, + ACTIONS(1824), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(694), 1, + ACTIONS(1826), 1, aux_sym_temp_table_expression_token1, - ACTIONS(696), 1, + ACTIONS(1828), 1, aux_sym_current_changed_expression_token1, - ACTIONS(698), 1, + ACTIONS(1830), 1, aux_sym_locked_expression_token1, - ACTIONS(700), 1, + ACTIONS(1832), 1, aux_sym_dataset_expression_token1, - ACTIONS(702), 1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - ACTIONS(704), 1, - aux_sym_scope_tuning_token1, - ACTIONS(708), 1, + ACTIONS(1836), 1, aux_sym_if_statement_token1, - ACTIONS(718), 1, + ACTIONS(1838), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1369), 1, + STATE(1293), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(752), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(767), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -107167,80 +109167,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [60852] = 29, + [61801] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1589), 1, + ACTIONS(1601), 1, aux_sym_input_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2591), 1, + STATE(2717), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(753), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(768), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -107257,80 +109258,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [60971] = 29, + [61922] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(1704), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(1706), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(1708), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(1710), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(1712), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(1714), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, + ACTIONS(1716), 1, aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(1718), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(1720), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1155), 1, + STATE(2816), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(754), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(769), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -107347,80 +109349,263 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [62043] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1962), 1, + sym_identifier, + ACTIONS(1964), 1, + anon_sym_LBRACE, + ACTIONS(1970), 1, + sym__integer_literal, + ACTIONS(1972), 1, + anon_sym_LBRACK, + ACTIONS(1974), 1, + anon_sym_LPAREN, + ACTIONS(1976), 1, + aux_sym_unary_expression_token1, + ACTIONS(1996), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2002), 1, + sym__escaped_string, + ACTIONS(2318), 1, + aux_sym_unary_expression_token2, + ACTIONS(2320), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(2322), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(2324), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(2326), 1, + aux_sym_locked_expression_token1, + ACTIONS(2328), 1, + aux_sym_dataset_expression_token1, + ACTIONS(2330), 1, + aux_sym_input_expression_token1, + ACTIONS(2332), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2334), 1, + aux_sym_if_statement_token1, + ACTIONS(2336), 1, + aux_sym_accumulate_expression_token1, + STATE(193), 1, + sym_object_access, + STATE(311), 1, + sym__decimal_literal, + STATE(1315), 1, + sym__expression, + ACTIONS(1966), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(2000), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(213), 2, + sym_function_call, sym_new_expression, + STATE(770), 2, + sym_comment, + sym_include, + ACTIONS(1968), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(316), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(314), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [61090] = 29, + [62164] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + ACTIONS(1770), 1, + aux_sym_input_expression_token1, + ACTIONS(1772), 1, aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, + ACTIONS(1776), 1, aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, + ACTIONS(1782), 1, + sym__escaped_string, + STATE(1694), 1, + sym__expression, + STATE(2002), 1, + sym_object_access, + STATE(2748), 1, + sym__decimal_literal, + ACTIONS(1746), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(1780), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(771), 2, + sym_comment, + sym_include, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(2749), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(2700), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [62285] = 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(653), 1, + sym__integer_literal, + ACTIONS(655), 1, + anon_sym_LBRACK, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + aux_sym_unary_expression_token1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1589), 1, + ACTIONS(1686), 1, + aux_sym_unary_expression_token2, + ACTIONS(1688), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(1690), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(1692), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(1694), 1, + aux_sym_locked_expression_token1, + ACTIONS(1696), 1, + aux_sym_dataset_expression_token1, + ACTIONS(1698), 1, aux_sym_input_expression_token1, - STATE(9), 1, + ACTIONS(1700), 1, + aux_sym_if_statement_token1, + ACTIONS(1702), 1, + aux_sym_accumulate_expression_token1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2588), 1, + STATE(1528), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(755), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(772), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -107437,80 +109622,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [61209] = 29, + [62406] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, + ACTIONS(2076), 1, aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1279), 1, + STATE(1173), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(756), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(773), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -107527,80 +109713,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [61328] = 29, + [62527] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(2076), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2731), 1, + STATE(1170), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(757), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(774), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -107617,80 +109804,147 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [61447] = 29, + [62648] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1751), 1, - sym_identifier, - ACTIONS(1753), 1, + STATE(775), 2, + sym_comment, + sym_include, + ACTIONS(166), 4, + sym__namecolon, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(168), 52, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(1759), 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, - ACTIONS(1761), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(1763), 1, anon_sym_LPAREN, - ACTIONS(1765), 1, aux_sym_unary_expression_token1, - ACTIONS(1767), 1, aux_sym_unary_expression_token2, - ACTIONS(1769), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1771), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1773), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1775), 1, aux_sym_locked_expression_token1, - ACTIONS(1777), 1, aux_sym_dataset_expression_token1, - ACTIONS(1779), 1, aux_sym_input_expression_token1, - ACTIONS(1781), 1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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(1783), 1, aux_sym_if_statement_token1, - ACTIONS(1785), 1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, aux_sym_can_find_expression_token1, - ACTIONS(1787), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1791), 1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [62719] = 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(653), 1, + sym__integer_literal, + ACTIONS(655), 1, + anon_sym_LBRACK, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + aux_sym_unary_expression_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, sym__escaped_string, - STATE(1504), 1, - sym__expression, - STATE(2187), 1, + ACTIONS(695), 1, + aux_sym_unary_expression_token2, + ACTIONS(697), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(699), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(701), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(703), 1, + aux_sym_locked_expression_token1, + ACTIONS(705), 1, + aux_sym_dataset_expression_token1, + ACTIONS(707), 1, + aux_sym_input_expression_token1, + ACTIONS(709), 1, + aux_sym_scope_tuning_token1, + ACTIONS(713), 1, + aux_sym_if_statement_token1, + ACTIONS(723), 1, + aux_sym_accumulate_expression_token1, + STATE(15), 1, sym_object_access, - STATE(2779), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1755), 2, + STATE(1366), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1789), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(758), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(776), 2, sym_comment, sym_include, - ACTIONS(1757), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2787), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2783), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -107707,80 +109961,172 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [62840] = 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(653), 1, + sym__integer_literal, + ACTIONS(655), 1, + anon_sym_LBRACK, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + aux_sym_unary_expression_token1, + ACTIONS(663), 1, + aux_sym_unary_expression_token2, + ACTIONS(665), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(667), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(669), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(671), 1, + aux_sym_locked_expression_token1, + ACTIONS(673), 1, + aux_sym_dataset_expression_token1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, + aux_sym_if_statement_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, + sym_object_access, + STATE(43), 1, + sym__decimal_literal, + STATE(2714), 1, + sym__expression, + ACTIONS(649), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(689), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(13), 2, + sym_function_call, sym_new_expression, + STATE(777), 2, + sym_comment, + sym_include, + ACTIONS(651), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(29), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(30), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [61566] = 29, + [62961] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(2046), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(2048), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(2050), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(2052), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(2054), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(2056), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, + ACTIONS(2058), 1, aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(2060), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(2062), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1152), 1, + STATE(2272), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(759), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(778), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -107797,80 +110143,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [61685] = 29, + [63082] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1751), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1753), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1759), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1761), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1765), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1767), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(709), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1722), 1, aux_sym_unary_expression_token2, - ACTIONS(1769), 1, + ACTIONS(1724), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1771), 1, + ACTIONS(1726), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1773), 1, + ACTIONS(1728), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1775), 1, + ACTIONS(1730), 1, aux_sym_locked_expression_token1, - ACTIONS(1777), 1, + ACTIONS(1732), 1, aux_sym_dataset_expression_token1, - ACTIONS(1779), 1, + ACTIONS(1734), 1, aux_sym_input_expression_token1, - ACTIONS(1781), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1783), 1, + ACTIONS(1736), 1, aux_sym_if_statement_token1, - ACTIONS(1785), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1787), 1, + ACTIONS(1738), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1791), 1, - sym__escaped_string, - STATE(1517), 1, - sym__expression, - STATE(2187), 1, + STATE(15), 1, sym_object_access, - STATE(2779), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1755), 2, + STATE(1468), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1789), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(760), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(779), 2, sym_comment, sym_include, - ACTIONS(1757), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2787), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2783), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -107887,80 +110234,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [61804] = 29, + [63203] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2029), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(2031), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2033), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2035), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2037), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(2039), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(2041), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(2043), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(2045), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1580), 1, + STATE(2854), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(761), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(780), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -107977,80 +110325,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [61923] = 29, + [63324] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(678), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(690), 1, + ACTIONS(1884), 1, aux_sym_unary_expression_token2, - ACTIONS(692), 1, + ACTIONS(1886), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(694), 1, + ACTIONS(1888), 1, aux_sym_temp_table_expression_token1, - ACTIONS(696), 1, + ACTIONS(1890), 1, aux_sym_current_changed_expression_token1, - ACTIONS(698), 1, + ACTIONS(1892), 1, aux_sym_locked_expression_token1, - ACTIONS(700), 1, + ACTIONS(1894), 1, aux_sym_dataset_expression_token1, - ACTIONS(702), 1, + ACTIONS(1896), 1, aux_sym_input_expression_token1, - ACTIONS(704), 1, - aux_sym_scope_tuning_token1, - ACTIONS(708), 1, + ACTIONS(1898), 1, aux_sym_if_statement_token1, - ACTIONS(718), 1, + ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1368), 1, + STATE(2505), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(762), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(781), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -108067,80 +110416,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [62042] = 29, + [63445] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(678), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(690), 1, + ACTIONS(2238), 1, aux_sym_unary_expression_token2, - ACTIONS(692), 1, + ACTIONS(2240), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(694), 1, + ACTIONS(2242), 1, aux_sym_temp_table_expression_token1, - ACTIONS(696), 1, + ACTIONS(2244), 1, aux_sym_current_changed_expression_token1, - ACTIONS(698), 1, + ACTIONS(2246), 1, aux_sym_locked_expression_token1, - ACTIONS(700), 1, + ACTIONS(2248), 1, aux_sym_dataset_expression_token1, - ACTIONS(702), 1, + ACTIONS(2250), 1, aux_sym_input_expression_token1, - ACTIONS(704), 1, - aux_sym_scope_tuning_token1, - ACTIONS(708), 1, + ACTIONS(2252), 1, aux_sym_if_statement_token1, - ACTIONS(718), 1, + ACTIONS(2254), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1324), 1, + STATE(1217), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(763), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(782), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -108157,80 +110507,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [62161] = 29, + [63566] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(690), 1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(692), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(694), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(696), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(698), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(700), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(702), 1, + ACTIONS(1770), 1, aux_sym_input_expression_token1, - ACTIONS(704), 1, + ACTIONS(1772), 1, aux_sym_scope_tuning_token1, - ACTIONS(708), 1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(718), 1, + ACTIONS(1776), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1782), 1, + sym__escaped_string, + STATE(1364), 1, + sym__expression, + STATE(2002), 1, sym_object_access, - STATE(21), 1, + STATE(2748), 1, sym__decimal_literal, - STATE(1331), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(764), 2, + STATE(783), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -108247,80 +110598,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [62280] = 29, + [63687] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1902), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1904), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1910), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1912), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1914), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1916), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(1918), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(1920), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(1922), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(1924), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(1926), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(1928), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(1930), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(1932), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1934), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(1936), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1938), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1942), 1, + sym__escaped_string, + STATE(1283), 1, + sym__expression, + STATE(1319), 1, sym_object_access, - STATE(21), 1, + STATE(1412), 1, sym__decimal_literal, - STATE(2744), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1906), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1940), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(765), 2, + STATE(784), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1321), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1908), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1451), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1448), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -108337,80 +110689,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [62399] = 29, + [63808] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(678), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(690), 1, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(692), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(694), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(696), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(698), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(700), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(702), 1, + ACTIONS(2076), 1, aux_sym_input_expression_token1, - ACTIONS(704), 1, - aux_sym_scope_tuning_token1, - ACTIONS(708), 1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(718), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1329), 1, + STATE(1194), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(766), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(785), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -108427,80 +110780,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [62518] = 29, + [63929] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1902), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1904), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1910), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1912), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1914), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1916), 1, aux_sym_unary_expression_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(690), 1, + ACTIONS(1918), 1, aux_sym_unary_expression_token2, - ACTIONS(692), 1, + ACTIONS(1920), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(694), 1, + ACTIONS(1922), 1, aux_sym_temp_table_expression_token1, - ACTIONS(696), 1, + ACTIONS(1924), 1, aux_sym_current_changed_expression_token1, - ACTIONS(698), 1, + ACTIONS(1926), 1, aux_sym_locked_expression_token1, - ACTIONS(700), 1, + ACTIONS(1928), 1, aux_sym_dataset_expression_token1, - ACTIONS(702), 1, + ACTIONS(1930), 1, aux_sym_input_expression_token1, - ACTIONS(704), 1, + ACTIONS(1932), 1, aux_sym_scope_tuning_token1, - ACTIONS(708), 1, + ACTIONS(1934), 1, aux_sym_if_statement_token1, - ACTIONS(718), 1, + ACTIONS(1936), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1938), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1942), 1, + sym__escaped_string, + STATE(1287), 1, + sym__expression, + STATE(1319), 1, sym_object_access, - STATE(21), 1, + STATE(1412), 1, sym__decimal_literal, - STATE(1332), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1906), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1940), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(767), 2, + STATE(786), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1321), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1908), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1451), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1448), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -108517,80 +110871,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [62637] = 29, + [64050] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1902), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1904), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1910), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1912), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1914), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1916), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(1918), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(1920), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(1922), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(1924), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(1926), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(1928), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, + ACTIONS(1930), 1, aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(1932), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1934), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(1936), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1938), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1942), 1, + sym__escaped_string, + STATE(1281), 1, + sym__expression, + STATE(1319), 1, sym_object_access, - STATE(21), 1, + STATE(1412), 1, sym__decimal_literal, - STATE(1374), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1906), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1940), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(768), 2, + STATE(787), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1321), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1908), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1451), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1448), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -108607,80 +110962,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [62756] = 29, + [64171] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1902), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1904), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1910), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1912), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1914), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1916), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(1918), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(1920), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(1922), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(1924), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(1926), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(1928), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + ACTIONS(1930), 1, + aux_sym_input_expression_token1, + ACTIONS(1932), 1, aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(1934), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, + ACTIONS(1936), 1, aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(1938), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, + ACTIONS(1942), 1, sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(1284), 1, + sym__expression, + STATE(1319), 1, sym_object_access, - STATE(21), 1, + STATE(1412), 1, sym__decimal_literal, - STATE(2745), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1906), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1940), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(769), 2, + STATE(788), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1321), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1908), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1451), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1448), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -108697,80 +111053,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [62875] = 29, + [64292] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1909), 1, + ACTIONS(1902), 1, sym_identifier, - ACTIONS(1911), 1, + ACTIONS(1904), 1, anon_sym_LBRACE, - ACTIONS(1917), 1, + ACTIONS(1910), 1, sym__integer_literal, - ACTIONS(1919), 1, + ACTIONS(1912), 1, anon_sym_LBRACK, - ACTIONS(1921), 1, + ACTIONS(1914), 1, anon_sym_LPAREN, - ACTIONS(1923), 1, + ACTIONS(1916), 1, aux_sym_unary_expression_token1, - ACTIONS(1925), 1, + ACTIONS(1918), 1, aux_sym_unary_expression_token2, - ACTIONS(1927), 1, + ACTIONS(1920), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1929), 1, + ACTIONS(1922), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1931), 1, + ACTIONS(1924), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1933), 1, + ACTIONS(1926), 1, aux_sym_locked_expression_token1, - ACTIONS(1935), 1, + ACTIONS(1928), 1, aux_sym_dataset_expression_token1, - ACTIONS(1937), 1, + ACTIONS(1930), 1, aux_sym_input_expression_token1, - ACTIONS(1939), 1, + ACTIONS(1932), 1, aux_sym_scope_tuning_token1, - ACTIONS(1941), 1, + ACTIONS(1934), 1, aux_sym_if_statement_token1, - ACTIONS(1943), 1, + ACTIONS(1936), 1, aux_sym_can_find_expression_token1, - ACTIONS(1945), 1, + ACTIONS(1938), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1949), 1, + ACTIONS(1942), 1, sym__escaped_string, - STATE(1260), 1, + STATE(1277), 1, sym__expression, - STATE(1281), 1, + STATE(1319), 1, sym_object_access, - STATE(1406), 1, + STATE(1412), 1, sym__decimal_literal, - ACTIONS(1913), 2, + ACTIONS(1906), 2, sym_null_expression, sym_date_literal, - ACTIONS(1947), 2, + ACTIONS(1940), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(770), 2, + STATE(789), 2, sym_comment, sym_include, - ACTIONS(1915), 4, + STATE(1321), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1908), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1405), 4, + STATE(1451), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1390), 23, + STATE(1448), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -108787,147 +111144,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [62994] = 6, + [64413] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2281), 1, - sym__namedot, - STATE(771), 2, - sym_comment, - sym_include, - ACTIONS(132), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(134), 52, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(1902), 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, + ACTIONS(1904), 1, + anon_sym_LBRACE, + ACTIONS(1910), 1, sym__integer_literal, - sym_date_literal, + ACTIONS(1912), 1, anon_sym_LBRACK, + ACTIONS(1914), 1, anon_sym_LPAREN, + ACTIONS(1916), 1, aux_sym_unary_expression_token1, + ACTIONS(1918), 1, aux_sym_unary_expression_token2, + ACTIONS(1920), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(1922), 1, aux_sym_temp_table_expression_token1, + ACTIONS(1924), 1, aux_sym_current_changed_expression_token1, + ACTIONS(1926), 1, aux_sym_locked_expression_token1, + ACTIONS(1928), 1, aux_sym_dataset_expression_token1, + ACTIONS(1930), 1, aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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(1932), 1, aux_sym_scope_tuning_token1, + ACTIONS(1934), 1, aux_sym_if_statement_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, + ACTIONS(1936), 1, aux_sym_can_find_expression_token1, + ACTIONS(1938), 1, aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [63067] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, - anon_sym_LBRACE, - ACTIONS(648), 1, - sym__integer_literal, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, - aux_sym_unary_expression_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(1942), 1, sym__escaped_string, - ACTIONS(690), 1, - aux_sym_unary_expression_token2, - ACTIONS(692), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(694), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(696), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(698), 1, - aux_sym_locked_expression_token1, - ACTIONS(700), 1, - aux_sym_dataset_expression_token1, - ACTIONS(702), 1, - aux_sym_input_expression_token1, - ACTIONS(704), 1, - aux_sym_scope_tuning_token1, - ACTIONS(708), 1, - aux_sym_if_statement_token1, - ACTIONS(718), 1, - aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(1280), 1, + sym__expression, + STATE(1319), 1, sym_object_access, - STATE(21), 1, + STATE(1412), 1, sym__decimal_literal, - STATE(1335), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1906), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1940), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(772), 2, + STATE(790), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1321), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1908), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1451), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1448), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -108944,147 +111235,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [63186] = 6, + [64534] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2283), 1, - aux_sym_function_call_token1, - STATE(773), 2, - sym_comment, - sym_include, - ACTIONS(230), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(232), 52, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(645), 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, + ACTIONS(647), 1, + anon_sym_LBRACE, + ACTIONS(653), 1, sym__integer_literal, - sym_date_literal, + ACTIONS(655), 1, anon_sym_LBRACK, + ACTIONS(657), 1, anon_sym_LPAREN, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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(677), 1, aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [63259] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1689), 1, - sym_identifier, - ACTIONS(1691), 1, - anon_sym_LBRACE, - ACTIONS(1697), 1, - sym__integer_literal, - ACTIONS(1699), 1, - anon_sym_LBRACK, - ACTIONS(1701), 1, - anon_sym_LPAREN, - ACTIONS(1703), 1, - aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1884), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(1886), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(1888), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(1890), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(1892), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(1894), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, + ACTIONS(1896), 1, aux_sym_input_expression_token1, - ACTIONS(1719), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(1898), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(1900), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, - sym__escaped_string, - STATE(1323), 1, - sym__expression, - STATE(1896), 1, + STATE(15), 1, sym_object_access, - STATE(2582), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1693), 2, + STATE(2562), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(774), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(791), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -109101,80 +111326,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [63378] = 29, + [64655] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2082), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(2084), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(2086), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(2088), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(2090), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(2092), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(2094), 1, + aux_sym_input_expression_token1, + ACTIONS(2096), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(2098), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2526), 1, + STATE(1233), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(775), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(792), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -109191,80 +111417,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [63497] = 29, + [64776] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1869), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1877), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1901), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(1907), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2285), 1, + ACTIONS(1623), 1, aux_sym_unary_expression_token2, - ACTIONS(2287), 1, + ACTIONS(1625), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2289), 1, + ACTIONS(1627), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2291), 1, + ACTIONS(1629), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2293), 1, + ACTIONS(1631), 1, aux_sym_locked_expression_token1, - ACTIONS(2295), 1, + ACTIONS(1633), 1, aux_sym_dataset_expression_token1, - ACTIONS(2297), 1, + ACTIONS(1635), 1, aux_sym_input_expression_token1, - ACTIONS(2299), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2301), 1, + ACTIONS(1637), 1, aux_sym_if_statement_token1, - ACTIONS(2303), 1, + ACTIONS(1639), 1, aux_sym_accumulate_expression_token1, - STATE(185), 1, + STATE(15), 1, sym_object_access, - STATE(277), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1286), 1, + STATE(1505), 1, sym__expression, - ACTIONS(1871), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1905), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(776), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(793), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(251), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(254), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -109281,80 +111508,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [63616] = 29, + [64897] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1869), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1877), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1901), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(1907), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2285), 1, + ACTIONS(1704), 1, aux_sym_unary_expression_token2, - ACTIONS(2287), 1, + ACTIONS(1706), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2289), 1, + ACTIONS(1708), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2291), 1, + ACTIONS(1710), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2293), 1, + ACTIONS(1712), 1, aux_sym_locked_expression_token1, - ACTIONS(2295), 1, + ACTIONS(1714), 1, aux_sym_dataset_expression_token1, - ACTIONS(2297), 1, + ACTIONS(1716), 1, aux_sym_input_expression_token1, - ACTIONS(2299), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2301), 1, + ACTIONS(1718), 1, aux_sym_if_statement_token1, - ACTIONS(2303), 1, + ACTIONS(1720), 1, aux_sym_accumulate_expression_token1, - STATE(185), 1, + STATE(15), 1, sym_object_access, - STATE(277), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1284), 1, + STATE(2813), 1, sym__expression, - ACTIONS(1871), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1905), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(777), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(794), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(251), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(254), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -109371,80 +111599,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [63735] = 29, + [65018] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(1869), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(1877), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(1901), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1907), 1, - sym__escaped_string, - ACTIONS(2285), 1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(2287), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2289), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2291), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2293), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(2295), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(2297), 1, + ACTIONS(1770), 1, aux_sym_input_expression_token1, - ACTIONS(2299), 1, + ACTIONS(1772), 1, aux_sym_scope_tuning_token1, - ACTIONS(2301), 1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(2303), 1, + ACTIONS(1776), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - STATE(185), 1, + ACTIONS(1782), 1, + sym__escaped_string, + STATE(1395), 1, + sym__expression, + STATE(2002), 1, sym_object_access, - STATE(277), 1, + STATE(2748), 1, sym__decimal_literal, - STATE(1283), 1, - sym__expression, - ACTIONS(1871), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(1905), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(778), 2, + STATE(795), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(251), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(254), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -109461,80 +111690,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [63854] = 29, + [65139] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1869), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1877), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1901), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(1907), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2285), 1, + ACTIONS(2082), 1, aux_sym_unary_expression_token2, - ACTIONS(2287), 1, + ACTIONS(2084), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2289), 1, + ACTIONS(2086), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2291), 1, + ACTIONS(2088), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2293), 1, + ACTIONS(2090), 1, aux_sym_locked_expression_token1, - ACTIONS(2295), 1, + ACTIONS(2092), 1, aux_sym_dataset_expression_token1, - ACTIONS(2297), 1, + ACTIONS(2094), 1, aux_sym_input_expression_token1, - ACTIONS(2299), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2301), 1, + ACTIONS(2096), 1, aux_sym_if_statement_token1, - ACTIONS(2303), 1, + ACTIONS(2098), 1, aux_sym_accumulate_expression_token1, - STATE(185), 1, + STATE(15), 1, sym_object_access, - STATE(277), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1280), 1, + STATE(1231), 1, sym__expression, - ACTIONS(1871), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1905), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(779), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(796), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(251), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(254), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -109551,80 +111781,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [63973] = 29, + [65260] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1869), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1877), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1901), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(1907), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2285), 1, + ACTIONS(2082), 1, aux_sym_unary_expression_token2, - ACTIONS(2287), 1, + ACTIONS(2084), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2289), 1, + ACTIONS(2086), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2291), 1, + ACTIONS(2088), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2293), 1, + ACTIONS(2090), 1, aux_sym_locked_expression_token1, - ACTIONS(2295), 1, + ACTIONS(2092), 1, aux_sym_dataset_expression_token1, - ACTIONS(2297), 1, + ACTIONS(2094), 1, aux_sym_input_expression_token1, - ACTIONS(2299), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2301), 1, + ACTIONS(2096), 1, aux_sym_if_statement_token1, - ACTIONS(2303), 1, + ACTIONS(2098), 1, aux_sym_accumulate_expression_token1, - STATE(185), 1, + STATE(15), 1, sym_object_access, - STATE(277), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1271), 1, + STATE(1228), 1, sym__expression, - ACTIONS(1871), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1905), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(780), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(797), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(251), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(254), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -109641,80 +111872,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [64092] = 29, + [65381] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1869), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1877), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1901), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(1907), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2285), 1, + ACTIONS(2082), 1, aux_sym_unary_expression_token2, - ACTIONS(2287), 1, + ACTIONS(2084), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2289), 1, + ACTIONS(2086), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2291), 1, + ACTIONS(2088), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2293), 1, + ACTIONS(2090), 1, aux_sym_locked_expression_token1, - ACTIONS(2295), 1, + ACTIONS(2092), 1, aux_sym_dataset_expression_token1, - ACTIONS(2297), 1, + ACTIONS(2094), 1, aux_sym_input_expression_token1, - ACTIONS(2299), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2301), 1, + ACTIONS(2096), 1, aux_sym_if_statement_token1, - ACTIONS(2303), 1, + ACTIONS(2098), 1, aux_sym_accumulate_expression_token1, - STATE(185), 1, + STATE(15), 1, sym_object_access, - STATE(277), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1277), 1, + STATE(1232), 1, sym__expression, - ACTIONS(1871), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1905), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(781), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(798), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(251), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(254), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -109731,80 +111963,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [64211] = 29, + [65502] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(2082), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(2084), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(2086), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(2088), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(2090), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(2092), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(2094), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(2096), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(2098), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2535), 1, + STATE(1230), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(782), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(799), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -109821,80 +112054,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [64330] = 29, + [65623] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(2082), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(2084), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(2086), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(2088), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(2090), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(2092), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(2094), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(2096), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(2098), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2534), 1, + STATE(1240), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(783), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(800), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -109911,80 +112145,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [64449] = 29, + [65744] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1623), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1625), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1627), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1629), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1631), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1633), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1635), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1637), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1639), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2533), 1, + STATE(1514), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(784), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(801), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -110001,80 +112236,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [64568] = 29, + [65865] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(2238), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(2240), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(2242), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(2244), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(2246), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(2248), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(2250), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(2252), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(2254), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2532), 1, + STATE(1212), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(785), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(802), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -110091,80 +112327,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [64687] = 29, + [65986] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(1623), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1625), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1627), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1629), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1631), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1633), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1635), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1637), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1639), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2531), 1, + STATE(1516), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(786), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(803), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -110181,80 +112418,263 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [66107] = 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(653), 1, + sym__integer_literal, + ACTIONS(655), 1, + anon_sym_LBRACK, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + aux_sym_unary_expression_token1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2238), 1, + aux_sym_unary_expression_token2, + ACTIONS(2240), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(2242), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(2244), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(2246), 1, + aux_sym_locked_expression_token1, + ACTIONS(2248), 1, + aux_sym_dataset_expression_token1, + ACTIONS(2250), 1, + aux_sym_input_expression_token1, + ACTIONS(2252), 1, + aux_sym_if_statement_token1, + ACTIONS(2254), 1, + aux_sym_accumulate_expression_token1, + STATE(15), 1, + sym_object_access, + STATE(43), 1, + sym__decimal_literal, + STATE(1214), 1, + sym__expression, + ACTIONS(649), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(689), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(13), 2, sym_function_call, + sym_new_expression, + STATE(804), 2, + sym_comment, + sym_include, + ACTIONS(651), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(29), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(30), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [66228] = 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(653), 1, + sym__integer_literal, + ACTIONS(655), 1, + anon_sym_LBRACK, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + aux_sym_unary_expression_token1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1784), 1, + aux_sym_unary_expression_token2, + ACTIONS(1786), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(1788), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(1790), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(1792), 1, + aux_sym_locked_expression_token1, + ACTIONS(1794), 1, + aux_sym_dataset_expression_token1, + ACTIONS(1796), 1, + aux_sym_input_expression_token1, + ACTIONS(1798), 1, + aux_sym_if_statement_token1, + ACTIONS(1800), 1, + aux_sym_accumulate_expression_token1, + STATE(15), 1, + sym_object_access, + STATE(43), 1, + sym__decimal_literal, + STATE(2709), 1, + sym__expression, + ACTIONS(649), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(689), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(13), 2, + sym_function_call, sym_new_expression, + STATE(805), 2, + sym_comment, + sym_include, + ACTIONS(651), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(29), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(30), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [64806] = 29, + [66349] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(2238), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(2240), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(2242), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(2244), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(2246), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(2248), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(2250), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(2252), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(2254), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2528), 1, + STATE(1219), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(787), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(806), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -110271,212 +112691,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [64925] = 5, + [66470] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(788), 2, - sym_comment, - sym_include, - ACTIONS(124), 4, - sym__namecolon, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(126), 52, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(645), 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, + ACTIONS(647), 1, + anon_sym_LBRACE, + ACTIONS(653), 1, sym__integer_literal, - sym_date_literal, + ACTIONS(655), 1, anon_sym_LBRACK, + ACTIONS(657), 1, anon_sym_LPAREN, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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(677), 1, aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [64996] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(789), 2, - sym_comment, - sym_include, - ACTIONS(142), 4, - sym__namedoublecolon, - sym__or_operator, - sym__and_operator, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(144), 52, - 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, + ACTIONS(2238), 1, aux_sym_unary_expression_token2, + ACTIONS(2240), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(2242), 1, aux_sym_temp_table_expression_token1, + ACTIONS(2244), 1, aux_sym_current_changed_expression_token1, + ACTIONS(2246), 1, aux_sym_locked_expression_token1, + ACTIONS(2248), 1, aux_sym_dataset_expression_token1, + ACTIONS(2250), 1, aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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(2252), 1, aux_sym_if_statement_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - aux_sym_can_find_expression_token1, + ACTIONS(2254), 1, aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [65067] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1689), 1, - sym_identifier, - ACTIONS(1691), 1, - anon_sym_LBRACE, - ACTIONS(1697), 1, - sym__integer_literal, - ACTIONS(1699), 1, - anon_sym_LBRACK, - ACTIONS(1701), 1, - anon_sym_LPAREN, - ACTIONS(1703), 1, - aux_sym_unary_expression_token1, - ACTIONS(1705), 1, - aux_sym_unary_expression_token2, - ACTIONS(1707), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, - aux_sym_locked_expression_token1, - ACTIONS(1715), 1, - aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, - aux_sym_input_expression_token1, - ACTIONS(1719), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, - aux_sym_if_statement_token1, - ACTIONS(1723), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, - sym__escaped_string, - STATE(1363), 1, - sym__expression, - STATE(1896), 1, + STATE(15), 1, sym_object_access, - STATE(2582), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1693), 2, + STATE(1220), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(790), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(807), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -110493,80 +112782,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [65186] = 29, + [66591] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1951), 1, + ACTIONS(1623), 1, aux_sym_unary_expression_token2, - ACTIONS(1953), 1, + ACTIONS(1625), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1955), 1, + ACTIONS(1627), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1957), 1, + ACTIONS(1629), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1959), 1, + ACTIONS(1631), 1, aux_sym_locked_expression_token1, - ACTIONS(1961), 1, + ACTIONS(1633), 1, aux_sym_dataset_expression_token1, - ACTIONS(1963), 1, + ACTIONS(1635), 1, aux_sym_input_expression_token1, - ACTIONS(1965), 1, + ACTIONS(1637), 1, aux_sym_if_statement_token1, - ACTIONS(1967), 1, + ACTIONS(1639), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2519), 1, + STATE(1525), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(791), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(808), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -110583,80 +112873,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [65305] = 29, + [66712] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2305), 1, + ACTIONS(1822), 1, aux_sym_unary_expression_token2, - ACTIONS(2307), 1, + ACTIONS(1824), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2309), 1, + ACTIONS(1826), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2311), 1, + ACTIONS(1828), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2313), 1, + ACTIONS(1830), 1, aux_sym_locked_expression_token1, - ACTIONS(2315), 1, + ACTIONS(1832), 1, aux_sym_dataset_expression_token1, - ACTIONS(2317), 1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - ACTIONS(2319), 1, + ACTIONS(1836), 1, aux_sym_if_statement_token1, - ACTIONS(2321), 1, + ACTIONS(1838), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1204), 1, + STATE(1316), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(792), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(809), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -110673,80 +112964,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [65424] = 29, + [66833] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, + ACTIONS(2076), 1, aux_sym_input_expression_token1, - ACTIONS(1719), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, - sym__escaped_string, - STATE(1338), 1, - sym__expression, - STATE(1896), 1, + STATE(15), 1, sym_object_access, - STATE(2582), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1693), 2, + STATE(1174), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(793), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(810), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -110763,80 +113055,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [65543] = 29, + [66954] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1951), 1, + ACTIONS(2238), 1, aux_sym_unary_expression_token2, - ACTIONS(1953), 1, + ACTIONS(2240), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1955), 1, + ACTIONS(2242), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1957), 1, + ACTIONS(2244), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1959), 1, + ACTIONS(2246), 1, aux_sym_locked_expression_token1, - ACTIONS(1961), 1, + ACTIONS(2248), 1, aux_sym_dataset_expression_token1, - ACTIONS(1963), 1, + ACTIONS(2250), 1, aux_sym_input_expression_token1, - ACTIONS(1965), 1, + ACTIONS(2252), 1, aux_sym_if_statement_token1, - ACTIONS(1967), 1, + ACTIONS(2254), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2520), 1, + STATE(1221), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(794), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(811), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -110853,80 +113146,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [65662] = 29, + [67075] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1951), 1, + ACTIONS(2238), 1, aux_sym_unary_expression_token2, - ACTIONS(1953), 1, + ACTIONS(2240), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1955), 1, + ACTIONS(2242), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1957), 1, + ACTIONS(2244), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1959), 1, + ACTIONS(2246), 1, aux_sym_locked_expression_token1, - ACTIONS(1961), 1, + ACTIONS(2248), 1, aux_sym_dataset_expression_token1, - ACTIONS(1963), 1, + ACTIONS(2250), 1, aux_sym_input_expression_token1, - ACTIONS(1965), 1, + ACTIONS(2252), 1, aux_sym_if_statement_token1, - ACTIONS(1967), 1, + ACTIONS(2254), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2439), 1, + STATE(1211), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(795), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(812), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -110943,80 +113237,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [65781] = 29, + [67196] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2305), 1, + ACTIONS(1623), 1, aux_sym_unary_expression_token2, - ACTIONS(2307), 1, + ACTIONS(1625), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2309), 1, + ACTIONS(1627), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2311), 1, + ACTIONS(1629), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2313), 1, + ACTIONS(1631), 1, aux_sym_locked_expression_token1, - ACTIONS(2315), 1, + ACTIONS(1633), 1, aux_sym_dataset_expression_token1, - ACTIONS(2317), 1, + ACTIONS(1635), 1, aux_sym_input_expression_token1, - ACTIONS(2319), 1, + ACTIONS(1637), 1, aux_sym_if_statement_token1, - ACTIONS(2321), 1, + ACTIONS(1639), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1211), 1, + STATE(1526), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(796), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(813), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -111033,80 +113328,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [65900] = 29, + [67317] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2004), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2006), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2012), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2014), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2016), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2018), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1951), 1, + ACTIONS(2020), 1, aux_sym_unary_expression_token2, - ACTIONS(1953), 1, + ACTIONS(2022), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1955), 1, + ACTIONS(2024), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1957), 1, + ACTIONS(2026), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1959), 1, + ACTIONS(2028), 1, aux_sym_locked_expression_token1, - ACTIONS(1961), 1, + ACTIONS(2030), 1, aux_sym_dataset_expression_token1, - ACTIONS(1963), 1, + ACTIONS(2032), 1, aux_sym_input_expression_token1, - ACTIONS(1965), 1, + ACTIONS(2034), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2036), 1, aux_sym_if_statement_token1, - ACTIONS(1967), 1, + ACTIONS(2038), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2040), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2044), 1, + sym__escaped_string, + STATE(2016), 1, + sym__expression, + STATE(2490), 1, sym_object_access, - STATE(21), 1, + STATE(2984), 1, sym__decimal_literal, - STATE(2510), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2008), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2042), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(797), 2, + STATE(814), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2551), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2010), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2967), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2960), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -111123,80 +113419,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [66019] = 29, + [67438] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2004), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2006), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2012), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2014), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2016), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2018), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1951), 1, + ACTIONS(2020), 1, aux_sym_unary_expression_token2, - ACTIONS(1953), 1, + ACTIONS(2022), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1955), 1, + ACTIONS(2024), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1957), 1, + ACTIONS(2026), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1959), 1, + ACTIONS(2028), 1, aux_sym_locked_expression_token1, - ACTIONS(1961), 1, + ACTIONS(2030), 1, aux_sym_dataset_expression_token1, - ACTIONS(1963), 1, + ACTIONS(2032), 1, aux_sym_input_expression_token1, - ACTIONS(1965), 1, + ACTIONS(2034), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2036), 1, aux_sym_if_statement_token1, - ACTIONS(1967), 1, + ACTIONS(2038), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2040), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2044), 1, + sym__escaped_string, + STATE(2023), 1, + sym__expression, + STATE(2490), 1, sym_object_access, - STATE(21), 1, + STATE(2984), 1, sym__decimal_literal, - STATE(2511), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2008), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2042), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(798), 2, + STATE(815), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2551), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2010), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2967), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2960), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -111213,80 +113510,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [66138] = 29, + [67559] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(2004), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(2006), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(2012), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(2014), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(2016), 1, + anon_sym_LPAREN, + ACTIONS(2018), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(2020), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(2022), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(2024), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(2026), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(2028), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(2030), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(2032), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(2034), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(2036), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(2038), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(2040), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(2044), 1, sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, - STATE(1005), 1, + STATE(2032), 1, sym__expression, - STATE(1039), 1, + STATE(2490), 1, sym_object_access, - STATE(1075), 1, + STATE(2984), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(2008), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(2042), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(799), 2, + STATE(816), 2, sym_comment, sym_include, - ACTIONS(782), 4, + STATE(2551), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2010), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(2967), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(2960), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -111303,80 +113601,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [66257] = 29, + [67680] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(2004), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(2006), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(2012), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(2014), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(2016), 1, + anon_sym_LPAREN, + ACTIONS(2018), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(2020), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(2022), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(2024), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(2026), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(2028), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(2030), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(2032), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(2034), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(2036), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(2038), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(2040), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(2044), 1, sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, - STATE(1006), 1, + STATE(2034), 1, sym__expression, - STATE(1039), 1, + STATE(2490), 1, sym_object_access, - STATE(1075), 1, + STATE(2984), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(2008), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(2042), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(800), 2, + STATE(817), 2, sym_comment, sym_include, - ACTIONS(782), 4, + STATE(2551), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2010), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(2967), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(2960), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -111393,80 +113692,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [66376] = 29, + [67801] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(2004), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(2006), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(2012), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(2014), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(2016), 1, + anon_sym_LPAREN, + ACTIONS(2018), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(2020), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(2022), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(2024), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(2026), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(2028), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(2030), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(2032), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(2034), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(2036), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(2038), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(2040), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(2044), 1, sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, - STATE(1009), 1, + STATE(2039), 1, sym__expression, - STATE(1039), 1, + STATE(2490), 1, sym_object_access, - STATE(1075), 1, + STATE(2984), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(2008), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(2042), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(801), 2, + STATE(818), 2, sym_comment, sym_include, - ACTIONS(782), 4, + STATE(2551), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2010), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(2967), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(2960), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -111483,80 +113783,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [66495] = 29, + [67922] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2004), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2006), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2012), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2014), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2016), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2018), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(2020), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(2022), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(2024), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(2026), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(2028), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(2030), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, + ACTIONS(2032), 1, aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(2034), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2036), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(2038), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2040), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2044), 1, + sym__escaped_string, + STATE(2056), 1, + sym__expression, + STATE(2490), 1, sym_object_access, - STATE(21), 1, + STATE(2984), 1, sym__decimal_literal, - STATE(1147), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2008), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2042), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(802), 2, + STATE(819), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2551), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2010), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2967), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2960), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -111573,80 +113874,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [66614] = 29, + [68043] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, + ACTIONS(2100), 1, sym_identifier, - ACTIONS(1869), 1, + ACTIONS(2102), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(2108), 1, sym__integer_literal, - ACTIONS(1877), 1, + ACTIONS(2110), 1, anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, + ACTIONS(2114), 1, aux_sym_unary_expression_token1, - ACTIONS(1883), 1, + ACTIONS(2116), 1, aux_sym_unary_expression_token2, - ACTIONS(1885), 1, + ACTIONS(2118), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1887), 1, + ACTIONS(2120), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1889), 1, + ACTIONS(2122), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1891), 1, + ACTIONS(2124), 1, aux_sym_locked_expression_token1, - ACTIONS(1893), 1, + ACTIONS(2126), 1, aux_sym_dataset_expression_token1, - ACTIONS(1895), 1, + ACTIONS(2128), 1, aux_sym_input_expression_token1, - ACTIONS(1897), 1, + ACTIONS(2130), 1, aux_sym_scope_tuning_token1, - ACTIONS(1899), 1, + ACTIONS(2132), 1, aux_sym_if_statement_token1, - ACTIONS(1901), 1, + ACTIONS(2134), 1, aux_sym_can_find_expression_token1, - ACTIONS(1903), 1, + ACTIONS(2136), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1907), 1, + ACTIONS(2140), 1, sym__escaped_string, - STATE(185), 1, + STATE(2093), 1, + sym__expression, + STATE(2485), 1, sym_object_access, - STATE(277), 1, + STATE(2966), 1, sym__decimal_literal, - STATE(1134), 1, - sym__expression, - ACTIONS(1871), 2, + ACTIONS(2104), 2, sym_null_expression, sym_date_literal, - ACTIONS(1905), 2, + ACTIONS(2138), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(803), 2, + STATE(820), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + STATE(2558), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2106), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(251), 4, + STATE(2947), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(254), 23, + STATE(2959), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -111663,80 +113965,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [66733] = 29, + [68164] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(2100), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(2102), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(2108), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(2110), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2114), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(2116), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(2118), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(2120), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(2122), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(2124), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(2126), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(2128), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(2130), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(2132), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(2134), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(2136), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(2140), 1, sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, - STATE(1007), 1, + STATE(2094), 1, sym__expression, - STATE(1039), 1, + STATE(2485), 1, sym_object_access, - STATE(1075), 1, + STATE(2966), 1, sym__decimal_literal, - ACTIONS(780), 2, + ACTIONS(2104), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(2138), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(804), 2, + STATE(821), 2, sym_comment, sym_include, - ACTIONS(782), 4, + STATE(2558), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2106), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(2947), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(2959), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -111753,80 +114056,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [66852] = 29, + [68285] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2100), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2102), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2108), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2110), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2114), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2305), 1, + ACTIONS(2116), 1, aux_sym_unary_expression_token2, - ACTIONS(2307), 1, + ACTIONS(2118), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2309), 1, + ACTIONS(2120), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2311), 1, + ACTIONS(2122), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2313), 1, + ACTIONS(2124), 1, aux_sym_locked_expression_token1, - ACTIONS(2315), 1, + ACTIONS(2126), 1, aux_sym_dataset_expression_token1, - ACTIONS(2317), 1, + ACTIONS(2128), 1, aux_sym_input_expression_token1, - ACTIONS(2319), 1, + ACTIONS(2130), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2132), 1, aux_sym_if_statement_token1, - ACTIONS(2321), 1, + ACTIONS(2134), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2136), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2140), 1, + sym__escaped_string, + STATE(2095), 1, + sym__expression, + STATE(2485), 1, sym_object_access, - STATE(21), 1, + STATE(2966), 1, sym__decimal_literal, - STATE(1210), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2104), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2138), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(805), 2, + STATE(822), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2558), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2106), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2947), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2959), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -111843,80 +114147,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [66971] = 29, + [68406] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2100), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2102), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2108), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2110), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2114), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(2116), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(2118), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(2120), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(2122), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(2124), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(2126), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + ACTIONS(2128), 1, + aux_sym_input_expression_token1, + ACTIONS(2130), 1, aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(2132), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, + ACTIONS(2134), 1, aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(2136), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, + ACTIONS(2140), 1, sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(2096), 1, + sym__expression, + STATE(2485), 1, sym_object_access, - STATE(21), 1, + STATE(2966), 1, sym__decimal_literal, - STATE(2595), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2104), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2138), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(806), 2, + STATE(823), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2558), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2106), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2947), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2959), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -111933,80 +114238,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [67090] = 29, + [68527] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, + ACTIONS(2100), 1, sym_identifier, - ACTIONS(1869), 1, + ACTIONS(2102), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(2108), 1, sym__integer_literal, - ACTIONS(1877), 1, + ACTIONS(2110), 1, anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, + ACTIONS(2114), 1, aux_sym_unary_expression_token1, - ACTIONS(1883), 1, + ACTIONS(2116), 1, aux_sym_unary_expression_token2, - ACTIONS(1885), 1, + ACTIONS(2118), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1887), 1, + ACTIONS(2120), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1889), 1, + ACTIONS(2122), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1891), 1, + ACTIONS(2124), 1, aux_sym_locked_expression_token1, - ACTIONS(1893), 1, + ACTIONS(2126), 1, aux_sym_dataset_expression_token1, - ACTIONS(1895), 1, + ACTIONS(2128), 1, aux_sym_input_expression_token1, - ACTIONS(1897), 1, + ACTIONS(2130), 1, aux_sym_scope_tuning_token1, - ACTIONS(1899), 1, + ACTIONS(2132), 1, aux_sym_if_statement_token1, - ACTIONS(1901), 1, + ACTIONS(2134), 1, aux_sym_can_find_expression_token1, - ACTIONS(1903), 1, + ACTIONS(2136), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1907), 1, + ACTIONS(2140), 1, sym__escaped_string, - STATE(185), 1, + STATE(2097), 1, + sym__expression, + STATE(2485), 1, sym_object_access, - STATE(277), 1, + STATE(2966), 1, sym__decimal_literal, - STATE(1119), 1, - sym__expression, - ACTIONS(1871), 2, + ACTIONS(2104), 2, sym_null_expression, sym_date_literal, - ACTIONS(1905), 2, + ACTIONS(2138), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(807), 2, + STATE(824), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + STATE(2558), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2106), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(251), 4, + STATE(2947), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(254), 23, + STATE(2959), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -112023,80 +114329,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [67209] = 29, + [68648] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, + ACTIONS(2100), 1, sym_identifier, - ACTIONS(1869), 1, + ACTIONS(2102), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(2108), 1, sym__integer_literal, - ACTIONS(1877), 1, + ACTIONS(2110), 1, anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, + ACTIONS(2114), 1, aux_sym_unary_expression_token1, - ACTIONS(1883), 1, + ACTIONS(2116), 1, aux_sym_unary_expression_token2, - ACTIONS(1885), 1, + ACTIONS(2118), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1887), 1, + ACTIONS(2120), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1889), 1, + ACTIONS(2122), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1891), 1, + ACTIONS(2124), 1, aux_sym_locked_expression_token1, - ACTIONS(1893), 1, + ACTIONS(2126), 1, aux_sym_dataset_expression_token1, - ACTIONS(1895), 1, + ACTIONS(2128), 1, aux_sym_input_expression_token1, - ACTIONS(1897), 1, + ACTIONS(2130), 1, aux_sym_scope_tuning_token1, - ACTIONS(1899), 1, + ACTIONS(2132), 1, aux_sym_if_statement_token1, - ACTIONS(1901), 1, + ACTIONS(2134), 1, aux_sym_can_find_expression_token1, - ACTIONS(1903), 1, + ACTIONS(2136), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1907), 1, + ACTIONS(2140), 1, sym__escaped_string, - STATE(185), 1, + STATE(2098), 1, + sym__expression, + STATE(2485), 1, sym_object_access, - STATE(277), 1, + STATE(2966), 1, sym__decimal_literal, - STATE(1140), 1, - sym__expression, - ACTIONS(1871), 2, + ACTIONS(2104), 2, sym_null_expression, sym_date_literal, - ACTIONS(1905), 2, + ACTIONS(2138), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(808), 2, + STATE(825), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + STATE(2558), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2106), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(251), 4, + STATE(2947), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(254), 23, + STATE(2959), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -112113,80 +114420,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [67328] = 29, + [68769] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2305), 1, + ACTIONS(1704), 1, aux_sym_unary_expression_token2, - ACTIONS(2307), 1, + ACTIONS(1706), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2309), 1, + ACTIONS(1708), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2311), 1, + ACTIONS(1710), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2313), 1, + ACTIONS(1712), 1, aux_sym_locked_expression_token1, - ACTIONS(2315), 1, + ACTIONS(1714), 1, aux_sym_dataset_expression_token1, - ACTIONS(2317), 1, + ACTIONS(1716), 1, aux_sym_input_expression_token1, - ACTIONS(2319), 1, + ACTIONS(1718), 1, aux_sym_if_statement_token1, - ACTIONS(2321), 1, + ACTIONS(1720), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1209), 1, + STATE(2770), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(809), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(826), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -112203,80 +114511,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [67447] = 29, + [68890] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2305), 1, + ACTIONS(1704), 1, aux_sym_unary_expression_token2, - ACTIONS(2307), 1, + ACTIONS(1706), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2309), 1, + ACTIONS(1708), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2311), 1, + ACTIONS(1710), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2313), 1, + ACTIONS(1712), 1, aux_sym_locked_expression_token1, - ACTIONS(2315), 1, + ACTIONS(1714), 1, aux_sym_dataset_expression_token1, - ACTIONS(2317), 1, + ACTIONS(1716), 1, aux_sym_input_expression_token1, - ACTIONS(2319), 1, + ACTIONS(1718), 1, aux_sym_if_statement_token1, - ACTIONS(2321), 1, + ACTIONS(1720), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1208), 1, + STATE(2780), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(810), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(827), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -112293,80 +114602,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [67566] = 29, + [69011] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2263), 1, + ACTIONS(1704), 1, aux_sym_unary_expression_token2, - ACTIONS(2265), 1, + ACTIONS(1706), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2267), 1, + ACTIONS(1708), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2269), 1, + ACTIONS(1710), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2271), 1, + ACTIONS(1712), 1, aux_sym_locked_expression_token1, - ACTIONS(2273), 1, + ACTIONS(1714), 1, aux_sym_dataset_expression_token1, - ACTIONS(2275), 1, + ACTIONS(1716), 1, aux_sym_input_expression_token1, - ACTIONS(2277), 1, + ACTIONS(1718), 1, aux_sym_if_statement_token1, - ACTIONS(2279), 1, + ACTIONS(1720), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2747), 1, + STATE(2789), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(811), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(828), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -112383,80 +114693,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [67685] = 29, + [69132] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1869), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1877), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1901), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(1907), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2285), 1, + ACTIONS(1704), 1, aux_sym_unary_expression_token2, - ACTIONS(2287), 1, + ACTIONS(1706), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2289), 1, + ACTIONS(1708), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2291), 1, + ACTIONS(1710), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2293), 1, + ACTIONS(1712), 1, aux_sym_locked_expression_token1, - ACTIONS(2295), 1, + ACTIONS(1714), 1, aux_sym_dataset_expression_token1, - ACTIONS(2297), 1, + ACTIONS(1716), 1, aux_sym_input_expression_token1, - ACTIONS(2299), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2301), 1, + ACTIONS(1718), 1, aux_sym_if_statement_token1, - ACTIONS(2303), 1, + ACTIONS(1720), 1, aux_sym_accumulate_expression_token1, - STATE(185), 1, + STATE(15), 1, sym_object_access, - STATE(277), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1273), 1, + STATE(2796), 1, sym__expression, - ACTIONS(1871), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1905), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(812), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(829), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(251), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(254), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -112473,80 +114784,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [67804] = 29, + [69253] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1704), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(1706), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(1708), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(1710), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(1712), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(1714), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, + ACTIONS(1716), 1, aux_sym_input_expression_token1, - ACTIONS(1719), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(1718), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(1720), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, - sym__escaped_string, - STATE(1539), 1, - sym__expression, - STATE(1896), 1, + STATE(15), 1, sym_object_access, - STATE(2582), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1693), 2, + STATE(2799), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(813), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(830), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -112563,80 +114875,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [67923] = 29, + [69374] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1733), 1, + ACTIONS(1704), 1, aux_sym_unary_expression_token2, - ACTIONS(1735), 1, + ACTIONS(1706), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1737), 1, + ACTIONS(1708), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1739), 1, + ACTIONS(1710), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1741), 1, + ACTIONS(1712), 1, aux_sym_locked_expression_token1, - ACTIONS(1743), 1, + ACTIONS(1714), 1, aux_sym_dataset_expression_token1, - ACTIONS(1745), 1, + ACTIONS(1716), 1, aux_sym_input_expression_token1, - ACTIONS(1747), 1, + ACTIONS(1718), 1, aux_sym_if_statement_token1, - ACTIONS(1749), 1, + ACTIONS(1720), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1459), 1, + STATE(2804), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(814), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(831), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -112653,80 +114966,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [68042] = 29, + [69495] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1951), 1, + ACTIONS(2220), 1, aux_sym_unary_expression_token2, - ACTIONS(1953), 1, + ACTIONS(2222), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1955), 1, + ACTIONS(2224), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1957), 1, + ACTIONS(2226), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1959), 1, + ACTIONS(2228), 1, aux_sym_locked_expression_token1, - ACTIONS(1961), 1, + ACTIONS(2230), 1, aux_sym_dataset_expression_token1, - ACTIONS(1963), 1, + ACTIONS(2232), 1, aux_sym_input_expression_token1, - ACTIONS(1965), 1, + ACTIONS(2234), 1, aux_sym_if_statement_token1, - ACTIONS(1967), 1, + ACTIONS(2236), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2514), 1, + STATE(1184), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(815), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(832), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -112743,80 +115057,172 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [69616] = 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(653), 1, + sym__integer_literal, + ACTIONS(655), 1, + anon_sym_LBRACK, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + aux_sym_unary_expression_token1, + ACTIONS(663), 1, + aux_sym_unary_expression_token2, + ACTIONS(665), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(667), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(669), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(671), 1, + aux_sym_locked_expression_token1, + ACTIONS(673), 1, + aux_sym_dataset_expression_token1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, + aux_sym_if_statement_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, + sym_object_access, + STATE(43), 1, + sym__decimal_literal, + STATE(2803), 1, + sym__expression, + ACTIONS(649), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(689), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(13), 2, + sym_function_call, sym_new_expression, + STATE(833), 2, + sym_comment, + sym_include, + ACTIONS(651), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(29), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(30), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [68161] = 29, + [69737] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2305), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(2307), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2309), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2311), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2313), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(2315), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(2317), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(2319), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(2321), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1217), 1, + STATE(2754), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(816), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(834), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -112833,80 +115239,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [68280] = 29, + [69858] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1849), 1, + ACTIONS(2238), 1, aux_sym_unary_expression_token2, - ACTIONS(1851), 1, + ACTIONS(2240), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1853), 1, + ACTIONS(2242), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1855), 1, + ACTIONS(2244), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1857), 1, + ACTIONS(2246), 1, aux_sym_locked_expression_token1, - ACTIONS(1859), 1, + ACTIONS(2248), 1, aux_sym_dataset_expression_token1, - ACTIONS(1861), 1, + ACTIONS(2250), 1, aux_sym_input_expression_token1, - ACTIONS(1863), 1, + ACTIONS(2252), 1, aux_sym_if_statement_token1, - ACTIONS(1865), 1, + ACTIONS(2254), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2506), 1, + STATE(1225), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(817), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(835), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -112923,80 +115330,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [68399] = 29, + [69979] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1849), 1, + ACTIONS(2220), 1, aux_sym_unary_expression_token2, - ACTIONS(1851), 1, + ACTIONS(2222), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1853), 1, + ACTIONS(2224), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1855), 1, + ACTIONS(2226), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1857), 1, + ACTIONS(2228), 1, aux_sym_locked_expression_token1, - ACTIONS(1859), 1, + ACTIONS(2230), 1, aux_sym_dataset_expression_token1, - ACTIONS(1861), 1, + ACTIONS(2232), 1, aux_sym_input_expression_token1, - ACTIONS(1863), 1, + ACTIONS(2234), 1, aux_sym_if_statement_token1, - ACTIONS(1865), 1, + ACTIONS(2236), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2505), 1, + STATE(1182), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(818), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(836), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -113013,80 +115421,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [68518] = 29, + [70100] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2305), 1, + ACTIONS(2220), 1, aux_sym_unary_expression_token2, - ACTIONS(2307), 1, + ACTIONS(2222), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2309), 1, + ACTIONS(2224), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2311), 1, + ACTIONS(2226), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2313), 1, + ACTIONS(2228), 1, aux_sym_locked_expression_token1, - ACTIONS(2315), 1, + ACTIONS(2230), 1, aux_sym_dataset_expression_token1, - ACTIONS(2317), 1, + ACTIONS(2232), 1, aux_sym_input_expression_token1, - ACTIONS(2319), 1, + ACTIONS(2234), 1, aux_sym_if_statement_token1, - ACTIONS(2321), 1, + ACTIONS(2236), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1213), 1, + STATE(1186), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(819), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(837), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -113103,80 +115512,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [68637] = 29, + [70221] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1849), 1, + ACTIONS(2220), 1, aux_sym_unary_expression_token2, - ACTIONS(1851), 1, + ACTIONS(2222), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1853), 1, + ACTIONS(2224), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1855), 1, + ACTIONS(2226), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1857), 1, + ACTIONS(2228), 1, aux_sym_locked_expression_token1, - ACTIONS(1859), 1, + ACTIONS(2230), 1, aux_sym_dataset_expression_token1, - ACTIONS(1861), 1, + ACTIONS(2232), 1, aux_sym_input_expression_token1, - ACTIONS(1863), 1, + ACTIONS(2234), 1, aux_sym_if_statement_token1, - ACTIONS(1865), 1, + ACTIONS(2236), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2503), 1, + STATE(1187), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(820), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(838), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -113193,80 +115603,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [68756] = 29, + [70342] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1849), 1, + ACTIONS(2220), 1, aux_sym_unary_expression_token2, - ACTIONS(1851), 1, + ACTIONS(2222), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1853), 1, + ACTIONS(2224), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1855), 1, + ACTIONS(2226), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1857), 1, + ACTIONS(2228), 1, aux_sym_locked_expression_token1, - ACTIONS(1859), 1, + ACTIONS(2230), 1, aux_sym_dataset_expression_token1, - ACTIONS(1861), 1, + ACTIONS(2232), 1, aux_sym_input_expression_token1, - ACTIONS(1863), 1, + ACTIONS(2234), 1, aux_sym_if_statement_token1, - ACTIONS(1865), 1, + ACTIONS(2236), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2407), 1, + STATE(1180), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(821), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(839), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -113283,80 +115694,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [68875] = 29, + [70463] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2029), 1, + ACTIONS(2220), 1, aux_sym_unary_expression_token2, - ACTIONS(2031), 1, + ACTIONS(2222), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2033), 1, + ACTIONS(2224), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2035), 1, + ACTIONS(2226), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2037), 1, + ACTIONS(2228), 1, aux_sym_locked_expression_token1, - ACTIONS(2039), 1, + ACTIONS(2230), 1, aux_sym_dataset_expression_token1, - ACTIONS(2041), 1, + ACTIONS(2232), 1, aux_sym_input_expression_token1, - ACTIONS(2043), 1, + ACTIONS(2234), 1, aux_sym_if_statement_token1, - ACTIONS(2045), 1, + ACTIONS(2236), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1962), 1, + STATE(1192), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(822), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(840), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -113373,80 +115785,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [68994] = 29, + [70584] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, - aux_sym_input_expression_token1, - ACTIONS(808), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, - STATE(999), 1, - sym__expression, - STATE(1039), 1, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(1075), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(780), 2, + STATE(2738), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(823), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(841), 2, sym_comment, sym_include, - ACTIONS(782), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -113463,80 +115876,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [69113] = 29, + [70705] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1849), 1, + ACTIONS(1641), 1, aux_sym_unary_expression_token2, - ACTIONS(1851), 1, + ACTIONS(1643), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1853), 1, + ACTIONS(1645), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1855), 1, + ACTIONS(1647), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1857), 1, + ACTIONS(1649), 1, aux_sym_locked_expression_token1, - ACTIONS(1859), 1, + ACTIONS(1651), 1, aux_sym_dataset_expression_token1, - ACTIONS(1861), 1, + ACTIONS(1653), 1, aux_sym_input_expression_token1, - ACTIONS(1863), 1, + ACTIONS(1655), 1, aux_sym_if_statement_token1, - ACTIONS(1865), 1, + ACTIONS(1657), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2411), 1, + STATE(2413), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(824), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(842), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -113553,80 +115967,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [69232] = 29, + [70826] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1849), 1, + ACTIONS(2160), 1, aux_sym_unary_expression_token2, - ACTIONS(1851), 1, + ACTIONS(2162), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1853), 1, + ACTIONS(2164), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1855), 1, + ACTIONS(2166), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1857), 1, + ACTIONS(2168), 1, aux_sym_locked_expression_token1, - ACTIONS(1859), 1, + ACTIONS(2170), 1, aux_sym_dataset_expression_token1, - ACTIONS(1861), 1, + ACTIONS(2172), 1, aux_sym_input_expression_token1, - ACTIONS(1863), 1, + ACTIONS(2174), 1, aux_sym_if_statement_token1, - ACTIONS(1865), 1, + ACTIONS(2176), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2502), 1, + STATE(1433), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(825), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(843), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -113643,80 +116058,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [69351] = 29, + [70947] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1849), 1, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(1851), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1853), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1855), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1857), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(1859), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(1861), 1, + ACTIONS(2076), 1, aux_sym_input_expression_token1, - ACTIONS(1863), 1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(1865), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2501), 1, + STATE(1176), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(826), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(844), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -113733,80 +116149,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [69470] = 29, + [71068] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1869), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1877), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1883), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2238), 1, aux_sym_unary_expression_token2, - ACTIONS(1885), 1, + ACTIONS(2240), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1887), 1, + ACTIONS(2242), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1889), 1, + ACTIONS(2244), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1891), 1, + ACTIONS(2246), 1, aux_sym_locked_expression_token1, - ACTIONS(1893), 1, + ACTIONS(2248), 1, aux_sym_dataset_expression_token1, - ACTIONS(1895), 1, + ACTIONS(2250), 1, aux_sym_input_expression_token1, - ACTIONS(1897), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1899), 1, + ACTIONS(2252), 1, aux_sym_if_statement_token1, - ACTIONS(1901), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1903), 1, + ACTIONS(2254), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1907), 1, - sym__escaped_string, - STATE(185), 1, + STATE(15), 1, sym_object_access, - STATE(277), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1141), 1, + STATE(1224), 1, sym__expression, - ACTIONS(1871), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1905), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(827), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(845), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(251), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(254), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -113823,80 +116240,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [69589] = 29, + [71189] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1909), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(1911), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(1917), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(1919), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(1921), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(1923), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(1925), 1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(1927), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1929), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1931), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1933), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(1935), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(1937), 1, + ACTIONS(1770), 1, aux_sym_input_expression_token1, - ACTIONS(1939), 1, + ACTIONS(1772), 1, aux_sym_scope_tuning_token1, - ACTIONS(1941), 1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(1943), 1, + ACTIONS(1776), 1, aux_sym_can_find_expression_token1, - ACTIONS(1945), 1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1949), 1, + ACTIONS(1782), 1, sym__escaped_string, - STATE(1261), 1, + STATE(1399), 1, sym__expression, - STATE(1281), 1, + STATE(2002), 1, sym_object_access, - STATE(1406), 1, + STATE(2748), 1, sym__decimal_literal, - ACTIONS(1913), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(1947), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(828), 2, + STATE(846), 2, sym_comment, sym_include, - ACTIONS(1915), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1405), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1390), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -113913,80 +116331,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [69708] = 29, + [71310] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1869), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1877), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1883), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2160), 1, aux_sym_unary_expression_token2, - ACTIONS(1885), 1, + ACTIONS(2162), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1887), 1, + ACTIONS(2164), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1889), 1, + ACTIONS(2166), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1891), 1, + ACTIONS(2168), 1, aux_sym_locked_expression_token1, - ACTIONS(1893), 1, + ACTIONS(2170), 1, aux_sym_dataset_expression_token1, - ACTIONS(1895), 1, + ACTIONS(2172), 1, aux_sym_input_expression_token1, - ACTIONS(1897), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1899), 1, + ACTIONS(2174), 1, aux_sym_if_statement_token1, - ACTIONS(1901), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1903), 1, + ACTIONS(2176), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1907), 1, - sym__escaped_string, - STATE(185), 1, + STATE(15), 1, sym_object_access, - STATE(277), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1139), 1, + STATE(1434), 1, sym__expression, - ACTIONS(1871), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1905), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(829), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(847), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(251), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(254), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -114003,80 +116422,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [69827] = 29, + [71431] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1909), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1911), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1917), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1919), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1921), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1923), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1925), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2160), 1, aux_sym_unary_expression_token2, - ACTIONS(1927), 1, + ACTIONS(2162), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1929), 1, + ACTIONS(2164), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1931), 1, + ACTIONS(2166), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1933), 1, + ACTIONS(2168), 1, aux_sym_locked_expression_token1, - ACTIONS(1935), 1, + ACTIONS(2170), 1, aux_sym_dataset_expression_token1, - ACTIONS(1937), 1, + ACTIONS(2172), 1, aux_sym_input_expression_token1, - ACTIONS(1939), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1941), 1, + ACTIONS(2174), 1, aux_sym_if_statement_token1, - ACTIONS(1943), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1945), 1, + ACTIONS(2176), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1949), 1, - sym__escaped_string, - STATE(1264), 1, - sym__expression, - STATE(1281), 1, + STATE(15), 1, sym_object_access, - STATE(1406), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1913), 2, + STATE(1413), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1947), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(830), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(848), 2, sym_comment, sym_include, - ACTIONS(1915), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1405), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1390), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -114093,80 +116513,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [69946] = 29, + [71552] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1909), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1911), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1917), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1919), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1921), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1923), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1925), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2160), 1, aux_sym_unary_expression_token2, - ACTIONS(1927), 1, + ACTIONS(2162), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1929), 1, + ACTIONS(2164), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1931), 1, + ACTIONS(2166), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1933), 1, + ACTIONS(2168), 1, aux_sym_locked_expression_token1, - ACTIONS(1935), 1, + ACTIONS(2170), 1, aux_sym_dataset_expression_token1, - ACTIONS(1937), 1, + ACTIONS(2172), 1, aux_sym_input_expression_token1, - ACTIONS(1939), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1941), 1, + ACTIONS(2174), 1, aux_sym_if_statement_token1, - ACTIONS(1943), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1945), 1, + ACTIONS(2176), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1949), 1, - sym__escaped_string, - STATE(1257), 1, - sym__expression, - STATE(1281), 1, + STATE(15), 1, sym_object_access, - STATE(1406), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1913), 2, + STATE(1419), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1947), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(831), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(849), 2, sym_comment, sym_include, - ACTIONS(1915), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1405), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1390), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -114183,80 +116604,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [70065] = 29, + [71673] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1909), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1911), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1917), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1919), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1921), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1923), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1925), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2160), 1, aux_sym_unary_expression_token2, - ACTIONS(1927), 1, + ACTIONS(2162), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1929), 1, + ACTIONS(2164), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1931), 1, + ACTIONS(2166), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1933), 1, + ACTIONS(2168), 1, aux_sym_locked_expression_token1, - ACTIONS(1935), 1, + ACTIONS(2170), 1, aux_sym_dataset_expression_token1, - ACTIONS(1937), 1, + ACTIONS(2172), 1, aux_sym_input_expression_token1, - ACTIONS(1939), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1941), 1, + ACTIONS(2174), 1, aux_sym_if_statement_token1, - ACTIONS(1943), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1945), 1, + ACTIONS(2176), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1949), 1, - sym__escaped_string, - STATE(1256), 1, - sym__expression, - STATE(1281), 1, + STATE(15), 1, sym_object_access, - STATE(1406), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1913), 2, + STATE(1435), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1947), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(832), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(850), 2, sym_comment, sym_include, - ACTIONS(1915), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1405), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1390), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -114273,80 +116695,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [70184] = 29, + [71794] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1909), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1911), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1917), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1919), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1921), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1923), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1925), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2160), 1, aux_sym_unary_expression_token2, - ACTIONS(1927), 1, + ACTIONS(2162), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1929), 1, + ACTIONS(2164), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1931), 1, + ACTIONS(2166), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1933), 1, + ACTIONS(2168), 1, aux_sym_locked_expression_token1, - ACTIONS(1935), 1, + ACTIONS(2170), 1, aux_sym_dataset_expression_token1, - ACTIONS(1937), 1, + ACTIONS(2172), 1, aux_sym_input_expression_token1, - ACTIONS(1939), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1941), 1, + ACTIONS(2174), 1, aux_sym_if_statement_token1, - ACTIONS(1943), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1945), 1, + ACTIONS(2176), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1949), 1, - sym__escaped_string, - STATE(1262), 1, - sym__expression, - STATE(1281), 1, + STATE(15), 1, sym_object_access, - STATE(1406), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1913), 2, + STATE(1439), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1947), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(833), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(851), 2, sym_comment, sym_include, - ACTIONS(1915), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1405), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1390), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -114363,170 +116786,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [70303] = 29, + [71915] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1909), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1911), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1917), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1919), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1921), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1923), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1925), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(1927), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1929), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1931), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1933), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(1935), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(1937), 1, - aux_sym_input_expression_token1, - ACTIONS(1939), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(1941), 1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(1943), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(1945), 1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1949), 1, + ACTIONS(691), 1, sym__escaped_string, - STATE(1259), 1, - sym__expression, - STATE(1281), 1, - sym_object_access, - STATE(1406), 1, - sym__decimal_literal, - ACTIONS(1913), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(1947), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(834), 2, - sym_comment, - sym_include, - ACTIONS(1915), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(1405), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(1390), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [70422] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, - anon_sym_LBRACE, - ACTIONS(648), 1, - sym__integer_literal, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, - aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1611), 1, - aux_sym_unary_expression_token2, - ACTIONS(1613), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, - aux_sym_locked_expression_token1, - ACTIONS(1621), 1, - aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(1601), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, - aux_sym_if_statement_token1, - ACTIONS(1627), 1, - aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2756), 1, + STATE(2750), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(835), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(852), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -114543,80 +116877,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [70541] = 29, + [72036] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2305), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(2307), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2309), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2311), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2313), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(2315), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(2317), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(2319), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(2321), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1205), 1, + STATE(2745), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(836), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(853), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -114633,80 +116968,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [70660] = 29, + [72157] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(859), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(861), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(869), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(871), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(877), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1849), 1, + ACTIONS(879), 1, aux_sym_unary_expression_token2, - ACTIONS(1851), 1, + ACTIONS(881), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1853), 1, + ACTIONS(883), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1855), 1, + ACTIONS(885), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1857), 1, + ACTIONS(887), 1, aux_sym_locked_expression_token1, - ACTIONS(1859), 1, + ACTIONS(889), 1, aux_sym_dataset_expression_token1, - ACTIONS(1861), 1, + ACTIONS(891), 1, aux_sym_input_expression_token1, - ACTIONS(1863), 1, + ACTIONS(893), 1, + aux_sym_scope_tuning_token1, + ACTIONS(895), 1, aux_sym_if_statement_token1, - ACTIONS(1865), 1, + ACTIONS(897), 1, + aux_sym_can_find_expression_token1, + ACTIONS(899), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(903), 1, + sym__escaped_string, + STATE(238), 1, + sym__expression, + STATE(668), 1, sym_object_access, - STATE(21), 1, + STATE(1000), 1, sym__decimal_literal, - STATE(2500), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(865), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(901), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(837), 2, + STATE(355), 2, + sym_function_call, + sym_new_expression, + STATE(854), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(867), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1014), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(997), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -114723,80 +117059,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [70779] = 29, + [72278] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2305), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(2307), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2309), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2311), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2313), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(2315), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(2317), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(2319), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(2321), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1214), 1, + STATE(2890), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(838), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(855), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -114813,80 +117150,149 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [70898] = 29, + [72399] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2338), 1, sym_identifier, - ACTIONS(642), 1, + STATE(990), 1, + sym_qualified_name, + STATE(856), 2, + sym_comment, + sym_include, + ACTIONS(1581), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(1579), 51, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(648), 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, - ACTIONS(650), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(656), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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(678), 1, + aux_sym_if_statement_token1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2305), 1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [72474] = 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(653), 1, + sym__integer_literal, + ACTIONS(655), 1, + anon_sym_LBRACK, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + aux_sym_unary_expression_token1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(2307), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2309), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2311), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2313), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(2315), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(2317), 1, - aux_sym_input_expression_token1, - ACTIONS(2319), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(2321), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1206), 1, + STATE(2741), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(839), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(857), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -114903,80 +117309,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [71017] = 29, + [72595] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(777), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(789), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(795), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2305), 1, + ACTIONS(797), 1, aux_sym_unary_expression_token2, - ACTIONS(2307), 1, + ACTIONS(799), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2309), 1, + ACTIONS(801), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2311), 1, + ACTIONS(803), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2313), 1, + ACTIONS(805), 1, aux_sym_locked_expression_token1, - ACTIONS(2315), 1, + ACTIONS(807), 1, aux_sym_dataset_expression_token1, - ACTIONS(2317), 1, + ACTIONS(809), 1, aux_sym_input_expression_token1, - ACTIONS(2319), 1, + ACTIONS(813), 1, + aux_sym_scope_tuning_token1, + ACTIONS(815), 1, aux_sym_if_statement_token1, - ACTIONS(2321), 1, + ACTIONS(817), 1, + aux_sym_can_find_expression_token1, + ACTIONS(819), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(831), 1, + sym__escaped_string, + ACTIONS(1447), 1, + anon_sym_LPAREN, + STATE(1002), 1, + sym__expression, + STATE(1065), 1, sym_object_access, - STATE(21), 1, + STATE(1125), 1, sym__decimal_literal, - STATE(1215), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(785), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(821), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(840), 2, + STATE(858), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1059), 2, + sym_function_call, + sym_new_expression, + ACTIONS(787), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1093), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1107), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -114993,80 +117400,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [71136] = 29, + [72716] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2305), 1, + ACTIONS(1822), 1, aux_sym_unary_expression_token2, - ACTIONS(2307), 1, + ACTIONS(1824), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2309), 1, + ACTIONS(1826), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2311), 1, + ACTIONS(1828), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2313), 1, + ACTIONS(1830), 1, aux_sym_locked_expression_token1, - ACTIONS(2315), 1, + ACTIONS(1832), 1, aux_sym_dataset_expression_token1, - ACTIONS(2317), 1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - ACTIONS(2319), 1, + ACTIONS(1836), 1, aux_sym_if_statement_token1, - ACTIONS(2321), 1, + ACTIONS(1838), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1218), 1, + STATE(1361), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(841), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(859), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -115083,80 +117491,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [71255] = 29, + [72837] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(859), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(861), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(869), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(871), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(877), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2305), 1, + ACTIONS(879), 1, aux_sym_unary_expression_token2, - ACTIONS(2307), 1, + ACTIONS(881), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2309), 1, + ACTIONS(883), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2311), 1, + ACTIONS(885), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2313), 1, + ACTIONS(887), 1, aux_sym_locked_expression_token1, - ACTIONS(2315), 1, + ACTIONS(889), 1, aux_sym_dataset_expression_token1, - ACTIONS(2317), 1, + ACTIONS(891), 1, aux_sym_input_expression_token1, - ACTIONS(2319), 1, + ACTIONS(893), 1, + aux_sym_scope_tuning_token1, + ACTIONS(895), 1, aux_sym_if_statement_token1, - ACTIONS(2321), 1, + ACTIONS(897), 1, + aux_sym_can_find_expression_token1, + ACTIONS(899), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(903), 1, + sym__escaped_string, + STATE(239), 1, + sym__expression, + STATE(668), 1, sym_object_access, - STATE(21), 1, + STATE(1000), 1, sym__decimal_literal, - STATE(1212), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(865), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(901), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(842), 2, + STATE(355), 2, + sym_function_call, + sym_new_expression, + STATE(860), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(867), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1014), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(997), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -115173,80 +117582,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [71374] = 29, + [72958] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(1869), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(1877), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(1883), 1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(1885), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1887), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1889), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1891), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(1893), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(1895), 1, + ACTIONS(1770), 1, aux_sym_input_expression_token1, - ACTIONS(1897), 1, + ACTIONS(1772), 1, aux_sym_scope_tuning_token1, - ACTIONS(1899), 1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(1901), 1, + ACTIONS(1776), 1, aux_sym_can_find_expression_token1, - ACTIONS(1903), 1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1907), 1, + ACTIONS(1782), 1, sym__escaped_string, - STATE(185), 1, + STATE(1966), 1, + sym__expression, + STATE(2002), 1, sym_object_access, - STATE(277), 1, + STATE(2748), 1, sym__decimal_literal, - STATE(1109), 1, - sym__expression, - ACTIONS(1871), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(1905), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(843), 2, + STATE(861), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(251), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(254), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -115263,80 +117673,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [71493] = 29, + [73079] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(859), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(861), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(869), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(871), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(877), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2143), 1, + ACTIONS(879), 1, aux_sym_unary_expression_token2, - ACTIONS(2145), 1, + ACTIONS(881), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2147), 1, + ACTIONS(883), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2149), 1, + ACTIONS(885), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2151), 1, + ACTIONS(887), 1, aux_sym_locked_expression_token1, - ACTIONS(2153), 1, + ACTIONS(889), 1, aux_sym_dataset_expression_token1, - ACTIONS(2155), 1, + ACTIONS(891), 1, aux_sym_input_expression_token1, - ACTIONS(2157), 1, + ACTIONS(893), 1, + aux_sym_scope_tuning_token1, + ACTIONS(895), 1, aux_sym_if_statement_token1, - ACTIONS(2159), 1, + ACTIONS(897), 1, + aux_sym_can_find_expression_token1, + ACTIONS(899), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(903), 1, + sym__escaped_string, + STATE(240), 1, + sym__expression, + STATE(668), 1, sym_object_access, - STATE(21), 1, + STATE(1000), 1, sym__decimal_literal, - STATE(1190), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(865), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(901), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(844), 2, + STATE(355), 2, + sym_function_call, + sym_new_expression, + STATE(862), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(867), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1014), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(997), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -115353,80 +117764,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [71612] = 29, + [73200] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, + ACTIONS(1770), 1, aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(1772), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(1776), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1782), 1, + sym__escaped_string, + STATE(1967), 1, + sym__expression, + STATE(2002), 1, sym_object_access, - STATE(21), 1, + STATE(2748), 1, sym__decimal_literal, - STATE(1295), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(845), 2, + STATE(863), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -115443,80 +117855,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [71731] = 29, + [73321] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2143), 1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(2145), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2147), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2149), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2151), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(2153), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(2155), 1, + ACTIONS(1770), 1, aux_sym_input_expression_token1, - ACTIONS(2157), 1, + ACTIONS(1772), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(2159), 1, + ACTIONS(1776), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1782), 1, + sym__escaped_string, + STATE(1968), 1, + sym__expression, + STATE(2002), 1, sym_object_access, - STATE(21), 1, + STATE(2748), 1, sym__decimal_literal, - STATE(1201), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(846), 2, + STATE(864), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -115533,80 +117946,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [71850] = 29, + [73442] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(859), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(861), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(869), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(871), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(877), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2143), 1, + ACTIONS(879), 1, aux_sym_unary_expression_token2, - ACTIONS(2145), 1, + ACTIONS(881), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2147), 1, + ACTIONS(883), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2149), 1, + ACTIONS(885), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2151), 1, + ACTIONS(887), 1, aux_sym_locked_expression_token1, - ACTIONS(2153), 1, + ACTIONS(889), 1, aux_sym_dataset_expression_token1, - ACTIONS(2155), 1, + ACTIONS(891), 1, aux_sym_input_expression_token1, - ACTIONS(2157), 1, + ACTIONS(893), 1, + aux_sym_scope_tuning_token1, + ACTIONS(895), 1, aux_sym_if_statement_token1, - ACTIONS(2159), 1, + ACTIONS(897), 1, + aux_sym_can_find_expression_token1, + ACTIONS(899), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(903), 1, + sym__escaped_string, + STATE(241), 1, + sym__expression, + STATE(668), 1, sym_object_access, - STATE(21), 1, + STATE(1000), 1, sym__decimal_literal, - STATE(1203), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(865), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(901), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(847), 2, + STATE(355), 2, + sym_function_call, + sym_new_expression, + STATE(865), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(867), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1014), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(997), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -115623,80 +118037,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [71969] = 29, + [73563] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2143), 1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(2145), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2147), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2149), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2151), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(2153), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(2155), 1, + ACTIONS(1770), 1, aux_sym_input_expression_token1, - ACTIONS(2157), 1, + ACTIONS(1772), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(2159), 1, + ACTIONS(1776), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1782), 1, + sym__escaped_string, + STATE(1969), 1, + sym__expression, + STATE(2002), 1, sym_object_access, - STATE(21), 1, + STATE(2748), 1, sym__decimal_literal, - STATE(1202), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(848), 2, + STATE(866), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -115713,80 +118128,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [72088] = 29, + [73684] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2143), 1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(2145), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2147), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2149), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2151), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(2153), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(2155), 1, + ACTIONS(1770), 1, aux_sym_input_expression_token1, - ACTIONS(2157), 1, + ACTIONS(1772), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(2159), 1, + ACTIONS(1776), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1782), 1, + sym__escaped_string, + STATE(1970), 1, + sym__expression, + STATE(2002), 1, sym_object_access, - STATE(21), 1, + STATE(2748), 1, sym__decimal_literal, - STATE(1188), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(849), 2, + STATE(867), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -115803,146 +118219,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [72207] = 5, + [73805] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(850), 2, - sym_comment, - sym_include, - ACTIONS(117), 4, - sym__namedot, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(119), 52, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(859), 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, + ACTIONS(861), 1, + anon_sym_LBRACE, + ACTIONS(869), 1, sym__integer_literal, - sym_date_literal, + ACTIONS(871), 1, anon_sym_LBRACK, + ACTIONS(873), 1, anon_sym_LPAREN, + ACTIONS(877), 1, aux_sym_unary_expression_token1, + ACTIONS(879), 1, aux_sym_unary_expression_token2, + ACTIONS(881), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(883), 1, aux_sym_temp_table_expression_token1, + ACTIONS(885), 1, aux_sym_current_changed_expression_token1, + ACTIONS(887), 1, aux_sym_locked_expression_token1, + ACTIONS(889), 1, aux_sym_dataset_expression_token1, + ACTIONS(891), 1, aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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(893), 1, aux_sym_scope_tuning_token1, + ACTIONS(895), 1, aux_sym_if_statement_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, + ACTIONS(897), 1, aux_sym_can_find_expression_token1, + ACTIONS(899), 1, aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [72278] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, - anon_sym_LBRACE, - ACTIONS(648), 1, - sym__integer_literal, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, - aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(903), 1, sym__escaped_string, - ACTIONS(2143), 1, - aux_sym_unary_expression_token2, - ACTIONS(2145), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(2147), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(2149), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(2151), 1, - aux_sym_locked_expression_token1, - ACTIONS(2153), 1, - aux_sym_dataset_expression_token1, - ACTIONS(2155), 1, - aux_sym_input_expression_token1, - ACTIONS(2157), 1, - aux_sym_if_statement_token1, - ACTIONS(2159), 1, - aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(224), 1, + sym__expression, + STATE(668), 1, sym_object_access, - STATE(21), 1, + STATE(1000), 1, sym__decimal_literal, - STATE(1200), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(865), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(901), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(851), 2, + STATE(355), 2, + sym_function_call, + sym_new_expression, + STATE(868), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(867), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1014), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(997), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -115959,80 +118310,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [72397] = 29, + [73926] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(859), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(861), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(869), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(871), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(877), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1813), 1, + ACTIONS(879), 1, aux_sym_unary_expression_token2, - ACTIONS(1815), 1, + ACTIONS(881), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1817), 1, + ACTIONS(883), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1819), 1, + ACTIONS(885), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1821), 1, + ACTIONS(887), 1, aux_sym_locked_expression_token1, - ACTIONS(1823), 1, + ACTIONS(889), 1, aux_sym_dataset_expression_token1, - ACTIONS(1825), 1, + ACTIONS(891), 1, aux_sym_input_expression_token1, - ACTIONS(1827), 1, + ACTIONS(893), 1, + aux_sym_scope_tuning_token1, + ACTIONS(895), 1, aux_sym_if_statement_token1, - ACTIONS(1829), 1, + ACTIONS(897), 1, + aux_sym_can_find_expression_token1, + ACTIONS(899), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(903), 1, + sym__escaped_string, + STATE(243), 1, + sym__expression, + STATE(668), 1, sym_object_access, - STATE(21), 1, + STATE(1000), 1, sym__decimal_literal, - STATE(1492), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(865), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(901), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(852), 2, + STATE(355), 2, + sym_function_call, + sym_new_expression, + STATE(869), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(867), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1014), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(997), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -116049,80 +118401,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [72516] = 29, + [74047] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(776), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(786), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(790), 1, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(792), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2298), 1, aux_sym_unary_expression_token2, - ACTIONS(794), 1, + ACTIONS(2300), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(796), 1, + ACTIONS(2302), 1, aux_sym_temp_table_expression_token1, - ACTIONS(798), 1, + ACTIONS(2304), 1, aux_sym_current_changed_expression_token1, - ACTIONS(800), 1, + ACTIONS(2306), 1, aux_sym_locked_expression_token1, - ACTIONS(802), 1, + ACTIONS(2308), 1, aux_sym_dataset_expression_token1, - ACTIONS(804), 1, + ACTIONS(2310), 1, aux_sym_input_expression_token1, - ACTIONS(808), 1, - aux_sym_scope_tuning_token1, - ACTIONS(810), 1, + ACTIONS(2312), 1, aux_sym_if_statement_token1, - ACTIONS(812), 1, - aux_sym_can_find_expression_token1, - ACTIONS(814), 1, + ACTIONS(2314), 1, aux_sym_accumulate_expression_token1, - ACTIONS(824), 1, - sym__escaped_string, - ACTIONS(1370), 1, - anon_sym_LPAREN, - STATE(992), 1, - sym__expression, - STATE(1039), 1, + STATE(15), 1, sym_object_access, - STATE(1075), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(780), 2, + STATE(1349), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(816), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(853), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(870), 2, sym_comment, sym_include, - ACTIONS(782), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1074), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1098), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -116139,80 +118492,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [72635] = 29, + [74168] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1813), 1, + ACTIONS(695), 1, aux_sym_unary_expression_token2, - ACTIONS(1815), 1, + ACTIONS(697), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1817), 1, + ACTIONS(699), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1819), 1, + ACTIONS(701), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1821), 1, + ACTIONS(703), 1, aux_sym_locked_expression_token1, - ACTIONS(1823), 1, + ACTIONS(705), 1, aux_sym_dataset_expression_token1, - ACTIONS(1825), 1, + ACTIONS(707), 1, aux_sym_input_expression_token1, - ACTIONS(1827), 1, + ACTIONS(709), 1, + aux_sym_scope_tuning_token1, + ACTIONS(713), 1, aux_sym_if_statement_token1, - ACTIONS(1829), 1, + ACTIONS(723), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1456), 1, + STATE(1394), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(854), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(871), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -116229,80 +118583,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [72754] = 29, + [74289] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1987), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1989), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1995), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1997), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1999), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2003), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2298), 1, aux_sym_unary_expression_token2, - ACTIONS(2005), 1, + ACTIONS(2300), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2007), 1, + ACTIONS(2302), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2009), 1, + ACTIONS(2304), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2011), 1, + ACTIONS(2306), 1, aux_sym_locked_expression_token1, - ACTIONS(2013), 1, + ACTIONS(2308), 1, aux_sym_dataset_expression_token1, - ACTIONS(2015), 1, + ACTIONS(2310), 1, aux_sym_input_expression_token1, - ACTIONS(2017), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2019), 1, + ACTIONS(2312), 1, aux_sym_if_statement_token1, - ACTIONS(2021), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2023), 1, + ACTIONS(2314), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2027), 1, - sym__escaped_string, - STATE(2183), 1, - sym__expression, - STATE(2453), 1, + STATE(15), 1, sym_object_access, - STATE(2980), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1991), 2, + STATE(1332), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2025), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(855), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(872), 2, sym_comment, sym_include, - ACTIONS(1993), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2962), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2927), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -116319,80 +118674,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [72873] = 29, + [74410] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1813), 1, + ACTIONS(2298), 1, aux_sym_unary_expression_token2, - ACTIONS(1815), 1, + ACTIONS(2300), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1817), 1, + ACTIONS(2302), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1819), 1, + ACTIONS(2304), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1821), 1, + ACTIONS(2306), 1, aux_sym_locked_expression_token1, - ACTIONS(1823), 1, + ACTIONS(2308), 1, aux_sym_dataset_expression_token1, - ACTIONS(1825), 1, + ACTIONS(2310), 1, aux_sym_input_expression_token1, - ACTIONS(1827), 1, + ACTIONS(2312), 1, aux_sym_if_statement_token1, - ACTIONS(1829), 1, + ACTIONS(2314), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1500), 1, + STATE(1345), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(856), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(873), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -116409,170 +118765,147 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [72992] = 29, + [74531] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1987), 1, - sym_identifier, - ACTIONS(1989), 1, + STATE(874), 2, + sym_comment, + sym_include, + ACTIONS(162), 4, + sym__namedoublecolon, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(164), 52, + anon_sym_SLASH, anon_sym_LBRACE, - ACTIONS(1995), 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, - ACTIONS(1997), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, aux_sym_unary_expression_token1, - ACTIONS(2003), 1, aux_sym_unary_expression_token2, - ACTIONS(2005), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2007), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2009), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2011), 1, aux_sym_locked_expression_token1, - ACTIONS(2013), 1, aux_sym_dataset_expression_token1, - ACTIONS(2015), 1, aux_sym_input_expression_token1, - ACTIONS(2017), 1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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(2019), 1, aux_sym_if_statement_token1, - ACTIONS(2021), 1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, aux_sym_can_find_expression_token1, - ACTIONS(2023), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2027), 1, - sym__escaped_string, - STATE(2174), 1, - sym__expression, - STATE(2453), 1, - sym_object_access, - STATE(2980), 1, - sym__decimal_literal, - ACTIONS(1991), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(2025), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(857), 2, - sym_comment, - sym_include, - ACTIONS(1993), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(2962), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(2927), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [73111] = 29, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [74602] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1813), 1, + ACTIONS(2298), 1, aux_sym_unary_expression_token2, - ACTIONS(1815), 1, + ACTIONS(2300), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1817), 1, + ACTIONS(2302), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1819), 1, + ACTIONS(2304), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1821), 1, + ACTIONS(2306), 1, aux_sym_locked_expression_token1, - ACTIONS(1823), 1, + ACTIONS(2308), 1, aux_sym_dataset_expression_token1, - ACTIONS(1825), 1, + ACTIONS(2310), 1, aux_sym_input_expression_token1, - ACTIONS(1827), 1, + ACTIONS(2312), 1, aux_sym_if_statement_token1, - ACTIONS(1829), 1, + ACTIONS(2314), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1471), 1, + STATE(1343), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(858), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(875), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -116589,80 +118922,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [73230] = 29, + [74723] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1813), 1, + ACTIONS(2298), 1, aux_sym_unary_expression_token2, - ACTIONS(1815), 1, + ACTIONS(2300), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1817), 1, + ACTIONS(2302), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1819), 1, + ACTIONS(2304), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1821), 1, + ACTIONS(2306), 1, aux_sym_locked_expression_token1, - ACTIONS(1823), 1, + ACTIONS(2308), 1, aux_sym_dataset_expression_token1, - ACTIONS(1825), 1, + ACTIONS(2310), 1, aux_sym_input_expression_token1, - ACTIONS(1827), 1, + ACTIONS(2312), 1, aux_sym_if_statement_token1, - ACTIONS(1829), 1, + ACTIONS(2314), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1476), 1, + STATE(1331), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(859), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(876), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -116679,80 +119013,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [73349] = 29, + [74844] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1987), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1989), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1995), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1997), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1999), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2003), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2298), 1, aux_sym_unary_expression_token2, - ACTIONS(2005), 1, + ACTIONS(2300), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2007), 1, + ACTIONS(2302), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2009), 1, + ACTIONS(2304), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2011), 1, + ACTIONS(2306), 1, aux_sym_locked_expression_token1, - ACTIONS(2013), 1, + ACTIONS(2308), 1, aux_sym_dataset_expression_token1, - ACTIONS(2015), 1, + ACTIONS(2310), 1, aux_sym_input_expression_token1, - ACTIONS(2017), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2019), 1, + ACTIONS(2312), 1, aux_sym_if_statement_token1, - ACTIONS(2021), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2023), 1, + ACTIONS(2314), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2027), 1, - sym__escaped_string, - STATE(2173), 1, - sym__expression, - STATE(2453), 1, + STATE(15), 1, sym_object_access, - STATE(2980), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1991), 2, + STATE(1330), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2025), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(860), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(877), 2, sym_comment, sym_include, - ACTIONS(1993), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2962), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2927), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -116769,147 +119104,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [73468] = 6, + [74965] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2323), 1, - anon_sym_NO_DASHERROR, - STATE(861), 2, - sym_comment, - sym_include, - ACTIONS(248), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(250), 52, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(645), 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [73541] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(2298), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(2300), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(2302), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(2304), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(2306), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(2308), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, + ACTIONS(2310), 1, aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(2312), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(2314), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1182), 1, + STATE(1324), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(862), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(878), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -116926,80 +119195,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [73660] = 29, + [75086] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1987), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1989), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1995), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1997), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1999), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2003), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2298), 1, aux_sym_unary_expression_token2, - ACTIONS(2005), 1, + ACTIONS(2300), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2007), 1, + ACTIONS(2302), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2009), 1, + ACTIONS(2304), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2011), 1, + ACTIONS(2306), 1, aux_sym_locked_expression_token1, - ACTIONS(2013), 1, + ACTIONS(2308), 1, aux_sym_dataset_expression_token1, - ACTIONS(2015), 1, + ACTIONS(2310), 1, aux_sym_input_expression_token1, - ACTIONS(2017), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2019), 1, + ACTIONS(2312), 1, aux_sym_if_statement_token1, - ACTIONS(2021), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2023), 1, + ACTIONS(2314), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2027), 1, - sym__escaped_string, - STATE(2170), 1, - sym__expression, - STATE(2453), 1, + STATE(15), 1, sym_object_access, - STATE(2980), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1991), 2, + STATE(1326), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2025), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(863), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(879), 2, sym_comment, sym_include, - ACTIONS(1993), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2962), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2927), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -117016,80 +119286,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [73779] = 29, + [75207] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1987), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1989), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1995), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1997), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1999), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2003), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2298), 1, aux_sym_unary_expression_token2, - ACTIONS(2005), 1, + ACTIONS(2300), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2007), 1, + ACTIONS(2302), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2009), 1, + ACTIONS(2304), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2011), 1, + ACTIONS(2306), 1, aux_sym_locked_expression_token1, - ACTIONS(2013), 1, + ACTIONS(2308), 1, aux_sym_dataset_expression_token1, - ACTIONS(2015), 1, + ACTIONS(2310), 1, aux_sym_input_expression_token1, - ACTIONS(2017), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2019), 1, + ACTIONS(2312), 1, aux_sym_if_statement_token1, - ACTIONS(2021), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2023), 1, + ACTIONS(2314), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2027), 1, - sym__escaped_string, - STATE(2169), 1, - sym__expression, - STATE(2453), 1, + STATE(15), 1, sym_object_access, - STATE(2980), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1991), 2, + STATE(1350), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2025), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(864), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(880), 2, sym_comment, sym_include, - ACTIONS(1993), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2962), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2927), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -117106,80 +119377,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [73898] = 29, + [75328] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1987), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1989), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1995), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1997), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1999), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2003), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(2005), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2007), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2009), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2011), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(2013), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(2015), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(2017), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2019), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(2021), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2023), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2027), 1, - sym__escaped_string, - STATE(2158), 1, - sym__expression, - STATE(2453), 1, + STATE(15), 1, sym_object_access, - STATE(2980), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1991), 2, + STATE(2688), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2025), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(865), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(881), 2, sym_comment, sym_include, - ACTIONS(1993), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2962), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2927), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -117196,80 +119468,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [74017] = 29, + [75449] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2065), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(2067), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(2073), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(2075), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(2077), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2079), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2081), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2298), 1, aux_sym_unary_expression_token2, - ACTIONS(2083), 1, + ACTIONS(2300), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2085), 1, + ACTIONS(2302), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2087), 1, + ACTIONS(2304), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2089), 1, + ACTIONS(2306), 1, aux_sym_locked_expression_token1, - ACTIONS(2091), 1, + ACTIONS(2308), 1, aux_sym_dataset_expression_token1, - ACTIONS(2093), 1, + ACTIONS(2310), 1, aux_sym_input_expression_token1, - ACTIONS(2095), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2097), 1, + ACTIONS(2312), 1, aux_sym_if_statement_token1, - ACTIONS(2099), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2101), 1, + ACTIONS(2314), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2105), 1, - sym__escaped_string, - STATE(2043), 1, - sym__expression, - STATE(2444), 1, + STATE(15), 1, sym_object_access, - STATE(2909), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(2069), 2, + STATE(1338), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2103), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(866), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(882), 2, sym_comment, sym_include, - ACTIONS(2071), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2944), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2945), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -117286,80 +119559,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [74136] = 29, + [75570] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2065), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(2067), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(2073), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(2075), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(2077), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2079), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2081), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(2298), 1, aux_sym_unary_expression_token2, - ACTIONS(2083), 1, + ACTIONS(2300), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2085), 1, + ACTIONS(2302), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2087), 1, + ACTIONS(2304), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2089), 1, + ACTIONS(2306), 1, aux_sym_locked_expression_token1, - ACTIONS(2091), 1, + ACTIONS(2308), 1, aux_sym_dataset_expression_token1, - ACTIONS(2093), 1, + ACTIONS(2310), 1, aux_sym_input_expression_token1, - ACTIONS(2095), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2097), 1, + ACTIONS(2312), 1, aux_sym_if_statement_token1, - ACTIONS(2099), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2101), 1, + ACTIONS(2314), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2105), 1, - sym__escaped_string, - STATE(2032), 1, - sym__expression, - STATE(2444), 1, + STATE(15), 1, sym_object_access, - STATE(2909), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(2069), 2, + STATE(1336), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2103), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(867), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(883), 2, sym_comment, sym_include, - ACTIONS(2071), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2944), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2945), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -117376,80 +119650,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [74255] = 29, + [75691] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2065), 1, + ACTIONS(2178), 1, sym_identifier, - ACTIONS(2067), 1, + ACTIONS(2180), 1, anon_sym_LBRACE, - ACTIONS(2073), 1, + ACTIONS(2186), 1, sym__integer_literal, - ACTIONS(2075), 1, + ACTIONS(2188), 1, anon_sym_LBRACK, - ACTIONS(2077), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(2079), 1, + ACTIONS(2192), 1, aux_sym_unary_expression_token1, - ACTIONS(2081), 1, + ACTIONS(2194), 1, aux_sym_unary_expression_token2, - ACTIONS(2083), 1, + ACTIONS(2196), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2085), 1, + ACTIONS(2198), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2087), 1, + ACTIONS(2200), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2089), 1, + ACTIONS(2202), 1, aux_sym_locked_expression_token1, - ACTIONS(2091), 1, + ACTIONS(2204), 1, aux_sym_dataset_expression_token1, - ACTIONS(2093), 1, + ACTIONS(2206), 1, aux_sym_input_expression_token1, - ACTIONS(2095), 1, + ACTIONS(2208), 1, aux_sym_scope_tuning_token1, - ACTIONS(2097), 1, + ACTIONS(2210), 1, aux_sym_if_statement_token1, - ACTIONS(2099), 1, + ACTIONS(2212), 1, aux_sym_can_find_expression_token1, - ACTIONS(2101), 1, + ACTIONS(2214), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2105), 1, + ACTIONS(2218), 1, sym__escaped_string, - STATE(2027), 1, + STATE(2202), 1, sym__expression, - STATE(2444), 1, + STATE(2433), 1, sym_object_access, - STATE(2909), 1, + STATE(2958), 1, sym__decimal_literal, - ACTIONS(2069), 2, + ACTIONS(2182), 2, sym_null_expression, sym_date_literal, - ACTIONS(2103), 2, + ACTIONS(2216), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(868), 2, + STATE(884), 2, sym_comment, sym_include, - ACTIONS(2071), 4, + STATE(2525), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2184), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2944), 4, + STATE(2904), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2945), 23, + STATE(2906), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -117466,80 +119741,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [74374] = 29, + [75812] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2065), 1, + ACTIONS(2178), 1, sym_identifier, - ACTIONS(2067), 1, + ACTIONS(2180), 1, anon_sym_LBRACE, - ACTIONS(2073), 1, + ACTIONS(2186), 1, sym__integer_literal, - ACTIONS(2075), 1, + ACTIONS(2188), 1, anon_sym_LBRACK, - ACTIONS(2077), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(2079), 1, + ACTIONS(2192), 1, aux_sym_unary_expression_token1, - ACTIONS(2081), 1, + ACTIONS(2194), 1, aux_sym_unary_expression_token2, - ACTIONS(2083), 1, + ACTIONS(2196), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2085), 1, + ACTIONS(2198), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2087), 1, + ACTIONS(2200), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2089), 1, + ACTIONS(2202), 1, aux_sym_locked_expression_token1, - ACTIONS(2091), 1, + ACTIONS(2204), 1, aux_sym_dataset_expression_token1, - ACTIONS(2093), 1, + ACTIONS(2206), 1, aux_sym_input_expression_token1, - ACTIONS(2095), 1, + ACTIONS(2208), 1, aux_sym_scope_tuning_token1, - ACTIONS(2097), 1, + ACTIONS(2210), 1, aux_sym_if_statement_token1, - ACTIONS(2099), 1, + ACTIONS(2212), 1, aux_sym_can_find_expression_token1, - ACTIONS(2101), 1, + ACTIONS(2214), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2105), 1, + ACTIONS(2218), 1, sym__escaped_string, - STATE(2026), 1, + STATE(2207), 1, sym__expression, - STATE(2444), 1, + STATE(2433), 1, sym_object_access, - STATE(2909), 1, + STATE(2958), 1, sym__decimal_literal, - ACTIONS(2069), 2, + ACTIONS(2182), 2, sym_null_expression, sym_date_literal, - ACTIONS(2103), 2, + ACTIONS(2216), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(869), 2, + STATE(885), 2, sym_comment, sym_include, - ACTIONS(2071), 4, + STATE(2525), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2184), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2944), 4, + STATE(2904), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2945), 23, + STATE(2906), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -117556,80 +119832,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [74493] = 29, + [75933] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2065), 1, + ACTIONS(2178), 1, sym_identifier, - ACTIONS(2067), 1, + ACTIONS(2180), 1, anon_sym_LBRACE, - ACTIONS(2073), 1, + ACTIONS(2186), 1, sym__integer_literal, - ACTIONS(2075), 1, + ACTIONS(2188), 1, anon_sym_LBRACK, - ACTIONS(2077), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(2079), 1, + ACTIONS(2192), 1, aux_sym_unary_expression_token1, - ACTIONS(2081), 1, + ACTIONS(2194), 1, aux_sym_unary_expression_token2, - ACTIONS(2083), 1, + ACTIONS(2196), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2085), 1, + ACTIONS(2198), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2087), 1, + ACTIONS(2200), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2089), 1, + ACTIONS(2202), 1, aux_sym_locked_expression_token1, - ACTIONS(2091), 1, + ACTIONS(2204), 1, aux_sym_dataset_expression_token1, - ACTIONS(2093), 1, + ACTIONS(2206), 1, aux_sym_input_expression_token1, - ACTIONS(2095), 1, + ACTIONS(2208), 1, aux_sym_scope_tuning_token1, - ACTIONS(2097), 1, + ACTIONS(2210), 1, aux_sym_if_statement_token1, - ACTIONS(2099), 1, + ACTIONS(2212), 1, aux_sym_can_find_expression_token1, - ACTIONS(2101), 1, + ACTIONS(2214), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2105), 1, + ACTIONS(2218), 1, sym__escaped_string, - STATE(2024), 1, + STATE(2208), 1, sym__expression, - STATE(2444), 1, + STATE(2433), 1, sym_object_access, - STATE(2909), 1, + STATE(2958), 1, sym__decimal_literal, - ACTIONS(2069), 2, + ACTIONS(2182), 2, sym_null_expression, sym_date_literal, - ACTIONS(2103), 2, + ACTIONS(2216), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(870), 2, + STATE(886), 2, sym_comment, sym_include, - ACTIONS(2071), 4, + STATE(2525), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2184), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2944), 4, + STATE(2904), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2945), 23, + STATE(2906), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -117646,170 +119923,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [74612] = 29, + [76054] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2065), 1, + ACTIONS(2178), 1, sym_identifier, - ACTIONS(2067), 1, + ACTIONS(2180), 1, anon_sym_LBRACE, - ACTIONS(2073), 1, + ACTIONS(2186), 1, sym__integer_literal, - ACTIONS(2075), 1, + ACTIONS(2188), 1, anon_sym_LBRACK, - ACTIONS(2077), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(2079), 1, + ACTIONS(2192), 1, aux_sym_unary_expression_token1, - ACTIONS(2081), 1, + ACTIONS(2194), 1, aux_sym_unary_expression_token2, - ACTIONS(2083), 1, + ACTIONS(2196), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2085), 1, + ACTIONS(2198), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2087), 1, + ACTIONS(2200), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2089), 1, + ACTIONS(2202), 1, aux_sym_locked_expression_token1, - ACTIONS(2091), 1, + ACTIONS(2204), 1, aux_sym_dataset_expression_token1, - ACTIONS(2093), 1, + ACTIONS(2206), 1, aux_sym_input_expression_token1, - ACTIONS(2095), 1, + ACTIONS(2208), 1, aux_sym_scope_tuning_token1, - ACTIONS(2097), 1, + ACTIONS(2210), 1, aux_sym_if_statement_token1, - ACTIONS(2099), 1, + ACTIONS(2212), 1, aux_sym_can_find_expression_token1, - ACTIONS(2101), 1, + ACTIONS(2214), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2105), 1, + ACTIONS(2218), 1, sym__escaped_string, - STATE(2021), 1, + STATE(2211), 1, sym__expression, - STATE(2444), 1, + STATE(2433), 1, sym_object_access, - STATE(2909), 1, + STATE(2958), 1, sym__decimal_literal, - ACTIONS(2069), 2, + ACTIONS(2182), 2, sym_null_expression, sym_date_literal, - ACTIONS(2103), 2, + ACTIONS(2216), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(871), 2, + STATE(887), 2, sym_comment, sym_include, - ACTIONS(2071), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(2944), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(2945), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, + STATE(2525), 2, sym_function_call, - sym_ternary_expression, sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [74731] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, - anon_sym_LBRACE, - ACTIONS(648), 1, - sym__integer_literal, - ACTIONS(650), 1, - anon_sym_LBRACK, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, - aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2263), 1, - aux_sym_unary_expression_token2, - ACTIONS(2265), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(2267), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(2269), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(2271), 1, - aux_sym_locked_expression_token1, - ACTIONS(2273), 1, - aux_sym_dataset_expression_token1, - ACTIONS(2275), 1, - aux_sym_input_expression_token1, - ACTIONS(2277), 1, - aux_sym_if_statement_token1, - ACTIONS(2279), 1, - aux_sym_accumulate_expression_token1, - STATE(9), 1, - sym_object_access, - STATE(21), 1, - sym__decimal_literal, - STATE(2645), 1, - sym__expression, - ACTIONS(644), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(684), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(872), 2, - sym_comment, - sym_include, - ACTIONS(646), 4, + ACTIONS(2184), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2904), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2906), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -117826,80 +120014,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [74850] = 29, + [76175] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2178), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2180), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2186), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2188), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2192), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2263), 1, + ACTIONS(2194), 1, aux_sym_unary_expression_token2, - ACTIONS(2265), 1, + ACTIONS(2196), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2267), 1, + ACTIONS(2198), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2269), 1, + ACTIONS(2200), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2271), 1, + ACTIONS(2202), 1, aux_sym_locked_expression_token1, - ACTIONS(2273), 1, + ACTIONS(2204), 1, aux_sym_dataset_expression_token1, - ACTIONS(2275), 1, + ACTIONS(2206), 1, aux_sym_input_expression_token1, - ACTIONS(2277), 1, + ACTIONS(2208), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2210), 1, aux_sym_if_statement_token1, - ACTIONS(2279), 1, + ACTIONS(2212), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2214), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2218), 1, + sym__escaped_string, + STATE(2213), 1, + sym__expression, + STATE(2433), 1, sym_object_access, - STATE(21), 1, + STATE(2958), 1, sym__decimal_literal, - STATE(2644), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2182), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2216), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(873), 2, + STATE(888), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2525), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2184), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2904), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2906), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -117916,80 +120105,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [74969] = 29, + [76296] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2178), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2180), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2186), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2188), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2192), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2263), 1, + ACTIONS(2194), 1, aux_sym_unary_expression_token2, - ACTIONS(2265), 1, + ACTIONS(2196), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2267), 1, + ACTIONS(2198), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2269), 1, + ACTIONS(2200), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2271), 1, + ACTIONS(2202), 1, aux_sym_locked_expression_token1, - ACTIONS(2273), 1, + ACTIONS(2204), 1, aux_sym_dataset_expression_token1, - ACTIONS(2275), 1, + ACTIONS(2206), 1, aux_sym_input_expression_token1, - ACTIONS(2277), 1, + ACTIONS(2208), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2210), 1, aux_sym_if_statement_token1, - ACTIONS(2279), 1, + ACTIONS(2212), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2214), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2218), 1, + sym__escaped_string, + STATE(2214), 1, + sym__expression, + STATE(2433), 1, sym_object_access, - STATE(21), 1, + STATE(2958), 1, sym__decimal_literal, - STATE(2641), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2182), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2216), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(874), 2, + STATE(889), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2525), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2184), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2904), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2906), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -118006,80 +120196,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [75088] = 29, + [76417] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2256), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2258), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2264), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2266), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2268), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2270), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2263), 1, + ACTIONS(2272), 1, aux_sym_unary_expression_token2, - ACTIONS(2265), 1, + ACTIONS(2274), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2267), 1, + ACTIONS(2276), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2269), 1, + ACTIONS(2278), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2271), 1, + ACTIONS(2280), 1, aux_sym_locked_expression_token1, - ACTIONS(2273), 1, + ACTIONS(2282), 1, aux_sym_dataset_expression_token1, - ACTIONS(2275), 1, + ACTIONS(2284), 1, aux_sym_input_expression_token1, - ACTIONS(2277), 1, + ACTIONS(2286), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2288), 1, aux_sym_if_statement_token1, - ACTIONS(2279), 1, + ACTIONS(2290), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2292), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2296), 1, + sym__escaped_string, + STATE(1939), 1, + sym__expression, + STATE(2283), 1, sym_object_access, - STATE(21), 1, + STATE(2886), 1, sym__decimal_literal, - STATE(2635), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2260), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2294), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(875), 2, + STATE(890), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2500), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2262), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2815), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2810), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -118096,80 +120287,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [75207] = 29, + [76538] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2256), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2258), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2264), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2266), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2268), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2270), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2263), 1, + ACTIONS(2272), 1, aux_sym_unary_expression_token2, - ACTIONS(2265), 1, + ACTIONS(2274), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2267), 1, + ACTIONS(2276), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2269), 1, + ACTIONS(2278), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2271), 1, + ACTIONS(2280), 1, aux_sym_locked_expression_token1, - ACTIONS(2273), 1, + ACTIONS(2282), 1, aux_sym_dataset_expression_token1, - ACTIONS(2275), 1, + ACTIONS(2284), 1, aux_sym_input_expression_token1, - ACTIONS(2277), 1, + ACTIONS(2286), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2288), 1, aux_sym_if_statement_token1, - ACTIONS(2279), 1, + ACTIONS(2290), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2292), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2296), 1, + sym__escaped_string, + STATE(1941), 1, + sym__expression, + STATE(2283), 1, sym_object_access, - STATE(21), 1, + STATE(2886), 1, sym__decimal_literal, - STATE(2634), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2260), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2294), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(876), 2, + STATE(891), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2500), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2262), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2815), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2810), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -118186,80 +120378,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [75326] = 29, + [76659] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2256), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2258), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2264), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2266), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2268), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2270), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2263), 1, + ACTIONS(2272), 1, aux_sym_unary_expression_token2, - ACTIONS(2265), 1, + ACTIONS(2274), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2267), 1, + ACTIONS(2276), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2269), 1, + ACTIONS(2278), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2271), 1, + ACTIONS(2280), 1, aux_sym_locked_expression_token1, - ACTIONS(2273), 1, + ACTIONS(2282), 1, aux_sym_dataset_expression_token1, - ACTIONS(2275), 1, + ACTIONS(2284), 1, aux_sym_input_expression_token1, - ACTIONS(2277), 1, + ACTIONS(2286), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2288), 1, aux_sym_if_statement_token1, - ACTIONS(2279), 1, + ACTIONS(2290), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2292), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2296), 1, + sym__escaped_string, + STATE(1942), 1, + sym__expression, + STATE(2283), 1, sym_object_access, - STATE(21), 1, + STATE(2886), 1, sym__decimal_literal, - STATE(2633), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2260), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2294), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(877), 2, + STATE(892), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2500), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2262), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2815), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2810), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -118276,80 +120469,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [75445] = 29, + [76780] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2256), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2258), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2264), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2266), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2268), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2270), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1813), 1, + ACTIONS(2272), 1, aux_sym_unary_expression_token2, - ACTIONS(1815), 1, + ACTIONS(2274), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1817), 1, + ACTIONS(2276), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1819), 1, + ACTIONS(2278), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1821), 1, + ACTIONS(2280), 1, aux_sym_locked_expression_token1, - ACTIONS(1823), 1, + ACTIONS(2282), 1, aux_sym_dataset_expression_token1, - ACTIONS(1825), 1, + ACTIONS(2284), 1, aux_sym_input_expression_token1, - ACTIONS(1827), 1, + ACTIONS(2286), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2288), 1, aux_sym_if_statement_token1, - ACTIONS(1829), 1, + ACTIONS(2290), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2292), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2296), 1, + sym__escaped_string, + STATE(1943), 1, + sym__expression, + STATE(2283), 1, sym_object_access, - STATE(21), 1, + STATE(2886), 1, sym__decimal_literal, - STATE(1477), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2260), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2294), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(878), 2, + STATE(893), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2500), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2262), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2815), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2810), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -118366,80 +120560,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [75564] = 29, + [76901] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(2256), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(2258), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(2264), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(2266), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(2268), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(2270), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2161), 1, + ACTIONS(2272), 1, aux_sym_unary_expression_token2, - ACTIONS(2163), 1, + ACTIONS(2274), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2165), 1, + ACTIONS(2276), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2167), 1, + ACTIONS(2278), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2169), 1, + ACTIONS(2280), 1, aux_sym_locked_expression_token1, - ACTIONS(2171), 1, + ACTIONS(2282), 1, aux_sym_dataset_expression_token1, - ACTIONS(2173), 1, + ACTIONS(2284), 1, aux_sym_input_expression_token1, - ACTIONS(2175), 1, + ACTIONS(2286), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2288), 1, aux_sym_if_statement_token1, - ACTIONS(2177), 1, + ACTIONS(2290), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2292), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2296), 1, + sym__escaped_string, + STATE(1944), 1, + sym__expression, + STATE(2283), 1, sym_object_access, - STATE(21), 1, + STATE(2886), 1, sym__decimal_literal, - STATE(1166), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(2260), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2294), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(879), 2, + STATE(894), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2500), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2262), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2815), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2810), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -118456,80 +120651,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [75683] = 29, + [77022] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(2256), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(2258), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(2264), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(2266), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(2268), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(2270), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(2272), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(2274), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(2276), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(2278), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(2280), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(2282), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, + ACTIONS(2284), 1, aux_sym_input_expression_token1, - ACTIONS(1719), 1, + ACTIONS(2286), 1, aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(2288), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, + ACTIONS(2290), 1, aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(2292), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, + ACTIONS(2296), 1, sym__escaped_string, - STATE(1353), 1, + STATE(1945), 1, sym__expression, - STATE(1896), 1, + STATE(2283), 1, sym_object_access, - STATE(2582), 1, + STATE(2886), 1, sym__decimal_literal, - ACTIONS(1693), 2, + ACTIONS(2260), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(2294), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(880), 2, + STATE(895), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + STATE(2500), 2, + sym_function_call, + sym_new_expression, + ACTIONS(2262), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(2815), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(2810), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -118546,80 +120742,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [75802] = 29, + [77143] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1288), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1296), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1298), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1300), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1302), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2161), 1, + ACTIONS(1304), 1, aux_sym_unary_expression_token2, - ACTIONS(2163), 1, + ACTIONS(1306), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2165), 1, + ACTIONS(1308), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2167), 1, + ACTIONS(1310), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2169), 1, + ACTIONS(1312), 1, aux_sym_locked_expression_token1, - ACTIONS(2171), 1, + ACTIONS(1314), 1, aux_sym_dataset_expression_token1, - ACTIONS(2173), 1, + ACTIONS(1316), 1, aux_sym_input_expression_token1, - ACTIONS(2175), 1, + ACTIONS(1318), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1320), 1, aux_sym_if_statement_token1, - ACTIONS(2177), 1, + ACTIONS(1326), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1328), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1332), 1, + sym__escaped_string, + STATE(1037), 1, + sym__expression, + STATE(1115), 1, sym_object_access, - STATE(21), 1, + STATE(1135), 1, sym__decimal_literal, - STATE(1162), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1292), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1330), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(881), 2, + STATE(896), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1078), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1294), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1137), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1141), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -118636,80 +120833,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [75921] = 29, + [77264] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2161), 1, + ACTIONS(1822), 1, aux_sym_unary_expression_token2, - ACTIONS(2163), 1, + ACTIONS(1824), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2165), 1, + ACTIONS(1826), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2167), 1, + ACTIONS(1828), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2169), 1, + ACTIONS(1830), 1, aux_sym_locked_expression_token1, - ACTIONS(2171), 1, + ACTIONS(1832), 1, aux_sym_dataset_expression_token1, - ACTIONS(2173), 1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - ACTIONS(2175), 1, + ACTIONS(1836), 1, aux_sym_if_statement_token1, - ACTIONS(2177), 1, + ACTIONS(1838), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1161), 1, + STATE(1312), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(882), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(897), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -118726,80 +120924,172 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [76040] = 29, + [77385] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(663), 1, + aux_sym_unary_expression_token2, + ACTIONS(665), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(667), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(669), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(671), 1, + aux_sym_locked_expression_token1, + ACTIONS(673), 1, + aux_sym_dataset_expression_token1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(681), 1, + aux_sym_if_statement_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(687), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2161), 1, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, + sym_object_access, + STATE(43), 1, + sym__decimal_literal, + STATE(2678), 1, + sym__expression, + ACTIONS(649), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(689), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(898), 2, + sym_comment, + sym_include, + ACTIONS(651), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(29), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(30), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [77506] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1742), 1, + sym_identifier, + ACTIONS(1744), 1, + anon_sym_LBRACE, + ACTIONS(1750), 1, + sym__integer_literal, + ACTIONS(1752), 1, + anon_sym_LBRACK, + ACTIONS(1754), 1, + anon_sym_LPAREN, + ACTIONS(1756), 1, + aux_sym_unary_expression_token1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(2163), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2165), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2167), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2169), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(2171), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(2173), 1, + ACTIONS(1770), 1, aux_sym_input_expression_token1, - ACTIONS(2175), 1, + ACTIONS(1772), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(2177), 1, + ACTIONS(1776), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1782), 1, + sym__escaped_string, + STATE(1818), 1, + sym__expression, + STATE(2002), 1, sym_object_access, - STATE(21), 1, + STATE(2748), 1, sym__decimal_literal, - STATE(1165), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(883), 2, + STATE(899), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -118816,80 +121106,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [76159] = 29, + [77627] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2161), 1, + ACTIONS(2238), 1, aux_sym_unary_expression_token2, - ACTIONS(2163), 1, + ACTIONS(2240), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2165), 1, + ACTIONS(2242), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2167), 1, + ACTIONS(2244), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2169), 1, + ACTIONS(2246), 1, aux_sym_locked_expression_token1, - ACTIONS(2171), 1, + ACTIONS(2248), 1, aux_sym_dataset_expression_token1, - ACTIONS(2173), 1, + ACTIONS(2250), 1, aux_sym_input_expression_token1, - ACTIONS(2175), 1, + ACTIONS(2252), 1, aux_sym_if_statement_token1, - ACTIONS(2177), 1, + ACTIONS(2254), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1163), 1, + STATE(1215), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(884), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(900), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -118906,80 +121197,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [76278] = 29, + [77748] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2161), 1, + ACTIONS(695), 1, aux_sym_unary_expression_token2, - ACTIONS(2163), 1, + ACTIONS(697), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2165), 1, + ACTIONS(699), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2167), 1, + ACTIONS(701), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2169), 1, + ACTIONS(703), 1, aux_sym_locked_expression_token1, - ACTIONS(2171), 1, + ACTIONS(705), 1, aux_sym_dataset_expression_token1, - ACTIONS(2173), 1, + ACTIONS(707), 1, aux_sym_input_expression_token1, - ACTIONS(2175), 1, + ACTIONS(709), 1, + aux_sym_scope_tuning_token1, + ACTIONS(713), 1, aux_sym_if_statement_token1, - ACTIONS(2177), 1, + ACTIONS(723), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1160), 1, + STATE(1365), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(885), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(901), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -118996,80 +121288,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [76397] = 29, + [77869] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(1288), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(1296), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(1298), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(1300), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(1302), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(1304), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(1306), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(1308), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(1310), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(1312), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(1314), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, + ACTIONS(1316), 1, aux_sym_input_expression_token1, - ACTIONS(1719), 1, + ACTIONS(1318), 1, aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(1320), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, + ACTIONS(1326), 1, aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(1328), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, + ACTIONS(1332), 1, sym__escaped_string, - STATE(1359), 1, + STATE(1036), 1, sym__expression, - STATE(1896), 1, + STATE(1115), 1, sym_object_access, - STATE(2582), 1, + STATE(1135), 1, sym__decimal_literal, - ACTIONS(1693), 2, + ACTIONS(1292), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(1330), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(886), 2, + STATE(902), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + STATE(1078), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1294), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(1137), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(1141), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -119086,80 +121379,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [76516] = 29, + [77990] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1288), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1296), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1298), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1300), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1302), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2047), 1, + ACTIONS(1304), 1, aux_sym_unary_expression_token2, - ACTIONS(2049), 1, + ACTIONS(1306), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2051), 1, + ACTIONS(1308), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2053), 1, + ACTIONS(1310), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2055), 1, + ACTIONS(1312), 1, aux_sym_locked_expression_token1, - ACTIONS(2057), 1, + ACTIONS(1314), 1, aux_sym_dataset_expression_token1, - ACTIONS(2059), 1, + ACTIONS(1316), 1, aux_sym_input_expression_token1, - ACTIONS(2061), 1, + ACTIONS(1318), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1320), 1, aux_sym_if_statement_token1, - ACTIONS(2063), 1, + ACTIONS(1326), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1328), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1332), 1, + sym__escaped_string, + STATE(1035), 1, + sym__expression, + STATE(1115), 1, sym_object_access, - STATE(21), 1, + STATE(1135), 1, sym__decimal_literal, - STATE(1386), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1292), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1330), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(887), 2, + STATE(903), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1078), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1294), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1137), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1141), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -119176,80 +121470,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [76635] = 29, + [78111] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1288), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1296), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1298), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1300), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1302), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(1304), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(1306), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(1308), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(1310), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(1312), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(1314), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, + ACTIONS(1316), 1, aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(1318), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1320), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(1326), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1328), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1332), 1, + sym__escaped_string, + STATE(1034), 1, + sym__expression, + STATE(1115), 1, sym_object_access, - STATE(21), 1, + STATE(1135), 1, sym__decimal_literal, - STATE(1145), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1292), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1330), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(888), 2, + STATE(904), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1078), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1294), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1137), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1141), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -119266,80 +121561,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [76754] = 29, + [78232] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1288), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1296), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1298), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1300), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1302), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2047), 1, + ACTIONS(1304), 1, aux_sym_unary_expression_token2, - ACTIONS(2049), 1, + ACTIONS(1306), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2051), 1, + ACTIONS(1308), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2053), 1, + ACTIONS(1310), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2055), 1, + ACTIONS(1312), 1, aux_sym_locked_expression_token1, - ACTIONS(2057), 1, + ACTIONS(1314), 1, aux_sym_dataset_expression_token1, - ACTIONS(2059), 1, + ACTIONS(1316), 1, aux_sym_input_expression_token1, - ACTIONS(2061), 1, + ACTIONS(1318), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1320), 1, aux_sym_if_statement_token1, - ACTIONS(2063), 1, + ACTIONS(1326), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1328), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1332), 1, + sym__escaped_string, + STATE(1033), 1, + sym__expression, + STATE(1115), 1, sym_object_access, - STATE(21), 1, + STATE(1135), 1, sym__decimal_literal, - STATE(1387), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1292), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1330), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(889), 2, + STATE(905), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1078), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1294), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1137), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1141), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -119356,80 +121652,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [76873] = 29, + [78353] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1288), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1296), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1298), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1300), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1302), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2047), 1, + ACTIONS(1304), 1, aux_sym_unary_expression_token2, - ACTIONS(2049), 1, + ACTIONS(1306), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2051), 1, + ACTIONS(1308), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2053), 1, + ACTIONS(1310), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2055), 1, + ACTIONS(1312), 1, aux_sym_locked_expression_token1, - ACTIONS(2057), 1, + ACTIONS(1314), 1, aux_sym_dataset_expression_token1, - ACTIONS(2059), 1, + ACTIONS(1316), 1, aux_sym_input_expression_token1, - ACTIONS(2061), 1, + ACTIONS(1318), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1320), 1, aux_sym_if_statement_token1, - ACTIONS(2063), 1, + ACTIONS(1326), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1328), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1332), 1, + sym__escaped_string, + STATE(1032), 1, + sym__expression, + STATE(1115), 1, sym_object_access, - STATE(21), 1, + STATE(1135), 1, sym__decimal_literal, - STATE(1389), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1292), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1330), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(890), 2, + STATE(906), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(1078), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1294), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(1137), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(1141), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -119446,80 +121743,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [76992] = 29, + [78474] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(695), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(697), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(699), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(701), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(703), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(705), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, + ACTIONS(707), 1, aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(709), 1, + aux_sym_scope_tuning_token1, + ACTIONS(713), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(723), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1278), 1, + STATE(1362), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(891), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(907), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -119536,80 +121834,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [77111] = 29, + [78595] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(1804), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(1806), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(1808), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(1810), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(1812), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(1814), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, + ACTIONS(1816), 1, aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(1818), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(1820), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1276), 1, + STATE(2442), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(892), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(908), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -119626,80 +121925,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [77230] = 29, + [78716] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(1770), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(1772), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(1776), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1782), 1, + sym__escaped_string, + STATE(1379), 1, + sym__expression, + STATE(2002), 1, sym_object_access, - STATE(21), 1, + STATE(2748), 1, sym__decimal_literal, - STATE(2688), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(893), 2, + STATE(909), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -119716,80 +122016,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [77349] = 29, + [78837] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(939), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(943), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(949), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(951), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(953), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(955), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2047), 1, + ACTIONS(957), 1, aux_sym_unary_expression_token2, - ACTIONS(2049), 1, + ACTIONS(959), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2051), 1, + ACTIONS(961), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2053), 1, + ACTIONS(963), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2055), 1, + ACTIONS(965), 1, aux_sym_locked_expression_token1, - ACTIONS(2057), 1, + ACTIONS(967), 1, aux_sym_dataset_expression_token1, - ACTIONS(2059), 1, + ACTIONS(969), 1, aux_sym_input_expression_token1, - ACTIONS(2061), 1, + ACTIONS(971), 1, + aux_sym_scope_tuning_token1, + ACTIONS(973), 1, aux_sym_if_statement_token1, - ACTIONS(2063), 1, + ACTIONS(975), 1, + aux_sym_can_find_expression_token1, + ACTIONS(977), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(981), 1, + sym__escaped_string, + STATE(201), 1, + sym__expression, + STATE(270), 1, sym_object_access, - STATE(21), 1, + STATE(363), 1, sym__decimal_literal, - STATE(1391), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(945), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(979), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(894), 2, + STATE(261), 2, + sym_function_call, + sym_new_expression, + STATE(910), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(947), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(382), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(384), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -119806,80 +122107,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [77468] = 29, + [78958] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2047), 1, + ACTIONS(695), 1, aux_sym_unary_expression_token2, - ACTIONS(2049), 1, + ACTIONS(697), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2051), 1, + ACTIONS(699), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2053), 1, + ACTIONS(701), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2055), 1, + ACTIONS(703), 1, aux_sym_locked_expression_token1, - ACTIONS(2057), 1, + ACTIONS(705), 1, aux_sym_dataset_expression_token1, - ACTIONS(2059), 1, + ACTIONS(707), 1, aux_sym_input_expression_token1, - ACTIONS(2061), 1, + ACTIONS(709), 1, + aux_sym_scope_tuning_token1, + ACTIONS(713), 1, aux_sym_if_statement_token1, - ACTIONS(2063), 1, + ACTIONS(723), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1418), 1, + STATE(1374), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(895), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(911), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -119896,80 +122198,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [77587] = 29, + [79079] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(939), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(943), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(949), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(951), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(953), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(955), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(2047), 1, + ACTIONS(957), 1, aux_sym_unary_expression_token2, - ACTIONS(2049), 1, + ACTIONS(959), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2051), 1, + ACTIONS(961), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2053), 1, + ACTIONS(963), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2055), 1, + ACTIONS(965), 1, aux_sym_locked_expression_token1, - ACTIONS(2057), 1, + ACTIONS(967), 1, aux_sym_dataset_expression_token1, - ACTIONS(2059), 1, + ACTIONS(969), 1, aux_sym_input_expression_token1, - ACTIONS(2061), 1, + ACTIONS(971), 1, + aux_sym_scope_tuning_token1, + ACTIONS(973), 1, aux_sym_if_statement_token1, - ACTIONS(2063), 1, + ACTIONS(975), 1, + aux_sym_can_find_expression_token1, + ACTIONS(977), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(981), 1, + sym__escaped_string, + STATE(204), 1, + sym__expression, + STATE(270), 1, sym_object_access, - STATE(21), 1, + STATE(363), 1, sym__decimal_literal, - STATE(1416), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(945), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(979), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(896), 2, + STATE(261), 2, + sym_function_call, + sym_new_expression, + STATE(912), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(947), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(382), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(384), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -119986,80 +122289,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [77706] = 29, + [79200] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(939), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(943), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(949), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(951), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(953), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(955), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(957), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(959), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(961), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(963), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(965), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(967), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, + ACTIONS(969), 1, aux_sym_input_expression_token1, - ACTIONS(1719), 1, + ACTIONS(971), 1, aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(973), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, + ACTIONS(975), 1, aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(977), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, + ACTIONS(981), 1, sym__escaped_string, - STATE(1362), 1, + STATE(205), 1, sym__expression, - STATE(1896), 1, + STATE(270), 1, sym_object_access, - STATE(2582), 1, + STATE(363), 1, sym__decimal_literal, - ACTIONS(1693), 2, + ACTIONS(945), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(979), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(897), 2, + STATE(261), 2, + sym_function_call, + sym_new_expression, + STATE(913), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + ACTIONS(947), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(382), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(384), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -120076,80 +122380,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [77825] = 29, + [79321] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(852), 1, + ACTIONS(939), 1, sym_identifier, - ACTIONS(854), 1, + ACTIONS(943), 1, anon_sym_LBRACE, - ACTIONS(862), 1, + ACTIONS(949), 1, sym__integer_literal, - ACTIONS(864), 1, + ACTIONS(951), 1, anon_sym_LBRACK, - ACTIONS(866), 1, + ACTIONS(953), 1, anon_sym_LPAREN, - ACTIONS(870), 1, + ACTIONS(955), 1, aux_sym_unary_expression_token1, - ACTIONS(872), 1, + ACTIONS(957), 1, aux_sym_unary_expression_token2, - ACTIONS(874), 1, + ACTIONS(959), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(876), 1, + ACTIONS(961), 1, aux_sym_temp_table_expression_token1, - ACTIONS(878), 1, + ACTIONS(963), 1, aux_sym_current_changed_expression_token1, - ACTIONS(880), 1, + ACTIONS(965), 1, aux_sym_locked_expression_token1, - ACTIONS(882), 1, + ACTIONS(967), 1, aux_sym_dataset_expression_token1, - ACTIONS(884), 1, + ACTIONS(969), 1, aux_sym_input_expression_token1, - ACTIONS(886), 1, + ACTIONS(971), 1, aux_sym_scope_tuning_token1, - ACTIONS(888), 1, + ACTIONS(973), 1, aux_sym_if_statement_token1, - ACTIONS(890), 1, + ACTIONS(975), 1, aux_sym_can_find_expression_token1, - ACTIONS(892), 1, + ACTIONS(977), 1, aux_sym_accumulate_expression_token1, - ACTIONS(896), 1, + ACTIONS(981), 1, sym__escaped_string, - STATE(235), 1, + STATE(194), 1, sym__expression, - STATE(698), 1, + STATE(270), 1, sym_object_access, - STATE(982), 1, + STATE(363), 1, sym__decimal_literal, - ACTIONS(858), 2, + ACTIONS(945), 2, sym_null_expression, sym_date_literal, - ACTIONS(894), 2, + ACTIONS(979), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(898), 2, + STATE(261), 2, + sym_function_call, + sym_new_expression, + STATE(914), 2, sym_comment, sym_include, - ACTIONS(860), 4, + ACTIONS(947), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1002), 4, + STATE(382), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1004), 23, + STATE(384), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -120166,80 +122471,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [77944] = 29, + [79442] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(939), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(943), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(949), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(951), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(953), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(955), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(957), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(959), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(961), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(963), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(965), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(967), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + ACTIONS(969), 1, + aux_sym_input_expression_token1, + ACTIONS(971), 1, aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(973), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, + ACTIONS(975), 1, aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(977), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, + ACTIONS(981), 1, sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(199), 1, + sym__expression, + STATE(270), 1, sym_object_access, - STATE(21), 1, + STATE(363), 1, sym__decimal_literal, - STATE(2684), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(945), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(979), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(899), 2, + STATE(261), 2, + sym_function_call, + sym_new_expression, + STATE(915), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(947), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(382), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(384), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -120256,148 +122562,172 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [78063] = 7, + [79563] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2325), 1, + ACTIONS(939), 1, sym_identifier, - STATE(993), 1, - sym_qualified_name, - STATE(900), 2, - sym_comment, - sym_include, - ACTIONS(1366), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(1364), 51, - anon_sym_SLASH, + ACTIONS(943), 1, anon_sym_LBRACE, - 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, + ACTIONS(949), 1, sym__integer_literal, - sym_date_literal, + ACTIONS(951), 1, anon_sym_LBRACK, + ACTIONS(953), 1, anon_sym_LPAREN, + ACTIONS(955), 1, aux_sym_unary_expression_token1, + ACTIONS(957), 1, aux_sym_unary_expression_token2, + ACTIONS(959), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(961), 1, aux_sym_temp_table_expression_token1, + ACTIONS(963), 1, aux_sym_current_changed_expression_token1, + ACTIONS(965), 1, aux_sym_locked_expression_token1, + ACTIONS(967), 1, aux_sym_dataset_expression_token1, + ACTIONS(969), 1, aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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(971), 1, aux_sym_scope_tuning_token1, + ACTIONS(973), 1, aux_sym_if_statement_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, + ACTIONS(975), 1, aux_sym_can_find_expression_token1, + ACTIONS(977), 1, aux_sym_accumulate_expression_token1, + ACTIONS(981), 1, + sym__escaped_string, + STATE(192), 1, + sym__expression, + STATE(270), 1, + sym_object_access, + STATE(363), 1, + sym__decimal_literal, + ACTIONS(945), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(979), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [78138] = 29, + STATE(261), 2, + sym_function_call, + sym_new_expression, + STATE(916), 2, + sym_comment, + sym_include, + ACTIONS(947), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(382), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(384), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [79684] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(2064), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(2066), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(2068), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(2070), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(2072), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(2074), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, + ACTIONS(2076), 1, aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(2078), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(2080), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1151), 1, + STATE(1177), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(901), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(917), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -120414,80 +122744,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [78257] = 29, + [79805] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(852), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(854), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(862), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(864), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(866), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(870), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(872), 1, + ACTIONS(1996), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2002), 1, + sym__escaped_string, + ACTIONS(2318), 1, aux_sym_unary_expression_token2, - ACTIONS(874), 1, + ACTIONS(2320), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(876), 1, + ACTIONS(2322), 1, aux_sym_temp_table_expression_token1, - ACTIONS(878), 1, + ACTIONS(2324), 1, aux_sym_current_changed_expression_token1, - ACTIONS(880), 1, + ACTIONS(2326), 1, aux_sym_locked_expression_token1, - ACTIONS(882), 1, + ACTIONS(2328), 1, aux_sym_dataset_expression_token1, - ACTIONS(884), 1, + ACTIONS(2330), 1, aux_sym_input_expression_token1, - ACTIONS(886), 1, + ACTIONS(2332), 1, aux_sym_scope_tuning_token1, - ACTIONS(888), 1, + ACTIONS(2334), 1, aux_sym_if_statement_token1, - ACTIONS(890), 1, - aux_sym_can_find_expression_token1, - ACTIONS(892), 1, + ACTIONS(2336), 1, aux_sym_accumulate_expression_token1, - ACTIONS(896), 1, - sym__escaped_string, - STATE(222), 1, - sym__expression, - STATE(698), 1, + STATE(193), 1, sym_object_access, - STATE(982), 1, + STATE(311), 1, sym__decimal_literal, - ACTIONS(858), 2, + STATE(1297), 1, + sym__expression, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(894), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(902), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(918), 2, sym_comment, sym_include, - ACTIONS(860), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1002), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1004), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -120504,80 +122835,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [78376] = 29, + [79926] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1589), 1, + ACTIONS(1601), 1, aux_sym_input_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2680), 1, + STATE(2734), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(903), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(919), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -120594,80 +122926,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [78495] = 29, + [80047] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(852), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(854), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(862), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(864), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(866), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(870), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(872), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(874), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(876), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(878), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(880), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(882), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(884), 1, - aux_sym_input_expression_token1, - ACTIONS(886), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(888), 1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(890), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(892), 1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - ACTIONS(896), 1, + ACTIONS(691), 1, sym__escaped_string, - STATE(223), 1, - sym__expression, - STATE(698), 1, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(982), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(858), 2, + STATE(2676), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(894), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(904), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(920), 2, sym_comment, sym_include, - ACTIONS(860), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1002), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1004), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -120684,80 +123017,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [78614] = 29, + [80168] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(852), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(854), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(862), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(864), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(866), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(870), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(872), 1, + ACTIONS(1996), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2002), 1, + sym__escaped_string, + ACTIONS(2318), 1, aux_sym_unary_expression_token2, - ACTIONS(874), 1, + ACTIONS(2320), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(876), 1, + ACTIONS(2322), 1, aux_sym_temp_table_expression_token1, - ACTIONS(878), 1, + ACTIONS(2324), 1, aux_sym_current_changed_expression_token1, - ACTIONS(880), 1, + ACTIONS(2326), 1, aux_sym_locked_expression_token1, - ACTIONS(882), 1, + ACTIONS(2328), 1, aux_sym_dataset_expression_token1, - ACTIONS(884), 1, + ACTIONS(2330), 1, aux_sym_input_expression_token1, - ACTIONS(886), 1, + ACTIONS(2332), 1, aux_sym_scope_tuning_token1, - ACTIONS(888), 1, + ACTIONS(2334), 1, aux_sym_if_statement_token1, - ACTIONS(890), 1, - aux_sym_can_find_expression_token1, - ACTIONS(892), 1, + ACTIONS(2336), 1, aux_sym_accumulate_expression_token1, - ACTIONS(896), 1, - sym__escaped_string, - STATE(224), 1, - sym__expression, - STATE(698), 1, + STATE(193), 1, sym_object_access, - STATE(982), 1, + STATE(311), 1, sym__decimal_literal, - ACTIONS(858), 2, + STATE(1296), 1, + sym__expression, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(894), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(905), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(921), 2, sym_comment, sym_include, - ACTIONS(860), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1002), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1004), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -120774,80 +123108,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [78733] = 29, + [80289] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(852), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(854), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(862), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(864), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(866), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(870), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(872), 1, + ACTIONS(1996), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2002), 1, + sym__escaped_string, + ACTIONS(2318), 1, aux_sym_unary_expression_token2, - ACTIONS(874), 1, + ACTIONS(2320), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(876), 1, + ACTIONS(2322), 1, aux_sym_temp_table_expression_token1, - ACTIONS(878), 1, + ACTIONS(2324), 1, aux_sym_current_changed_expression_token1, - ACTIONS(880), 1, + ACTIONS(2326), 1, aux_sym_locked_expression_token1, - ACTIONS(882), 1, + ACTIONS(2328), 1, aux_sym_dataset_expression_token1, - ACTIONS(884), 1, + ACTIONS(2330), 1, aux_sym_input_expression_token1, - ACTIONS(886), 1, + ACTIONS(2332), 1, aux_sym_scope_tuning_token1, - ACTIONS(888), 1, + ACTIONS(2334), 1, aux_sym_if_statement_token1, - ACTIONS(890), 1, - aux_sym_can_find_expression_token1, - ACTIONS(892), 1, + ACTIONS(2336), 1, aux_sym_accumulate_expression_token1, - ACTIONS(896), 1, - sym__escaped_string, - STATE(225), 1, - sym__expression, - STATE(698), 1, + STATE(193), 1, sym_object_access, - STATE(982), 1, + STATE(311), 1, sym__decimal_literal, - ACTIONS(858), 2, + STATE(1295), 1, + sym__expression, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(894), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(906), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(922), 2, sym_comment, sym_include, - ACTIONS(860), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1002), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1004), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -120864,80 +123199,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [78852] = 29, + [80410] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(852), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(854), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(862), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(864), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(866), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(870), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(872), 1, + ACTIONS(1996), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2002), 1, + sym__escaped_string, + ACTIONS(2318), 1, aux_sym_unary_expression_token2, - ACTIONS(874), 1, + ACTIONS(2320), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(876), 1, + ACTIONS(2322), 1, aux_sym_temp_table_expression_token1, - ACTIONS(878), 1, + ACTIONS(2324), 1, aux_sym_current_changed_expression_token1, - ACTIONS(880), 1, + ACTIONS(2326), 1, aux_sym_locked_expression_token1, - ACTIONS(882), 1, + ACTIONS(2328), 1, aux_sym_dataset_expression_token1, - ACTIONS(884), 1, + ACTIONS(2330), 1, aux_sym_input_expression_token1, - ACTIONS(886), 1, + ACTIONS(2332), 1, aux_sym_scope_tuning_token1, - ACTIONS(888), 1, + ACTIONS(2334), 1, aux_sym_if_statement_token1, - ACTIONS(890), 1, - aux_sym_can_find_expression_token1, - ACTIONS(892), 1, + ACTIONS(2336), 1, aux_sym_accumulate_expression_token1, - ACTIONS(896), 1, - sym__escaped_string, - STATE(228), 1, - sym__expression, - STATE(698), 1, + STATE(193), 1, sym_object_access, - STATE(982), 1, + STATE(311), 1, sym__decimal_literal, - ACTIONS(858), 2, + STATE(1305), 1, + sym__expression, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(894), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(907), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(923), 2, sym_comment, sym_include, - ACTIONS(860), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1002), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1004), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -120954,80 +123290,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [78971] = 29, + [80531] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(1996), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(2002), 1, sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(2318), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(2320), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(2322), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(2324), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(2326), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(2328), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, + ACTIONS(2330), 1, aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(2332), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2334), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(2336), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(193), 1, sym_object_access, - STATE(21), 1, + STATE(311), 1, sym__decimal_literal, - STATE(1282), 1, + STATE(1304), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(908), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(924), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -121044,80 +123381,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [79090] = 29, + [80652] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(1996), 1, + aux_sym_can_find_expression_token1, + ACTIONS(2002), 1, + sym__escaped_string, + ACTIONS(2318), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(2320), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(2322), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(2324), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(2326), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(2328), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, + ACTIONS(2330), 1, aux_sym_input_expression_token1, - ACTIONS(1719), 1, + ACTIONS(2332), 1, aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(2334), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(2336), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, - sym__escaped_string, - STATE(1327), 1, - sym__expression, - STATE(1896), 1, + STATE(193), 1, sym_object_access, - STATE(2582), 1, + STATE(311), 1, sym__decimal_literal, - ACTIONS(1693), 2, + STATE(1300), 1, + sym__expression, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(909), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(925), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -121134,80 +123472,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [79209] = 29, + [80773] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1831), 1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(1833), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1835), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1837), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1839), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(1841), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(1843), 1, + ACTIONS(1770), 1, aux_sym_input_expression_token1, - ACTIONS(1845), 1, + ACTIONS(1772), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(1847), 1, + ACTIONS(1776), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1782), 1, + sym__escaped_string, + STATE(1367), 1, + sym__expression, + STATE(2002), 1, sym_object_access, - STATE(21), 1, + STATE(2748), 1, sym__decimal_literal, - STATE(1306), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(910), 2, + STATE(926), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -121224,80 +123563,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [79328] = 29, + [80894] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(1719), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, - sym__escaped_string, - STATE(1533), 1, - sym__expression, - STATE(1896), 1, + STATE(15), 1, sym_object_access, - STATE(2582), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1693), 2, + STATE(2670), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(911), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(927), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -121314,80 +123654,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [79447] = 29, + [81015] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, - aux_sym_input_expression_token1, - ACTIONS(1719), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, + ACTIONS(691), 1, sym__escaped_string, - STATE(1366), 1, - sym__expression, - STATE(1896), 1, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(2582), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1693), 2, + STATE(2733), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(912), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(928), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -121404,80 +123745,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [79566] = 29, + [81136] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(1978), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(1980), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(1982), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(1984), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(1986), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(1988), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, + ACTIONS(1990), 1, aux_sym_input_expression_token1, - ACTIONS(1719), 1, + ACTIONS(1992), 1, aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(1994), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, + ACTIONS(1996), 1, aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(1998), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, + ACTIONS(2002), 1, sym__escaped_string, - STATE(1512), 1, - sym__expression, - STATE(1896), 1, + STATE(193), 1, sym_object_access, - STATE(2582), 1, + STATE(311), 1, sym__decimal_literal, - ACTIONS(1693), 2, + STATE(1146), 1, + sym__expression, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(913), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(929), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -121494,80 +123836,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [79685] = 29, + [81257] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1831), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(1833), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1835), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1837), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1839), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(1841), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(1843), 1, - aux_sym_input_expression_token1, - ACTIONS(1845), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(1847), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1307), 1, + STATE(2742), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(914), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(930), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -121584,80 +123927,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [79804] = 29, + [81378] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1831), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(1833), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1835), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1837), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1839), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(1841), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(1843), 1, - aux_sym_input_expression_token1, - ACTIONS(1845), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(1847), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1296), 1, + STATE(2725), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(915), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(931), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -121674,80 +124018,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [79923] = 29, + [81499] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1831), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(1833), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1835), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1837), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1839), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(1841), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(1843), 1, - aux_sym_input_expression_token1, - ACTIONS(1845), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(1847), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1299), 1, + STATE(2721), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(916), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(932), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -121764,80 +124109,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [80042] = 29, + [81620] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1831), 1, + ACTIONS(1978), 1, aux_sym_unary_expression_token2, - ACTIONS(1833), 1, + ACTIONS(1980), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1835), 1, + ACTIONS(1982), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1837), 1, + ACTIONS(1984), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1839), 1, + ACTIONS(1986), 1, aux_sym_locked_expression_token1, - ACTIONS(1841), 1, + ACTIONS(1988), 1, aux_sym_dataset_expression_token1, - ACTIONS(1843), 1, + ACTIONS(1990), 1, aux_sym_input_expression_token1, - ACTIONS(1845), 1, + ACTIONS(1992), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1994), 1, aux_sym_if_statement_token1, - ACTIONS(1847), 1, + ACTIONS(1996), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1998), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2002), 1, + sym__escaped_string, + STATE(193), 1, sym_object_access, - STATE(21), 1, + STATE(311), 1, sym__decimal_literal, - STATE(1300), 1, + STATE(1131), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(917), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(933), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -121854,80 +124200,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [80161] = 29, + [81741] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1831), 1, + ACTIONS(1978), 1, aux_sym_unary_expression_token2, - ACTIONS(1833), 1, + ACTIONS(1980), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1835), 1, + ACTIONS(1982), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1837), 1, + ACTIONS(1984), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1839), 1, + ACTIONS(1986), 1, aux_sym_locked_expression_token1, - ACTIONS(1841), 1, + ACTIONS(1988), 1, aux_sym_dataset_expression_token1, - ACTIONS(1843), 1, + ACTIONS(1990), 1, aux_sym_input_expression_token1, - ACTIONS(1845), 1, + ACTIONS(1992), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1994), 1, aux_sym_if_statement_token1, - ACTIONS(1847), 1, + ACTIONS(1996), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1998), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(2002), 1, + sym__escaped_string, + STATE(193), 1, sym_object_access, - STATE(21), 1, + STATE(311), 1, sym__decimal_literal, - STATE(1301), 1, + STATE(1133), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(918), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(934), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -121944,80 +124291,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [80280] = 29, + [81862] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(1978), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(1980), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(1982), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(1984), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(1986), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(1988), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, + ACTIONS(1990), 1, aux_sym_input_expression_token1, - ACTIONS(1719), 1, + ACTIONS(1992), 1, aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(1994), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, + ACTIONS(1996), 1, aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(1998), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, + ACTIONS(2002), 1, sym__escaped_string, - STATE(1528), 1, - sym__expression, - STATE(1896), 1, + STATE(193), 1, sym_object_access, - STATE(2582), 1, + STATE(311), 1, sym__decimal_literal, - ACTIONS(1693), 2, + STATE(1134), 1, + sym__expression, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(919), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(935), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -122034,80 +124382,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [80399] = 29, + [81983] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(1978), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(1980), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(1982), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(1984), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(1986), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(1988), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, + ACTIONS(1990), 1, aux_sym_input_expression_token1, - ACTIONS(1719), 1, + ACTIONS(1992), 1, aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(1994), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, + ACTIONS(1996), 1, aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(1998), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, + ACTIONS(2002), 1, sym__escaped_string, - STATE(1529), 1, - sym__expression, - STATE(1896), 1, + STATE(193), 1, sym_object_access, - STATE(2582), 1, + STATE(311), 1, sym__decimal_literal, - ACTIONS(1693), 2, + STATE(1136), 1, + sym__expression, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(920), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(936), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -122124,80 +124473,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [80518] = 29, + [82104] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2179), 1, + ACTIONS(1962), 1, sym_identifier, - ACTIONS(2181), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(2187), 1, + ACTIONS(1970), 1, sym__integer_literal, - ACTIONS(2189), 1, + ACTIONS(1972), 1, anon_sym_LBRACK, - ACTIONS(2191), 1, + ACTIONS(1974), 1, anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(1976), 1, aux_sym_unary_expression_token1, - ACTIONS(2195), 1, + ACTIONS(1978), 1, aux_sym_unary_expression_token2, - ACTIONS(2197), 1, + ACTIONS(1980), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2199), 1, + ACTIONS(1982), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2201), 1, + ACTIONS(1984), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2203), 1, + ACTIONS(1986), 1, aux_sym_locked_expression_token1, - ACTIONS(2205), 1, + ACTIONS(1988), 1, aux_sym_dataset_expression_token1, - ACTIONS(2207), 1, + ACTIONS(1990), 1, aux_sym_input_expression_token1, - ACTIONS(2209), 1, + ACTIONS(1992), 1, aux_sym_scope_tuning_token1, - ACTIONS(2211), 1, + ACTIONS(1994), 1, aux_sym_if_statement_token1, - ACTIONS(2213), 1, + ACTIONS(1996), 1, aux_sym_can_find_expression_token1, - ACTIONS(2215), 1, + ACTIONS(1998), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2219), 1, + ACTIONS(2002), 1, sym__escaped_string, - STATE(1935), 1, - sym__expression, - STATE(2120), 1, + STATE(193), 1, sym_object_access, - STATE(2875), 1, + STATE(311), 1, sym__decimal_literal, - ACTIONS(2183), 2, + STATE(1138), 1, + sym__expression, + ACTIONS(1966), 2, sym_null_expression, sym_date_literal, - ACTIONS(2217), 2, + ACTIONS(2000), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(921), 2, + STATE(213), 2, + sym_function_call, + sym_new_expression, + STATE(937), 2, sym_comment, sym_include, - ACTIONS(2185), 4, + ACTIONS(1968), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2857), 4, + STATE(316), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2852), 23, + STATE(314), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -122214,80 +124564,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [80637] = 29, + [82225] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(1288), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(1296), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(1298), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(1300), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(1302), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(1304), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(1306), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(1308), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(1310), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(1312), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(1314), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, + ACTIONS(1316), 1, aux_sym_input_expression_token1, - ACTIONS(1719), 1, + ACTIONS(1318), 1, aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(1320), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, + ACTIONS(1326), 1, aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(1328), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, + ACTIONS(1332), 1, sym__escaped_string, - STATE(1530), 1, + STATE(1031), 1, sym__expression, - STATE(1896), 1, + STATE(1115), 1, sym_object_access, - STATE(2582), 1, + STATE(1135), 1, sym__decimal_literal, - ACTIONS(1693), 2, + ACTIONS(1292), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(1330), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(922), 2, + STATE(938), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + STATE(1078), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1294), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(1137), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(1141), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -122304,80 +124655,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [80756] = 29, + [82346] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(1719), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, - sym__escaped_string, - STATE(1320), 1, - sym__expression, - STATE(1896), 1, + STATE(15), 1, sym_object_access, - STATE(2582), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1693), 2, + STATE(2693), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(923), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(939), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -122394,80 +124746,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [80875] = 29, + [82467] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2179), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(2181), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(2187), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(2189), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(2191), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2195), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(695), 1, aux_sym_unary_expression_token2, - ACTIONS(2197), 1, + ACTIONS(697), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2199), 1, + ACTIONS(699), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2201), 1, + ACTIONS(701), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2203), 1, + ACTIONS(703), 1, aux_sym_locked_expression_token1, - ACTIONS(2205), 1, + ACTIONS(705), 1, aux_sym_dataset_expression_token1, - ACTIONS(2207), 1, + ACTIONS(707), 1, aux_sym_input_expression_token1, - ACTIONS(2209), 1, + ACTIONS(709), 1, aux_sym_scope_tuning_token1, - ACTIONS(2211), 1, + ACTIONS(713), 1, aux_sym_if_statement_token1, - ACTIONS(2213), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2215), 1, + ACTIONS(723), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2219), 1, - sym__escaped_string, - STATE(1934), 1, - sym__expression, - STATE(2120), 1, + STATE(15), 1, sym_object_access, - STATE(2875), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(2183), 2, + STATE(1372), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2217), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(924), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(940), 2, sym_comment, sym_include, - ACTIONS(2185), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2857), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2852), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -122484,80 +124837,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [80994] = 29, + [82588] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2179), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(2181), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(2187), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(2189), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(2191), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2195), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1822), 1, aux_sym_unary_expression_token2, - ACTIONS(2197), 1, + ACTIONS(1824), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2199), 1, + ACTIONS(1826), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2201), 1, + ACTIONS(1828), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2203), 1, + ACTIONS(1830), 1, aux_sym_locked_expression_token1, - ACTIONS(2205), 1, + ACTIONS(1832), 1, aux_sym_dataset_expression_token1, - ACTIONS(2207), 1, + ACTIONS(1834), 1, aux_sym_input_expression_token1, - ACTIONS(2209), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2211), 1, + ACTIONS(1836), 1, aux_sym_if_statement_token1, - ACTIONS(2213), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2215), 1, + ACTIONS(1838), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2219), 1, - sym__escaped_string, - STATE(1933), 1, - sym__expression, - STATE(2120), 1, + STATE(15), 1, sym_object_access, - STATE(2875), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(2183), 2, + STATE(1301), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2217), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(925), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(941), 2, sym_comment, sym_include, - ACTIONS(2185), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2857), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2852), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -122574,80 +124928,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [81113] = 29, + [82709] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2179), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(2181), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(2187), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(2189), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(2191), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2195), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1686), 1, aux_sym_unary_expression_token2, - ACTIONS(2197), 1, + ACTIONS(1688), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2199), 1, + ACTIONS(1690), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2201), 1, + ACTIONS(1692), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2203), 1, + ACTIONS(1694), 1, aux_sym_locked_expression_token1, - ACTIONS(2205), 1, + ACTIONS(1696), 1, aux_sym_dataset_expression_token1, - ACTIONS(2207), 1, + ACTIONS(1698), 1, aux_sym_input_expression_token1, - ACTIONS(2209), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2211), 1, + ACTIONS(1700), 1, aux_sym_if_statement_token1, - ACTIONS(2213), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2215), 1, + ACTIONS(1702), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2219), 1, - sym__escaped_string, - STATE(1932), 1, - sym__expression, - STATE(2120), 1, + STATE(15), 1, sym_object_access, - STATE(2875), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(2183), 2, + STATE(1509), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2217), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(926), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(942), 2, sym_comment, sym_include, - ACTIONS(2185), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2857), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2852), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -122664,80 +125019,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [81232] = 29, + [82830] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2179), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(2181), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(2187), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(2189), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(2191), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2195), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(2197), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2199), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2201), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2203), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(2205), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(2207), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(2209), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2211), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(2213), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2215), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2219), 1, - sym__escaped_string, - STATE(1931), 1, - sym__expression, - STATE(2120), 1, + STATE(15), 1, sym_object_access, - STATE(2875), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(2183), 2, + STATE(2726), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2217), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(927), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(943), 2, sym_comment, sym_include, - ACTIONS(2185), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2857), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2852), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -122754,80 +125110,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [81351] = 29, + [82951] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2179), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(2181), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(2187), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(2189), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(2191), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2193), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2195), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(2197), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2199), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2201), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2203), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(2205), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(2207), 1, - aux_sym_input_expression_token1, - ACTIONS(2209), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(2211), 1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(2213), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(2215), 1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2219), 1, + ACTIONS(691), 1, sym__escaped_string, - STATE(1930), 1, - sym__expression, - STATE(2120), 1, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(2875), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(2183), 2, + STATE(2690), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2217), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(928), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(944), 2, sym_comment, sym_include, - ACTIONS(2185), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2857), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2852), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -122844,80 +125201,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [81470] = 29, + [83072] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(695), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(697), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(699), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(701), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(703), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(705), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, + ACTIONS(707), 1, aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(709), 1, + aux_sym_scope_tuning_token1, + ACTIONS(713), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(723), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1157), 1, + STATE(1370), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(929), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(945), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -122934,80 +125292,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [81589] = 29, + [83193] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2221), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(2223), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(2231), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(2233), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2235), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2237), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(695), 1, aux_sym_unary_expression_token2, - ACTIONS(2239), 1, + ACTIONS(697), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2241), 1, + ACTIONS(699), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2243), 1, + ACTIONS(701), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2245), 1, + ACTIONS(703), 1, aux_sym_locked_expression_token1, - ACTIONS(2247), 1, + ACTIONS(705), 1, aux_sym_dataset_expression_token1, - ACTIONS(2249), 1, + ACTIONS(707), 1, aux_sym_input_expression_token1, - ACTIONS(2251), 1, + ACTIONS(709), 1, aux_sym_scope_tuning_token1, - ACTIONS(2253), 1, + ACTIONS(713), 1, aux_sym_if_statement_token1, - ACTIONS(2255), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2257), 1, + ACTIONS(723), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2261), 1, - sym__escaped_string, - STATE(1878), 1, - sym__expression, - STATE(2155), 1, + STATE(15), 1, sym_object_access, - STATE(2856), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(2225), 2, + STATE(1369), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2259), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(930), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(946), 2, sym_comment, sym_include, - ACTIONS(2227), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2789), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2784), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -123024,80 +125383,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [81708] = 29, + [83314] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(695), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(697), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(699), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(701), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(703), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(705), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, + ACTIONS(707), 1, aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(709), 1, + aux_sym_scope_tuning_token1, + ACTIONS(713), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(723), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1285), 1, + STATE(1384), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(931), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(947), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -123114,80 +125474,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [81827] = 29, + [83435] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1611), 1, + ACTIONS(695), 1, aux_sym_unary_expression_token2, - ACTIONS(1613), 1, + ACTIONS(697), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1615), 1, + ACTIONS(699), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1617), 1, + ACTIONS(701), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1619), 1, + ACTIONS(703), 1, aux_sym_locked_expression_token1, - ACTIONS(1621), 1, + ACTIONS(705), 1, aux_sym_dataset_expression_token1, - ACTIONS(1623), 1, + ACTIONS(707), 1, aux_sym_input_expression_token1, - ACTIONS(1625), 1, + ACTIONS(709), 1, + aux_sym_scope_tuning_token1, + ACTIONS(713), 1, aux_sym_if_statement_token1, - ACTIONS(1627), 1, + ACTIONS(723), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2760), 1, + STATE(1363), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(932), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(948), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -123204,80 +125565,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [81946] = 29, + [83556] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2221), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(2223), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(2231), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(2233), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2235), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2237), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1944), 1, aux_sym_unary_expression_token2, - ACTIONS(2239), 1, + ACTIONS(1946), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2241), 1, + ACTIONS(1948), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2243), 1, + ACTIONS(1950), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2245), 1, + ACTIONS(1952), 1, aux_sym_locked_expression_token1, - ACTIONS(2247), 1, + ACTIONS(1954), 1, aux_sym_dataset_expression_token1, - ACTIONS(2249), 1, + ACTIONS(1956), 1, aux_sym_input_expression_token1, - ACTIONS(2251), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2253), 1, + ACTIONS(1958), 1, aux_sym_if_statement_token1, - ACTIONS(2255), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2257), 1, + ACTIONS(1960), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2261), 1, - sym__escaped_string, - STATE(1914), 1, - sym__expression, - STATE(2155), 1, + STATE(15), 1, sym_object_access, - STATE(2856), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(2225), 2, + STATE(2526), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2259), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(933), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(949), 2, sym_comment, sym_include, - ACTIONS(2227), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2789), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2784), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -123294,80 +125656,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [82065] = 29, + [83677] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2221), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(2223), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(2231), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(2233), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2235), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2237), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(695), 1, aux_sym_unary_expression_token2, - ACTIONS(2239), 1, + ACTIONS(697), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2241), 1, + ACTIONS(699), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2243), 1, + ACTIONS(701), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2245), 1, + ACTIONS(703), 1, aux_sym_locked_expression_token1, - ACTIONS(2247), 1, + ACTIONS(705), 1, aux_sym_dataset_expression_token1, - ACTIONS(2249), 1, + ACTIONS(707), 1, aux_sym_input_expression_token1, - ACTIONS(2251), 1, + ACTIONS(709), 1, aux_sym_scope_tuning_token1, - ACTIONS(2253), 1, + ACTIONS(713), 1, aux_sym_if_statement_token1, - ACTIONS(2255), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2257), 1, + ACTIONS(723), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2261), 1, - sym__escaped_string, - STATE(1912), 1, - sym__expression, - STATE(2155), 1, + STATE(15), 1, sym_object_access, - STATE(2856), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(2225), 2, + STATE(1388), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2259), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(934), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(950), 2, sym_comment, sym_include, - ACTIONS(2227), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2789), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2784), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -123384,80 +125747,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [82184] = 29, + [83798] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2221), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(2223), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(2231), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(2233), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(2235), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(2237), 1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(2239), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2241), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2243), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2245), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(2247), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(2249), 1, + ACTIONS(1770), 1, aux_sym_input_expression_token1, - ACTIONS(2251), 1, + ACTIONS(1772), 1, aux_sym_scope_tuning_token1, - ACTIONS(2253), 1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(2255), 1, + ACTIONS(1776), 1, aux_sym_can_find_expression_token1, - ACTIONS(2257), 1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2261), 1, + ACTIONS(1782), 1, sym__escaped_string, - STATE(1911), 1, + STATE(1371), 1, sym__expression, - STATE(2155), 1, + STATE(2002), 1, sym_object_access, - STATE(2856), 1, + STATE(2748), 1, sym__decimal_literal, - ACTIONS(2225), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(2259), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(935), 2, + STATE(951), 2, sym_comment, sym_include, - ACTIONS(2227), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2789), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2784), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -123474,80 +125838,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [82303] = 29, + [83919] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2221), 1, + ACTIONS(1742), 1, sym_identifier, - ACTIONS(2223), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(1750), 1, sym__integer_literal, - ACTIONS(2231), 1, + ACTIONS(1752), 1, anon_sym_LBRACK, - ACTIONS(2233), 1, + ACTIONS(1754), 1, anon_sym_LPAREN, - ACTIONS(2235), 1, + ACTIONS(1756), 1, aux_sym_unary_expression_token1, - ACTIONS(2237), 1, + ACTIONS(1758), 1, aux_sym_unary_expression_token2, - ACTIONS(2239), 1, + ACTIONS(1760), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2241), 1, + ACTIONS(1762), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2243), 1, + ACTIONS(1764), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2245), 1, + ACTIONS(1766), 1, aux_sym_locked_expression_token1, - ACTIONS(2247), 1, + ACTIONS(1768), 1, aux_sym_dataset_expression_token1, - ACTIONS(2249), 1, + ACTIONS(1770), 1, aux_sym_input_expression_token1, - ACTIONS(2251), 1, + ACTIONS(1772), 1, aux_sym_scope_tuning_token1, - ACTIONS(2253), 1, + ACTIONS(1774), 1, aux_sym_if_statement_token1, - ACTIONS(2255), 1, + ACTIONS(1776), 1, aux_sym_can_find_expression_token1, - ACTIONS(2257), 1, + ACTIONS(1778), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2261), 1, + ACTIONS(1782), 1, sym__escaped_string, - STATE(1910), 1, + STATE(1404), 1, sym__expression, - STATE(2155), 1, + STATE(2002), 1, sym_object_access, - STATE(2856), 1, + STATE(2748), 1, sym__decimal_literal, - ACTIONS(2225), 2, + ACTIONS(1746), 2, sym_null_expression, sym_date_literal, - ACTIONS(2259), 2, + ACTIONS(1780), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(936), 2, + STATE(952), 2, sym_comment, sym_include, - ACTIONS(2227), 4, + STATE(2498), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1748), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2789), 4, + STATE(2749), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2784), 23, + STATE(2700), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -123564,80 +125929,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [82422] = 29, + [84040] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2221), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(2223), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(2231), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(2233), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2235), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(2237), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1686), 1, aux_sym_unary_expression_token2, - ACTIONS(2239), 1, + ACTIONS(1688), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2241), 1, + ACTIONS(1690), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2243), 1, + ACTIONS(1692), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2245), 1, + ACTIONS(1694), 1, aux_sym_locked_expression_token1, - ACTIONS(2247), 1, + ACTIONS(1696), 1, aux_sym_dataset_expression_token1, - ACTIONS(2249), 1, + ACTIONS(1698), 1, aux_sym_input_expression_token1, - ACTIONS(2251), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2253), 1, + ACTIONS(1700), 1, aux_sym_if_statement_token1, - ACTIONS(2255), 1, - aux_sym_can_find_expression_token1, - ACTIONS(2257), 1, + ACTIONS(1702), 1, aux_sym_accumulate_expression_token1, - ACTIONS(2261), 1, - sym__escaped_string, - STATE(1901), 1, - sym__expression, - STATE(2155), 1, + STATE(15), 1, sym_object_access, - STATE(2856), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(2225), 2, + STATE(1506), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(2259), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(937), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(953), 2, sym_comment, sym_include, - ACTIONS(2227), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2789), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2784), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -123654,80 +126020,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [82541] = 29, + [84161] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2107), 1, + ACTIONS(1686), 1, aux_sym_unary_expression_token2, - ACTIONS(2109), 1, + ACTIONS(1688), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2111), 1, + ACTIONS(1690), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2113), 1, + ACTIONS(1692), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2115), 1, + ACTIONS(1694), 1, aux_sym_locked_expression_token1, - ACTIONS(2117), 1, + ACTIONS(1696), 1, aux_sym_dataset_expression_token1, - ACTIONS(2119), 1, + ACTIONS(1698), 1, aux_sym_input_expression_token1, - ACTIONS(2121), 1, + ACTIONS(1700), 1, aux_sym_if_statement_token1, - ACTIONS(2123), 1, + ACTIONS(1702), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2249), 1, + STATE(1501), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(938), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(954), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -123744,80 +126111,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [82660] = 29, + [84282] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1211), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1217), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1219), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1221), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1223), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1225), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1686), 1, aux_sym_unary_expression_token2, - ACTIONS(1227), 1, + ACTIONS(1688), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1229), 1, + ACTIONS(1690), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1231), 1, + ACTIONS(1692), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1233), 1, + ACTIONS(1694), 1, aux_sym_locked_expression_token1, - ACTIONS(1235), 1, + ACTIONS(1696), 1, aux_sym_dataset_expression_token1, - ACTIONS(1237), 1, + ACTIONS(1698), 1, aux_sym_input_expression_token1, - ACTIONS(1239), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1241), 1, + ACTIONS(1700), 1, aux_sym_if_statement_token1, - ACTIONS(1247), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1249), 1, + ACTIONS(1702), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1253), 1, - sym__escaped_string, - STATE(1023), 1, - sym__expression, - STATE(1086), 1, + STATE(15), 1, sym_object_access, - STATE(1116), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1213), 2, + STATE(1499), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1251), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(939), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(955), 2, sym_comment, sym_include, - ACTIONS(1215), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1133), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1124), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -123834,80 +126202,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [82779] = 29, + [84403] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2143), 1, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(2145), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2147), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2149), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2151), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(2153), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(2155), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(2157), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(2159), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1199), 1, + STATE(2884), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(940), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(956), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -123924,80 +126293,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [82898] = 29, + [84524] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1211), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1217), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1219), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1221), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1223), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1225), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(695), 1, aux_sym_unary_expression_token2, - ACTIONS(1227), 1, + ACTIONS(697), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1229), 1, + ACTIONS(699), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1231), 1, + ACTIONS(701), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1233), 1, + ACTIONS(703), 1, aux_sym_locked_expression_token1, - ACTIONS(1235), 1, + ACTIONS(705), 1, aux_sym_dataset_expression_token1, - ACTIONS(1237), 1, + ACTIONS(707), 1, aux_sym_input_expression_token1, - ACTIONS(1239), 1, + ACTIONS(709), 1, aux_sym_scope_tuning_token1, - ACTIONS(1241), 1, + ACTIONS(713), 1, aux_sym_if_statement_token1, - ACTIONS(1247), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1249), 1, + ACTIONS(723), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1253), 1, - sym__escaped_string, - STATE(1020), 1, - sym__expression, - STATE(1086), 1, + STATE(15), 1, sym_object_access, - STATE(1116), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1213), 2, + STATE(1378), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1251), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(941), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(957), 2, sym_comment, sym_include, - ACTIONS(1215), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1133), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1124), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -124014,80 +126384,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [83017] = 29, + [84645] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1211), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1217), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1219), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1221), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1223), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1225), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1686), 1, aux_sym_unary_expression_token2, - ACTIONS(1227), 1, + ACTIONS(1688), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1229), 1, + ACTIONS(1690), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1231), 1, + ACTIONS(1692), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1233), 1, + ACTIONS(1694), 1, aux_sym_locked_expression_token1, - ACTIONS(1235), 1, + ACTIONS(1696), 1, aux_sym_dataset_expression_token1, - ACTIONS(1237), 1, + ACTIONS(1698), 1, aux_sym_input_expression_token1, - ACTIONS(1239), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1241), 1, + ACTIONS(1700), 1, aux_sym_if_statement_token1, - ACTIONS(1247), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1249), 1, + ACTIONS(1702), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1253), 1, - sym__escaped_string, - STATE(1011), 1, - sym__expression, - STATE(1086), 1, + STATE(15), 1, sym_object_access, - STATE(1116), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1213), 2, + STATE(1504), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1251), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(942), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(958), 2, sym_comment, sym_include, - ACTIONS(1215), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1133), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1124), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -124104,80 +126475,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [83136] = 29, + [84766] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1211), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1217), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1219), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1221), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1223), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1225), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(1227), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1229), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1231), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1233), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(1235), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(1237), 1, - aux_sym_input_expression_token1, - ACTIONS(1239), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(1241), 1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(1247), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(1249), 1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1253), 1, + ACTIONS(691), 1, sym__escaped_string, - STATE(1012), 1, - sym__expression, - STATE(1086), 1, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(1116), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1213), 2, + STATE(2637), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1251), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(943), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(959), 2, sym_comment, sym_include, - ACTIONS(1215), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1133), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1124), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -124194,146 +126566,263 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [83255] = 5, + [84887] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(944), 2, - sym_comment, - sym_include, - ACTIONS(138), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(140), 53, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(645), 1, sym_identifier, - anon_sym_STAR, - sym__terminator, + ACTIONS(647), 1, + anon_sym_LBRACE, + ACTIONS(653), 1, + sym__integer_literal, + ACTIONS(655), 1, + anon_sym_LBRACK, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + aux_sym_unary_expression_token1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1784), 1, + aux_sym_unary_expression_token2, + ACTIONS(1786), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(1788), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(1790), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(1792), 1, + aux_sym_locked_expression_token1, + ACTIONS(1794), 1, + aux_sym_dataset_expression_token1, + ACTIONS(1796), 1, + aux_sym_input_expression_token1, + ACTIONS(1798), 1, + aux_sym_if_statement_token1, + ACTIONS(1800), 1, + aux_sym_accumulate_expression_token1, + STATE(15), 1, + sym_object_access, + STATE(43), 1, + sym__decimal_literal, + STATE(2752), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, + sym_date_literal, + ACTIONS(689), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(960), 2, + sym_comment, + sym_include, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, + STATE(29), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(30), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [85008] = 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(653), 1, sym__integer_literal, - sym_date_literal, + ACTIONS(655), 1, anon_sym_LBRACK, + ACTIONS(657), 1, anon_sym_LPAREN, + ACTIONS(661), 1, aux_sym_unary_expression_token1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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(1798), 1, aux_sym_if_statement_token1, - anon_sym_NO_DASHERROR, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - aux_sym_can_find_expression_token1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, + STATE(15), 1, + sym_object_access, + STATE(43), 1, + sym__decimal_literal, + STATE(2871), 1, + sym__expression, + ACTIONS(649), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [83326] = 29, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(961), 2, + sym_comment, + sym_include, + ACTIONS(651), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(29), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(30), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [85129] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(1719), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, - sym__escaped_string, - STATE(1370), 1, - sym__expression, - STATE(1896), 1, + STATE(15), 1, sym_object_access, - STATE(2582), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1693), 2, + STATE(2868), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(945), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(962), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -124350,80 +126839,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [83445] = 29, + [85250] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(1796), 1, + aux_sym_input_expression_token1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2612), 1, + STATE(2867), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(946), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(963), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -124440,80 +126930,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [83564] = 29, + [85371] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1869), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1877), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1901), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(1907), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2285), 1, + ACTIONS(1686), 1, aux_sym_unary_expression_token2, - ACTIONS(2287), 1, + ACTIONS(1688), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2289), 1, + ACTIONS(1690), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2291), 1, + ACTIONS(1692), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2293), 1, + ACTIONS(1694), 1, aux_sym_locked_expression_token1, - ACTIONS(2295), 1, + ACTIONS(1696), 1, aux_sym_dataset_expression_token1, - ACTIONS(2297), 1, + ACTIONS(1698), 1, aux_sym_input_expression_token1, - ACTIONS(2299), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2301), 1, + ACTIONS(1700), 1, aux_sym_if_statement_token1, - ACTIONS(2303), 1, + ACTIONS(1702), 1, aux_sym_accumulate_expression_token1, - STATE(185), 1, + STATE(15), 1, sym_object_access, - STATE(277), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1287), 1, + STATE(1531), 1, sym__expression, - ACTIONS(1871), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1905), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(947), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(964), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(251), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(254), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -124530,80 +127021,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [83683] = 29, + [85492] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1211), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1217), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1219), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1221), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1223), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1225), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(1227), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1229), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1231), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1233), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(1235), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(1237), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(1239), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1241), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(1247), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1249), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1253), 1, - sym__escaped_string, - STATE(1013), 1, - sym__expression, - STATE(1086), 1, + STATE(15), 1, sym_object_access, - STATE(1116), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1213), 2, + STATE(2640), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1251), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(948), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(965), 2, sym_comment, sym_include, - ACTIONS(1215), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1133), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1124), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -124620,80 +127112,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [83802] = 29, + [85613] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1211), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1217), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1219), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1221), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1223), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1225), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1665), 1, aux_sym_unary_expression_token2, - ACTIONS(1227), 1, + ACTIONS(1667), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1229), 1, + ACTIONS(1669), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1231), 1, + ACTIONS(1671), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1233), 1, + ACTIONS(1673), 1, aux_sym_locked_expression_token1, - ACTIONS(1235), 1, + ACTIONS(1675), 1, aux_sym_dataset_expression_token1, - ACTIONS(1237), 1, + ACTIONS(1677), 1, aux_sym_input_expression_token1, - ACTIONS(1239), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1241), 1, + ACTIONS(1679), 1, aux_sym_if_statement_token1, - ACTIONS(1247), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1249), 1, + ACTIONS(1681), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1253), 1, - sym__escaped_string, - STATE(1014), 1, - sym__expression, - STATE(1086), 1, + STATE(15), 1, sym_object_access, - STATE(1116), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1213), 2, + STATE(2645), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1251), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(949), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(966), 2, sym_comment, sym_include, - ACTIONS(1215), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1133), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1124), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -124710,80 +127203,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [83921] = 29, + [85734] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, - aux_sym_input_expression_token1, - ACTIONS(1719), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, + ACTIONS(691), 1, sym__escaped_string, - STATE(1507), 1, - sym__expression, - STATE(1896), 1, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(2582), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1693), 2, + STATE(2642), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(950), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(967), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -124800,80 +127294,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [84040] = 29, + [85855] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(914), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(918), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(924), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(926), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(928), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(930), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(932), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(934), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(936), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(938), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(940), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(942), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(944), 1, - aux_sym_input_expression_token1, - ACTIONS(946), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - ACTIONS(956), 1, + ACTIONS(691), 1, sym__escaped_string, - STATE(188), 1, - sym__expression, - STATE(263), 1, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(319), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(920), 2, + STATE(2643), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(954), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(951), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(968), 2, sym_comment, sym_include, - ACTIONS(922), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(354), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(357), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -124890,260 +127385,147 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [84159] = 29, + [85976] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, - sym_identifier, - ACTIONS(1869), 1, - anon_sym_LBRACE, - ACTIONS(1875), 1, - sym__integer_literal, - ACTIONS(1877), 1, - anon_sym_LBRACK, - ACTIONS(1879), 1, - anon_sym_LPAREN, - ACTIONS(1881), 1, - aux_sym_unary_expression_token1, - ACTIONS(1901), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1907), 1, - sym__escaped_string, - ACTIONS(2285), 1, - aux_sym_unary_expression_token2, - ACTIONS(2287), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(2289), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(2291), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(2293), 1, - aux_sym_locked_expression_token1, - ACTIONS(2295), 1, - aux_sym_dataset_expression_token1, - ACTIONS(2297), 1, - aux_sym_input_expression_token1, - ACTIONS(2299), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2301), 1, - aux_sym_if_statement_token1, - ACTIONS(2303), 1, - aux_sym_accumulate_expression_token1, - STATE(185), 1, - sym_object_access, - STATE(277), 1, - sym__decimal_literal, - STATE(1288), 1, - sym__expression, - ACTIONS(1871), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(1905), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(952), 2, + STATE(969), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + ACTIONS(108), 4, + sym__namedot, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(110), 52, + 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, - STATE(251), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(254), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [84278] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(914), 1, - sym_identifier, - ACTIONS(918), 1, - anon_sym_LBRACE, - ACTIONS(924), 1, sym__integer_literal, - ACTIONS(926), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(928), 1, anon_sym_LPAREN, - ACTIONS(930), 1, aux_sym_unary_expression_token1, - ACTIONS(932), 1, aux_sym_unary_expression_token2, - ACTIONS(934), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(936), 1, aux_sym_temp_table_expression_token1, - ACTIONS(938), 1, aux_sym_current_changed_expression_token1, - ACTIONS(940), 1, aux_sym_locked_expression_token1, - ACTIONS(942), 1, aux_sym_dataset_expression_token1, - ACTIONS(944), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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(948), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, aux_sym_accumulate_expression_token1, - ACTIONS(956), 1, - sym__escaped_string, - STATE(190), 1, - sym__expression, - STATE(263), 1, - sym_object_access, - STATE(319), 1, - sym__decimal_literal, - ACTIONS(920), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(954), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(953), 2, - sym_comment, - sym_include, - ACTIONS(922), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(354), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(357), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [84397] = 29, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [86047] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(914), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(918), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(924), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(926), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(928), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(930), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(932), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1784), 1, aux_sym_unary_expression_token2, - ACTIONS(934), 1, + ACTIONS(1786), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(936), 1, + ACTIONS(1788), 1, aux_sym_temp_table_expression_token1, - ACTIONS(938), 1, + ACTIONS(1790), 1, aux_sym_current_changed_expression_token1, - ACTIONS(940), 1, + ACTIONS(1792), 1, aux_sym_locked_expression_token1, - ACTIONS(942), 1, + ACTIONS(1794), 1, aux_sym_dataset_expression_token1, - ACTIONS(944), 1, + ACTIONS(1796), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, - aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(1798), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, - aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(1800), 1, aux_sym_accumulate_expression_token1, - ACTIONS(956), 1, - sym__escaped_string, - STATE(195), 1, - sym__expression, - STATE(263), 1, + STATE(15), 1, sym_object_access, - STATE(319), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(920), 2, + STATE(2862), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(954), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(954), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(970), 2, sym_comment, sym_include, - ACTIONS(922), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(354), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(357), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -125160,80 +127542,172 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [86168] = 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(653), 1, + sym__integer_literal, + ACTIONS(655), 1, + anon_sym_LBRACK, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + aux_sym_unary_expression_token1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1784), 1, + aux_sym_unary_expression_token2, + ACTIONS(1786), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(1788), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(1790), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(1792), 1, + aux_sym_locked_expression_token1, + ACTIONS(1794), 1, + aux_sym_dataset_expression_token1, + ACTIONS(1796), 1, + aux_sym_input_expression_token1, + ACTIONS(1798), 1, + aux_sym_if_statement_token1, + ACTIONS(1800), 1, + aux_sym_accumulate_expression_token1, + STATE(15), 1, + sym_object_access, + STATE(43), 1, + sym__decimal_literal, + STATE(2653), 1, + sym__expression, + ACTIONS(649), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(689), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(13), 2, + sym_function_call, sym_new_expression, + STATE(971), 2, + sym_comment, + sym_include, + ACTIONS(651), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(29), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(30), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [84516] = 29, + [86289] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(914), 1, + ACTIONS(1840), 1, sym_identifier, - ACTIONS(918), 1, + ACTIONS(1842), 1, anon_sym_LBRACE, - ACTIONS(924), 1, + ACTIONS(1848), 1, sym__integer_literal, - ACTIONS(926), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(928), 1, + ACTIONS(1852), 1, anon_sym_LPAREN, - ACTIONS(930), 1, + ACTIONS(1854), 1, aux_sym_unary_expression_token1, - ACTIONS(932), 1, + ACTIONS(1856), 1, aux_sym_unary_expression_token2, - ACTIONS(934), 1, + ACTIONS(1858), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(936), 1, + ACTIONS(1860), 1, aux_sym_temp_table_expression_token1, - ACTIONS(938), 1, + ACTIONS(1862), 1, aux_sym_current_changed_expression_token1, - ACTIONS(940), 1, + ACTIONS(1864), 1, aux_sym_locked_expression_token1, - ACTIONS(942), 1, + ACTIONS(1866), 1, aux_sym_dataset_expression_token1, - ACTIONS(944), 1, + ACTIONS(1868), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, + ACTIONS(1870), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(1872), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, + ACTIONS(1874), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(1876), 1, aux_sym_accumulate_expression_token1, - ACTIONS(956), 1, + ACTIONS(1880), 1, sym__escaped_string, - STATE(198), 1, + STATE(1537), 1, sym__expression, - STATE(263), 1, + STATE(2197), 1, sym_object_access, - STATE(319), 1, + STATE(2691), 1, sym__decimal_literal, - ACTIONS(920), 2, + ACTIONS(1844), 2, sym_null_expression, sym_date_literal, - ACTIONS(954), 2, + ACTIONS(1878), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(955), 2, + STATE(972), 2, sym_comment, sym_include, - ACTIONS(922), 4, + STATE(2459), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1846), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(354), 4, + STATE(2692), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(357), 23, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -125250,80 +127724,172 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [86410] = 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(653), 1, + sym__integer_literal, + ACTIONS(655), 1, + anon_sym_LBRACK, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + aux_sym_unary_expression_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(709), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1722), 1, + aux_sym_unary_expression_token2, + ACTIONS(1724), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(1726), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(1728), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(1730), 1, + aux_sym_locked_expression_token1, + ACTIONS(1732), 1, + aux_sym_dataset_expression_token1, + ACTIONS(1734), 1, + aux_sym_input_expression_token1, + ACTIONS(1736), 1, + aux_sym_if_statement_token1, + ACTIONS(1738), 1, + aux_sym_accumulate_expression_token1, + STATE(15), 1, + sym_object_access, + STATE(43), 1, + sym__decimal_literal, + STATE(1466), 1, + sym__expression, + ACTIONS(649), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(689), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(13), 2, + sym_function_call, sym_new_expression, + STATE(973), 2, + sym_comment, + sym_include, + ACTIONS(651), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(29), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(30), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [84635] = 29, + [86531] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(914), 1, + ACTIONS(1840), 1, sym_identifier, - ACTIONS(918), 1, + ACTIONS(1842), 1, anon_sym_LBRACE, - ACTIONS(924), 1, + ACTIONS(1848), 1, sym__integer_literal, - ACTIONS(926), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(928), 1, + ACTIONS(1852), 1, anon_sym_LPAREN, - ACTIONS(930), 1, + ACTIONS(1854), 1, aux_sym_unary_expression_token1, - ACTIONS(932), 1, + ACTIONS(1856), 1, aux_sym_unary_expression_token2, - ACTIONS(934), 1, + ACTIONS(1858), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(936), 1, + ACTIONS(1860), 1, aux_sym_temp_table_expression_token1, - ACTIONS(938), 1, + ACTIONS(1862), 1, aux_sym_current_changed_expression_token1, - ACTIONS(940), 1, + ACTIONS(1864), 1, aux_sym_locked_expression_token1, - ACTIONS(942), 1, + ACTIONS(1866), 1, aux_sym_dataset_expression_token1, - ACTIONS(944), 1, + ACTIONS(1868), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, + ACTIONS(1870), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(1872), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, + ACTIONS(1874), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(1876), 1, aux_sym_accumulate_expression_token1, - ACTIONS(956), 1, + ACTIONS(1880), 1, sym__escaped_string, - STATE(197), 1, + STATE(1692), 1, sym__expression, - STATE(263), 1, + STATE(2197), 1, sym_object_access, - STATE(319), 1, + STATE(2691), 1, sym__decimal_literal, - ACTIONS(920), 2, + ACTIONS(1844), 2, sym_null_expression, sym_date_literal, - ACTIONS(954), 2, + ACTIONS(1878), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(956), 2, + STATE(974), 2, sym_comment, sym_include, - ACTIONS(922), 4, + STATE(2459), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1846), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(354), 4, + STATE(2692), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(357), 23, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -125340,80 +127906,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [84754] = 29, + [86652] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(914), 1, + ACTIONS(1840), 1, sym_identifier, - ACTIONS(918), 1, + ACTIONS(1842), 1, anon_sym_LBRACE, - ACTIONS(924), 1, + ACTIONS(1848), 1, sym__integer_literal, - ACTIONS(926), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(928), 1, + ACTIONS(1852), 1, anon_sym_LPAREN, - ACTIONS(930), 1, + ACTIONS(1854), 1, aux_sym_unary_expression_token1, - ACTIONS(932), 1, + ACTIONS(1856), 1, aux_sym_unary_expression_token2, - ACTIONS(934), 1, + ACTIONS(1858), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(936), 1, + ACTIONS(1860), 1, aux_sym_temp_table_expression_token1, - ACTIONS(938), 1, + ACTIONS(1862), 1, aux_sym_current_changed_expression_token1, - ACTIONS(940), 1, + ACTIONS(1864), 1, aux_sym_locked_expression_token1, - ACTIONS(942), 1, + ACTIONS(1866), 1, aux_sym_dataset_expression_token1, - ACTIONS(944), 1, + ACTIONS(1868), 1, aux_sym_input_expression_token1, - ACTIONS(946), 1, + ACTIONS(1870), 1, aux_sym_scope_tuning_token1, - ACTIONS(948), 1, + ACTIONS(1872), 1, aux_sym_if_statement_token1, - ACTIONS(950), 1, + ACTIONS(1874), 1, aux_sym_can_find_expression_token1, - ACTIONS(952), 1, + ACTIONS(1876), 1, aux_sym_accumulate_expression_token1, - ACTIONS(956), 1, + ACTIONS(1880), 1, sym__escaped_string, - STATE(182), 1, + STATE(1693), 1, sym__expression, - STATE(263), 1, + STATE(2197), 1, sym_object_access, - STATE(319), 1, + STATE(2691), 1, sym__decimal_literal, - ACTIONS(920), 2, + ACTIONS(1844), 2, sym_null_expression, sym_date_literal, - ACTIONS(954), 2, + ACTIONS(1878), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(957), 2, + STATE(975), 2, sym_comment, sym_include, - ACTIONS(922), 4, + STATE(2459), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1846), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(354), 4, + STATE(2692), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(357), 23, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -125430,80 +127997,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [84873] = 29, + [86773] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, + ACTIONS(1840), 1, sym_identifier, - ACTIONS(1869), 1, + ACTIONS(1842), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(1848), 1, sym__integer_literal, - ACTIONS(1877), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(1852), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, + ACTIONS(1854), 1, aux_sym_unary_expression_token1, - ACTIONS(1901), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1907), 1, - sym__escaped_string, - ACTIONS(2285), 1, + ACTIONS(1856), 1, aux_sym_unary_expression_token2, - ACTIONS(2287), 1, + ACTIONS(1858), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2289), 1, + ACTIONS(1860), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2291), 1, + ACTIONS(1862), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2293), 1, + ACTIONS(1864), 1, aux_sym_locked_expression_token1, - ACTIONS(2295), 1, + ACTIONS(1866), 1, aux_sym_dataset_expression_token1, - ACTIONS(2297), 1, + ACTIONS(1868), 1, aux_sym_input_expression_token1, - ACTIONS(2299), 1, + ACTIONS(1870), 1, aux_sym_scope_tuning_token1, - ACTIONS(2301), 1, + ACTIONS(1872), 1, aux_sym_if_statement_token1, - ACTIONS(2303), 1, + ACTIONS(1874), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1876), 1, aux_sym_accumulate_expression_token1, - STATE(185), 1, + ACTIONS(1880), 1, + sym__escaped_string, + STATE(1695), 1, + sym__expression, + STATE(2197), 1, sym_object_access, - STATE(277), 1, + STATE(2691), 1, sym__decimal_literal, - STATE(1270), 1, - sym__expression, - ACTIONS(1871), 2, + ACTIONS(1844), 2, sym_null_expression, sym_date_literal, - ACTIONS(1905), 2, + ACTIONS(1878), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(958), 2, + STATE(976), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + STATE(2459), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1846), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(251), 4, + STATE(2692), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(254), 23, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -125520,80 +128088,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [84992] = 29, + [86894] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1840), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1842), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1848), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1852), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1854), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(1856), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(1858), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(1860), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(1862), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(1864), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(1866), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, + ACTIONS(1868), 1, aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(1870), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1872), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(1874), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1876), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(1880), 1, + sym__escaped_string, + STATE(1696), 1, + sym__expression, + STATE(2197), 1, sym_object_access, - STATE(21), 1, + STATE(2691), 1, sym__decimal_literal, - STATE(1148), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1844), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1878), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(959), 2, + STATE(977), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2459), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1846), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2692), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -125610,80 +128179,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [85111] = 29, + [87015] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(1840), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(1842), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(1848), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(1852), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(1854), 1, aux_sym_unary_expression_token1, - ACTIONS(658), 1, + ACTIONS(1856), 1, aux_sym_unary_expression_token2, - ACTIONS(660), 1, + ACTIONS(1858), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(662), 1, + ACTIONS(1860), 1, aux_sym_temp_table_expression_token1, - ACTIONS(664), 1, + ACTIONS(1862), 1, aux_sym_current_changed_expression_token1, - ACTIONS(666), 1, + ACTIONS(1864), 1, aux_sym_locked_expression_token1, - ACTIONS(668), 1, + ACTIONS(1866), 1, aux_sym_dataset_expression_token1, - ACTIONS(672), 1, + ACTIONS(1868), 1, + aux_sym_input_expression_token1, + ACTIONS(1870), 1, aux_sym_scope_tuning_token1, - ACTIONS(676), 1, + ACTIONS(1872), 1, aux_sym_if_statement_token1, - ACTIONS(678), 1, + ACTIONS(1874), 1, aux_sym_can_find_expression_token1, - ACTIONS(682), 1, + ACTIONS(1876), 1, aux_sym_accumulate_expression_token1, - ACTIONS(686), 1, + ACTIONS(1880), 1, sym__escaped_string, - ACTIONS(1589), 1, - aux_sym_input_expression_token1, - STATE(9), 1, + STATE(1697), 1, + sym__expression, + STATE(2197), 1, sym_object_access, - STATE(21), 1, + STATE(2691), 1, sym__decimal_literal, - STATE(2607), 1, - sym__expression, - ACTIONS(644), 2, + ACTIONS(1844), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(1878), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(960), 2, + STATE(978), 2, sym_comment, sym_include, - ACTIONS(646), 4, + STATE(2459), 2, + sym_function_call, + sym_new_expression, + ACTIONS(1846), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(2692), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(2850), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -125700,80 +128270,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [85230] = 29, + [87136] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1635), 1, + ACTIONS(709), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1722), 1, aux_sym_unary_expression_token2, - ACTIONS(1637), 1, + ACTIONS(1724), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1639), 1, + ACTIONS(1726), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1641), 1, + ACTIONS(1728), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1643), 1, + ACTIONS(1730), 1, aux_sym_locked_expression_token1, - ACTIONS(1645), 1, + ACTIONS(1732), 1, aux_sym_dataset_expression_token1, - ACTIONS(1647), 1, + ACTIONS(1734), 1, aux_sym_input_expression_token1, - ACTIONS(1649), 1, + ACTIONS(1736), 1, aux_sym_if_statement_token1, - ACTIONS(1651), 1, + ACTIONS(1738), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(2693), 1, + STATE(1464), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(961), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(979), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -125790,80 +128361,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [85349] = 29, + [87257] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(686), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(1793), 1, + ACTIONS(709), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1722), 1, aux_sym_unary_expression_token2, - ACTIONS(1795), 1, + ACTIONS(1724), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1797), 1, + ACTIONS(1726), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1799), 1, + ACTIONS(1728), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1801), 1, + ACTIONS(1730), 1, aux_sym_locked_expression_token1, - ACTIONS(1803), 1, + ACTIONS(1732), 1, aux_sym_dataset_expression_token1, - ACTIONS(1805), 1, + ACTIONS(1734), 1, aux_sym_input_expression_token1, - ACTIONS(1807), 1, + ACTIONS(1736), 1, aux_sym_if_statement_token1, - ACTIONS(1809), 1, + ACTIONS(1738), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1291), 1, + STATE(1462), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(962), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(980), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -125880,80 +128452,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [85468] = 29, + [87378] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(709), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1722), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(1724), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(1726), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(1728), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(1730), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(1732), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, + ACTIONS(1734), 1, aux_sym_input_expression_token1, - ACTIONS(1719), 1, - aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(1736), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(1738), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, - sym__escaped_string, - STATE(1376), 1, - sym__expression, - STATE(1896), 1, + STATE(15), 1, sym_object_access, - STATE(2582), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1693), 2, + STATE(1474), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(963), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(981), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -125970,80 +128543,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [85587] = 29, + [87499] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1689), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1691), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1699), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1701), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1703), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1705), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(1707), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1709), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1711), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1713), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(1715), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(1717), 1, - aux_sym_input_expression_token1, - ACTIONS(1719), 1, + ACTIONS(677), 1, aux_sym_scope_tuning_token1, - ACTIONS(1721), 1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(1723), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(1725), 1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - ACTIONS(1729), 1, + ACTIONS(691), 1, sym__escaped_string, - STATE(1377), 1, - sym__expression, - STATE(1896), 1, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(2582), 1, + STATE(43), 1, sym__decimal_literal, - ACTIONS(1693), 2, + STATE(2657), 1, + sym__expression, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1727), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(964), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(982), 2, sym_comment, sym_include, - ACTIONS(1695), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(2573), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(2609), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -126060,80 +128634,81 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [85706] = 29, + [87620] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(1869), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(1877), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(1901), 1, + ACTIONS(683), 1, aux_sym_can_find_expression_token1, - ACTIONS(1907), 1, + ACTIONS(691), 1, sym__escaped_string, - ACTIONS(2285), 1, + ACTIONS(709), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1722), 1, aux_sym_unary_expression_token2, - ACTIONS(2287), 1, + ACTIONS(1724), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2289), 1, + ACTIONS(1726), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2291), 1, + ACTIONS(1728), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2293), 1, + ACTIONS(1730), 1, aux_sym_locked_expression_token1, - ACTIONS(2295), 1, + ACTIONS(1732), 1, aux_sym_dataset_expression_token1, - ACTIONS(2297), 1, + ACTIONS(1734), 1, aux_sym_input_expression_token1, - ACTIONS(2299), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2301), 1, + ACTIONS(1736), 1, aux_sym_if_statement_token1, - ACTIONS(2303), 1, + ACTIONS(1738), 1, aux_sym_accumulate_expression_token1, - STATE(185), 1, + STATE(15), 1, sym_object_access, - STATE(277), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1293), 1, + STATE(1473), 1, sym__expression, - ACTIONS(1871), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(1905), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(965), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(983), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(251), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(254), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -126150,146 +128725,172 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [85825] = 5, + [87741] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(966), 2, - sym_comment, - sym_include, - ACTIONS(146), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(148), 53, - anon_sym_SLASH, - anon_sym_LBRACE, + ACTIONS(645), 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, + ACTIONS(647), 1, + anon_sym_LBRACE, + ACTIONS(653), 1, sym__integer_literal, - sym_date_literal, + ACTIONS(655), 1, anon_sym_LBRACK, + ACTIONS(657), 1, anon_sym_LPAREN, + ACTIONS(661), 1, aux_sym_unary_expression_token1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(709), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1722), 1, aux_sym_unary_expression_token2, + ACTIONS(1724), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(1726), 1, aux_sym_temp_table_expression_token1, + ACTIONS(1728), 1, aux_sym_current_changed_expression_token1, + ACTIONS(1730), 1, aux_sym_locked_expression_token1, + ACTIONS(1732), 1, aux_sym_dataset_expression_token1, + ACTIONS(1734), 1, aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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(1736), 1, aux_sym_if_statement_token1, - anon_sym_NO_DASHERROR, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - aux_sym_can_find_expression_token1, + ACTIONS(1738), 1, aux_sym_accumulate_expression_token1, + STATE(15), 1, + sym_object_access, + STATE(43), 1, + sym__decimal_literal, + STATE(1475), 1, + sym__expression, + ACTIONS(649), 2, + sym_null_expression, + sym_date_literal, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [85896] = 29, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(984), 2, + sym_comment, + sym_include, + ACTIONS(651), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(29), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(30), 21, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym_string_literal, + sym_array_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_temp_table_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_dataset_expression, + sym_input_expression, + sym__binary_expression, + sym_array_access, + sym_ternary_expression, + sym_member_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [87862] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(640), 1, + ACTIONS(645), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(647), 1, anon_sym_LBRACE, - ACTIONS(648), 1, + ACTIONS(653), 1, sym__integer_literal, - ACTIONS(650), 1, + ACTIONS(655), 1, anon_sym_LBRACK, - ACTIONS(652), 1, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(661), 1, aux_sym_unary_expression_token1, - ACTIONS(672), 1, - aux_sym_scope_tuning_token1, - ACTIONS(678), 1, - aux_sym_can_find_expression_token1, - ACTIONS(686), 1, - sym__escaped_string, - ACTIONS(1969), 1, + ACTIONS(663), 1, aux_sym_unary_expression_token2, - ACTIONS(1971), 1, + ACTIONS(665), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1973), 1, + ACTIONS(667), 1, aux_sym_temp_table_expression_token1, - ACTIONS(1975), 1, + ACTIONS(669), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1977), 1, + ACTIONS(671), 1, aux_sym_locked_expression_token1, - ACTIONS(1979), 1, + ACTIONS(673), 1, aux_sym_dataset_expression_token1, - ACTIONS(1981), 1, - aux_sym_input_expression_token1, - ACTIONS(1983), 1, + ACTIONS(677), 1, + aux_sym_scope_tuning_token1, + ACTIONS(681), 1, aux_sym_if_statement_token1, - ACTIONS(1985), 1, + ACTIONS(683), 1, + aux_sym_can_find_expression_token1, + ACTIONS(687), 1, aux_sym_accumulate_expression_token1, - STATE(9), 1, + ACTIONS(691), 1, + sym__escaped_string, + ACTIONS(1601), 1, + aux_sym_input_expression_token1, + STATE(15), 1, sym_object_access, - STATE(21), 1, + STATE(43), 1, sym__decimal_literal, - STATE(1149), 1, + STATE(2655), 1, sym__expression, - ACTIONS(644), 2, + ACTIONS(649), 2, sym_null_expression, sym_date_literal, - ACTIONS(684), 2, + ACTIONS(689), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(967), 2, + STATE(13), 2, + sym_function_call, + sym_new_expression, + STATE(985), 2, sym_comment, sym_include, - ACTIONS(646), 4, + ACTIONS(651), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(40), 4, + STATE(29), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(25), 23, + STATE(30), 21, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -126306,26 +128907,24 @@ static const uint16_t ts_small_parse_table[] = { sym_input_expression, sym__binary_expression, sym_array_access, - sym_function_call, sym_ternary_expression, - sym_new_expression, sym_member_access, sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [86015] = 5, + [87983] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(968), 2, + STATE(986), 2, sym_comment, sym_include, - ACTIONS(150), 3, + ACTIONS(206), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(152), 53, + ACTIONS(208), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -126368,7 +128967,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - anon_sym_NO_DASHERROR, aux_sym_sort_order_token1, aux_sym_sort_order_token2, aux_sym_sort_order_token3, @@ -126379,199 +128977,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [86086] = 29, + [88053] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1867), 1, - sym_identifier, - ACTIONS(1869), 1, - anon_sym_LBRACE, - ACTIONS(1875), 1, - sym__integer_literal, - ACTIONS(1877), 1, - anon_sym_LBRACK, - ACTIONS(1879), 1, - anon_sym_LPAREN, - ACTIONS(1881), 1, - aux_sym_unary_expression_token1, - ACTIONS(1901), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1907), 1, - sym__escaped_string, - ACTIONS(2285), 1, - aux_sym_unary_expression_token2, - ACTIONS(2287), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(2289), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(2291), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(2293), 1, - aux_sym_locked_expression_token1, - ACTIONS(2295), 1, - aux_sym_dataset_expression_token1, - ACTIONS(2297), 1, - aux_sym_input_expression_token1, - ACTIONS(2299), 1, - aux_sym_scope_tuning_token1, - ACTIONS(2301), 1, - aux_sym_if_statement_token1, - ACTIONS(2303), 1, - aux_sym_accumulate_expression_token1, - STATE(185), 1, - sym_object_access, - STATE(277), 1, - sym__decimal_literal, - STATE(1294), 1, - sym__expression, - ACTIONS(1871), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(1905), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(969), 2, + STATE(987), 2, sym_comment, sym_include, - ACTIONS(1873), 4, + ACTIONS(210), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(212), 52, + 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, - STATE(251), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(254), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [86205] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1867), 1, - sym_identifier, - ACTIONS(1869), 1, - anon_sym_LBRACE, - ACTIONS(1875), 1, sym__integer_literal, - ACTIONS(1877), 1, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(1879), 1, anon_sym_LPAREN, - ACTIONS(1881), 1, aux_sym_unary_expression_token1, - ACTIONS(1901), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1907), 1, - sym__escaped_string, - ACTIONS(2285), 1, aux_sym_unary_expression_token2, - ACTIONS(2287), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(2289), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2291), 1, aux_sym_current_changed_expression_token1, - ACTIONS(2293), 1, aux_sym_locked_expression_token1, - ACTIONS(2295), 1, aux_sym_dataset_expression_token1, - ACTIONS(2297), 1, aux_sym_input_expression_token1, - ACTIONS(2299), 1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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(2301), 1, aux_sym_if_statement_token1, - ACTIONS(2303), 1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, - STATE(185), 1, - sym_object_access, - STATE(277), 1, - sym__decimal_literal, - STATE(1290), 1, - sym__expression, - ACTIONS(1871), 2, - sym_null_expression, - sym_date_literal, - ACTIONS(1905), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(970), 2, - sym_comment, - sym_include, - ACTIONS(1873), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(251), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(254), 23, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym_string_literal, - sym_array_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_temp_table_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_dataset_expression, - sym_input_expression, - sym__binary_expression, - sym_array_access, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_member_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [86324] = 5, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [88123] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(971), 2, + STATE(988), 2, sym_comment, sym_include, - ACTIONS(218), 3, + ACTIONS(174), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(220), 52, + ACTIONS(176), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -126624,52 +129107,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [86394] = 12, + [88193] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(110), 1, + aux_sym_variable_tuning_token2, + STATE(989), 2, + sym_comment, + sym_include, + ACTIONS(108), 53, + sym__namedot, + anon_sym_COLON, + sym__terminator, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_unary_expression_token2, + aux_sym_input_expression_token2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_serialization_tuning_token1, + aux_sym_function_call_token1, + aux_sym_property_type_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_tuning_token1, + aux_sym_data_relation_token1, + aux_sym_data_relation_token2, + aux_sym_using_statement_token1, + aux_sym_using_statement_token2, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_on_error_phrase_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + aux_sym_using_token1, + aux_sym_field_option_token1, + aux_sym_field_option_token2, + aux_sym_field_option_token3, + aux_sym_field_option_token4, + aux_sym_field_option_token5, + aux_sym_field_option_token6, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + aux_sym_prompt_for_statement_token2, + [88265] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(799), 1, - sym__comparison_operator, - STATE(800), 1, - sym__multiplicative_operator, - STATE(801), 1, - sym__additive_operator, - STATE(804), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(972), 2, + STATE(990), 2, sym_comment, sym_include, - ACTIONS(236), 3, + ACTIONS(123), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(1075), 3, + ACTIONS(125), 52, anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 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(238), 28, anon_sym_LBRACE, sym_identifier, + anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -126679,8 +129199,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -126690,41 +129208,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_locked_expression_token1, aux_sym_dataset_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, - [86478] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1106), 1, - sym__escaped_string, - STATE(799), 1, - sym__comparison_operator, - STATE(800), 1, - sym__multiplicative_operator, - STATE(801), 1, - sym__additive_operator, - STATE(804), 1, - sym__logical_operator, - ACTIONS(1077), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(973), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -126740,64 +129226,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(1104), 28, - 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [86564] = 13, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [88335] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1199), 1, - sym__escaped_string, - STATE(799), 1, + STATE(407), 1, sym__comparison_operator, - STATE(800), 1, + STATE(408), 1, sym__multiplicative_operator, - STATE(801), 1, + STATE(413), 1, sym__additive_operator, - STATE(804), 1, + STATE(414), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(974), 2, + STATE(991), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(230), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -126813,7 +129281,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(1197), 28, + ACTIONS(232), 28, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -126842,35 +129310,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [86650] = 13, + [88419] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1183), 1, + ACTIONS(1113), 1, sym__escaped_string, - STATE(799), 1, + STATE(407), 1, sym__comparison_operator, - STATE(800), 1, + STATE(408), 1, sym__multiplicative_operator, - STATE(801), 1, + STATE(413), 1, sym__additive_operator, - STATE(804), 1, + STATE(414), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(975), 2, + STATE(992), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -126886,7 +129354,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(1181), 28, + ACTIONS(1111), 28, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -126915,19 +129383,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [86736] = 5, + [88505] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(976), 2, + STATE(993), 2, sym_comment, sym_include, - ACTIONS(226), 3, + ACTIONS(246), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(228), 52, + ACTIONS(248), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -126980,19 +129448,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [86806] = 5, + [88575] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(977), 2, + STATE(994), 2, sym_comment, sym_include, - ACTIONS(186), 3, + ACTIONS(242), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(188), 52, + ACTIONS(244), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -127045,19 +129513,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [86876] = 5, + [88645] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(978), 2, + STATE(995), 2, sym_comment, sym_include, - ACTIONS(198), 3, + ACTIONS(178), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(200), 52, + ACTIONS(180), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -127110,12 +129578,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [86946] = 5, + [88715] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(979), 2, + STATE(996), 2, sym_comment, sym_include, ACTIONS(182), 3, @@ -127175,19 +129643,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [87016] = 5, + [88785] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(980), 2, + STATE(997), 2, sym_comment, sym_include, - ACTIONS(210), 3, + ACTIONS(65), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(212), 52, + ACTIONS(71), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -127240,19 +129708,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [87086] = 5, + [88855] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(981), 2, + STATE(998), 2, sym_comment, sym_include, - ACTIONS(240), 3, + ACTIONS(194), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(242), 52, + ACTIONS(196), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -127305,19 +129773,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [87156] = 5, + [88925] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(982), 2, + STATE(999), 2, sym_comment, sym_include, - ACTIONS(132), 3, + ACTIONS(202), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(134), 52, + ACTIONS(204), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -127370,19 +129838,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [87226] = 5, + [88995] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(983), 2, + STATE(1000), 2, sym_comment, sym_include, - ACTIONS(194), 3, + ACTIONS(150), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(196), 52, + ACTIONS(152), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -127435,19 +129903,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [87296] = 5, + [89065] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(984), 2, + STATE(1001), 2, sym_comment, sym_include, - ACTIONS(222), 3, + ACTIONS(234), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(224), 52, + ACTIONS(236), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -127500,44 +129968,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [87366] = 5, + [89135] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(985), 2, - sym_comment, - sym_include, - ACTIONS(154), 3, + ACTIONS(1204), 1, + sym__escaped_string, + STATE(407), 1, + sym__comparison_operator, + STATE(408), 1, + sym__multiplicative_operator, + STATE(413), 1, + sym__additive_operator, + STATE(414), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(156), 52, + STATE(1002), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -127553,35 +130012,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [87436] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(986), 2, - sym_comment, - sym_include, - ACTIONS(158), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(160), 52, - anon_sym_SLASH, + ACTIONS(1202), 28, anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -127591,6 +130024,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -127600,74 +130035,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_locked_expression_token1, aux_sym_dataset_expression_token1, aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [87506] = 5, + [89221] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(987), 2, - sym_comment, - sym_include, - ACTIONS(162), 3, + ACTIONS(1117), 1, + sym__escaped_string, + STATE(407), 1, + sym__comparison_operator, + STATE(408), 1, + sym__multiplicative_operator, + STATE(413), 1, + sym__additive_operator, + STATE(414), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(164), 52, + STATE(1003), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -127683,35 +130085,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [87576] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(988), 2, - sym_comment, - sym_include, - ACTIONS(166), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(168), 52, - anon_sym_SLASH, + ACTIONS(1115), 28, anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -127721,6 +130097,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -127730,9 +130108,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_locked_expression_token1, aux_sym_dataset_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, + [89307] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1196), 1, + sym__escaped_string, + STATE(407), 1, + sym__comparison_operator, + STATE(408), 1, + sym__multiplicative_operator, + STATE(413), 1, + sym__additive_operator, + STATE(414), 1, + sym__logical_operator, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(1004), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, aux_sym__multiplicative_operator_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -127748,35 +130158,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [87646] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(989), 2, - sym_comment, - sym_include, - ACTIONS(170), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(172), 52, - anon_sym_SLASH, + ACTIONS(1194), 28, anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -127786,6 +130170,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -127795,49 +130181,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_locked_expression_token1, aux_sym_dataset_expression_token1, aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [87716] = 5, + [89393] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(990), 2, + STATE(1005), 2, sym_comment, sym_include, - ACTIONS(102), 3, + ACTIONS(186), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(104), 52, + ACTIONS(188), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -127890,19 +130252,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [87786] = 5, + [89463] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(991), 2, + STATE(1006), 2, sym_comment, sym_include, - ACTIONS(178), 3, + ACTIONS(198), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(180), 52, + ACTIONS(200), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -127955,96 +130317,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [87856] = 13, + [89533] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1112), 1, - sym__escaped_string, - STATE(799), 1, + STATE(407), 1, sym__comparison_operator, - STATE(800), 1, + STATE(408), 1, sym__multiplicative_operator, - STATE(801), 1, + STATE(413), 1, sym__additive_operator, - STATE(804), 1, + STATE(414), 1, sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(992), 2, + STATE(1007), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 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(1110), 28, - 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_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, - [87942] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(993), 2, - sym_comment, - sym_include, - ACTIONS(106), 3, + ACTIONS(1121), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(108), 52, - anon_sym_SLASH, + ACTIONS(1119), 45, anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -128054,6 +130353,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -128065,7 +130366,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -128083,29 +130383,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [88012] = 5, + [89613] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(994), 2, + STATE(407), 1, + sym__comparison_operator, + STATE(408), 1, + sym__multiplicative_operator, + STATE(413), 1, + sym__additive_operator, + STATE(414), 1, + sym__logical_operator, + STATE(1008), 2, sym_comment, sym_include, - ACTIONS(190), 3, + ACTIONS(1216), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(192), 52, + ACTIONS(1214), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -128119,6 +130421,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -128148,33 +130452,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [88082] = 5, + [89691] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(995), 2, + STATE(407), 1, + sym__comparison_operator, + STATE(408), 1, + sym__multiplicative_operator, + STATE(413), 1, + sym__additive_operator, + STATE(414), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1009), 2, sym_comment, sym_include, - ACTIONS(202), 3, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1212), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(204), 52, - anon_sym_SLASH, + ACTIONS(1090), 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(1210), 28, anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -128184,6 +130511,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -128193,9 +130522,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_locked_expression_token1, aux_sym_dataset_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, + [89775] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1125), 1, + sym__escaped_string, + STATE(407), 1, + sym__comparison_operator, + STATE(408), 1, + sym__multiplicative_operator, + STATE(413), 1, + sym__additive_operator, + STATE(414), 1, + sym__logical_operator, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(1010), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, aux_sym__multiplicative_operator_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -128211,35 +130572,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [88152] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(996), 2, - sym_comment, - sym_include, - ACTIONS(206), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(208), 52, - anon_sym_SLASH, + ACTIONS(1123), 28, anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -128249,6 +130584,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -128258,49 +130595,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_locked_expression_token1, aux_sym_dataset_expression_token1, aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [88222] = 5, + [89861] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(997), 2, + STATE(1011), 2, sym_comment, sym_include, - ACTIONS(236), 3, + ACTIONS(190), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(238), 52, + ACTIONS(192), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -128353,35 +130666,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [88292] = 13, + [89931] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(1200), 1, sym__escaped_string, - STATE(799), 1, + STATE(407), 1, sym__comparison_operator, - STATE(800), 1, + STATE(408), 1, sym__multiplicative_operator, - STATE(801), 1, + STATE(413), 1, sym__additive_operator, - STATE(804), 1, + STATE(414), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(998), 2, + STATE(1012), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -128397,7 +130710,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(1189), 28, + ACTIONS(1198), 28, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -128426,35 +130739,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [88378] = 13, + [90017] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1102), 1, + ACTIONS(1208), 1, sym__escaped_string, - STATE(799), 1, + STATE(407), 1, sym__comparison_operator, - STATE(800), 1, + STATE(408), 1, sym__multiplicative_operator, - STATE(801), 1, + STATE(413), 1, sym__additive_operator, - STATE(804), 1, + STATE(414), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(999), 2, + STATE(1013), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -128470,7 +130783,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(1100), 28, + ACTIONS(1206), 28, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -128499,19 +130812,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [88464] = 5, + [90103] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1000), 2, + STATE(1014), 2, sym_comment, sym_include, - ACTIONS(83), 3, + ACTIONS(170), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(85), 52, + ACTIONS(172), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -128564,19 +130877,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [88534] = 5, + [90173] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1001), 2, + STATE(1015), 2, sym_comment, sym_include, - ACTIONS(244), 3, + ACTIONS(238), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(246), 52, + ACTIONS(240), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -128629,19 +130942,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [88604] = 5, + [90243] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1002), 2, + STATE(1016), 2, sym_comment, sym_include, - ACTIONS(214), 3, + ACTIONS(85), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(216), 52, + ACTIONS(87), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -128694,19 +131007,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [88674] = 5, + [90313] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1003), 2, + STATE(1017), 2, sym_comment, sym_include, - ACTIONS(174), 3, + ACTIONS(226), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(176), 52, + ACTIONS(228), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -128759,19 +131072,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [88744] = 5, + [90383] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1004), 2, + STATE(1018), 2, sym_comment, sym_include, - ACTIONS(63), 3, + ACTIONS(222), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(69), 52, + ACTIONS(224), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -128824,36 +131137,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [88814] = 11, + [90453] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(799), 1, - sym__comparison_operator, - STATE(800), 1, - sym__multiplicative_operator, - STATE(801), 1, - sym__additive_operator, - STATE(804), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1005), 2, + STATE(1019), 2, sym_comment, sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1179), 3, + ACTIONS(230), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(1177), 43, + ACTIONS(232), 52, + anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, + anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -128863,8 +131163,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -128874,6 +131172,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_locked_expression_token1, aux_sym_dataset_expression_token1, aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -128891,31 +131192,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [88896] = 9, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [90523] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(799), 1, - sym__comparison_operator, - STATE(800), 1, - sym__multiplicative_operator, - STATE(801), 1, - sym__additive_operator, - STATE(804), 1, - sym__logical_operator, - STATE(1006), 2, + STATE(1020), 2, sym_comment, sym_include, - ACTIONS(1195), 3, + ACTIONS(218), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(1193), 48, + ACTIONS(220), 52, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -128929,8 +131228,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -128960,39 +131257,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [88974] = 13, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [90593] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1203), 1, + ACTIONS(1192), 1, sym__escaped_string, - STATE(799), 1, + STATE(407), 1, sym__comparison_operator, - STATE(800), 1, + STATE(408), 1, sym__multiplicative_operator, - STATE(801), 1, + STATE(413), 1, sym__additive_operator, - STATE(804), 1, + STATE(414), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1007), 2, + STATE(1021), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -129008,7 +131311,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(1201), 28, + ACTIONS(1190), 28, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -129037,53 +131340,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [89060] = 13, + [90679] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1187), 1, - sym__escaped_string, - STATE(799), 1, - sym__comparison_operator, - STATE(800), 1, - sym__multiplicative_operator, - STATE(801), 1, - sym__additive_operator, - STATE(804), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1008), 2, + STATE(1022), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(134), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(136), 52, anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 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(1185), 28, anon_sym_LBRACE, sym_identifier, + anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -129093,8 +131366,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -129104,39 +131375,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_locked_expression_token1, aux_sym_dataset_expression_token1, aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [89146] = 10, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [90749] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(799), 1, - sym__comparison_operator, - STATE(800), 1, - sym__multiplicative_operator, - STATE(801), 1, - sym__additive_operator, - STATE(804), 1, - sym__logical_operator, - STATE(1009), 2, + STATE(1023), 2, sym_comment, sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1207), 3, + ACTIONS(214), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(1205), 45, + ACTIONS(216), 52, + anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, + anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -129146,8 +131431,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -129159,6 +131442,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, + aux_sym__multiplicative_operator_token1, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -129176,39 +131460,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [89226] = 13, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [90819] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1106), 1, + ACTIONS(1113), 1, sym__escaped_string, - STATE(941), 1, + STATE(902), 1, sym__comparison_operator, - STATE(942), 1, + STATE(903), 1, sym__multiplicative_operator, - STATE(943), 1, + STATE(904), 1, sym__additive_operator, - STATE(948), 1, + STATE(905), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1010), 2, + STATE(1024), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -129224,7 +131514,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(1104), 27, + ACTIONS(1111), 27, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -129252,31 +131542,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [89311] = 9, + [90904] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(941), 1, + ACTIONS(1200), 1, + sym__escaped_string, + STATE(902), 1, sym__comparison_operator, - STATE(942), 1, + STATE(903), 1, sym__multiplicative_operator, - STATE(943), 1, + STATE(904), 1, sym__additive_operator, - STATE(948), 1, + STATE(905), 1, sym__logical_operator, - STATE(1011), 2, - sym_comment, - sym_include, - ACTIONS(1195), 3, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(1193), 47, + STATE(1025), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1090), 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(1198), 27, anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, sym_null_expression, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, @@ -129294,9 +131606,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_locked_expression_token1, aux_sym_dataset_expression_token1, aux_sym_input_expression_token1, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [90989] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1192), 1, + sym__escaped_string, + STATE(902), 1, + sym__comparison_operator, + STATE(903), 1, + sym__multiplicative_operator, + STATE(904), 1, + sym__additive_operator, + STATE(905), 1, + sym__logical_operator, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(1026), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, aux_sym__multiplicative_operator_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -129312,6 +131658,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + ACTIONS(1190), 27, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, aux_sym_if_statement_token2, @@ -129320,31 +131686,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [89388] = 10, + [91074] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(941), 1, + ACTIONS(2343), 1, + sym__escaped_string, + STATE(902), 1, sym__comparison_operator, - STATE(942), 1, + STATE(903), 1, sym__multiplicative_operator, - STATE(943), 1, + STATE(904), 1, sym__additive_operator, - STATE(948), 1, + STATE(905), 1, sym__logical_operator, - STATE(1012), 2, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(1027), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1207), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(1205), 44, + ACTIONS(1090), 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(2341), 27, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -129364,23 +131750,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_locked_expression_token1, aux_sym_dataset_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_if_statement_token2, @@ -129389,35 +131758,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [89467] = 13, + [91159] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1203), 1, + ACTIONS(1125), 1, sym__escaped_string, - STATE(941), 1, + STATE(902), 1, sym__comparison_operator, - STATE(942), 1, + STATE(903), 1, sym__multiplicative_operator, - STATE(943), 1, + STATE(904), 1, sym__additive_operator, - STATE(948), 1, + STATE(905), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1013), 2, + STATE(1028), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -129433,7 +131802,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(1201), 27, + ACTIONS(1123), 27, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -129461,35 +131830,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [89552] = 13, + [91244] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1102), 1, - sym__escaped_string, - STATE(941), 1, + STATE(902), 1, sym__comparison_operator, - STATE(942), 1, + STATE(903), 1, sym__multiplicative_operator, - STATE(943), 1, + STATE(904), 1, sym__additive_operator, - STATE(948), 1, + STATE(905), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1014), 2, + STATE(1029), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(230), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -129505,7 +131873,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(1100), 27, + ACTIONS(232), 27, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -129533,35 +131901,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [89637] = 13, + [91327] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1199), 1, + ACTIONS(1208), 1, sym__escaped_string, - STATE(941), 1, + STATE(902), 1, sym__comparison_operator, - STATE(942), 1, + STATE(903), 1, sym__multiplicative_operator, - STATE(943), 1, + STATE(904), 1, sym__additive_operator, - STATE(948), 1, + STATE(905), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1015), 2, + STATE(1030), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -129577,7 +131945,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(1197), 27, + ACTIONS(1206), 27, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -129605,108 +131973,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [89722] = 14, + [91412] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2330), 1, - anon_sym_COMMA, - ACTIONS(2332), 1, - sym__escaped_string, - STATE(799), 1, - sym__comparison_operator, - STATE(800), 1, - sym__multiplicative_operator, - STATE(801), 1, - sym__additive_operator, - STATE(804), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1016), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 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(2328), 26, - 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_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, - [89809] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1191), 1, + ACTIONS(2347), 1, sym__escaped_string, - STATE(941), 1, + STATE(902), 1, sym__comparison_operator, - STATE(942), 1, + STATE(903), 1, sym__multiplicative_operator, - STATE(943), 1, + STATE(904), 1, sym__additive_operator, - STATE(948), 1, + STATE(905), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1017), 2, + STATE(1031), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -129722,7 +132017,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(1189), 27, + ACTIONS(2345), 27, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -129750,35 +132045,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [89894] = 13, + [91497] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1187), 1, + ACTIONS(1117), 1, sym__escaped_string, - STATE(941), 1, + STATE(902), 1, sym__comparison_operator, - STATE(942), 1, + STATE(903), 1, sym__multiplicative_operator, - STATE(943), 1, + STATE(904), 1, sym__additive_operator, - STATE(948), 1, + STATE(905), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1018), 2, + STATE(1032), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -129794,7 +132089,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(1185), 27, + ACTIONS(1115), 27, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -129822,35 +132117,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [89979] = 13, + [91582] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1183), 1, + ACTIONS(1196), 1, sym__escaped_string, - STATE(941), 1, + STATE(902), 1, sym__comparison_operator, - STATE(942), 1, + STATE(903), 1, sym__multiplicative_operator, - STATE(943), 1, + STATE(904), 1, sym__additive_operator, - STATE(948), 1, + STATE(905), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1019), 2, + STATE(1033), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -129866,7 +132161,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(1181), 27, + ACTIONS(1194), 27, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -129894,34 +132189,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [90064] = 11, + [91667] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(941), 1, + STATE(902), 1, sym__comparison_operator, - STATE(942), 1, + STATE(903), 1, sym__multiplicative_operator, - STATE(943), 1, + STATE(904), 1, sym__additive_operator, - STATE(948), 1, + STATE(905), 1, sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1020), 2, + STATE(1034), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1179), 3, + ACTIONS(1121), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(1177), 42, + ACTIONS(1119), 44, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -129941,6 +132233,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_locked_expression_token1, aux_sym_dataset_expression_token1, aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -129964,52 +132258,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [90145] = 12, + [91746] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(941), 1, + STATE(902), 1, sym__comparison_operator, - STATE(942), 1, + STATE(903), 1, sym__multiplicative_operator, - STATE(943), 1, + STATE(904), 1, sym__additive_operator, - STATE(948), 1, + STATE(905), 1, sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1021), 2, + STATE(1035), 2, sym_comment, sym_include, - ACTIONS(236), 3, + ACTIONS(1216), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(1075), 3, + ACTIONS(1214), 47, anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 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(238), 27, anon_sym_LBRACE, sym_identifier, + anon_sym_STAR, sym_null_expression, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, @@ -130027,6 +132300,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_locked_expression_token1, aux_sym_dataset_expression_token1, aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, aux_sym_if_statement_token2, @@ -130035,100 +132326,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [90228] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(1022), 2, - sym_comment, - sym_include, - ACTIONS(228), 4, - aux_sym_variable_tuning_token2, - aux_sym_image_phrase_token1, - aux_sym_image_phrase_token4, - aux_sym_size_phrase_token1, - ACTIONS(226), 49, - anon_sym_COLON, - sym__terminator, - aux_sym__block_terminator_token1, - anon_sym_COMMA, - aux_sym_type_tuning_token2, - aux_sym_unary_expression_token2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_serialization_tuning_token1, - aux_sym_repeat_tuning_token1, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_using_statement_token2, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_on_error_phrase_token1, - aux_sym_field_option_token1, - aux_sym_field_option_token2, - aux_sym_field_option_token3, - aux_sym_field_option_token4, - aux_sym_field_option_token5, - aux_sym_field_option_token6, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - aux_sym_image_phrase_token2, - aux_sym_image_phrase_token5, - aux_sym_image_phrase_token6, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [90299] = 13, + [91823] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1112), 1, - sym__escaped_string, - STATE(941), 1, + STATE(902), 1, sym__comparison_operator, - STATE(942), 1, + STATE(903), 1, sym__multiplicative_operator, - STATE(943), 1, + STATE(904), 1, sym__additive_operator, - STATE(948), 1, + STATE(905), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1023), 2, + STATE(1036), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1212), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -130144,7 +132369,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(1110), 27, + ACTIONS(1210), 27, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -130172,35 +132397,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [90384] = 13, + [91906] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2336), 1, + ACTIONS(1204), 1, sym__escaped_string, - STATE(941), 1, + STATE(902), 1, sym__comparison_operator, - STATE(942), 1, + STATE(903), 1, sym__multiplicative_operator, - STATE(943), 1, + STATE(904), 1, sym__additive_operator, - STATE(948), 1, + STATE(905), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1024), 2, + STATE(1037), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -130216,7 +132441,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(2334), 27, + ACTIONS(1202), 27, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -130244,35 +132469,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [90469] = 13, + [91991] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2340), 1, + ACTIONS(2351), 1, + anon_sym_COMMA, + ACTIONS(2353), 1, sym__escaped_string, - STATE(941), 1, + STATE(407), 1, sym__comparison_operator, - STATE(942), 1, + STATE(408), 1, sym__multiplicative_operator, - STATE(943), 1, + STATE(413), 1, sym__additive_operator, - STATE(948), 1, + STATE(414), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1025), 2, + STATE(1038), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -130288,7 +132515,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(2338), 27, + ACTIONS(2349), 26, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -130299,6 +132526,7 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -130310,29 +132538,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_expression_token1, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [90554] = 7, + [92078] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(1039), 2, + sym_comment, + sym_include, + ACTIONS(248), 4, + aux_sym_variable_tuning_token2, + aux_sym_image_phrase_token1, + aux_sym_image_phrase_token4, + aux_sym_size_phrase_token1, + ACTIONS(246), 49, + anon_sym_COLON, + sym__terminator, + aux_sym__block_terminator_token1, + anon_sym_COMMA, + aux_sym_type_tuning_token2, + aux_sym_unary_expression_token2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_serialization_tuning_token1, + aux_sym_repeat_tuning_token1, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_using_statement_token2, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_on_error_phrase_token1, + aux_sym_field_option_token1, + aux_sym_field_option_token2, + aux_sym_field_option_token3, + aux_sym_field_option_token4, + aux_sym_field_option_token5, + aux_sym_field_option_token6, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + aux_sym_image_phrase_token2, + aux_sym_image_phrase_token5, + aux_sym_image_phrase_token6, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [92149] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1357), 1, - sym__namecolon, - STATE(1030), 1, - aux_sym_object_access_repeat1, - STATE(1026), 2, + STATE(1040), 2, sym_comment, sym_include, - ACTIONS(94), 3, + ACTIONS(115), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(96), 48, + ACTIONS(117), 49, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -130377,27 +132665,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + anon_sym_NO_DASHERROR, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [90626] = 7, + [92217] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1355), 1, - sym__namedot, - STATE(1031), 1, - aux_sym_qualified_name_repeat1, - STATE(1027), 2, - sym_comment, - sym_include, - ACTIONS(98), 3, + ACTIONS(2355), 1, + sym__namecolon, + ACTIONS(93), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(100), 48, + STATE(1041), 3, + sym_comment, + sym_include, + aux_sym_object_access_repeat1, + ACTIONS(95), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -130446,88 +132734,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [90698] = 8, + [92287] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2342), 1, - sym_identifier, - ACTIONS(2345), 1, - aux_sym_input_expression_token2, - STATE(1088), 1, - sym_qualified_name, - STATE(1028), 2, + STATE(1042), 2, sym_comment, sym_include, - ACTIONS(1351), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(1347), 47, - anon_sym_SLASH, - anon_sym_LBRACE, - 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [90772] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(2347), 1, - sym__namedoublecolon, - ACTIONS(110), 3, + ACTIONS(138), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - STATE(1029), 3, - sym_comment, - sym_include, - aux_sym_member_access_repeat1, - ACTIONS(112), 48, + ACTIONS(140), 49, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -130571,91 +132791,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, + aux_sym_function_call_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, - [90842] = 6, + [92355] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2350), 1, + ACTIONS(1441), 1, sym__namecolon, - ACTIONS(87), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - STATE(1030), 3, + STATE(1041), 1, + aux_sym_object_access_repeat1, + STATE(1043), 2, sym_comment, sym_include, - aux_sym_object_access_repeat1, - ACTIONS(89), 48, - 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [90912] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(2353), 1, - sym__namedot, - ACTIONS(117), 3, + ACTIONS(89), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - STATE(1031), 3, - sym_comment, - sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(119), 48, + ACTIONS(91), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -130704,94 +132862,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [90982] = 13, + [92427] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(2358), 1, - sym__escaped_string, - STATE(799), 1, - sym__comparison_operator, - STATE(800), 1, - sym__multiplicative_operator, - STATE(801), 1, - sym__additive_operator, - STATE(804), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1032), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 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(2356), 26, - 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_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, - [91066] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1355), 1, - sym__namedot, - STATE(1027), 1, - aux_sym_qualified_name_repeat1, - STATE(1033), 2, + aux_sym_function_call_token1, + STATE(1044), 2, sym_comment, sym_include, - ACTIONS(102), 3, + ACTIONS(156), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(104), 48, + ACTIONS(158), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -130840,23 +132926,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [91138] = 7, + [92497] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1359), 1, - sym__namedoublecolon, - STATE(1029), 1, - aux_sym_member_access_repeat1, - STATE(1034), 2, + STATE(1045), 2, sym_comment, sym_include, - ACTIONS(128), 3, + ACTIONS(115), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(130), 48, + ACTIONS(117), 49, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -130900,28 +132983,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, + aux_sym_function_call_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, - [91210] = 7, + [92565] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1355), 1, + ACTIONS(1439), 1, sym__namedot, - STATE(1027), 1, + STATE(1047), 1, aux_sym_qualified_name_repeat1, - STATE(1035), 2, + STATE(1046), 2, sym_comment, sym_include, - ACTIONS(106), 3, + ACTIONS(134), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(108), 48, + ACTIONS(136), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -130970,23 +133054,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [91282] = 7, + [92637] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1353), 1, - anon_sym_LPAREN, - STATE(1045), 1, - sym_function_arguments, - STATE(1036), 2, + ACTIONS(1439), 1, + sym__namedot, + STATE(1054), 1, + aux_sym_qualified_name_repeat1, + STATE(1047), 2, sym_comment, sym_include, - ACTIONS(83), 3, + ACTIONS(104), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(85), 47, + ACTIONS(106), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -131002,6 +133086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -131034,27 +133119,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [91353] = 7, + [92709] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1576), 1, - sym__namedot, - STATE(1042), 1, - aux_sym_qualified_name_repeat1, - STATE(1037), 2, + ACTIONS(1441), 1, + sym__namecolon, + STATE(1041), 1, + aux_sym_object_access_repeat1, + STATE(1048), 2, sym_comment, sym_include, - ACTIONS(102), 3, + ACTIONS(89), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(104), 47, + ACTIONS(91), 48, 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, @@ -131063,6 +133149,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -131092,27 +133180,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [91424] = 6, + [92781] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2360), 1, - sym__namedot, - STATE(1038), 2, + ACTIONS(1443), 1, + sym__namedoublecolon, + STATE(1060), 1, + aux_sym_member_access_repeat1, + STATE(1049), 2, sym_comment, sym_include, - ACTIONS(132), 3, + ACTIONS(119), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(134), 48, + ACTIONS(121), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -131161,25 +133249,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [91493] = 8, + [92853] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1353), 1, - anon_sym_LPAREN, - ACTIONS(1376), 1, - anon_sym_LBRACK, - STATE(1045), 1, - sym_function_arguments, - STATE(1039), 2, + STATE(1050), 2, sym_comment, sym_include, - ACTIONS(63), 3, + ACTIONS(142), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(69), 46, + ACTIONS(144), 49, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -131192,8 +133275,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token4, sym__integer_literal, sym_date_literal, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -131221,24 +133306,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, + aux_sym_function_call_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, - [91566] = 5, + [92921] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1040), 2, + ACTIONS(1441), 1, + sym__namecolon, + STATE(1041), 1, + aux_sym_object_access_repeat1, + STATE(1051), 2, sym_comment, sym_include, - ACTIONS(146), 3, + ACTIONS(89), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(148), 49, + ACTIONS(91), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -131283,24 +133373,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - anon_sym_NO_DASHERROR, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [91633] = 5, + [92993] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1041), 2, + ACTIONS(1441), 1, + sym__namecolon, + STATE(1043), 1, + aux_sym_object_access_repeat1, + STATE(1052), 2, sym_comment, sym_include, - ACTIONS(150), 3, + ACTIONS(85), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(152), 49, + ACTIONS(87), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -131345,32 +133438,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - anon_sym_NO_DASHERROR, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [91700] = 7, + [93065] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1576), 1, + ACTIONS(1439), 1, sym__namedot, - STATE(1050), 1, + STATE(1047), 1, aux_sym_qualified_name_repeat1, - STATE(1042), 2, + STATE(1053), 2, sym_comment, sym_include, - ACTIONS(98), 3, + ACTIONS(123), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(100), 47, + ACTIONS(125), 48, 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, @@ -131379,6 +133472,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -131408,25 +133503,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [91771] = 5, + [93137] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1043), 2, - sym_comment, - sym_include, - ACTIONS(138), 3, + ACTIONS(2360), 1, + sym__namedot, + ACTIONS(108), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(140), 49, + STATE(1054), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(110), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -131471,26 +133567,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - anon_sym_NO_DASHERROR, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [91838] = 6, + [93207] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2362), 1, - anon_sym_NO_DASHERROR, - STATE(1044), 2, + STATE(1055), 2, sym_comment, sym_include, - ACTIONS(248), 3, + ACTIONS(138), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(250), 48, + ACTIONS(140), 49, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -131535,28 +133629,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + anon_sym_NO_DASHERROR, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [91907] = 6, + [93275] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2364), 1, - aux_sym_function_call_token1, - STATE(1045), 2, + ACTIONS(2363), 1, + sym_identifier, + ACTIONS(2366), 1, + aux_sym_input_expression_token2, + STATE(1110), 1, + sym_qualified_name, + STATE(1056), 2, sym_comment, sym_include, - ACTIONS(230), 3, + ACTIONS(1358), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(232), 48, + ACTIONS(1354), 47, anon_sym_SLASH, anon_sym_LBRACE, - sym_identifier, anon_sym_STAR, sym__terminator, sym_null_expression, @@ -131602,25 +133700,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [91976] = 7, + [93349] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2366), 1, - sym_identifier, - STATE(1060), 1, - sym_qualified_name, - STATE(1046), 2, + ACTIONS(2368), 1, + anon_sym_NO_DASHERROR, + STATE(1057), 2, sym_comment, sym_include, - ACTIONS(1366), 3, + ACTIONS(391), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(1364), 47, + ACTIONS(393), 48, anon_sym_SLASH, anon_sym_LBRACE, + sym_identifier, anon_sym_STAR, sym__terminator, sym_null_expression, @@ -131666,19 +133764,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [92047] = 5, + [93419] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1047), 2, + STATE(1058), 2, sym_comment, sym_include, - ACTIONS(150), 3, + ACTIONS(142), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(152), 49, + ACTIONS(144), 49, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -131722,32 +133821,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, - aux_sym_function_call_token1, aux_sym_if_statement_token1, + anon_sym_NO_DASHERROR, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [92114] = 6, + [93487] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2369), 1, - sym__namedoublecolon, - ACTIONS(110), 3, + ACTIONS(1441), 1, + sym__namecolon, + STATE(1043), 1, + aux_sym_object_access_repeat1, + STATE(1059), 2, + sym_comment, + sym_include, + ACTIONS(65), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - STATE(1048), 3, - sym_comment, - sym_include, - aux_sym_member_access_repeat1, - ACTIONS(112), 47, + ACTIONS(71), 48, 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, @@ -131756,6 +133857,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -131785,32 +133888,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [92183] = 6, + [93559] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2372), 1, - sym__namecolon, - ACTIONS(87), 3, + ACTIONS(2370), 1, + sym__namedoublecolon, + ACTIONS(127), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - STATE(1049), 3, + STATE(1060), 3, sym_comment, sym_include, - aux_sym_object_access_repeat1, - ACTIONS(89), 47, + aux_sym_member_access_repeat1, + ACTIONS(129), 48, 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, @@ -131819,6 +133921,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -131848,32 +133952,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [92252] = 6, + [93629] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(2375), 1, - sym__namedot, - ACTIONS(117), 3, + sym__escaped_string, + STATE(407), 1, + sym__comparison_operator, + STATE(408), 1, + sym__multiplicative_operator, + STATE(413), 1, + sym__additive_operator, + STATE(414), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - sym__escaped_string, - STATE(1050), 3, + STATE(1061), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(119), 47, + ACTIONS(1086), 3, anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1090), 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(2373), 26, anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, + sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, @@ -131891,49 +134021,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_locked_expression_token1, aux_sym_dataset_expression_token1, aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [92321] = 7, + [93713] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1580), 1, - sym__namedoublecolon, - STATE(1048), 1, - aux_sym_member_access_repeat1, - STATE(1051), 2, + ACTIONS(1611), 1, + sym__namedot, + STATE(1076), 1, + aux_sym_qualified_name_repeat1, + STATE(1062), 2, sym_comment, sym_include, - ACTIONS(128), 3, + ACTIONS(134), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(130), 47, + ACTIONS(136), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -131981,23 +134091,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [92392] = 7, + [93784] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1578), 1, - sym__namecolon, - STATE(1049), 1, - aux_sym_object_access_repeat1, - STATE(1052), 2, + STATE(1063), 2, sym_comment, sym_include, - ACTIONS(94), 3, + ACTIONS(115), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(96), 47, + ACTIONS(117), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -132038,6 +134145,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, aux_sym_if_statement_token1, aux_sym_if_statement_token2, aux_sym_case_conditon_token1, @@ -132045,25 +134153,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [92463] = 5, + [93851] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1053), 2, + ACTIONS(1613), 1, + sym__namecolon, + STATE(1070), 1, + aux_sym_object_access_repeat1, + STATE(1064), 2, sym_comment, sym_include, - ACTIONS(124), 4, - sym__namecolon, + ACTIONS(89), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(126), 48, + ACTIONS(91), 47, 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, @@ -132072,8 +134182,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -132103,24 +134211,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [92530] = 5, + [93922] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1054), 2, + ACTIONS(1435), 1, + anon_sym_LBRACK, + ACTIONS(1437), 1, + anon_sym_LPAREN, + STATE(1044), 1, + sym_function_arguments, + STATE(1065), 2, sym_comment, sym_include, - ACTIONS(142), 4, - sym__namedoublecolon, + ACTIONS(65), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(144), 48, + ACTIONS(71), 46, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -132133,10 +134248,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token4, sym__integer_literal, sym_date_literal, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -132169,23 +134282,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [92597] = 7, + [93995] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1576), 1, - sym__namedot, - STATE(1042), 1, - aux_sym_qualified_name_repeat1, - STATE(1055), 2, + ACTIONS(2377), 1, + anon_sym_NO_DASHERROR, + STATE(1066), 2, sym_comment, sym_include, - ACTIONS(106), 3, + ACTIONS(391), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(108), 47, + ACTIONS(393), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -132233,24 +134345,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [92668] = 5, + [94064] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1056), 2, + ACTIONS(1613), 1, + sym__namecolon, + STATE(1070), 1, + aux_sym_object_access_repeat1, + STATE(1067), 2, sym_comment, sym_include, - ACTIONS(146), 3, + ACTIONS(89), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(148), 49, + ACTIONS(91), 47, 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, @@ -132259,8 +134374,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -132289,33 +134402,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, - aux_sym_function_call_token1, aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [92735] = 8, + [94135] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2378), 1, - sym_identifier, - ACTIONS(2381), 1, - aux_sym_input_expression_token2, - STATE(1110), 1, - sym_qualified_name, - STATE(1057), 2, + STATE(1068), 2, sym_comment, sym_include, - ACTIONS(1351), 3, + ACTIONS(138), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(1347), 46, + ACTIONS(140), 48, anon_sym_SLASH, anon_sym_LBRACE, + sym_identifier, anon_sym_STAR, sym_null_expression, aux_sym_boolean_literal_token1, @@ -132353,6 +134463,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, aux_sym_if_statement_token1, aux_sym_if_statement_token2, aux_sym_case_conditon_token1, @@ -132360,23 +134471,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [92808] = 5, + [94202] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1058), 2, + ACTIONS(2379), 1, + sym_identifier, + STATE(1101), 1, + sym_qualified_name, + STATE(1069), 2, sym_comment, sym_include, - ACTIONS(117), 4, - sym__namedot, + ACTIONS(1581), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(119), 48, + ACTIONS(1579), 47, anon_sym_SLASH, anon_sym_LBRACE, - sym_identifier, anon_sym_STAR, sym__terminator, sym_null_expression, @@ -132422,24 +134535,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [92875] = 5, + [94273] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1059), 2, - sym_comment, - sym_include, - ACTIONS(138), 3, + ACTIONS(2382), 1, + sym__namecolon, + ACTIONS(93), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(140), 49, + STATE(1070), 3, + sym_comment, + sym_include, + aux_sym_object_access_repeat1, + ACTIONS(95), 47, 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, @@ -132448,8 +134563,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -132478,30 +134591,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, - aux_sym_function_call_token1, aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [92942] = 5, + [94342] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1060), 2, + ACTIONS(1611), 1, + sym__namedot, + STATE(1076), 1, + aux_sym_qualified_name_repeat1, + STATE(1071), 2, sym_comment, sym_include, - ACTIONS(106), 3, + ACTIONS(123), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(108), 48, + ACTIONS(125), 47, 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, @@ -132510,8 +134627,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -132541,28 +134656,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [93008] = 5, + [94413] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1061), 2, + STATE(1072), 2, sym_comment, sym_include, - ACTIONS(83), 3, + ACTIONS(115), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(85), 48, + ACTIONS(117), 48, 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, @@ -132571,8 +134688,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -132602,23 +134717,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + anon_sym_NO_DASHERROR, + aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [93074] = 5, + [94480] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1062), 2, - sym_comment, - sym_include, - ACTIONS(150), 3, + ACTIONS(2385), 1, + sym__namedoublecolon, + ACTIONS(127), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(152), 48, + STATE(1073), 3, + sym_comment, + sym_include, + aux_sym_member_access_repeat1, + ACTIONS(129), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -132661,29 +134782,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, aux_sym_if_statement_token2, - anon_sym_NO_DASHERROR, aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [93140] = 5, + [94549] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1063), 2, + ACTIONS(1437), 1, + anon_sym_LPAREN, + STATE(1044), 1, + sym_function_arguments, + STATE(1074), 2, sym_comment, sym_include, - ACTIONS(146), 3, + ACTIONS(85), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(148), 48, + ACTIONS(87), 47, 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, @@ -132692,7 +134817,67 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [94620] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1075), 2, + sym_comment, + sym_include, + ACTIONS(142), 4, + sym__namecolon, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(144), 48, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -132728,24 +134913,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [93206] = 5, + [94687] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1064), 2, + ACTIONS(1611), 1, + sym__namedot, + STATE(1085), 1, + aux_sym_qualified_name_repeat1, + STATE(1076), 2, sym_comment, sym_include, - ACTIONS(158), 3, + ACTIONS(104), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(160), 48, + ACTIONS(106), 47, 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, @@ -132754,8 +134942,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -132785,28 +134971,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [93272] = 5, + [94758] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1065), 2, + ACTIONS(1613), 1, + sym__namecolon, + STATE(1070), 1, + aux_sym_object_access_repeat1, + STATE(1077), 2, sym_comment, sym_include, - ACTIONS(154), 3, + ACTIONS(89), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(156), 48, + ACTIONS(91), 47, 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, @@ -132815,8 +135006,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -132846,23 +135035,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [93338] = 5, + [94829] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1066), 2, + ACTIONS(1613), 1, + sym__namecolon, + STATE(1064), 1, + aux_sym_object_access_repeat1, + STATE(1078), 2, sym_comment, sym_include, - ACTIONS(150), 3, + ACTIONS(65), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(152), 48, + ACTIONS(71), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -132903,7 +135098,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, - aux_sym_function_call_token1, aux_sym_if_statement_token1, aux_sym_if_statement_token2, aux_sym_case_conditon_token1, @@ -132911,19 +135105,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [93404] = 5, + [94900] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1067), 2, + STATE(1079), 2, sym_comment, sym_include, - ACTIONS(222), 3, + ACTIONS(146), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(224), 48, + ACTIONS(148), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -132972,24 +135167,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [93470] = 5, + [94967] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1068), 2, + STATE(1080), 2, sym_comment, sym_include, - ACTIONS(218), 3, + ACTIONS(138), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(220), 48, + ACTIONS(140), 48, 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, @@ -132998,8 +135193,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -133029,23 +135222,95 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + anon_sym_NO_DASHERROR, + aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [93536] = 5, + [95034] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1069), 2, + ACTIONS(2388), 1, + sym_identifier, + ACTIONS(2391), 1, + aux_sym_input_expression_token2, + STATE(1144), 1, + sym_qualified_name, + STATE(1081), 2, sym_comment, sym_include, - ACTIONS(146), 3, + ACTIONS(1358), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(148), 48, + ACTIONS(1354), 46, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_STAR, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [95107] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1613), 1, + sym__namecolon, + STATE(1064), 1, + aux_sym_object_access_repeat1, + STATE(1082), 2, + sym_comment, + sym_include, + ACTIONS(85), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(87), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -133086,7 +135351,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, - aux_sym_function_call_token1, aux_sym_if_statement_token1, aux_sym_if_statement_token2, aux_sym_case_conditon_token1, @@ -133094,19 +135358,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [93602] = 5, + [95178] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1070), 2, + STATE(1083), 2, sym_comment, sym_include, - ACTIONS(194), 3, + ACTIONS(166), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(196), 48, + ACTIONS(168), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -133155,21 +135420,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [93668] = 6, + [95245] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2383), 1, - anon_sym_NO_DASHERROR, - STATE(1071), 2, + ACTIONS(1615), 1, + sym__namedoublecolon, + STATE(1073), 1, + aux_sym_member_access_repeat1, + STATE(1084), 2, sym_comment, sym_include, - ACTIONS(248), 3, + ACTIONS(119), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(250), 47, + ACTIONS(121), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -133217,24 +135484,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [93736] = 5, + [95316] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1072), 2, - sym_comment, - sym_include, - ACTIONS(186), 3, + ACTIONS(2393), 1, + sym__namedot, + ACTIONS(108), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(188), 48, + STATE(1085), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(110), 47, 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, @@ -133243,8 +135512,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -133274,27 +135541,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [93802] = 7, + [95385] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1574), 1, - anon_sym_LPAREN, - STATE(1100), 1, - sym_function_arguments, - STATE(1073), 2, + STATE(1086), 2, sym_comment, sym_include, - ACTIONS(83), 3, + ACTIONS(142), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(85), 46, + ACTIONS(144), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -133307,6 +135573,7 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -133334,6 +135601,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, aux_sym_if_statement_token1, aux_sym_if_statement_token2, aux_sym_case_conditon_token1, @@ -133341,19 +135609,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [93872] = 5, + [95452] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1074), 2, + STATE(1087), 2, sym_comment, sym_include, - ACTIONS(214), 3, + ACTIONS(162), 4, + sym__namedoublecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(216), 48, + ACTIONS(164), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -133402,24 +135671,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [93938] = 5, + [95519] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1075), 2, + ACTIONS(2396), 1, + aux_sym_function_call_token1, + STATE(1088), 2, sym_comment, sym_include, - ACTIONS(132), 3, + ACTIONS(156), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(134), 48, + ACTIONS(158), 47, 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, @@ -133428,8 +135699,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -133459,23 +135728,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [94004] = 5, + [95588] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1076), 2, + STATE(1089), 2, sym_comment, sym_include, - ACTIONS(240), 3, + ACTIONS(100), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(242), 48, + ACTIONS(102), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -133524,24 +135796,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [94070] = 5, + [95655] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1077), 2, + STATE(1090), 2, sym_comment, sym_include, - ACTIONS(117), 4, + ACTIONS(108), 4, sym__namedot, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(119), 47, + ACTIONS(110), 48, 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, @@ -133550,6 +135823,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -133579,32 +135854,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [94136] = 7, + [95722] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2385), 1, - sym_identifier, - STATE(1126), 1, - sym_qualified_name, - STATE(1078), 2, + ACTIONS(2398), 1, + sym__namedot, + STATE(1091), 2, sym_comment, sym_include, - ACTIONS(1366), 3, + ACTIONS(150), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(1364), 46, + ACTIONS(152), 48, 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, @@ -133613,6 +135886,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -133642,25 +135917,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [94206] = 5, + [95791] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1079), 2, + STATE(1092), 2, sym_comment, sym_include, - ACTIONS(170), 3, + ACTIONS(226), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(172), 48, + ACTIONS(228), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -133709,19 +135982,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [94272] = 5, + [95857] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1080), 2, + STATE(1093), 2, sym_comment, sym_include, - ACTIONS(244), 3, + ACTIONS(170), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(246), 48, + ACTIONS(172), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -133770,24 +136043,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [94338] = 5, + [95923] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1081), 2, + ACTIONS(2400), 1, + sym__namedot, + STATE(1094), 2, sym_comment, sym_include, - ACTIONS(166), 3, + ACTIONS(150), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(168), 48, + ACTIONS(152), 47, 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, @@ -133796,8 +136070,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -133827,23 +136099,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [94404] = 5, + [95991] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1082), 2, + STATE(1095), 2, sym_comment, sym_include, - ACTIONS(162), 3, + ACTIONS(202), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(164), 48, + ACTIONS(204), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -133892,19 +136166,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [94470] = 5, + [96057] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1083), 2, + STATE(1096), 2, sym_comment, sym_include, - ACTIONS(182), 3, + ACTIONS(85), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(184), 48, + ACTIONS(87), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -133953,19 +136227,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [94536] = 5, + [96123] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1084), 2, + STATE(1097), 2, sym_comment, sym_include, - ACTIONS(178), 3, + ACTIONS(182), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(180), 48, + ACTIONS(184), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -134014,24 +136288,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [94602] = 5, + [96189] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1085), 2, + STATE(1098), 2, sym_comment, sym_include, - ACTIONS(202), 3, + ACTIONS(162), 4, + sym__namedoublecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(204), 48, + ACTIONS(164), 47, 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, @@ -134040,71 +136314,7 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [94668] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1572), 1, - anon_sym_LBRACK, - ACTIONS(1574), 1, anon_sym_LPAREN, - STATE(1100), 1, - sym_function_arguments, - STATE(1086), 2, - sym_comment, - sym_include, - ACTIONS(63), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(69), 45, - anon_sym_SLASH, - anon_sym_LBRACE, - sym_identifier, - anon_sym_STAR, - 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, - sym_date_literal, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -134139,80 +136349,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [94740] = 5, + [96255] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1087), 2, - sym_comment, - sym_include, - ACTIONS(210), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(212), 48, - 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [94806] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(1088), 2, + STATE(1099), 2, sym_comment, sym_include, - ACTIONS(102), 3, + ACTIONS(198), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(104), 48, + ACTIONS(200), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -134261,19 +136410,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [94872] = 5, + [96321] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1089), 2, + STATE(1100), 2, sym_comment, sym_include, - ACTIONS(236), 3, + ACTIONS(246), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(238), 48, + ACTIONS(248), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -134322,19 +136471,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [94938] = 5, + [96387] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1090), 2, + STATE(1101), 2, sym_comment, sym_include, - ACTIONS(198), 3, + ACTIONS(123), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(200), 48, + ACTIONS(125), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -134383,81 +136532,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [95004] = 5, + [96453] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1091), 2, - sym_comment, - sym_include, - ACTIONS(138), 3, - sym__or_operator, - sym__and_operator, - sym__escaped_string, - ACTIONS(140), 48, - anon_sym_SLASH, - anon_sym_LBRACE, - sym_identifier, - anon_sym_STAR, - 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - anon_sym_NO_DASHERROR, - aux_sym_case_conditon_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [95070] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(1092), 2, + STATE(1102), 2, sym_comment, sym_include, - ACTIONS(142), 4, - sym__namedoublecolon, + ACTIONS(146), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(144), 47, + ACTIONS(148), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -134505,24 +136593,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [95136] = 5, + [96519] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1093), 2, + STATE(1103), 2, sym_comment, sym_include, - ACTIONS(124), 4, - sym__namecolon, + ACTIONS(174), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(126), 47, + ACTIONS(176), 48, 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, @@ -134531,6 +136619,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -134560,25 +136650,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [95202] = 5, + [96585] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1094), 2, + STATE(1104), 2, sym_comment, sym_include, - ACTIONS(190), 3, + ACTIONS(194), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(192), 48, + ACTIONS(196), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -134627,24 +136715,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [95268] = 5, + [96651] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1095), 2, + STATE(1105), 2, sym_comment, sym_include, - ACTIONS(206), 3, + ACTIONS(100), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(208), 48, + ACTIONS(102), 47, 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, @@ -134653,8 +136741,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -134684,28 +136770,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [95334] = 5, + [96717] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1096), 2, + STATE(1106), 2, sym_comment, sym_include, - ACTIONS(174), 3, + ACTIONS(166), 4, + sym__namecolon, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(176), 48, + ACTIONS(168), 47, 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, @@ -134714,8 +136802,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -134745,23 +136831,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [95400] = 5, + [96783] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1097), 2, + STATE(1107), 2, sym_comment, sym_include, - ACTIONS(226), 3, + ACTIONS(65), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(228), 48, + ACTIONS(71), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -134810,19 +136898,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [95466] = 5, + [96849] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1098), 2, + STATE(1108), 2, sym_comment, sym_include, - ACTIONS(63), 3, + ACTIONS(206), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(69), 48, + ACTIONS(208), 48, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -134871,23 +136959,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [95532] = 5, + [96915] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1099), 2, + STATE(1109), 2, sym_comment, sym_include, - ACTIONS(138), 3, + ACTIONS(210), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(140), 48, + ACTIONS(212), 48, 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, @@ -134896,6 +136985,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -134924,33 +137015,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, - aux_sym_function_call_token1, aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [95598] = 6, + [96981] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2388), 1, - aux_sym_function_call_token1, - STATE(1100), 2, + STATE(1110), 2, sym_comment, sym_include, - ACTIONS(230), 3, + ACTIONS(134), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(232), 47, + ACTIONS(136), 48, 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, @@ -134959,6 +137046,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -134988,31 +137077,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [95666] = 6, + [97047] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2390), 1, - sym__namedot, - STATE(1101), 2, + STATE(1111), 2, sym_comment, sym_include, - ACTIONS(132), 3, + ACTIONS(234), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(134), 47, + ACTIONS(236), 48, 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, @@ -135021,6 +137107,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -135050,25 +137138,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [95734] = 5, + [97113] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1102), 2, + ACTIONS(1609), 1, + anon_sym_LPAREN, + STATE(1088), 1, + sym_function_arguments, + STATE(1112), 2, sym_comment, sym_include, - ACTIONS(182), 3, + ACTIONS(85), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(184), 47, + ACTIONS(87), 46, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -135081,7 +137171,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, - anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -135116,22 +137205,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [95799] = 5, + [97183] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1103), 2, + ACTIONS(2402), 1, + sym_identifier, + STATE(1154), 1, + sym_qualified_name, + STATE(1113), 2, sym_comment, sym_include, - ACTIONS(210), 3, + ACTIONS(1581), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(212), 47, + ACTIONS(1579), 46, anon_sym_SLASH, anon_sym_LBRACE, - sym_identifier, anon_sym_STAR, sym_null_expression, aux_sym_boolean_literal_token1, @@ -135176,255 +137268,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [95864] = 16, - ACTIONS(65), 1, + [97253] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(807), 1, - sym__logical_operator, - STATE(808), 1, - sym__additive_operator, - STATE(827), 1, - sym__multiplicative_operator, - STATE(829), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1189), 2, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1104), 2, + STATE(1114), 2, sym_comment, sym_include, - ACTIONS(2396), 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(1191), 21, - sym__terminator, - aux_sym_type_tuning_token2, - aux_sym_variable_tuning_token4, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [95951] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(807), 1, - sym__logical_operator, - STATE(808), 1, - sym__additive_operator, - STATE(827), 1, - sym__multiplicative_operator, - STATE(829), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(242), 3, sym__or_operator, sym__and_operator, - ACTIONS(1185), 2, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1105), 2, - sym_comment, - sym_include, - ACTIONS(2396), 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(1187), 21, - sym__terminator, - aux_sym_type_tuning_token2, - aux_sym_variable_tuning_token4, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [96038] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, + sym__escaped_string, + ACTIONS(244), 48, anon_sym_SLASH, - STATE(807), 1, - sym__logical_operator, - STATE(808), 1, - sym__additive_operator, - STATE(827), 1, - sym__multiplicative_operator, - STATE(829), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1181), 2, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1106), 2, - sym_comment, - sym_include, - ACTIONS(2396), 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(1183), 21, - sym__terminator, - aux_sym_type_tuning_token2, - aux_sym_variable_tuning_token4, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [96125] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(807), 1, - sym__logical_operator, - STATE(808), 1, - sym__additive_operator, - STATE(827), 1, - sym__multiplicative_operator, - STATE(829), 1, - sym__comparison_operator, - ACTIONS(238), 2, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + sym__integer_literal, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, - STATE(1107), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -135435,43 +137323,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(236), 23, - sym__or_operator, - sym__and_operator, - sym__terminator, - aux_sym_type_tuning_token2, - aux_sym_variable_tuning_token4, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [96210] = 5, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [97319] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1108), 2, + ACTIONS(1609), 1, + anon_sym_LPAREN, + ACTIONS(1619), 1, + anon_sym_LBRACK, + STATE(1088), 1, + sym_function_arguments, + STATE(1115), 2, sym_comment, sym_include, - ACTIONS(236), 3, + ACTIONS(65), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(238), 47, + ACTIONS(71), 45, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -135483,8 +137359,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token4, sym__integer_literal, sym_date_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -135519,45 +137393,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [96275] = 16, - ACTIONS(65), 1, + [97391] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(807), 1, - sym__logical_operator, - STATE(808), 1, - sym__additive_operator, - STATE(827), 1, - sym__multiplicative_operator, - STATE(829), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + STATE(1116), 2, + sym_comment, + sym_include, + ACTIONS(214), 3, sym__or_operator, sym__and_operator, - ACTIONS(1110), 2, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(2392), 2, + sym__escaped_string, + ACTIONS(216), 48, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + sym__integer_literal, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, - STATE(1109), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -135568,45 +137448,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(1112), 21, - sym__terminator, - aux_sym_type_tuning_token2, - aux_sym_variable_tuning_token4, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [96362] = 5, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [97457] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1110), 2, + STATE(1117), 2, sym_comment, sym_include, - ACTIONS(102), 3, + ACTIONS(186), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(104), 47, + ACTIONS(188), 48, 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, @@ -135615,6 +137480,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -135644,29 +137511,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [96427] = 5, + [97523] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1111), 2, + STATE(1118), 2, sym_comment, sym_include, - ACTIONS(154), 3, + ACTIONS(190), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(156), 47, + ACTIONS(192), 48, 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, @@ -135675,6 +137541,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -135704,29 +137572,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [96492] = 5, + [97589] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1112), 2, + STATE(1119), 2, sym_comment, sym_include, - ACTIONS(222), 3, + ACTIONS(178), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(224), 47, + ACTIONS(180), 48, 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, @@ -135735,6 +137602,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -135764,29 +137633,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [96557] = 5, + [97655] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1113), 2, + STATE(1120), 2, sym_comment, sym_include, - ACTIONS(194), 3, + ACTIONS(222), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(196), 47, + ACTIONS(224), 48, 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, @@ -135795,6 +137663,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -135824,29 +137694,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [96622] = 5, + [97721] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1114), 2, + STATE(1121), 2, sym_comment, sym_include, - ACTIONS(83), 3, + ACTIONS(218), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(85), 47, + ACTIONS(220), 48, 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, @@ -135855,6 +137724,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -135884,100 +137755,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [96687] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(807), 1, - sym__logical_operator, - STATE(808), 1, - sym__additive_operator, - STATE(827), 1, - sym__multiplicative_operator, - STATE(829), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2400), 2, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - STATE(1115), 2, - sym_comment, - sym_include, - ACTIONS(2396), 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(2398), 21, - sym__terminator, - aux_sym_type_tuning_token2, - aux_sym_variable_tuning_token4, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [96774] = 5, + [97787] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1116), 2, + STATE(1122), 2, sym_comment, sym_include, - ACTIONS(132), 3, + ACTIONS(238), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(134), 47, + ACTIONS(240), 48, 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, @@ -135986,6 +137785,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -136015,96 +137816,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [96839] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(807), 1, - sym__logical_operator, - STATE(808), 1, - sym__additive_operator, - STATE(827), 1, - sym__multiplicative_operator, - STATE(829), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1197), 2, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1117), 2, - sym_comment, - sym_include, - ACTIONS(2396), 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(1199), 21, - sym__terminator, - aux_sym_type_tuning_token2, - aux_sym_variable_tuning_token4, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [96926] = 5, + [97853] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1118), 2, + STATE(1123), 2, sym_comment, sym_include, - ACTIONS(158), 3, + ACTIONS(108), 4, + sym__namedot, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(160), 47, + ACTIONS(110), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -136152,94 +137881,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [96991] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(807), 1, - sym__logical_operator, - STATE(808), 1, - sym__additive_operator, - STATE(827), 1, - sym__multiplicative_operator, - STATE(829), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1201), 2, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1119), 2, - sym_comment, - sym_include, - ACTIONS(2396), 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(1203), 21, - sym__terminator, - aux_sym_type_tuning_token2, - aux_sym_variable_tuning_token4, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [97078] = 5, + [97919] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1120), 2, + STATE(1124), 2, sym_comment, sym_include, - ACTIONS(166), 3, + ACTIONS(230), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(168), 47, + ACTIONS(232), 48, 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, @@ -136248,6 +137907,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -136277,29 +137938,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [97143] = 5, + [97985] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1121), 2, + STATE(1125), 2, sym_comment, sym_include, - ACTIONS(170), 3, + ACTIONS(150), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(172), 47, + ACTIONS(152), 48, 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, @@ -136308,6 +137968,8 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, sym_date_literal, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, @@ -136337,18 +137999,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_case_conditon_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [97208] = 5, + [98051] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1122), 2, + STATE(1126), 2, sym_comment, sym_include, ACTIONS(178), 3, @@ -136403,19 +138063,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [97273] = 5, + [98116] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1123), 2, + STATE(1127), 2, sym_comment, sym_include, - ACTIONS(174), 3, + ACTIONS(85), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(176), 47, + ACTIONS(87), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -136463,19 +138123,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [97338] = 5, + [98181] = 16, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(933), 1, + sym__comparison_operator, + STATE(934), 1, + sym__multiplicative_operator, + STATE(935), 1, + sym__additive_operator, + STATE(936), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1206), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1128), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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(1208), 21, + sym__terminator, + aux_sym_type_tuning_token2, + aux_sym_variable_tuning_token4, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [98268] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1124), 2, + STATE(1129), 2, sym_comment, sym_include, - ACTIONS(63), 3, + ACTIONS(242), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(69), 47, + ACTIONS(244), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -136523,19 +138254,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [97403] = 5, + [98333] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1125), 2, + STATE(1130), 2, sym_comment, sym_include, - ACTIONS(240), 3, + ACTIONS(234), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(242), 47, + ACTIONS(236), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -136583,19 +138314,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [97468] = 5, + [98398] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(933), 1, + sym__comparison_operator, + STATE(934), 1, + sym__multiplicative_operator, + STATE(935), 1, + sym__additive_operator, + STATE(936), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1210), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1131), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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(1212), 23, + sym__or_operator, + sym__and_operator, + sym__terminator, + aux_sym_type_tuning_token2, + aux_sym_variable_tuning_token4, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [98483] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1126), 2, + STATE(1132), 2, sym_comment, sym_include, - ACTIONS(106), 3, + ACTIONS(246), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(108), 47, + ACTIONS(248), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -136643,19 +138444,151 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [97533] = 5, + [98548] = 10, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(933), 1, + sym__comparison_operator, + STATE(934), 1, + sym__multiplicative_operator, + STATE(935), 1, + sym__additive_operator, + STATE(936), 1, + sym__logical_operator, + STATE(1133), 2, + sym_comment, + sym_include, + ACTIONS(1214), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(1216), 40, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + sym__terminator, + aux_sym_type_tuning_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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_token4, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [98623] = 12, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(933), 1, + sym__comparison_operator, + STATE(934), 1, + sym__multiplicative_operator, + STATE(935), 1, + sym__additive_operator, + STATE(936), 1, + sym__logical_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + STATE(1134), 2, + sym_comment, + sym_include, + ACTIONS(1119), 4, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(1121), 38, + sym__or_operator, + sym__and_operator, + sym__terminator, + aux_sym_type_tuning_token2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_variable_tuning_token4, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [98702] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1127), 2, + STATE(1135), 2, sym_comment, sym_include, - ACTIONS(190), 3, + ACTIONS(150), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(192), 47, + ACTIONS(152), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -136703,19 +138636,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [97598] = 5, + [98767] = 16, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(933), 1, + sym__comparison_operator, + STATE(934), 1, + sym__multiplicative_operator, + STATE(935), 1, + sym__additive_operator, + STATE(936), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1194), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1136), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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(1196), 21, + sym__terminator, + aux_sym_type_tuning_token2, + aux_sym_variable_tuning_token4, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [98854] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1128), 2, + STATE(1137), 2, sym_comment, sym_include, - ACTIONS(202), 3, + ACTIONS(170), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(204), 47, + ACTIONS(172), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -136763,42 +138767,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [97663] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [98919] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(807), 1, - sym__logical_operator, - STATE(808), 1, - sym__additive_operator, - STATE(827), 1, - sym__multiplicative_operator, - STATE(829), 1, + STATE(933), 1, sym__comparison_operator, - ACTIONS(1079), 2, + STATE(934), 1, + sym__multiplicative_operator, + STATE(935), 1, + sym__additive_operator, + STATE(936), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(1104), 2, + ACTIONS(1115), 2, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1129), 2, + STATE(1138), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -136812,7 +138816,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(1106), 21, + ACTIONS(1117), 21, sym__terminator, aux_sym_type_tuning_token2, aux_sym_variable_tuning_token4, @@ -136834,19 +138838,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [97750] = 5, + [99006] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1130), 2, + STATE(1139), 2, sym_comment, sym_include, - ACTIONS(206), 3, + ACTIONS(182), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(208), 47, + ACTIONS(184), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -136894,19 +138898,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [97815] = 5, + [99071] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1131), 2, + STATE(1140), 2, sym_comment, sym_include, - ACTIONS(218), 3, + ACTIONS(206), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(220), 47, + ACTIONS(208), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -136954,19 +138958,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [97880] = 5, + [99136] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1132), 2, + STATE(1141), 2, sym_comment, sym_include, - ACTIONS(244), 3, + ACTIONS(65), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(246), 47, + ACTIONS(71), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -137014,19 +139018,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [97945] = 5, + [99201] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1133), 2, + STATE(1142), 2, sym_comment, sym_include, - ACTIONS(214), 3, + ACTIONS(210), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(216), 47, + ACTIONS(212), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -137074,83 +139078,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [98010] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(807), 1, - sym__logical_operator, - STATE(808), 1, - sym__additive_operator, - STATE(827), 1, - sym__multiplicative_operator, - STATE(829), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1100), 2, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1134), 2, - sym_comment, - sym_include, - ACTIONS(2396), 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(1102), 21, - sym__terminator, - aux_sym_type_tuning_token2, - aux_sym_variable_tuning_token4, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [98097] = 5, + [99266] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1135), 2, + STATE(1143), 2, sym_comment, sym_include, ACTIONS(226), 3, @@ -137205,19 +139138,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [98162] = 5, + [99331] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1136), 2, + STATE(1144), 2, sym_comment, sym_include, - ACTIONS(162), 3, + ACTIONS(134), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(164), 47, + ACTIONS(136), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -137265,48 +139198,116 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [98227] = 5, - ACTIONS(3), 1, + [99396] = 16, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - STATE(1137), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(933), 1, + sym__comparison_operator, + STATE(934), 1, + sym__multiplicative_operator, + STATE(935), 1, + sym__additive_operator, + STATE(936), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1198), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1145), 2, sym_comment, sym_include, - ACTIONS(198), 3, + ACTIONS(2409), 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(1200), 21, + sym__terminator, + aux_sym_type_tuning_token2, + aux_sym_variable_tuning_token4, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [99483] = 16, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(933), 1, + sym__comparison_operator, + STATE(934), 1, + sym__multiplicative_operator, + STATE(935), 1, + sym__additive_operator, + STATE(936), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - sym__escaped_string, - ACTIONS(200), 47, - anon_sym_SLASH, - anon_sym_LBRACE, - sym_identifier, + ACTIONS(1202), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(2405), 2, anon_sym_STAR, - 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(1146), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -137317,27 +139318,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_case_conditon_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [98292] = 5, + ACTIONS(1204), 21, + sym__terminator, + aux_sym_type_tuning_token2, + aux_sym_variable_tuning_token4, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [99570] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1138), 2, + STATE(1147), 2, sym_comment, sym_include, - ACTIONS(186), 3, + ACTIONS(198), 3, sym__or_operator, sym__and_operator, sym__escaped_string, - ACTIONS(188), 47, + ACTIONS(200), 47, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -137385,42 +139400,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [98357] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [99635] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(807), 1, - sym__logical_operator, - STATE(808), 1, - sym__additive_operator, - STATE(827), 1, - sym__multiplicative_operator, - STATE(829), 1, + STATE(933), 1, sym__comparison_operator, - ACTIONS(2392), 2, + STATE(934), 1, + sym__multiplicative_operator, + STATE(935), 1, + sym__additive_operator, + STATE(936), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1139), 2, - sym_comment, - sym_include, - ACTIONS(1177), 4, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2413), 2, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(1179), 36, - sym__or_operator, - sym__and_operator, - sym__terminator, - aux_sym_type_tuning_token2, + STATE(1148), 2, + sym_comment, + sym_include, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -137434,6 +139449,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + ACTIONS(2411), 21, + sym__terminator, + aux_sym_type_tuning_token2, aux_sym_variable_tuning_token4, aux_sym_image_phrase_token2, aux_sym_size_phrase_token2, @@ -137453,44 +139471,108 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [98438] = 12, - ACTIONS(65), 1, + [99722] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, + STATE(1149), 2, + sym_comment, + sym_include, + ACTIONS(222), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(224), 47, anon_sym_SLASH, - STATE(807), 1, - sym__logical_operator, - STATE(808), 1, - sym__additive_operator, - STATE(827), 1, - sym__multiplicative_operator, - STATE(829), 1, - sym__comparison_operator, - ACTIONS(2392), 2, + anon_sym_LBRACE, + sym_identifier, anon_sym_STAR, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, aux_sym__multiplicative_operator_token1, - STATE(1140), 2, - sym_comment, - sym_include, - ACTIONS(1205), 4, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(1207), 38, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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_if_statement_token2, + aux_sym_case_conditon_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [99787] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1150), 2, + sym_comment, + sym_include, + ACTIONS(238), 3, sym__or_operator, sym__and_operator, - sym__terminator, - aux_sym_type_tuning_token2, + sym__escaped_string, + ACTIONS(240), 47, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, + aux_sym__multiplicative_operator_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, @@ -137501,58 +139583,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token4, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [98517] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [99852] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(807), 1, - sym__logical_operator, - STATE(808), 1, - sym__additive_operator, - STATE(827), 1, - sym__multiplicative_operator, - STATE(829), 1, - sym__comparison_operator, - STATE(1141), 2, - sym_comment, - sym_include, - ACTIONS(1193), 5, + ACTIONS(1086), 1, anon_sym_SLASH, + STATE(933), 1, + sym__comparison_operator, + STATE(934), 1, + sym__multiplicative_operator, + STATE(935), 1, + sym__additive_operator, + STATE(936), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(1195), 40, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, + ACTIONS(1111), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - aux_sym_type_tuning_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(1151), 2, + sym_comment, + sym_include, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -137566,6 +139640,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + ACTIONS(1113), 21, + sym__terminator, + aux_sym_type_tuning_token2, aux_sym_variable_tuning_token4, aux_sym_image_phrase_token2, aux_sym_size_phrase_token2, @@ -137585,30 +139662,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [98592] = 9, + [99939] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2402), 1, - sym_identifier, - ACTIONS(2404), 1, - aux_sym_input_expression_token2, - STATE(243), 1, - sym_qualified_name, - ACTIONS(1351), 2, - sym__or_operator, - sym__and_operator, - STATE(1142), 2, + STATE(1152), 2, sym_comment, sym_include, - ACTIONS(1347), 43, + ACTIONS(218), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(220), 47, anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, anon_sym_STAR, - sym__terminator, - aux_sym_type_tuning_token2, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -137627,57 +139714,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token4, - aux_sym_image_phrase_token1, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token1, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [98664] = 8, - ACTIONS(3), 1, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [100004] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2406), 1, - sym_identifier, - STATE(285), 1, - sym_qualified_name, - ACTIONS(1366), 2, - sym__or_operator, - sym__and_operator, - STATE(1143), 2, - sym_comment, - sym_include, - ACTIONS(1364), 43, + ACTIONS(1086), 1, anon_sym_SLASH, + STATE(933), 1, + sym__comparison_operator, + STATE(934), 1, + sym__multiplicative_operator, + STATE(935), 1, + sym__additive_operator, + STATE(936), 1, + sym__logical_operator, + ACTIONS(232), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - aux_sym_type_tuning_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(1153), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -137688,10 +139768,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + ACTIONS(230), 23, + sym__or_operator, + sym__and_operator, + sym__terminator, + aux_sym_type_tuning_token2, aux_sym_variable_tuning_token4, - aux_sym_image_phrase_token1, aux_sym_image_phrase_token2, - aux_sym_size_phrase_token1, aux_sym_size_phrase_token2, aux_sym_size_phrase_token3, aux_sym_button_tuning_token1, @@ -137709,68 +139792,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [98733] = 20, - ACTIONS(65), 1, + [100089] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(2408), 1, - sym__terminator, - ACTIONS(2414), 1, - aux_sym_input_stream_tuning_token9, - STATE(656), 1, - sym__logical_operator, - STATE(657), 1, - sym__additive_operator, - STATE(659), 1, - sym__multiplicative_operator, - STATE(660), 1, - sym__comparison_operator, - STATE(3123), 1, - aux_sym_output_stream_statement_repeat1, - STATE(3195), 1, - sym_output_stream_tuning, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + STATE(1154), 2, + sym_comment, + sym_include, + ACTIONS(123), 3, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + sym__escaped_string, + ACTIONS(125), 47, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + sym__integer_literal, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, - STATE(1144), 2, - sym_comment, - sym_include, - ACTIONS(2412), 4, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - aux_sym_output_stream_tuning_token1, - aux_sym_output_stream_tuning_token7, - ACTIONS(2410), 12, - aux_sym__function_argument_with_mode_token4, - 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, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -137781,68 +139844,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [98825] = 20, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [100154] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(2414), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2416), 1, - sym__terminator, - STATE(656), 1, - sym__logical_operator, - STATE(657), 1, - sym__additive_operator, - STATE(659), 1, - sym__multiplicative_operator, - STATE(660), 1, - sym__comparison_operator, - STATE(3114), 1, - aux_sym_output_stream_statement_repeat1, - STATE(3195), 1, - sym_output_stream_tuning, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + STATE(1155), 2, + sym_comment, + sym_include, + ACTIONS(174), 3, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + sym__escaped_string, + ACTIONS(176), 47, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + sym__integer_literal, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, - STATE(1145), 2, - sym_comment, - sym_include, - ACTIONS(2412), 4, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - aux_sym_output_stream_tuning_token1, - aux_sym_output_stream_tuning_token7, - ACTIONS(2410), 12, - aux_sym__function_argument_with_mode_token4, - 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, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -137853,33 +139904,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [98917] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [100219] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2418), 1, - anon_sym_NO_DASHERROR, - STATE(1146), 2, - sym_comment, - sym_include, - ACTIONS(250), 5, + ACTIONS(1086), 1, anon_sym_SLASH, + STATE(933), 1, + sym__comparison_operator, + STATE(934), 1, + sym__multiplicative_operator, + STATE(935), 1, + sym__additive_operator, + STATE(936), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(248), 40, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, + ACTIONS(1123), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - aux_sym_type_tuning_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(1156), 2, + sym_comment, + sym_include, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -137893,6 +139961,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + ACTIONS(1125), 21, + sym__terminator, + aux_sym_type_tuning_token2, aux_sym_variable_tuning_token4, aux_sym_image_phrase_token2, aux_sym_size_phrase_token2, @@ -137912,68 +139983,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [98983] = 20, - ACTIONS(65), 1, + [100306] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(2414), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2420), 1, - sym__terminator, - STATE(656), 1, - sym__logical_operator, - STATE(657), 1, - sym__additive_operator, - STATE(659), 1, - sym__multiplicative_operator, - STATE(660), 1, - sym__comparison_operator, - STATE(3127), 1, - aux_sym_output_stream_statement_repeat1, - STATE(3195), 1, - sym_output_stream_tuning, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + STATE(1157), 2, + sym_comment, + sym_include, + ACTIONS(194), 3, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + sym__escaped_string, + ACTIONS(196), 47, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + sym__integer_literal, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, - STATE(1147), 2, - sym_comment, - sym_include, - ACTIONS(2412), 4, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - aux_sym_output_stream_tuning_token1, - aux_sym_output_stream_tuning_token7, - ACTIONS(2410), 12, - aux_sym__function_argument_with_mode_token4, - 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, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -137984,68 +140035,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [99075] = 20, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [100371] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(2414), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2422), 1, - sym__terminator, - STATE(656), 1, - sym__logical_operator, - STATE(657), 1, - sym__additive_operator, - STATE(659), 1, - sym__multiplicative_operator, - STATE(660), 1, - sym__comparison_operator, - STATE(3111), 1, - aux_sym_output_stream_statement_repeat1, - STATE(3195), 1, - sym_output_stream_tuning, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + STATE(1158), 2, + sym_comment, + sym_include, + ACTIONS(214), 3, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + sym__escaped_string, + ACTIONS(216), 47, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + sym__integer_literal, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, - STATE(1148), 2, - sym_comment, - sym_include, - ACTIONS(2412), 4, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - aux_sym_output_stream_tuning_token1, - aux_sym_output_stream_tuning_token7, - ACTIONS(2410), 12, - aux_sym__function_argument_with_mode_token4, - 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, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -138056,68 +140095,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [99167] = 20, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [100436] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(2414), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2424), 1, - sym__terminator, - STATE(656), 1, - sym__logical_operator, - STATE(657), 1, - sym__additive_operator, - STATE(659), 1, - sym__multiplicative_operator, - STATE(660), 1, - sym__comparison_operator, - STATE(3126), 1, - aux_sym_output_stream_statement_repeat1, - STATE(3195), 1, - sym_output_stream_tuning, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + STATE(1159), 2, + sym_comment, + sym_include, + ACTIONS(186), 3, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + sym__escaped_string, + ACTIONS(188), 47, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + sym__integer_literal, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, - STATE(1149), 2, - sym_comment, - sym_include, - ACTIONS(2412), 4, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - aux_sym_output_stream_tuning_token1, - aux_sym_output_stream_tuning_token7, - ACTIONS(2410), 12, - aux_sym__function_argument_with_mode_token4, - 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, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -138128,31 +140155,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [99259] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [100501] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1150), 2, - sym_comment, - sym_include, - ACTIONS(148), 5, + ACTIONS(1086), 1, anon_sym_SLASH, + STATE(933), 1, + sym__comparison_operator, + STATE(934), 1, + sym__multiplicative_operator, + STATE(935), 1, + sym__additive_operator, + STATE(936), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(146), 41, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, + ACTIONS(1190), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - aux_sym_type_tuning_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(1160), 2, + sym_comment, + sym_include, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -138166,8 +140212,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(1192), 21, + sym__terminator, + aux_sym_type_tuning_token2, aux_sym_variable_tuning_token4, - anon_sym_NO_DASHERROR, aux_sym_image_phrase_token2, aux_sym_size_phrase_token2, aux_sym_size_phrase_token3, @@ -138186,140 +140234,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [99323] = 20, - ACTIONS(65), 1, + [100588] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(2414), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2426), 1, - sym__terminator, - STATE(656), 1, - sym__logical_operator, - STATE(657), 1, - sym__additive_operator, - STATE(659), 1, - sym__multiplicative_operator, - STATE(660), 1, - sym__comparison_operator, - STATE(3113), 1, - aux_sym_output_stream_statement_repeat1, - STATE(3195), 1, - sym_output_stream_tuning, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1151), 2, + STATE(1161), 2, sym_comment, sym_include, - ACTIONS(2412), 4, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - aux_sym_output_stream_tuning_token1, - aux_sym_output_stream_tuning_token7, - ACTIONS(2410), 12, - aux_sym__function_argument_with_mode_token4, - 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, - ACTIONS(2396), 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, - [99415] = 20, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(2414), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2428), 1, - sym__terminator, - STATE(656), 1, - sym__logical_operator, - STATE(657), 1, - sym__additive_operator, - STATE(659), 1, - sym__multiplicative_operator, - STATE(660), 1, - sym__comparison_operator, - STATE(3117), 1, - aux_sym_output_stream_statement_repeat1, - STATE(3195), 1, - sym_output_stream_tuning, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(230), 3, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + sym__escaped_string, + ACTIONS(232), 47, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + sym__integer_literal, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, - STATE(1152), 2, - sym_comment, - sym_include, - ACTIONS(2412), 4, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - aux_sym_output_stream_tuning_token1, - aux_sym_output_stream_tuning_token7, - ACTIONS(2410), 12, - aux_sym__function_argument_with_mode_token4, - 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, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -138330,23 +140286,335 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [99507] = 6, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [100653] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(1153), 2, + STATE(1162), 2, sym_comment, sym_include, - ACTIONS(152), 5, + ACTIONS(190), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(192), 47, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [100718] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1163), 2, + sym_comment, + sym_include, + ACTIONS(202), 3, + sym__or_operator, + sym__and_operator, + sym__escaped_string, + ACTIONS(204), 47, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [100783] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2415), 1, + sym_identifier, + ACTIONS(2417), 1, + aux_sym_input_expression_token2, + STATE(320), 1, + sym_qualified_name, + ACTIONS(1358), 2, + sym__or_operator, + sym__and_operator, + STATE(1164), 2, + sym_comment, + sym_include, + ACTIONS(1354), 43, + anon_sym_SLASH, + anon_sym_STAR, + sym__terminator, + aux_sym_type_tuning_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_variable_tuning_token4, + aux_sym_image_phrase_token1, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token1, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [100855] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2419), 1, + sym_identifier, + STATE(326), 1, + sym_qualified_name, + ACTIONS(1581), 2, + sym__or_operator, + sym__and_operator, + STATE(1165), 2, + sym_comment, + sym_include, + ACTIONS(1579), 43, + anon_sym_SLASH, + anon_sym_STAR, + sym__terminator, + aux_sym_type_tuning_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_variable_tuning_token4, + aux_sym_image_phrase_token1, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token1, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [100924] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(1166), 2, + sym_comment, + sym_include, + ACTIONS(117), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(115), 42, + sym__namecolon, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + sym__terminator, + aux_sym_type_tuning_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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_token4, + anon_sym_NO_DASHERROR, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [100989] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(1167), 2, + sym_comment, + sym_include, + ACTIONS(144), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - ACTIONS(150), 41, + ACTIONS(142), 42, + sym__namecolon, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -138388,52 +140656,171 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [99571] = 20, - ACTIONS(65), 1, + [101054] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(1168), 2, + sym_comment, + sym_include, + ACTIONS(140), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(138), 42, + sym__namecolon, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + sym__terminator, + aux_sym_type_tuning_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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_token4, + anon_sym_NO_DASHERROR, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [101119] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(2421), 1, + anon_sym_NO_DASHERROR, + STATE(1169), 2, + sym_comment, + sym_include, + ACTIONS(393), 5, anon_sym_SLASH, - ACTIONS(2414), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2430), 1, + anon_sym_LT, + anon_sym_GT, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(391), 41, + sym__namecolon, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, sym__terminator, - STATE(656), 1, + aux_sym_type_tuning_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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_token4, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [101186] = 20, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(2423), 1, + sym__terminator, + ACTIONS(2429), 1, + aux_sym_input_stream_tuning_token9, + STATE(638), 1, sym__logical_operator, - STATE(657), 1, + STATE(640), 1, sym__additive_operator, - STATE(659), 1, + STATE(642), 1, sym__multiplicative_operator, - STATE(660), 1, + STATE(643), 1, sym__comparison_operator, - STATE(3122), 1, + STATE(3167), 1, aux_sym_output_stream_statement_repeat1, - STATE(3195), 1, + STATE(3211), 1, sym_output_stream_tuning, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1154), 2, + STATE(1170), 2, sym_comment, sym_include, - ACTIONS(2412), 4, + ACTIONS(2427), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token7, - ACTIONS(2410), 12, + ACTIONS(2425), 12, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, @@ -138446,7 +140833,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token4, aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -138460,52 +140847,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [99663] = 20, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [101278] = 20, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2414), 1, + ACTIONS(2429), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2432), 1, + ACTIONS(2431), 1, sym__terminator, - STATE(656), 1, + STATE(638), 1, sym__logical_operator, - STATE(657), 1, + STATE(640), 1, sym__additive_operator, - STATE(659), 1, + STATE(642), 1, sym__multiplicative_operator, - STATE(660), 1, + STATE(643), 1, sym__comparison_operator, - STATE(3121), 1, + STATE(3166), 1, aux_sym_output_stream_statement_repeat1, - STATE(3195), 1, + STATE(3211), 1, sym_output_stream_tuning, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1155), 2, + STATE(1171), 2, sym_comment, sym_include, - ACTIONS(2412), 4, + ACTIONS(2427), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token7, - ACTIONS(2410), 12, + ACTIONS(2425), 12, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, @@ -138518,7 +140905,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token4, aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -138532,31 +140919,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [99755] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [101370] = 20, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1156), 2, - sym_comment, - sym_include, - ACTIONS(140), 5, + ACTIONS(1086), 1, anon_sym_SLASH, + ACTIONS(2429), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2433), 1, + sym__terminator, + STATE(638), 1, + sym__logical_operator, + STATE(640), 1, + sym__additive_operator, + STATE(642), 1, + sym__multiplicative_operator, + STATE(643), 1, + sym__comparison_operator, + STATE(3179), 1, + aux_sym_output_stream_statement_repeat1, + STATE(3211), 1, + sym_output_stream_tuning, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(138), 41, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - aux_sym_type_tuning_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(1172), 2, + sym_comment, + sym_include, + ACTIONS(2427), 4, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + aux_sym_output_stream_tuning_token1, + aux_sym_output_stream_tuning_token7, + ACTIONS(2425), 12, + aux_sym__function_argument_with_mode_token4, + 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, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -138570,72 +140991,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token4, - anon_sym_NO_DASHERROR, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [99819] = 20, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [101462] = 20, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2414), 1, + ACTIONS(2429), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2434), 1, + ACTIONS(2435), 1, sym__terminator, - STATE(656), 1, + STATE(638), 1, sym__logical_operator, - STATE(657), 1, + STATE(640), 1, sym__additive_operator, - STATE(659), 1, + STATE(642), 1, sym__multiplicative_operator, - STATE(660), 1, + STATE(643), 1, sym__comparison_operator, - STATE(3109), 1, + STATE(3187), 1, aux_sym_output_stream_statement_repeat1, - STATE(3195), 1, + STATE(3211), 1, sym_output_stream_tuning, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1157), 2, + STATE(1173), 2, sym_comment, sym_include, - ACTIONS(2412), 4, + ACTIONS(2427), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token7, - ACTIONS(2410), 12, + ACTIONS(2425), 12, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, @@ -138648,7 +141049,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token4, aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -138662,41 +141063,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [99911] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [101554] = 20, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2438), 1, - aux_sym_input_stream_tuning_token11, - STATE(881), 1, - sym__comparison_operator, - STATE(882), 1, - sym__multiplicative_operator, - STATE(883), 1, - sym__additive_operator, - STATE(884), 1, + ACTIONS(2429), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2437), 1, + sym__terminator, + STATE(638), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(640), 1, + sym__additive_operator, + STATE(642), 1, + sym__multiplicative_operator, + STATE(643), 1, + sym__comparison_operator, + STATE(3183), 1, + aux_sym_output_stream_statement_repeat1, + STATE(3211), 1, + sym_output_stream_tuning, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1158), 2, + STATE(1174), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2427), 4, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + aux_sym_output_stream_tuning_token1, + aux_sym_output_stream_tuning_token7, + ACTIONS(2425), 12, + aux_sym__function_argument_with_mode_token4, + 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, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -138710,55 +141135,137 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(2436), 18, + [101646] = 20, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(2429), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2439), 1, sym__terminator, - aux_sym__function_argument_with_mode_token4, + STATE(638), 1, + sym__logical_operator, + STATE(640), 1, + sym__additive_operator, + STATE(642), 1, + sym__multiplicative_operator, + STATE(643), 1, + sym__comparison_operator, + STATE(3192), 1, + aux_sym_output_stream_statement_repeat1, + STATE(3211), 1, + sym_output_stream_tuning, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1175), 2, + sym_comment, + sym_include, + ACTIONS(2427), 4, aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + aux_sym_output_stream_tuning_token1, + aux_sym_output_stream_tuning_token7, + ACTIONS(2425), 12, + aux_sym__function_argument_with_mode_token4, 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, - [99994] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2409), 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, + [101738] = 20, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(881), 1, - sym__comparison_operator, - STATE(882), 1, - sym__multiplicative_operator, - STATE(883), 1, - sym__additive_operator, - STATE(884), 1, + ACTIONS(2429), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2441), 1, + sym__terminator, + STATE(638), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(640), 1, + sym__additive_operator, + STATE(642), 1, + sym__multiplicative_operator, + STATE(643), 1, + sym__comparison_operator, + STATE(3177), 1, + aux_sym_output_stream_statement_repeat1, + STATE(3211), 1, + sym_output_stream_tuning, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1159), 2, + STATE(1176), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2427), 4, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + aux_sym_output_stream_tuning_token1, + aux_sym_output_stream_tuning_token7, + ACTIONS(2425), 12, + aux_sym__function_argument_with_mode_token4, + 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, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -138772,61 +141279,137 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(236), 21, + [101830] = 20, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(2429), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2443), 1, + sym__terminator, + STATE(638), 1, + sym__logical_operator, + STATE(640), 1, + sym__additive_operator, + STATE(642), 1, + sym__multiplicative_operator, + STATE(643), 1, + sym__comparison_operator, + STATE(3178), 1, + aux_sym_output_stream_statement_repeat1, + STATE(3211), 1, + sym_output_stream_tuning, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - sym__terminator, - aux_sym__function_argument_with_mode_token4, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1177), 2, + sym_comment, + sym_include, + ACTIONS(2427), 4, aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + aux_sym_output_stream_tuning_token1, + aux_sym_output_stream_tuning_token7, + ACTIONS(2425), 12, + aux_sym__function_argument_with_mode_token4, 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_input_stream_tuning_token11, - 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, - [100073] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2409), 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, + [101922] = 20, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(881), 1, - sym__comparison_operator, - STATE(882), 1, - sym__multiplicative_operator, - STATE(883), 1, - sym__additive_operator, - STATE(884), 1, + ACTIONS(2429), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2445), 1, + sym__terminator, + STATE(638), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(640), 1, + sym__additive_operator, + STATE(642), 1, + sym__multiplicative_operator, + STATE(643), 1, + sym__comparison_operator, + STATE(3173), 1, + aux_sym_output_stream_statement_repeat1, + STATE(3211), 1, + sym_output_stream_tuning, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1160), 2, + STATE(1178), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2427), 4, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + aux_sym_output_stream_tuning_token1, + aux_sym_output_stream_tuning_token7, + ACTIONS(2425), 12, + aux_sym__function_argument_with_mode_token4, + 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, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -138840,56 +141423,111 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(1102), 19, + [102014] = 20, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(2429), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2447), 1, sym__terminator, - aux_sym__function_argument_with_mode_token4, + STATE(638), 1, + sym__logical_operator, + STATE(640), 1, + sym__additive_operator, + STATE(642), 1, + sym__multiplicative_operator, + STATE(643), 1, + sym__comparison_operator, + STATE(3170), 1, + aux_sym_output_stream_statement_repeat1, + STATE(3211), 1, + sym_output_stream_tuning, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1179), 2, + sym_comment, + sym_include, + ACTIONS(2427), 4, aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + aux_sym_output_stream_tuning_token1, + aux_sym_output_stream_tuning_token7, + ACTIONS(2425), 12, + aux_sym__function_argument_with_mode_token4, 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_input_stream_tuning_token11, - 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, - [100154] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2409), 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, + [102106] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(881), 1, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(836), 1, sym__comparison_operator, - STATE(882), 1, + STATE(837), 1, sym__multiplicative_operator, - STATE(883), 1, + STATE(838), 1, sym__additive_operator, - STATE(884), 1, + STATE(839), 1, sym__logical_operator, - STATE(1161), 2, - sym_comment, - sym_include, - ACTIONS(1193), 3, - anon_sym_SLASH, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1195), 38, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(1180), 2, + sym_comment, + sym_include, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -138903,6 +141541,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(1196), 19, + sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -138921,39 +141561,39 @@ 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, - [100225] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [102187] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(881), 1, + STATE(836), 1, sym__comparison_operator, - STATE(882), 1, + STATE(837), 1, sym__multiplicative_operator, - STATE(883), 1, + STATE(838), 1, sym__additive_operator, - STATE(884), 1, + STATE(839), 1, sym__logical_operator, - ACTIONS(1177), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1162), 2, + STATE(1181), 2, sym_comment, sym_include, - ACTIONS(1179), 34, - sym__or_operator, - sym__and_operator, - sym__terminator, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -138967,6 +141607,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(1200), 19, + sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -138985,39 +141627,36 @@ 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, - [100302] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [102268] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(881), 1, + STATE(836), 1, sym__comparison_operator, - STATE(882), 1, + STATE(837), 1, sym__multiplicative_operator, - STATE(883), 1, + STATE(838), 1, sym__additive_operator, - STATE(884), 1, + STATE(839), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1163), 2, + STATE(1182), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -139031,7 +141670,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(1203), 19, + ACTIONS(1212), 21, + sym__or_operator, + sym__and_operator, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -139051,39 +141692,36 @@ 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, - [100383] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [102347] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(881), 1, + STATE(836), 1, sym__comparison_operator, - STATE(882), 1, + STATE(837), 1, sym__multiplicative_operator, - STATE(883), 1, + STATE(838), 1, sym__additive_operator, - STATE(884), 1, + STATE(839), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1164), 2, + STATE(1183), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -139097,7 +141735,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(1183), 19, + ACTIONS(230), 21, + sym__or_operator, + sym__and_operator, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -139117,38 +141757,39 @@ 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, - [100464] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [102426] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(881), 1, + STATE(836), 1, sym__comparison_operator, - STATE(882), 1, + STATE(837), 1, sym__multiplicative_operator, - STATE(883), 1, + STATE(838), 1, sym__additive_operator, - STATE(884), 1, + STATE(839), 1, sym__logical_operator, - ACTIONS(1205), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(1165), 2, - sym_comment, - sym_include, - ACTIONS(1207), 36, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - sym__terminator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1184), 2, + sym_comment, + sym_include, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -139162,6 +141803,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(1204), 19, + sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -139180,39 +141823,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, - [100539] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [102507] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(881), 1, + ACTIONS(2451), 1, + aux_sym_input_stream_tuning_token11, + STATE(836), 1, sym__comparison_operator, - STATE(882), 1, + STATE(837), 1, sym__multiplicative_operator, - STATE(883), 1, + STATE(838), 1, sym__additive_operator, - STATE(884), 1, + STATE(839), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1166), 2, + STATE(1185), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -139226,7 +141871,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(1112), 19, + ACTIONS(2449), 18, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -139238,7 +141883,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, aux_sym_input_stream_tuning_token9, - aux_sym_input_stream_tuning_token11, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token2, aux_sym_output_stream_tuning_token3, @@ -139246,39 +141890,36 @@ 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, - [100620] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [102590] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(881), 1, + STATE(836), 1, sym__comparison_operator, - STATE(882), 1, + STATE(837), 1, sym__multiplicative_operator, - STATE(883), 1, + STATE(838), 1, sym__additive_operator, - STATE(884), 1, + STATE(839), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(1186), 2, + sym_comment, + sym_include, + ACTIONS(1214), 3, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1216), 38, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1167), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -139292,8 +141933,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(1199), 19, - sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -139312,39 +141951,38 @@ 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, - [100701] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [102661] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(881), 1, + STATE(836), 1, sym__comparison_operator, - STATE(882), 1, + STATE(837), 1, sym__multiplicative_operator, - STATE(883), 1, + STATE(838), 1, sym__additive_operator, - STATE(884), 1, + STATE(839), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1119), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1168), 2, + STATE(1187), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(1121), 36, + sym__or_operator, + sym__and_operator, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -139358,8 +141996,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(1187), 19, - sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -139378,39 +142014,39 @@ 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, - [100782] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [102736] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(881), 1, + STATE(836), 1, sym__comparison_operator, - STATE(882), 1, + STATE(837), 1, sym__multiplicative_operator, - STATE(883), 1, + STATE(838), 1, sym__additive_operator, - STATE(884), 1, + STATE(839), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1169), 2, + STATE(1188), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -139424,7 +142060,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(1191), 19, + ACTIONS(1125), 19, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -139444,39 +142080,39 @@ 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, - [100863] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [102817] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(881), 1, + STATE(836), 1, sym__comparison_operator, - STATE(882), 1, + STATE(837), 1, sym__multiplicative_operator, - STATE(883), 1, + STATE(838), 1, sym__additive_operator, - STATE(884), 1, + STATE(839), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1170), 2, + STATE(1189), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -139490,7 +142126,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(1106), 19, + ACTIONS(1113), 19, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -139510,39 +142146,39 @@ 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, - [100944] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [102898] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(656), 1, - sym__logical_operator, - STATE(657), 1, - sym__additive_operator, - STATE(659), 1, - sym__multiplicative_operator, - STATE(660), 1, + STATE(836), 1, sym__comparison_operator, - ACTIONS(1079), 2, + STATE(837), 1, + sym__multiplicative_operator, + STATE(838), 1, + sym__additive_operator, + STATE(839), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1171), 2, + STATE(1190), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -139556,7 +142192,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(2436), 18, + ACTIONS(1192), 19, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -139568,6 +142204,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, aux_sym_input_stream_tuning_token9, + aux_sym_input_stream_tuning_token11, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token2, aux_sym_output_stream_tuning_token3, @@ -139575,36 +142212,39 @@ 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, - [101024] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [102979] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(656), 1, - sym__logical_operator, - STATE(657), 1, - sym__additive_operator, - STATE(659), 1, - sym__multiplicative_operator, - STATE(660), 1, + STATE(836), 1, sym__comparison_operator, - ACTIONS(1079), 2, + STATE(837), 1, + sym__multiplicative_operator, + STATE(838), 1, + sym__additive_operator, + STATE(839), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1172), 2, + STATE(1191), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -139618,9 +142258,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(236), 20, - sym__or_operator, - sym__and_operator, + ACTIONS(1208), 19, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -139632,6 +142270,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, aux_sym_input_stream_tuning_token9, + aux_sym_input_stream_tuning_token11, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token2, aux_sym_output_stream_tuning_token3, @@ -139639,39 +142278,39 @@ 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, - [101102] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [103060] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(656), 1, - sym__logical_operator, - STATE(657), 1, - sym__additive_operator, - STATE(659), 1, - sym__multiplicative_operator, - STATE(660), 1, + STATE(836), 1, sym__comparison_operator, - ACTIONS(1079), 2, + STATE(837), 1, + sym__multiplicative_operator, + STATE(838), 1, + sym__additive_operator, + STATE(839), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1173), 2, + STATE(1192), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -139685,7 +142324,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(1102), 18, + ACTIONS(1117), 19, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -139697,6 +142336,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, aux_sym_input_stream_tuning_token9, + aux_sym_input_stream_tuning_token11, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token2, aux_sym_output_stream_tuning_token3, @@ -139704,104 +142344,98 @@ 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, - [101182] = 15, - ACTIONS(65), 1, + [103141] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2440), 1, - anon_sym_LBRACK, - ACTIONS(2442), 1, - anon_sym_LPAREN, - ACTIONS(2444), 1, - sym__namedot, - ACTIONS(2446), 1, - sym__namecolon, - ACTIONS(2448), 1, - sym__namedoublecolon, - STATE(1258), 1, - aux_sym_object_access_repeat1, - STATE(1309), 1, - aux_sym_qualified_name_repeat1, - STATE(1311), 1, - aux_sym_member_access_repeat1, - STATE(1325), 1, - sym_function_arguments, - STATE(1174), 2, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(2455), 1, + aux_sym_input_expression_token2, + STATE(28), 1, + sym_qualified_name, + ACTIONS(1358), 2, + sym__or_operator, + sym__and_operator, + STATE(1193), 2, sym_comment, sym_include, - ACTIONS(69), 5, + ACTIONS(1354), 39, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(63), 30, - sym__or_operator, - sym__and_operator, anon_sym_STAR, sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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_variable_tuning_token1, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - [101262] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym__function_argument_with_mode_token4, + 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_input_stream_tuning_token11, + 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, + [103209] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(656), 1, + STATE(638), 1, sym__logical_operator, - STATE(657), 1, + STATE(640), 1, sym__additive_operator, - STATE(659), 1, + STATE(642), 1, sym__multiplicative_operator, - STATE(660), 1, + STATE(643), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1175), 2, + STATE(1194), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -139815,7 +142449,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(1106), 18, + ACTIONS(2457), 18, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -139834,39 +142468,39 @@ 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, - [101342] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [103289] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(656), 1, + STATE(638), 1, sym__logical_operator, - STATE(657), 1, + STATE(640), 1, sym__additive_operator, - STATE(659), 1, + STATE(642), 1, sym__multiplicative_operator, - STATE(660), 1, + STATE(643), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1176), 2, + STATE(1195), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -139880,7 +142514,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(1203), 18, + ACTIONS(2449), 18, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -139899,38 +142533,39 @@ 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, - [101422] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [103369] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(656), 1, + STATE(638), 1, sym__logical_operator, - STATE(657), 1, + STATE(640), 1, sym__additive_operator, - STATE(659), 1, + STATE(642), 1, sym__multiplicative_operator, - STATE(660), 1, + STATE(643), 1, sym__comparison_operator, - ACTIONS(1205), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(1177), 2, - sym_comment, - sym_include, - ACTIONS(1207), 35, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - sym__terminator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1196), 2, + sym_comment, + sym_include, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -139944,6 +142579,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(1196), 18, + sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -139961,39 +142598,39 @@ 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, - [101496] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [103449] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(656), 1, + STATE(638), 1, sym__logical_operator, - STATE(657), 1, + STATE(640), 1, sym__additive_operator, - STATE(659), 1, + STATE(642), 1, sym__multiplicative_operator, - STATE(660), 1, + STATE(643), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1178), 2, + STATE(1197), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -140007,7 +142644,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(2450), 18, + ACTIONS(1117), 18, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -140026,39 +142663,39 @@ 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, - [101576] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [103529] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(656), 1, + STATE(638), 1, sym__logical_operator, - STATE(657), 1, + STATE(640), 1, sym__additive_operator, - STATE(659), 1, + STATE(642), 1, sym__multiplicative_operator, - STATE(660), 1, + STATE(643), 1, sym__comparison_operator, - ACTIONS(1177), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1179), 2, + STATE(1198), 2, sym_comment, sym_include, - ACTIONS(1179), 33, - sym__or_operator, - sym__and_operator, - sym__terminator, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -140072,6 +142709,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(1200), 18, + sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -140089,37 +142728,42 @@ 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, - [101652] = 9, - ACTIONS(3), 1, + [103609] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(2454), 1, - aux_sym_input_expression_token2, - STATE(22), 1, - sym_qualified_name, - ACTIONS(1351), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(638), 1, + sym__logical_operator, + STATE(640), 1, + sym__additive_operator, + STATE(642), 1, + sym__multiplicative_operator, + STATE(643), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1180), 2, - sym_comment, - sym_include, - ACTIONS(1347), 39, - anon_sym_SLASH, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(1199), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -140130,6 +142774,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(1113), 18, + sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -140140,7 +142786,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, aux_sym_input_stream_tuning_token9, - aux_sym_input_stream_tuning_token11, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token2, aux_sym_output_stream_tuning_token3, @@ -140148,39 +142793,39 @@ 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, - [101720] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [103689] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(656), 1, + STATE(638), 1, sym__logical_operator, - STATE(657), 1, + STATE(640), 1, sym__additive_operator, - STATE(659), 1, + STATE(642), 1, sym__multiplicative_operator, - STATE(660), 1, + STATE(643), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1181), 2, + STATE(1200), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -140194,7 +142839,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(1191), 18, + ACTIONS(1204), 18, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -140213,39 +142858,38 @@ 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, - [101800] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [103769] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(656), 1, + STATE(638), 1, sym__logical_operator, - STATE(657), 1, + STATE(640), 1, sym__additive_operator, - STATE(659), 1, + STATE(642), 1, sym__multiplicative_operator, - STATE(660), 1, + STATE(643), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1119), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1182), 2, + STATE(1201), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(1121), 35, + sym__or_operator, + sym__and_operator, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -140259,8 +142903,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(2456), 18, - sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -140278,39 +142920,39 @@ 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, - [101880] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [103843] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(656), 1, + STATE(638), 1, sym__logical_operator, - STATE(657), 1, + STATE(640), 1, sym__additive_operator, - STATE(659), 1, + STATE(642), 1, sym__multiplicative_operator, - STATE(660), 1, + STATE(643), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1183), 2, + STATE(1202), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -140324,7 +142966,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(1187), 18, + ACTIONS(2459), 18, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -140343,39 +142985,36 @@ 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, - [101960] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [103923] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(656), 1, + STATE(638), 1, sym__logical_operator, - STATE(657), 1, + STATE(640), 1, sym__additive_operator, - STATE(659), 1, + STATE(642), 1, sym__multiplicative_operator, - STATE(660), 1, + STATE(643), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1184), 2, + STATE(1203), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -140389,7 +143028,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(1112), 18, + ACTIONS(1212), 20, + sym__or_operator, + sym__and_operator, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -140408,29 +143049,29 @@ 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, - [102040] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [104001] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(656), 1, + STATE(638), 1, sym__logical_operator, - STATE(657), 1, + STATE(640), 1, sym__additive_operator, - STATE(659), 1, + STATE(642), 1, sym__multiplicative_operator, - STATE(660), 1, + STATE(643), 1, sym__comparison_operator, - STATE(1185), 2, + STATE(1204), 2, sym_comment, sym_include, - ACTIONS(1193), 3, + ACTIONS(1214), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1195), 37, + ACTIONS(1216), 37, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -140468,39 +143109,39 @@ 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, - [102110] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [104071] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(656), 1, + STATE(638), 1, sym__logical_operator, - STATE(657), 1, + STATE(640), 1, sym__additive_operator, - STATE(659), 1, + STATE(642), 1, sym__multiplicative_operator, - STATE(660), 1, + STATE(643), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1186), 2, + STATE(1205), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -140514,7 +143155,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(1183), 18, + ACTIONS(1208), 18, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -140533,39 +143174,39 @@ 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, - [102190] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [104151] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(656), 1, + STATE(638), 1, sym__logical_operator, - STATE(657), 1, + STATE(640), 1, sym__additive_operator, - STATE(659), 1, + STATE(642), 1, sym__multiplicative_operator, - STATE(660), 1, + STATE(643), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1187), 2, + STATE(1206), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -140579,7 +143220,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(1199), 18, + ACTIONS(1192), 18, sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, @@ -140598,41 +143239,39 @@ 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, - [102270] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [104231] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1201), 1, - aux_sym_variable_tuning_token2, - STATE(846), 1, - sym__comparison_operator, - STATE(847), 1, - sym__multiplicative_operator, - STATE(848), 1, - sym__additive_operator, - STATE(849), 1, + STATE(638), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(640), 1, + sym__additive_operator, + STATE(642), 1, + sym__multiplicative_operator, + STATE(643), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1188), 2, + STATE(1207), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -140646,52 +143285,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(1203), 16, + ACTIONS(1125), 18, sym__terminator, - aux_sym_unary_expression_token2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_field_option_token1, - aux_sym_field_option_token2, - aux_sym_field_option_token3, - aux_sym_field_option_token4, - aux_sym_field_option_token5, - aux_sym_field_option_token6, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [102351] = 8, - ACTIONS(3), 1, + aux_sym__function_argument_with_mode_token4, + 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, + [104311] = 14, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2458), 1, - sym_identifier, - STATE(32), 1, - sym_qualified_name, - ACTIONS(1366), 2, - sym__or_operator, - sym__and_operator, - STATE(1189), 2, - sym_comment, - sym_include, - ACTIONS(1364), 39, + ACTIONS(1086), 1, anon_sym_SLASH, + STATE(638), 1, + sym__logical_operator, + STATE(640), 1, + sym__additive_operator, + STATE(642), 1, + sym__multiplicative_operator, + STATE(643), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(1208), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -140702,6 +143347,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(230), 20, + sym__or_operator, + sym__and_operator, + sym__terminator, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -140712,7 +143361,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, aux_sym_input_stream_tuning_token9, - aux_sym_input_stream_tuning_token11, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token2, aux_sym_output_stream_tuning_token3, @@ -140720,41 +143368,48 @@ 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, - [102416] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [104389] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(2461), 1, + anon_sym_LBRACK, + ACTIONS(2463), 1, + anon_sym_LPAREN, + ACTIONS(2465), 1, + sym__namedot, + ACTIONS(2467), 1, + sym__namecolon, + ACTIONS(2469), 1, + sym__namedoublecolon, + STATE(1285), 1, + aux_sym_object_access_repeat1, + STATE(1335), 1, + aux_sym_qualified_name_repeat1, + STATE(1346), 1, + aux_sym_member_access_repeat1, + STATE(1347), 1, + sym_function_arguments, + STATE(1209), 2, + sym_comment, + sym_include, + ACTIONS(71), 5, anon_sym_SLASH, - ACTIONS(1110), 1, - aux_sym_variable_tuning_token2, - STATE(846), 1, - sym__comparison_operator, - STATE(847), 1, - sym__multiplicative_operator, - STATE(848), 1, - sym__additive_operator, - STATE(849), 1, - sym__logical_operator, - ACTIONS(1079), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(65), 30, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1190), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -140764,62 +143419,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token3, aux_sym__comparison_operator_token4, aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(1112), 16, - sym__terminator, - aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, aux_sym_variable_tuning_token7, - aux_sym_field_option_token1, - aux_sym_field_option_token2, - aux_sym_field_option_token3, - aux_sym_field_option_token4, - aux_sym_field_option_token5, - aux_sym_field_option_token6, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [102497] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [104469] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1189), 1, + ACTIONS(1198), 1, aux_sym_variable_tuning_token2, - STATE(846), 1, + STATE(804), 1, sym__comparison_operator, - STATE(847), 1, + STATE(806), 1, sym__multiplicative_operator, - STATE(848), 1, + STATE(807), 1, sym__additive_operator, - STATE(849), 1, + STATE(811), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1191), 2, + STATE(1210), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -140833,7 +143481,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(1191), 16, + ACTIONS(1200), 16, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -140850,101 +143498,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [102578] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [104550] = 16, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2442), 1, - anon_sym_LPAREN, - ACTIONS(2444), 1, - sym__namedot, - ACTIONS(2446), 1, - sym__namecolon, - ACTIONS(2448), 1, - sym__namedoublecolon, - STATE(1258), 1, - aux_sym_object_access_repeat1, - STATE(1309), 1, - aux_sym_qualified_name_repeat1, - STATE(1311), 1, - aux_sym_member_access_repeat1, - STATE(1325), 1, - sym_function_arguments, - STATE(1192), 2, - sym_comment, - sym_include, - ACTIONS(85), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(83), 30, - sym__or_operator, - sym__and_operator, - anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - 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_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - [102655] = 15, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(238), 1, - aux_sym_variable_tuning_token2, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(846), 1, + ACTIONS(1115), 1, + aux_sym_variable_tuning_token2, + STATE(804), 1, sym__comparison_operator, - STATE(847), 1, + STATE(806), 1, sym__multiplicative_operator, - STATE(848), 1, + STATE(807), 1, sym__additive_operator, - STATE(849), 1, + STATE(811), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1193), 2, + STATE(1211), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -140958,9 +143546,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(236), 18, - sym__or_operator, - sym__and_operator, + ACTIONS(1117), 16, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -140977,99 +143563,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [102734] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(2460), 1, - aux_sym_input_expression_token2, - STATE(22), 1, - sym_qualified_name, - ACTIONS(1351), 2, - sym__or_operator, - sym__and_operator, - STATE(1194), 2, - sym_comment, - sym_include, - ACTIONS(1347), 38, - anon_sym_SLASH, - anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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__function_argument_with_mode_token4, - 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, - [102801] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [104631] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1181), 1, + ACTIONS(1202), 1, aux_sym_variable_tuning_token2, - STATE(846), 1, + STATE(804), 1, sym__comparison_operator, - STATE(847), 1, + STATE(806), 1, sym__multiplicative_operator, - STATE(848), 1, + STATE(807), 1, sym__additive_operator, - STATE(849), 1, + STATE(811), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1195), 2, + STATE(1212), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141083,7 +143611,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(1183), 16, + ACTIONS(1204), 16, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -141100,41 +143628,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [102882] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [104712] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(1104), 1, + ACTIONS(232), 1, aux_sym_variable_tuning_token2, - STATE(846), 1, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(804), 1, sym__comparison_operator, - STATE(847), 1, + STATE(806), 1, sym__multiplicative_operator, - STATE(848), 1, + STATE(807), 1, sym__additive_operator, - STATE(849), 1, + STATE(811), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1196), 2, + STATE(1213), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141148,7 +143673,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(1106), 16, + ACTIONS(230), 18, + sym__or_operator, + sym__and_operator, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -141165,41 +143692,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [102963] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [104791] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1185), 1, + ACTIONS(1210), 1, aux_sym_variable_tuning_token2, - STATE(846), 1, + STATE(804), 1, sym__comparison_operator, - STATE(847), 1, + STATE(806), 1, sym__multiplicative_operator, - STATE(848), 1, + STATE(807), 1, sym__additive_operator, - STATE(849), 1, + STATE(811), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1197), 2, + STATE(1214), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141213,7 +143737,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(1187), 16, + ACTIONS(1212), 18, + sym__or_operator, + sym__and_operator, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -141230,41 +143756,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [103044] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [104870] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1197), 1, + ACTIONS(1206), 1, aux_sym_variable_tuning_token2, - STATE(846), 1, + STATE(804), 1, sym__comparison_operator, - STATE(847), 1, + STATE(806), 1, sym__multiplicative_operator, - STATE(848), 1, + STATE(807), 1, sym__additive_operator, - STATE(849), 1, + STATE(811), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1198), 2, + STATE(1215), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141278,7 +143804,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(1199), 16, + ACTIONS(1208), 16, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -141295,41 +143821,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [103125] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [104951] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2464), 1, + ACTIONS(1123), 1, aux_sym_variable_tuning_token2, - STATE(846), 1, + STATE(804), 1, sym__comparison_operator, - STATE(847), 1, + STATE(806), 1, sym__multiplicative_operator, - STATE(848), 1, + STATE(807), 1, sym__additive_operator, - STATE(849), 1, + STATE(811), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1199), 2, + STATE(1216), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141343,7 +143869,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(2462), 16, + ACTIONS(1125), 16, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -141360,41 +143886,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [103206] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [105032] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1100), 1, + ACTIONS(1111), 1, aux_sym_variable_tuning_token2, - STATE(846), 1, + STATE(804), 1, sym__comparison_operator, - STATE(847), 1, + STATE(806), 1, sym__multiplicative_operator, - STATE(848), 1, + STATE(807), 1, sym__additive_operator, - STATE(849), 1, + STATE(811), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1200), 2, + STATE(1217), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141408,7 +143934,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(1102), 16, + ACTIONS(1113), 16, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -141425,41 +143951,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [103287] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [105113] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(846), 1, - sym__comparison_operator, - STATE(847), 1, - sym__multiplicative_operator, - STATE(848), 1, - sym__additive_operator, - STATE(849), 1, - sym__logical_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1201), 2, + ACTIONS(2463), 1, + anon_sym_LPAREN, + ACTIONS(2465), 1, + sym__namedot, + ACTIONS(2467), 1, + sym__namecolon, + ACTIONS(2469), 1, + sym__namedoublecolon, + STATE(1285), 1, + aux_sym_object_access_repeat1, + STATE(1335), 1, + aux_sym_qualified_name_repeat1, + STATE(1346), 1, + aux_sym_member_access_repeat1, + STATE(1347), 1, + sym_function_arguments, + STATE(1218), 2, sym_comment, sym_include, - ACTIONS(1177), 3, + ACTIONS(87), 5, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(1179), 31, + ACTIONS(85), 30, sym__or_operator, sym__and_operator, + anon_sym_STAR, sym__terminator, - aux_sym_unary_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141469,58 +144000,52 @@ 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_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, aux_sym_variable_tuning_token7, - aux_sym_field_option_token1, - aux_sym_field_option_token2, - aux_sym_field_option_token3, - aux_sym_field_option_token4, - aux_sym_field_option_token5, - aux_sym_field_option_token6, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [103362] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [105190] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(846), 1, + STATE(804), 1, sym__comparison_operator, - STATE(847), 1, + STATE(806), 1, sym__multiplicative_operator, - STATE(848), 1, + STATE(807), 1, sym__additive_operator, - STATE(849), 1, + STATE(811), 1, sym__logical_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(1202), 2, + STATE(1219), 2, sym_comment, sym_include, - ACTIONS(1205), 3, + ACTIONS(1214), 4, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_variable_tuning_token2, - ACTIONS(1207), 33, + ACTIONS(1216), 35, sym__or_operator, sym__and_operator, + anon_sym_STAR, sym__terminator, aux_sym_unary_expression_token2, anon_sym_PLUS, anon_sym_DASH, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141548,38 +144073,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [103435] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [105259] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(846), 1, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(804), 1, sym__comparison_operator, - STATE(847), 1, + STATE(806), 1, sym__multiplicative_operator, - STATE(848), 1, + STATE(807), 1, sym__additive_operator, - STATE(849), 1, + STATE(811), 1, sym__logical_operator, - STATE(1203), 2, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + STATE(1220), 2, sym_comment, sym_include, - ACTIONS(1193), 4, - anon_sym_SLASH, + ACTIONS(1119), 3, anon_sym_LT, anon_sym_GT, aux_sym_variable_tuning_token2, - ACTIONS(1195), 35, + ACTIONS(1121), 33, sym__or_operator, sym__and_operator, - anon_sym_STAR, sym__terminator, aux_sym_unary_expression_token2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141607,41 +144134,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [103504] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [105332] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2464), 1, + ACTIONS(1194), 1, aux_sym_variable_tuning_token2, - STATE(838), 1, + STATE(804), 1, sym__comparison_operator, - STATE(839), 1, + STATE(806), 1, sym__multiplicative_operator, - STATE(840), 1, + STATE(807), 1, sym__additive_operator, - STATE(841), 1, + STATE(811), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1204), 2, + STATE(1221), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141655,7 +144182,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(2462), 15, + ACTIONS(1196), 16, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -141671,41 +144198,157 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [103584] = 16, - ACTIONS(65), 1, + aux_sym_index_definition_token1, + [105413] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2471), 1, + sym_identifier, + STATE(32), 1, + sym_qualified_name, + ACTIONS(1581), 2, + sym__or_operator, + sym__and_operator, + STATE(1222), 2, + sym_comment, + sym_include, + ACTIONS(1579), 39, + anon_sym_SLASH, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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__function_argument_with_mode_token4, + 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_input_stream_tuning_token11, + 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, + [105478] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(2473), 1, + aux_sym_input_expression_token2, + STATE(28), 1, + sym_qualified_name, + ACTIONS(1358), 2, + sym__or_operator, + sym__and_operator, + STATE(1223), 2, + sym_comment, + sym_include, + ACTIONS(1354), 38, + anon_sym_SLASH, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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__function_argument_with_mode_token4, + 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, + [105545] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1110), 1, + ACTIONS(2477), 1, aux_sym_variable_tuning_token2, - STATE(838), 1, + STATE(804), 1, sym__comparison_operator, - STATE(839), 1, + STATE(806), 1, sym__multiplicative_operator, - STATE(840), 1, + STATE(807), 1, sym__additive_operator, - STATE(841), 1, + STATE(811), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1205), 2, + STATE(1224), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141719,7 +144362,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(1112), 15, + ACTIONS(2475), 16, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -141735,38 +144378,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [103664] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_index_definition_token1, + [105626] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(838), 1, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(1190), 1, + aux_sym_variable_tuning_token2, + STATE(804), 1, sym__comparison_operator, - STATE(839), 1, + STATE(806), 1, sym__multiplicative_operator, - STATE(840), 1, + STATE(807), 1, sym__additive_operator, - STATE(841), 1, + STATE(811), 1, sym__logical_operator, - STATE(1206), 2, - sym_comment, - sym_include, - ACTIONS(1193), 4, - anon_sym_SLASH, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - aux_sym_variable_tuning_token2, - ACTIONS(1195), 34, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - aux_sym_unary_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(1225), 2, + sym_comment, + sym_include, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141780,6 +144427,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + ACTIONS(1192), 16, + sym__terminator, + aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, @@ -141793,38 +144443,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [103732] = 9, - ACTIONS(3), 1, + aux_sym_index_definition_token1, + [105707] = 16, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(2466), 1, - aux_sym_input_expression_token2, - STATE(22), 1, - sym_qualified_name, - ACTIONS(1351), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(1123), 1, + aux_sym_variable_tuning_token2, + STATE(796), 1, + sym__comparison_operator, + STATE(797), 1, + sym__multiplicative_operator, + STATE(798), 1, + sym__additive_operator, + STATE(799), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1207), 2, - sym_comment, - sym_include, - ACTIONS(1347), 37, - anon_sym_SLASH, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - aux_sym_unary_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(1226), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -141835,8 +144492,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(1125), 15, + sym__terminator, + aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, @@ -141849,42 +144508,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [103798] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [105787] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1189), 1, + ACTIONS(1198), 1, aux_sym_variable_tuning_token2, - STATE(838), 1, + STATE(796), 1, sym__comparison_operator, - STATE(839), 1, + STATE(797), 1, sym__multiplicative_operator, - STATE(840), 1, + STATE(798), 1, sym__additive_operator, - STATE(841), 1, + STATE(799), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1208), 2, + STATE(1227), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141898,7 +144556,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(1191), 15, + ACTIONS(1200), 15, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -141914,41 +144572,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [103878] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [105867] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(1185), 1, - aux_sym_variable_tuning_token2, - STATE(838), 1, + STATE(796), 1, sym__comparison_operator, - STATE(839), 1, + STATE(797), 1, sym__multiplicative_operator, - STATE(840), 1, + STATE(798), 1, sym__additive_operator, - STATE(841), 1, + STATE(799), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(1228), 2, + sym_comment, + sym_include, + ACTIONS(1214), 4, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + aux_sym_variable_tuning_token2, + ACTIONS(1216), 34, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, + aux_sym_unary_expression_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(1209), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -141962,10 +144617,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(1187), 15, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_field_option_token1, + aux_sym_field_option_token2, + aux_sym_field_option_token3, + aux_sym_field_option_token4, + aux_sym_field_option_token5, + aux_sym_field_option_token6, + aux_sym_field_definition_token1, + [105935] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(2479), 1, + aux_sym_input_expression_token2, + STATE(28), 1, + sym_qualified_name, + ACTIONS(1358), 2, + sym__or_operator, + sym__and_operator, + STATE(1229), 2, + sym_comment, + sym_include, + ACTIONS(1354), 37, + anon_sym_SLASH, + anon_sym_STAR, sym__terminator, aux_sym_unary_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_variable_tuning_token1, + aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, @@ -141978,41 +144686,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [103958] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_index_definition_token1, + [106001] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1181), 1, + ACTIONS(1194), 1, aux_sym_variable_tuning_token2, - STATE(838), 1, + STATE(796), 1, sym__comparison_operator, - STATE(839), 1, + STATE(797), 1, sym__multiplicative_operator, - STATE(840), 1, + STATE(798), 1, sym__additive_operator, - STATE(841), 1, + STATE(799), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1210), 2, + STATE(1230), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142026,7 +144735,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(1183), 15, + ACTIONS(1196), 15, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -142042,38 +144751,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [104038] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [106081] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(238), 1, - aux_sym_variable_tuning_token2, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(838), 1, + ACTIONS(1210), 1, + aux_sym_variable_tuning_token2, + STATE(796), 1, sym__comparison_operator, - STATE(839), 1, + STATE(797), 1, sym__multiplicative_operator, - STATE(840), 1, + STATE(798), 1, sym__additive_operator, - STATE(841), 1, + STATE(799), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1211), 2, + STATE(1231), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142087,7 +144796,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(236), 17, + ACTIONS(1212), 17, sym__or_operator, sym__and_operator, sym__terminator, @@ -142105,41 +144814,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [104116] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [106159] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1100), 1, - aux_sym_variable_tuning_token2, - STATE(838), 1, + STATE(796), 1, sym__comparison_operator, - STATE(839), 1, + STATE(797), 1, sym__multiplicative_operator, - STATE(840), 1, + STATE(798), 1, sym__additive_operator, - STATE(841), 1, + STATE(799), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + STATE(1232), 2, + sym_comment, + sym_include, + ACTIONS(1119), 3, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + aux_sym_variable_tuning_token2, + ACTIONS(1121), 32, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, + aux_sym_unary_expression_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(1212), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142153,9 +144861,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(1102), 15, - sym__terminator, - aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, @@ -142169,41 +144874,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [104196] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [106231] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1197), 1, + ACTIONS(1202), 1, aux_sym_variable_tuning_token2, - STATE(838), 1, + STATE(796), 1, sym__comparison_operator, - STATE(839), 1, + STATE(797), 1, sym__multiplicative_operator, - STATE(840), 1, + STATE(798), 1, sym__additive_operator, - STATE(841), 1, + STATE(799), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1213), 2, + STATE(1233), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142217,7 +144922,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(1199), 15, + ACTIONS(1204), 15, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -142233,41 +144938,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [104276] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [106311] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(232), 1, + aux_sym_variable_tuning_token2, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(838), 1, + STATE(796), 1, sym__comparison_operator, - STATE(839), 1, + STATE(797), 1, sym__multiplicative_operator, - STATE(840), 1, + STATE(798), 1, sym__additive_operator, - STATE(841), 1, + STATE(799), 1, sym__logical_operator, - ACTIONS(2392), 2, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1214), 2, + STATE(1234), 2, sym_comment, sym_include, - ACTIONS(1177), 3, - anon_sym_LT, - anon_sym_GT, - aux_sym_variable_tuning_token2, - ACTIONS(1179), 30, - sym__or_operator, - sym__and_operator, - sym__terminator, - aux_sym_unary_expression_token2, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142281,6 +144983,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + ACTIONS(230), 17, + sym__or_operator, + sym__and_operator, + sym__terminator, + aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, @@ -142294,40 +145001,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [104350] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [106389] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(838), 1, + ACTIONS(1190), 1, + aux_sym_variable_tuning_token2, + STATE(796), 1, sym__comparison_operator, - STATE(839), 1, + STATE(797), 1, sym__multiplicative_operator, - STATE(840), 1, + STATE(798), 1, sym__additive_operator, - STATE(841), 1, + STATE(799), 1, sym__logical_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(1215), 2, - sym_comment, - sym_include, - ACTIONS(1205), 3, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - aux_sym_variable_tuning_token2, - ACTIONS(1207), 32, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - sym__terminator, - aux_sym_unary_expression_token2, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1235), 2, + sym_comment, + sym_include, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142341,6 +145049,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + ACTIONS(1192), 15, + sym__terminator, + aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, @@ -142354,24 +145065,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [104422] = 8, + [106469] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2458), 1, + ACTIONS(2471), 1, sym_identifier, STATE(32), 1, sym_qualified_name, - ACTIONS(1366), 2, + ACTIONS(1581), 2, sym__or_operator, sym__and_operator, - STATE(1216), 2, + STATE(1236), 2, sym_comment, sym_include, - ACTIONS(1364), 38, + ACTIONS(1579), 38, anon_sym_SLASH, anon_sym_STAR, sym__terminator, @@ -142410,41 +145121,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, - [104486] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [106533] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1104), 1, + ACTIONS(2477), 1, aux_sym_variable_tuning_token2, - STATE(838), 1, + STATE(796), 1, sym__comparison_operator, - STATE(839), 1, + STATE(797), 1, sym__multiplicative_operator, - STATE(840), 1, + STATE(798), 1, sym__additive_operator, - STATE(841), 1, + STATE(799), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1217), 2, + STATE(1237), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142458,7 +145169,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(1106), 15, + ACTIONS(2475), 15, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -142474,41 +145185,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [104566] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [106613] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1201), 1, + ACTIONS(1206), 1, aux_sym_variable_tuning_token2, - STATE(838), 1, + STATE(796), 1, sym__comparison_operator, - STATE(839), 1, + STATE(797), 1, sym__multiplicative_operator, - STATE(840), 1, + STATE(798), 1, sym__additive_operator, - STATE(841), 1, + STATE(799), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1218), 2, + STATE(1238), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142522,7 +145233,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(1203), 15, + ACTIONS(1208), 15, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -142538,63 +145249,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [104646] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [106693] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2468), 1, - anon_sym_RPAREN, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2474), 1, - aux_sym_where_clause_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + ACTIONS(1111), 1, + aux_sym_variable_tuning_token2, + STATE(796), 1, sym__comparison_operator, - STATE(3217), 1, - sym_using, - STATE(3260), 1, - aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + STATE(797), 1, + sym__multiplicative_operator, + STATE(798), 1, + sym__additive_operator, + STATE(799), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1219), 2, + STATE(1239), 2, sym_comment, sym_include, - STATE(3743), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142608,63 +145297,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [104739] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1113), 15, + sym__terminator, + aux_sym_unary_expression_token2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_field_option_token1, + aux_sym_field_option_token2, + aux_sym_field_option_token3, + aux_sym_field_option_token4, + aux_sym_field_option_token5, + aux_sym_field_option_token6, + aux_sym_field_definition_token1, + [106773] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2474), 1, - aux_sym_where_clause_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(2480), 1, - anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + ACTIONS(1115), 1, + aux_sym_variable_tuning_token2, + STATE(796), 1, sym__comparison_operator, - STATE(3217), 1, - sym_using, - STATE(3256), 1, - aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + STATE(797), 1, + sym__multiplicative_operator, + STATE(798), 1, + sym__additive_operator, + STATE(799), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1220), 2, + STATE(1240), 2, sym_comment, sym_include, - STATE(3743), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142678,63 +145361,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [104832] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1117), 15, + sym__terminator, + aux_sym_unary_expression_token2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_field_option_token1, + aux_sym_field_option_token2, + aux_sym_field_option_token3, + aux_sym_field_option_token4, + aux_sym_field_option_token5, + aux_sym_field_option_token6, + aux_sym_field_definition_token1, + [106853] = 23, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2481), 1, + anon_sym_RPAREN, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(2482), 1, - anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - STATE(3217), 1, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, sym_using, - STATE(3288), 1, + STATE(3302), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1221), 2, + STATE(1241), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142748,63 +145447,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [104925] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [106946] = 23, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(2484), 1, + ACTIONS(2493), 1, anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - STATE(3217), 1, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, sym_using, - STATE(3251), 1, + STATE(3299), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1222), 2, + STATE(1242), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142818,63 +145517,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [105018] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [107039] = 23, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(2486), 1, + ACTIONS(2495), 1, anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - STATE(3217), 1, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, sym_using, - STATE(3277), 1, + STATE(3312), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1223), 2, + STATE(1243), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142888,63 +145587,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [105111] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [107132] = 23, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(2488), 1, + ACTIONS(2497), 1, anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - STATE(3217), 1, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, sym_using, - STATE(3286), 1, + STATE(3340), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1224), 2, + STATE(1244), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -142958,63 +145657,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [105204] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [107225] = 23, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(2490), 1, + ACTIONS(2499), 1, anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - STATE(3217), 1, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, sym_using, - STATE(3289), 1, + STATE(3296), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1225), 2, + STATE(1245), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143028,63 +145727,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [105297] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [107318] = 23, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(2492), 1, + ACTIONS(2501), 1, anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - STATE(3217), 1, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, sym_using, - STATE(3275), 1, + STATE(3297), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1226), 2, + STATE(1246), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143098,63 +145797,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [105390] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [107411] = 23, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(2494), 1, + ACTIONS(2503), 1, anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - STATE(3217), 1, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, sym_using, - STATE(3267), 1, + STATE(3332), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1227), 2, + STATE(1247), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143168,63 +145867,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [105483] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [107504] = 23, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(2496), 1, + ACTIONS(2505), 1, anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - STATE(3217), 1, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, sym_using, - STATE(3284), 1, + STATE(3328), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1228), 2, + STATE(1248), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143238,63 +145937,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [105576] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [107597] = 23, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(2498), 1, + ACTIONS(2507), 1, anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - STATE(3217), 1, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, sym_using, - STATE(3279), 1, + STATE(3309), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1229), 2, + STATE(1249), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143308,63 +146007,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [105669] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [107690] = 23, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(2500), 1, + ACTIONS(2509), 1, anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - STATE(3217), 1, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, sym_using, - STATE(3268), 1, + STATE(3324), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1230), 2, + STATE(1250), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143378,63 +146077,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [105762] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [107783] = 23, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(2502), 1, + ACTIONS(2511), 1, anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - STATE(3217), 1, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, sym_using, - STATE(3290), 1, + STATE(3331), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1231), 2, + STATE(1251), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143448,63 +146147,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [105855] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [107876] = 23, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(2504), 1, + ACTIONS(2513), 1, anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - STATE(3217), 1, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, sym_using, - STATE(3299), 1, + STATE(3358), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1232), 2, + STATE(1252), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143518,63 +146217,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [105948] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [107969] = 23, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(2506), 1, + ACTIONS(2515), 1, anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - STATE(3217), 1, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, sym_using, - STATE(3303), 1, + STATE(3351), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1233), 2, + STATE(1253), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143588,63 +146287,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [106041] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [108062] = 23, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(2508), 1, + ACTIONS(2517), 1, anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - STATE(3217), 1, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, sym_using, - STATE(3264), 1, + STATE(3352), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1234), 2, + STATE(1254), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143658,63 +146357,118 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [106134] = 23, - ACTIONS(65), 1, + [108155] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2471), 1, + sym_identifier, + STATE(32), 1, + sym_qualified_name, + ACTIONS(1581), 2, + sym__or_operator, + sym__and_operator, + STATE(1255), 2, + sym_comment, + sym_include, + ACTIONS(1579), 37, + anon_sym_SLASH, + anon_sym_STAR, + sym__terminator, + aux_sym_unary_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_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_variable_tuning_token7, + aux_sym_field_option_token1, + aux_sym_field_option_token2, + aux_sym_field_option_token3, + aux_sym_field_option_token4, + aux_sym_field_option_token5, + aux_sym_field_option_token6, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [108218] = 23, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(2510), 1, + ACTIONS(2519), 1, anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - STATE(3217), 1, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, sym_using, - STATE(3291), 1, + STATE(3335), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1235), 2, + STATE(1256), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143728,63 +146482,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [106227] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [108311] = 23, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(2512), 1, + ACTIONS(2521), 1, anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - STATE(3217), 1, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, sym_using, - STATE(3306), 1, + STATE(3357), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1236), 2, + STATE(1257), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143798,118 +146552,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [106320] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2458), 1, - sym_identifier, - STATE(32), 1, - sym_qualified_name, - ACTIONS(1366), 2, - sym__or_operator, - sym__and_operator, - STATE(1237), 2, - sym_comment, - sym_include, - ACTIONS(1364), 37, - anon_sym_SLASH, - anon_sym_STAR, - sym__terminator, - aux_sym_unary_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_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_variable_tuning_token7, - aux_sym_field_option_token1, - aux_sym_field_option_token2, - aux_sym_field_option_token3, - aux_sym_field_option_token4, - aux_sym_field_option_token5, - aux_sym_field_option_token6, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [106383] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [108404] = 23, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(2514), 1, + ACTIONS(2523), 1, anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - STATE(3217), 1, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, sym_using, - STATE(3249), 1, + STATE(3355), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1238), 2, + STATE(1258), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143923,63 +146622,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [106476] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [108497] = 23, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(2516), 1, + ACTIONS(2525), 1, anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - STATE(3217), 1, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, sym_using, - STATE(3265), 1, + STATE(3316), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1239), 2, + STATE(1259), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -143993,63 +146692,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [106569] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [108590] = 23, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(2518), 1, + ACTIONS(2527), 1, anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - STATE(3217), 1, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, sym_using, - STATE(3253), 1, + STATE(3304), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1240), 2, + STATE(1260), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -144063,63 +146762,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [106662] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [108683] = 23, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(2520), 1, + ACTIONS(2529), 1, anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - STATE(3217), 1, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, sym_using, - STATE(3293), 1, + STATE(3344), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1241), 2, + STATE(1261), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -144133,63 +146832,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [106755] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [108776] = 23, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(2522), 1, + ACTIONS(2531), 1, anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - STATE(3217), 1, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, sym_using, - STATE(3295), 1, + STATE(3346), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1242), 2, + STATE(1262), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -144203,63 +146902,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [106848] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [108869] = 23, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(2524), 1, + ACTIONS(2533), 1, anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - STATE(3217), 1, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, sym_using, - STATE(3261), 1, + STATE(3336), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1243), 2, + STATE(1263), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -144273,63 +146972,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [106941] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [108962] = 23, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(2526), 1, + ACTIONS(2535), 1, anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - STATE(3217), 1, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, sym_using, - STATE(3274), 1, + STATE(3305), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1244), 2, + STATE(1264), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -144343,38 +147042,136 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [107034] = 9, - ACTIONS(3), 1, + [109055] = 23, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(2528), 1, - aux_sym_input_expression_token2, - STATE(22), 1, - sym_qualified_name, - ACTIONS(1351), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2487), 1, + aux_sym_where_clause_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(2537), 1, + anon_sym_RPAREN, + STATE(945), 1, + sym__comparison_operator, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, + sym_using, + STATE(3318), 1, + aux_sym_can_find_expression_repeat1, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1245), 2, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1265), 2, sym_comment, sym_include, - ACTIONS(1347), 36, + STATE(3861), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + ACTIONS(2409), 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, + [109148] = 23, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, anon_sym_SLASH, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2487), 1, + aux_sym_where_clause_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(2539), 1, + anon_sym_RPAREN, + STATE(945), 1, + sym__comparison_operator, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, + sym_using, + STATE(3310), 1, + aux_sym_can_find_expression_repeat1, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - aux_sym_unary_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(1266), 2, + sym_comment, + sym_include, + STATE(3861), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + ACTIONS(2409), 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, @@ -144385,77 +147182,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_field_option_token1, - aux_sym_field_option_token2, - aux_sym_field_option_token3, - aux_sym_field_option_token4, - aux_sym_field_option_token5, - aux_sym_field_option_token6, - aux_sym_field_definition_token1, - [107099] = 23, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [109241] = 23, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(2530), 1, + ACTIONS(2541), 1, anon_sym_RPAREN, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - STATE(3217), 1, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(3271), 1, sym_using, - STATE(3270), 1, + STATE(3349), 1, aux_sym_can_find_expression_repeat1, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1246), 2, + STATE(1267), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -144469,48 +147252,104 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [107192] = 14, + [109334] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2532), 1, + ACTIONS(2453), 1, sym_identifier, - ACTIONS(2536), 1, + ACTIONS(2543), 1, + aux_sym_input_expression_token2, + STATE(28), 1, + sym_qualified_name, + ACTIONS(1358), 2, + sym__or_operator, + sym__and_operator, + STATE(1268), 2, + sym_comment, + sym_include, + ACTIONS(1354), 36, + anon_sym_SLASH, + anon_sym_STAR, + sym__terminator, + aux_sym_unary_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_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_variable_tuning_token7, + aux_sym_field_option_token1, + aux_sym_field_option_token2, + aux_sym_field_option_token3, + aux_sym_field_option_token4, + aux_sym_field_option_token5, + aux_sym_field_option_token6, + aux_sym_field_definition_token1, + [109399] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2545), 1, + sym_identifier, + ACTIONS(2549), 1, aux_sym_class_type_token1, - STATE(1254), 1, + STATE(1270), 1, aux_sym_method_definition_repeat1, - STATE(6079), 1, + STATE(6160), 1, sym__type, - STATE(1247), 2, + STATE(1269), 2, sym_comment, sym_include, - ACTIONS(2542), 3, + ACTIONS(2555), 3, aux_sym_property_type_token1, aux_sym_property_type_token2, aux_sym_method_tuning_token1, - STATE(1488), 3, + STATE(1524), 3, sym_scope_tuning, sym_access_tuning, sym_method_tuning, - STATE(5223), 3, + STATE(6711), 3, sym_qualified_name, sym_primitive_type, sym_class_type, - ACTIONS(2538), 4, + ACTIONS(2551), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2540), 5, + ACTIONS(2553), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - ACTIONS(2534), 18, + ACTIONS(2547), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -144529,48 +147368,108 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [107266] = 14, + [109473] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2532), 1, + ACTIONS(2545), 1, sym_identifier, - ACTIONS(2536), 1, + ACTIONS(2549), 1, aux_sym_class_type_token1, - ACTIONS(2550), 1, + STATE(1385), 1, + aux_sym_method_definition_repeat1, + STATE(6341), 1, + sym__type, + STATE(1270), 2, + sym_comment, + sym_include, + ACTIONS(2555), 3, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_method_tuning_token1, + STATE(1524), 3, + sym_scope_tuning, + sym_access_tuning, + sym_method_tuning, + STATE(6711), 3, + sym_qualified_name, + sym_primitive_type, + sym_class_type, + ACTIONS(2551), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(2553), 5, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + ACTIONS(2547), 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, + [109547] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2557), 1, + sym_identifier, + ACTIONS(2561), 1, + aux_sym_class_type_token1, + ACTIONS(2569), 1, sym__escaped_string, - ACTIONS(2548), 2, + ACTIONS(2567), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - STATE(1248), 2, + STATE(1271), 2, sym_comment, sym_include, - STATE(3870), 2, + STATE(3549), 2, sym_string_literal, sym__type, - STATE(2827), 3, + STATE(3002), 3, sym_scope_tuning, sym_access_tuning, sym_serialization_tuning, - STATE(5223), 3, + STATE(5020), 3, sym_qualified_name, sym_primitive_type, sym_class_type, - ACTIONS(2544), 4, + ACTIONS(2563), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2546), 5, + ACTIONS(2565), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - ACTIONS(2534), 18, + ACTIONS(2559), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -144589,24 +147488,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [107340] = 8, + [109621] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2458), 1, + ACTIONS(2471), 1, sym_identifier, STATE(32), 1, sym_qualified_name, - ACTIONS(1366), 2, + ACTIONS(1581), 2, sym__or_operator, sym__and_operator, - STATE(1249), 2, + STATE(1272), 2, sym_comment, sym_include, - ACTIONS(1364), 36, + ACTIONS(1579), 36, anon_sym_SLASH, anon_sym_STAR, sym__terminator, @@ -144643,48 +147542,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token5, aux_sym_field_option_token6, aux_sym_field_definition_token1, - [107402] = 14, + [109683] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2532), 1, + ACTIONS(2557), 1, sym_identifier, - ACTIONS(2536), 1, + ACTIONS(2561), 1, aux_sym_class_type_token1, - ACTIONS(2550), 1, + ACTIONS(2569), 1, sym__escaped_string, - ACTIONS(2548), 2, + ACTIONS(2567), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - STATE(1250), 2, + STATE(1273), 2, sym_comment, sym_include, - STATE(3805), 2, + STATE(3529), 2, sym_string_literal, sym__type, - STATE(2807), 3, + STATE(2933), 3, sym_scope_tuning, sym_access_tuning, sym_serialization_tuning, - STATE(5223), 3, + STATE(5020), 3, sym_qualified_name, sym_primitive_type, sym_class_type, - ACTIONS(2544), 4, + ACTIONS(2563), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2546), 5, + ACTIONS(2565), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - ACTIONS(2534), 18, + ACTIONS(2559), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -144703,48 +147602,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [107476] = 14, + [109757] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2532), 1, + ACTIONS(2557), 1, sym_identifier, - ACTIONS(2536), 1, + ACTIONS(2561), 1, aux_sym_class_type_token1, - ACTIONS(2550), 1, + ACTIONS(2569), 1, sym__escaped_string, - ACTIONS(2548), 2, + ACTIONS(2567), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - STATE(1251), 2, + STATE(1274), 2, sym_comment, sym_include, - STATE(3860), 2, + STATE(3487), 2, sym_string_literal, sym__type, - STATE(2780), 3, + STATE(2936), 3, sym_scope_tuning, sym_access_tuning, sym_serialization_tuning, - STATE(5223), 3, + STATE(5020), 3, sym_qualified_name, sym_primitive_type, sym_class_type, - ACTIONS(2544), 4, + ACTIONS(2563), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2546), 5, + ACTIONS(2565), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - ACTIONS(2534), 18, + ACTIONS(2559), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -144763,48 +147662,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [107550] = 14, + [109831] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2532), 1, + ACTIONS(2557), 1, sym_identifier, - ACTIONS(2536), 1, + ACTIONS(2561), 1, aux_sym_class_type_token1, - ACTIONS(2550), 1, + ACTIONS(2569), 1, sym__escaped_string, - ACTIONS(2548), 2, + ACTIONS(2567), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - STATE(1252), 2, + STATE(1275), 2, sym_comment, sym_include, - STATE(3859), 2, + STATE(3556), 2, sym_string_literal, sym__type, - STATE(2814), 3, + STATE(2993), 3, sym_scope_tuning, sym_access_tuning, sym_serialization_tuning, - STATE(5223), 3, + STATE(5020), 3, sym_qualified_name, sym_primitive_type, sym_class_type, - ACTIONS(2544), 4, + ACTIONS(2563), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2546), 5, + ACTIONS(2565), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - ACTIONS(2534), 18, + ACTIONS(2559), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -144823,48 +147722,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [107624] = 14, + [109905] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2532), 1, + ACTIONS(2557), 1, sym_identifier, - ACTIONS(2536), 1, + ACTIONS(2561), 1, aux_sym_class_type_token1, - ACTIONS(2550), 1, + ACTIONS(2569), 1, sym__escaped_string, - ACTIONS(2548), 2, + ACTIONS(2567), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - STATE(1253), 2, + STATE(1276), 2, sym_comment, sym_include, - STATE(3798), 2, + STATE(3496), 2, sym_string_literal, sym__type, - STATE(2873), 3, + STATE(3001), 3, sym_scope_tuning, sym_access_tuning, sym_serialization_tuning, - STATE(5223), 3, + STATE(5020), 3, sym_qualified_name, sym_primitive_type, sym_class_type, - ACTIONS(2544), 4, + ACTIONS(2563), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2546), 5, + ACTIONS(2565), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - ACTIONS(2534), 18, + ACTIONS(2559), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -144883,102 +147782,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [107698] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2532), 1, - sym_identifier, - ACTIONS(2536), 1, - aux_sym_class_type_token1, - STATE(1343), 1, - aux_sym_method_definition_repeat1, - STATE(6276), 1, - sym__type, - STATE(1254), 2, - sym_comment, - sym_include, - ACTIONS(2542), 3, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_method_tuning_token1, - STATE(1488), 3, - sym_scope_tuning, - sym_access_tuning, - sym_method_tuning, - STATE(5223), 3, - sym_qualified_name, - sym_primitive_type, - sym_class_type, - ACTIONS(2538), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - ACTIONS(2540), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - ACTIONS(2534), 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, - [107772] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [109979] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1181), 1, + ACTIONS(1194), 1, aux_sym_variable_tuning_token2, - STATE(830), 1, + STATE(786), 1, sym__comparison_operator, - STATE(831), 1, + STATE(787), 1, sym__multiplicative_operator, - STATE(832), 1, + STATE(788), 1, sym__additive_operator, - STATE(833), 1, + STATE(789), 1, sym__logical_operator, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1255), 2, + STATE(1277), 2, sym_comment, sym_include, - ACTIONS(1079), 3, + ACTIONS(1090), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(1183), 12, + ACTIONS(1196), 12, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token6, @@ -144991,7 +147830,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - ACTIONS(2396), 12, + ACTIONS(2409), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145004,92 +147843,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [107849] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [110056] = 7, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(830), 1, - sym__comparison_operator, - STATE(831), 1, - sym__multiplicative_operator, - STATE(832), 1, - sym__additive_operator, - STATE(833), 1, - sym__logical_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(1256), 2, - sym_comment, - sym_include, - ACTIONS(1205), 4, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(1207), 28, - sym__or_operator, - sym__and_operator, - sym__terminator, - 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_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - [107918] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(830), 1, - sym__comparison_operator, - STATE(831), 1, - sym__multiplicative_operator, - STATE(832), 1, - sym__additive_operator, - STATE(833), 1, - sym__logical_operator, - STATE(1257), 2, + ACTIONS(2571), 1, + sym__namecolon, + STATE(1278), 3, sym_comment, sym_include, - ACTIONS(1193), 5, + aux_sym_object_access_repeat1, + ACTIONS(95), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(1195), 30, + ACTIONS(93), 32, sym__or_operator, sym__and_operator, anon_sym_STAR, sym__terminator, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -145116,27 +147895,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [107983] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [110115] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2446), 1, + ACTIONS(2467), 1, sym__namecolon, - STATE(1268), 1, + STATE(1278), 1, aux_sym_object_access_repeat1, - STATE(1258), 2, + STATE(1279), 2, sym_comment, sym_include, - ACTIONS(96), 5, + ACTIONS(91), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(94), 32, + ACTIONS(89), 32, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -145169,42 +147948,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [108044] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [110176] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1100), 1, + ACTIONS(1115), 1, aux_sym_variable_tuning_token2, - STATE(830), 1, + STATE(786), 1, sym__comparison_operator, - STATE(831), 1, + STATE(787), 1, sym__multiplicative_operator, - STATE(832), 1, + STATE(788), 1, sym__additive_operator, - STATE(833), 1, + STATE(789), 1, sym__logical_operator, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1259), 2, + STATE(1280), 2, sym_comment, sym_include, - ACTIONS(1079), 3, + ACTIONS(1090), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(1102), 12, + ACTIONS(1117), 12, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token6, @@ -145217,7 +147996,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - ACTIONS(2396), 12, + ACTIONS(2409), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145230,42 +148009,97 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [108121] = 16, - ACTIONS(65), 1, + [110253] = 10, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(786), 1, + sym__comparison_operator, + STATE(787), 1, + sym__multiplicative_operator, + STATE(788), 1, + sym__additive_operator, + STATE(789), 1, + sym__logical_operator, + STATE(1281), 2, + sym_comment, + sym_include, + ACTIONS(1214), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(1216), 30, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + 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_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [110318] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2554), 1, + ACTIONS(2576), 1, aux_sym_variable_tuning_token2, - STATE(830), 1, + STATE(786), 1, sym__comparison_operator, - STATE(831), 1, + STATE(787), 1, sym__multiplicative_operator, - STATE(832), 1, + STATE(788), 1, sym__additive_operator, - STATE(833), 1, + STATE(789), 1, sym__logical_operator, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1260), 2, + STATE(1282), 2, sym_comment, sym_include, - ACTIONS(1079), 3, + ACTIONS(1090), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(2396), 12, + ACTIONS(2409), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145278,7 +148112,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(2552), 12, + ACTIONS(2574), 12, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token6, @@ -145291,42 +148125,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [108198] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [110395] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1110), 1, + ACTIONS(1202), 1, aux_sym_variable_tuning_token2, - STATE(830), 1, + STATE(786), 1, sym__comparison_operator, - STATE(831), 1, + STATE(787), 1, sym__multiplicative_operator, - STATE(832), 1, + STATE(788), 1, sym__additive_operator, - STATE(833), 1, + STATE(789), 1, sym__logical_operator, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1261), 2, + STATE(1283), 2, sym_comment, sym_include, - ACTIONS(1079), 3, + ACTIONS(1090), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(1112), 12, + ACTIONS(1204), 12, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token6, @@ -145339,7 +148173,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - ACTIONS(2396), 12, + ACTIONS(2409), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145352,43 +148186,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [108275] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [110472] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1201), 1, - aux_sym_variable_tuning_token2, - STATE(830), 1, + STATE(786), 1, sym__comparison_operator, - STATE(831), 1, + STATE(787), 1, sym__multiplicative_operator, - STATE(832), 1, + STATE(788), 1, sym__additive_operator, - STATE(833), 1, + STATE(789), 1, sym__logical_operator, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1262), 2, + STATE(1284), 2, sym_comment, sym_include, - ACTIONS(1079), 3, + ACTIONS(1119), 4, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(1203), 12, + aux_sym_variable_tuning_token2, + ACTIONS(1121), 28, + sym__or_operator, + sym__and_operator, sym__terminator, + 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_token6, aux_sym_variable_tuning_token7, @@ -145400,7 +148243,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - ACTIONS(2396), 12, + [110541] = 8, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2467), 1, + sym__namecolon, + STATE(1278), 1, + aux_sym_object_access_repeat1, + STATE(1285), 2, + sym_comment, + sym_include, + ACTIONS(91), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(89), 32, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + sym__terminator, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145413,39 +148285,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [108352] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [110602] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(238), 1, + ACTIONS(232), 1, aux_sym_variable_tuning_token2, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(830), 1, + STATE(786), 1, sym__comparison_operator, - STATE(831), 1, + STATE(787), 1, sym__multiplicative_operator, - STATE(832), 1, + STATE(788), 1, sym__additive_operator, - STATE(833), 1, + STATE(789), 1, sym__logical_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1263), 2, + STATE(1286), 2, sym_comment, sym_include, - ACTIONS(1079), 3, + ACTIONS(1090), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(2396), 12, + ACTIONS(2409), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145458,7 +148341,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(236), 14, + ACTIONS(230), 14, sym__or_operator, sym__and_operator, sym__terminator, @@ -145473,41 +148356,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [108427] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [110677] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(830), 1, + ACTIONS(1210), 1, + aux_sym_variable_tuning_token2, + STATE(786), 1, sym__comparison_operator, - STATE(831), 1, + STATE(787), 1, sym__multiplicative_operator, - STATE(832), 1, + STATE(788), 1, sym__additive_operator, - STATE(833), 1, + STATE(789), 1, sym__logical_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1264), 2, + STATE(1287), 2, sym_comment, sym_include, - ACTIONS(1177), 4, + ACTIONS(1090), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(1179), 26, - sym__or_operator, - sym__and_operator, - sym__terminator, + ACTIONS(2409), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145520,6 +148401,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(1212), 14, + sym__or_operator, + sym__and_operator, + sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token6, aux_sym_variable_tuning_token7, @@ -145531,42 +148416,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [108498] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [110752] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1185), 1, + ACTIONS(1123), 1, aux_sym_variable_tuning_token2, - STATE(830), 1, + STATE(786), 1, sym__comparison_operator, - STATE(831), 1, + STATE(787), 1, sym__multiplicative_operator, - STATE(832), 1, + STATE(788), 1, sym__additive_operator, - STATE(833), 1, + STATE(789), 1, sym__logical_operator, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1265), 2, + STATE(1288), 2, sym_comment, sym_include, - ACTIONS(1079), 3, + ACTIONS(1090), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(1187), 12, + ACTIONS(1125), 12, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token6, @@ -145579,7 +148464,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - ACTIONS(2396), 12, + ACTIONS(2409), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145592,42 +148477,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [108575] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [110829] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1189), 1, + ACTIONS(1190), 1, aux_sym_variable_tuning_token2, - STATE(830), 1, + STATE(786), 1, sym__comparison_operator, - STATE(831), 1, + STATE(787), 1, sym__multiplicative_operator, - STATE(832), 1, + STATE(788), 1, sym__additive_operator, - STATE(833), 1, + STATE(789), 1, sym__logical_operator, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1266), 2, + STATE(1289), 2, sym_comment, sym_include, - ACTIONS(1079), 3, + ACTIONS(1090), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(1191), 12, + ACTIONS(1192), 12, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token6, @@ -145640,7 +148525,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - ACTIONS(2396), 12, + ACTIONS(2409), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145653,42 +148538,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [108652] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [110906] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1104), 1, + ACTIONS(1206), 1, aux_sym_variable_tuning_token2, - STATE(830), 1, + STATE(786), 1, sym__comparison_operator, - STATE(831), 1, + STATE(787), 1, sym__multiplicative_operator, - STATE(832), 1, + STATE(788), 1, sym__additive_operator, - STATE(833), 1, + STATE(789), 1, sym__logical_operator, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1267), 2, + STATE(1290), 2, sym_comment, sym_include, - ACTIONS(1079), 3, + ACTIONS(1090), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(1106), 12, + ACTIONS(1208), 12, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token6, @@ -145701,7 +148586,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - ACTIONS(2396), 12, + ACTIONS(2409), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145714,35 +148599,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [108729] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [110983] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2556), 1, - sym__namecolon, - STATE(1268), 3, - sym_comment, - sym_include, - aux_sym_object_access_repeat1, - ACTIONS(89), 5, + ACTIONS(1086), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, + ACTIONS(1111), 1, aux_sym_variable_tuning_token2, - ACTIONS(87), 32, + STATE(786), 1, + sym__comparison_operator, + STATE(787), 1, + sym__multiplicative_operator, + STATE(788), 1, + sym__additive_operator, + STATE(789), 1, + sym__logical_operator, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_LBRACK, - anon_sym_LPAREN, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(1291), 2, + sym_comment, + sym_include, + ACTIONS(1090), 3, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + ACTIONS(1113), 12, + sym__terminator, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + ACTIONS(2409), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145755,53 +148660,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - [108788] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [111060] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1197), 1, + ACTIONS(1198), 1, aux_sym_variable_tuning_token2, - STATE(830), 1, + STATE(786), 1, sym__comparison_operator, - STATE(831), 1, + STATE(787), 1, sym__multiplicative_operator, - STATE(832), 1, + STATE(788), 1, sym__additive_operator, - STATE(833), 1, + STATE(789), 1, sym__logical_operator, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1269), 2, + STATE(1292), 2, sym_comment, sym_include, - ACTIONS(1079), 3, + ACTIONS(1090), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(1199), 12, + ACTIONS(1200), 12, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token6, @@ -145814,7 +148708,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - ACTIONS(2396), 12, + ACTIONS(2409), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145827,39 +148721,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [108865] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [111137] = 20, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(952), 1, + ACTIONS(2578), 1, + sym__terminator, + ACTIONS(2584), 1, + aux_sym_input_stream_tuning_token9, + STATE(618), 1, sym__logical_operator, - STATE(958), 1, + STATE(619), 1, sym__additive_operator, - STATE(969), 1, - sym__comparison_operator, - STATE(970), 1, + STATE(620), 1, sym__multiplicative_operator, - ACTIONS(1205), 2, + STATE(621), 1, + sym__comparison_operator, + STATE(3542), 1, + aux_sym_input_stream_statement_repeat1, + STATE(3914), 1, + sym_input_stream_tuning, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(1270), 2, - sym_comment, - sym_include, - ACTIONS(1207), 29, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2580), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(1293), 2, + sym_comment, + sym_include, + ACTIONS(2582), 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(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145873,49 +148785,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_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [108933] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [111221] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(952), 1, - sym__logical_operator, - STATE(958), 1, - sym__additive_operator, - STATE(969), 1, + STATE(921), 1, sym__comparison_operator, - STATE(970), 1, + STATE(922), 1, sym__multiplicative_operator, - ACTIONS(1079), 2, + STATE(923), 1, + sym__additive_operator, + STATE(924), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1271), 2, + STATE(1294), 2, sym_comment, sym_include, - ACTIONS(1183), 12, + ACTIONS(1113), 12, anon_sym_COLON, anon_sym_COMMA, aux_sym_function_call_token1, @@ -145928,7 +148830,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -145942,57 +148844,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [109007] = 20, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [111295] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(2559), 1, - sym__terminator, - ACTIONS(2565), 1, - aux_sym_input_stream_tuning_token9, - STATE(631), 1, - sym__logical_operator, - STATE(632), 1, - sym__additive_operator, - STATE(633), 1, - sym__multiplicative_operator, - STATE(634), 1, + STATE(921), 1, sym__comparison_operator, - STATE(3473), 1, - aux_sym_input_stream_statement_repeat1, - STATE(3760), 1, - sym_input_stream_tuning, - ACTIONS(1079), 2, + STATE(922), 1, + sym__multiplicative_operator, + STATE(923), 1, + sym__additive_operator, + STATE(924), 1, + sym__logical_operator, + STATE(1295), 2, + sym_comment, + sym_include, + ACTIONS(1214), 3, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1216), 31, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + anon_sym_COLON, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2561), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(1272), 2, - sym_comment, - sym_include, - ACTIONS(2563), 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(2396), 13, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146006,52 +148888,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [109091] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [111359] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(952), 1, - sym__logical_operator, - STATE(958), 1, - sym__additive_operator, - STATE(969), 1, + STATE(921), 1, sym__comparison_operator, - STATE(970), 1, + STATE(922), 1, sym__multiplicative_operator, - ACTIONS(1079), 2, + STATE(923), 1, + sym__additive_operator, + STATE(924), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1273), 2, + STATE(1296), 2, sym_comment, sym_include, - ACTIONS(2567), 12, - anon_sym_COLON, - anon_sym_COMMA, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146065,33 +148941,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [109165] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1212), 14, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [111431] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1274), 2, - sym_comment, - sym_include, - ACTIONS(126), 5, + ACTIONS(1086), 1, anon_sym_SLASH, + STATE(921), 1, + sym__comparison_operator, + STATE(922), 1, + sym__multiplicative_operator, + STATE(923), 1, + sym__additive_operator, + STATE(924), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(124), 33, - sym__namecolon, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_LBRACK, - anon_sym_LPAREN, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(1297), 2, + sym_comment, + sym_include, + ACTIONS(1204), 12, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146101,51 +149011,59 @@ 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_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - [109221] = 9, - ACTIONS(3), 1, + [111505] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, - sym_identifier, - ACTIONS(2571), 1, - aux_sym_input_expression_token2, - STATE(1424), 1, - sym_qualified_name, - ACTIONS(1351), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(921), 1, + sym__comparison_operator, + STATE(922), 1, + sym__multiplicative_operator, + STATE(923), 1, + sym__additive_operator, + STATE(924), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1275), 2, - sym_comment, - sym_include, - ACTIONS(1347), 33, - anon_sym_SLASH, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(1298), 2, + sym_comment, + sym_include, + ACTIONS(1208), 12, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + ACTIONS(2409), 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, @@ -146156,69 +149074,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - [109283] = 20, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [111579] = 20, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2565), 1, + ACTIONS(2584), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2573), 1, + ACTIONS(2586), 1, sym__terminator, - STATE(631), 1, + STATE(618), 1, sym__logical_operator, - STATE(632), 1, + STATE(619), 1, sym__additive_operator, - STATE(633), 1, + STATE(620), 1, sym__multiplicative_operator, - STATE(634), 1, + STATE(621), 1, sym__comparison_operator, - STATE(3445), 1, + STATE(3534), 1, aux_sym_input_stream_statement_repeat1, - STATE(3760), 1, + STATE(3914), 1, sym_input_stream_tuning, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2561), 2, + ACTIONS(2580), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(1276), 2, + STATE(1299), 2, sym_comment, sym_include, - ACTIONS(2563), 6, + ACTIONS(2582), 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(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146232,52 +149138,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [109367] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [111663] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(952), 1, - sym__logical_operator, - STATE(958), 1, - sym__additive_operator, - STATE(969), 1, + STATE(921), 1, sym__comparison_operator, - STATE(970), 1, + STATE(922), 1, sym__multiplicative_operator, - ACTIONS(1079), 2, + STATE(923), 1, + sym__additive_operator, + STATE(924), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1277), 2, + STATE(1300), 2, sym_comment, sym_include, - ACTIONS(2396), 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(236), 14, - sym__or_operator, - sym__and_operator, + ACTIONS(1117), 12, anon_sym_COLON, anon_sym_COMMA, aux_sym_function_call_token1, @@ -146290,57 +149183,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [109439] = 20, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(2565), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2575), 1, - sym__terminator, - STATE(631), 1, - sym__logical_operator, - STATE(632), 1, - sym__additive_operator, - STATE(633), 1, - sym__multiplicative_operator, - STATE(634), 1, - sym__comparison_operator, - STATE(3428), 1, - aux_sym_input_stream_statement_repeat1, - STATE(3760), 1, - sym_input_stream_tuning, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2561), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(1278), 2, - sym_comment, - sym_include, - ACTIONS(2563), 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(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146354,57 +149197,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [109523] = 20, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [111737] = 20, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2565), 1, + ACTIONS(2584), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2577), 1, + ACTIONS(2588), 1, sym__terminator, - STATE(631), 1, + STATE(618), 1, sym__logical_operator, - STATE(632), 1, + STATE(619), 1, sym__additive_operator, - STATE(633), 1, + STATE(620), 1, sym__multiplicative_operator, - STATE(634), 1, + STATE(621), 1, sym__comparison_operator, - STATE(3430), 1, + STATE(3539), 1, aux_sym_input_stream_statement_repeat1, - STATE(3760), 1, + STATE(3914), 1, sym_input_stream_tuning, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2561), 2, + ACTIONS(2580), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(1279), 2, + STATE(1301), 2, sym_comment, sym_include, - ACTIONS(2563), 6, + ACTIONS(2582), 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(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146418,39 +149261,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [109607] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [111821] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(952), 1, - sym__logical_operator, - STATE(958), 1, - sym__additive_operator, - STATE(969), 1, + STATE(921), 1, sym__comparison_operator, - STATE(970), 1, + STATE(922), 1, sym__multiplicative_operator, - ACTIONS(1079), 2, + STATE(923), 1, + sym__additive_operator, + STATE(924), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1280), 2, + STATE(1302), 2, sym_comment, sym_include, - ACTIONS(1187), 12, + ACTIONS(1192), 12, anon_sym_COLON, anon_sym_COMMA, aux_sym_function_call_token1, @@ -146463,7 +149306,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146477,110 +149320,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [109681] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [111895] = 20, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2440), 1, - anon_sym_LBRACK, - ACTIONS(2442), 1, - anon_sym_LPAREN, - STATE(1325), 1, - sym_function_arguments, - STATE(1281), 2, - sym_comment, - sym_include, - ACTIONS(69), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(63), 30, - sym__or_operator, - sym__and_operator, - anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - 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_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - [109743] = 20, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2565), 1, + ACTIONS(2584), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2579), 1, + ACTIONS(2590), 1, sym__terminator, - STATE(631), 1, + STATE(618), 1, sym__logical_operator, - STATE(632), 1, + STATE(619), 1, sym__additive_operator, - STATE(633), 1, + STATE(620), 1, sym__multiplicative_operator, - STATE(634), 1, + STATE(621), 1, sym__comparison_operator, - STATE(3458), 1, + STATE(3548), 1, aux_sym_input_stream_statement_repeat1, - STATE(3760), 1, + STATE(3914), 1, sym_input_stream_tuning, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2561), 2, + ACTIONS(2580), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(1282), 2, + STATE(1303), 2, sym_comment, sym_include, - ACTIONS(2563), 6, + ACTIONS(2582), 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(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146594,39 +149384,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [109827] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [111979] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(952), 1, - sym__logical_operator, - STATE(958), 1, - sym__additive_operator, - STATE(969), 1, + STATE(921), 1, sym__comparison_operator, - STATE(970), 1, + STATE(922), 1, sym__multiplicative_operator, - ACTIONS(1079), 2, + STATE(923), 1, + sym__additive_operator, + STATE(924), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1283), 2, + STATE(1304), 2, sym_comment, sym_include, - ACTIONS(1191), 12, + ACTIONS(1196), 12, anon_sym_COLON, anon_sym_COMMA, aux_sym_function_call_token1, @@ -146639,7 +149429,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146653,116 +149443,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [109901] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [112053] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(952), 1, - sym__logical_operator, - STATE(958), 1, - sym__additive_operator, - STATE(969), 1, + STATE(921), 1, sym__comparison_operator, - STATE(970), 1, + STATE(922), 1, sym__multiplicative_operator, - ACTIONS(1079), 2, + STATE(923), 1, + sym__additive_operator, + STATE(924), 1, + sym__logical_operator, + ACTIONS(1119), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1284), 2, + STATE(1305), 2, sym_comment, sym_include, - ACTIONS(1106), 12, - anon_sym_COLON, - anon_sym_COMMA, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - ACTIONS(2396), 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, - [109975] = 20, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(2565), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2581), 1, - sym__terminator, - STATE(631), 1, - sym__logical_operator, - STATE(632), 1, - sym__additive_operator, - STATE(633), 1, - sym__multiplicative_operator, - STATE(634), 1, - sym__comparison_operator, - STATE(3432), 1, - aux_sym_input_stream_statement_repeat1, - STATE(3760), 1, - sym_input_stream_tuning, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1121), 29, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2561), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(1285), 2, - sym_comment, - sym_include, - ACTIONS(2563), 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(2396), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146776,39 +149489,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [110059] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [112121] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(952), 1, - sym__logical_operator, - STATE(958), 1, - sym__additive_operator, - STATE(969), 1, + STATE(921), 1, sym__comparison_operator, - STATE(970), 1, + STATE(922), 1, sym__multiplicative_operator, - ACTIONS(1079), 2, + STATE(923), 1, + sym__additive_operator, + STATE(924), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1286), 2, + STATE(1306), 2, sym_comment, sym_include, - ACTIONS(1199), 12, + ACTIONS(1200), 12, anon_sym_COLON, anon_sym_COMMA, aux_sym_function_call_token1, @@ -146821,7 +149544,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146835,39 +149558,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [110133] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [112195] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(952), 1, - sym__logical_operator, - STATE(958), 1, - sym__additive_operator, - STATE(969), 1, + STATE(921), 1, sym__comparison_operator, - STATE(970), 1, + STATE(922), 1, sym__multiplicative_operator, - ACTIONS(1079), 2, + STATE(923), 1, + sym__additive_operator, + STATE(924), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1287), 2, + STATE(1307), 2, sym_comment, sym_include, - ACTIONS(1102), 12, + ACTIONS(2409), 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(230), 14, + sym__or_operator, + sym__and_operator, anon_sym_COLON, anon_sym_COMMA, aux_sym_function_call_token1, @@ -146880,7 +149616,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - ACTIONS(2396), 13, + [112267] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(1308), 2, + sym_comment, + sym_include, + ACTIONS(102), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(100), 33, + sym__namecolon, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + sym__terminator, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146890,56 +149652,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, - [110207] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [112323] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(2467), 1, + sym__namecolon, + STATE(1278), 1, + aux_sym_object_access_repeat1, + STATE(1309), 2, + sym_comment, + sym_include, + ACTIONS(91), 5, anon_sym_SLASH, - STATE(952), 1, - sym__logical_operator, - STATE(958), 1, - sym__additive_operator, - STATE(969), 1, - sym__comparison_operator, - STATE(970), 1, - sym__multiplicative_operator, - ACTIONS(1079), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(89), 31, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - STATE(1288), 2, - sym_comment, - sym_include, - ACTIONS(1203), 12, - anon_sym_COLON, - anon_sym_COMMA, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -146949,61 +149704,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token3, aux_sym__comparison_operator_token4, aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [110281] = 20, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [112383] = 20, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2565), 1, + ACTIONS(2584), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2583), 1, + ACTIONS(2592), 1, sym__terminator, - STATE(631), 1, + STATE(618), 1, sym__logical_operator, - STATE(632), 1, + STATE(619), 1, sym__additive_operator, - STATE(633), 1, + STATE(620), 1, sym__multiplicative_operator, - STATE(634), 1, + STATE(621), 1, sym__comparison_operator, - STATE(3476), 1, + STATE(3502), 1, aux_sym_input_stream_statement_repeat1, - STATE(3760), 1, + STATE(3914), 1, sym_input_stream_tuning, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2561), 2, + ACTIONS(2580), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(1289), 2, + STATE(1310), 2, sym_comment, sym_include, - ACTIONS(2563), 6, + ACTIONS(2582), 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(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -147017,37 +149782,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [110365] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [112467] = 20, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(952), 1, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(2584), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2594), 1, + sym__terminator, + STATE(618), 1, sym__logical_operator, - STATE(958), 1, + STATE(619), 1, sym__additive_operator, - STATE(969), 1, - sym__comparison_operator, - STATE(970), 1, + STATE(620), 1, sym__multiplicative_operator, - STATE(1290), 2, - sym_comment, - sym_include, - ACTIONS(1193), 3, - anon_sym_SLASH, + STATE(621), 1, + sym__comparison_operator, + STATE(3565), 1, + aux_sym_input_stream_statement_repeat1, + STATE(3914), 1, + sym_input_stream_tuning, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1195), 31, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - anon_sym_COLON, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + ACTIONS(2580), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(1311), 2, + sym_comment, + sym_include, + ACTIONS(2582), 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(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -147061,67 +149846,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [110429] = 20, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [112551] = 20, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2565), 1, + ACTIONS(2584), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2585), 1, + ACTIONS(2596), 1, sym__terminator, - STATE(631), 1, + STATE(618), 1, sym__logical_operator, - STATE(632), 1, + STATE(619), 1, sym__additive_operator, - STATE(633), 1, + STATE(620), 1, sym__multiplicative_operator, - STATE(634), 1, + STATE(621), 1, sym__comparison_operator, - STATE(3463), 1, + STATE(3561), 1, aux_sym_input_stream_statement_repeat1, - STATE(3760), 1, + STATE(3914), 1, sym_input_stream_tuning, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2561), 2, + ACTIONS(2580), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(1291), 2, + STATE(1312), 2, sym_comment, sym_include, - ACTIONS(2563), 6, + ACTIONS(2582), 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(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -147135,57 +149910,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [110513] = 20, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [112635] = 20, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2565), 1, + ACTIONS(2584), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2587), 1, + ACTIONS(2598), 1, sym__terminator, - STATE(631), 1, + STATE(618), 1, sym__logical_operator, - STATE(632), 1, + STATE(619), 1, sym__additive_operator, - STATE(633), 1, + STATE(620), 1, sym__multiplicative_operator, - STATE(634), 1, + STATE(621), 1, sym__comparison_operator, - STATE(3454), 1, + STATE(3509), 1, aux_sym_input_stream_statement_repeat1, - STATE(3760), 1, + STATE(3914), 1, sym_input_stream_tuning, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2561), 2, + ACTIONS(2580), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(1292), 2, + STATE(1313), 2, sym_comment, sym_include, - ACTIONS(2563), 6, + ACTIONS(2582), 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(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -147199,39 +149974,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [110597] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [112719] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(952), 1, - sym__logical_operator, - STATE(958), 1, - sym__additive_operator, - STATE(969), 1, + STATE(921), 1, sym__comparison_operator, - STATE(970), 1, + STATE(922), 1, sym__multiplicative_operator, - ACTIONS(1079), 2, + STATE(923), 1, + sym__additive_operator, + STATE(924), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1293), 2, + STATE(1314), 2, sym_comment, sym_include, - ACTIONS(1112), 12, + ACTIONS(1125), 12, anon_sym_COLON, anon_sym_COMMA, aux_sym_function_call_token1, @@ -147244,7 +150019,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -147258,40 +150033,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [110671] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [112793] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(952), 1, - sym__logical_operator, - STATE(958), 1, - sym__additive_operator, - STATE(969), 1, + STATE(921), 1, sym__comparison_operator, - STATE(970), 1, + STATE(922), 1, sym__multiplicative_operator, - ACTIONS(1177), 2, + STATE(923), 1, + sym__additive_operator, + STATE(924), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1294), 2, + STATE(1315), 2, sym_comment, sym_include, - ACTIONS(1179), 27, - sym__or_operator, - sym__and_operator, + ACTIONS(2600), 12, anon_sym_COLON, anon_sym_COMMA, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -147305,67 +150092,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [110741] = 20, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [112867] = 20, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2565), 1, + ACTIONS(2584), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2589), 1, + ACTIONS(2602), 1, sym__terminator, - STATE(631), 1, + STATE(618), 1, sym__logical_operator, - STATE(632), 1, + STATE(619), 1, sym__additive_operator, - STATE(633), 1, + STATE(620), 1, sym__multiplicative_operator, - STATE(634), 1, + STATE(621), 1, sym__comparison_operator, - STATE(3426), 1, + STATE(3510), 1, aux_sym_input_stream_statement_repeat1, - STATE(3760), 1, + STATE(3914), 1, sym_input_stream_tuning, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2561), 2, + ACTIONS(2580), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(1295), 2, + STATE(1316), 2, sym_comment, sym_include, - ACTIONS(2563), 6, + ACTIONS(2582), 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(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -147379,36 +150156,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [110825] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [112951] = 20, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(914), 1, - sym__comparison_operator, - STATE(915), 1, - sym__multiplicative_operator, - STATE(916), 1, - sym__additive_operator, - STATE(917), 1, - sym__logical_operator, - STATE(1296), 2, - sym_comment, - sym_include, - ACTIONS(1193), 3, + ACTIONS(1086), 1, anon_sym_SLASH, + ACTIONS(2584), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2604), 1, + sym__terminator, + STATE(618), 1, + sym__logical_operator, + STATE(619), 1, + sym__additive_operator, + STATE(620), 1, + sym__multiplicative_operator, + STATE(621), 1, + sym__comparison_operator, + STATE(3537), 1, + aux_sym_input_stream_statement_repeat1, + STATE(3914), 1, + sym_input_stream_tuning, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1195), 30, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + ACTIONS(2580), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(1317), 2, + sym_comment, + sym_include, + ACTIONS(2582), 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(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -147422,57 +150220,49 @@ 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_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_input_stream_tuning_token11, - [110888] = 8, - ACTIONS(65), 1, + [113035] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2444), 1, - sym__namedot, - STATE(1309), 1, - aux_sym_qualified_name_repeat1, - STATE(1297), 2, + ACTIONS(2606), 1, + sym_identifier, + ACTIONS(2608), 1, + aux_sym_input_expression_token2, + STATE(1422), 1, + sym_qualified_name, + ACTIONS(1358), 2, + sym__or_operator, + sym__and_operator, + STATE(1318), 2, sym_comment, sym_include, - ACTIONS(108), 5, + ACTIONS(1354), 33, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(106), 30, - sym__or_operator, - sym__and_operator, anon_sym_STAR, sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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_variable_tuning_token1, + aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token6, aux_sym_variable_tuning_token7, aux_sym_variable_tuning_token8, @@ -147483,51 +150273,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [110947] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [113097] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(2461), 1, + anon_sym_LBRACK, + ACTIONS(2463), 1, + anon_sym_LPAREN, + STATE(1347), 1, + sym_function_arguments, + STATE(1319), 2, + sym_comment, + sym_include, + ACTIONS(71), 5, anon_sym_SLASH, - STATE(914), 1, - sym__comparison_operator, - STATE(915), 1, - sym__multiplicative_operator, - STATE(916), 1, - sym__additive_operator, - STATE(917), 1, - sym__logical_operator, - ACTIONS(1079), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(65), 30, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1298), 2, - sym_comment, - sym_include, - ACTIONS(1187), 11, - 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_input_stream_tuning_token11, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -147537,42 +150312,48 @@ 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, - [111020] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [113159] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(2467), 1, + sym__namecolon, + STATE(1279), 1, + aux_sym_object_access_repeat1, + STATE(1320), 2, + sym_comment, + sym_include, + ACTIONS(87), 5, anon_sym_SLASH, - STATE(914), 1, - sym__comparison_operator, - STATE(915), 1, - sym__multiplicative_operator, - STATE(916), 1, - sym__additive_operator, - STATE(917), 1, - sym__logical_operator, - ACTIONS(1205), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(1299), 2, - sym_comment, - sym_include, - ACTIONS(1207), 28, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(85), 30, sym__or_operator, sym__and_operator, + anon_sym_STAR, sym__terminator, anon_sym_PLUS, anon_sym_DASH, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -147582,65 +150363,48 @@ 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_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_input_stream_tuning_token11, - [111087] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [113218] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(2467), 1, + sym__namecolon, + STATE(1279), 1, + aux_sym_object_access_repeat1, + STATE(1321), 2, + sym_comment, + sym_include, + ACTIONS(71), 5, anon_sym_SLASH, - STATE(914), 1, - sym__comparison_operator, - STATE(915), 1, - sym__multiplicative_operator, - STATE(916), 1, - sym__additive_operator, - STATE(917), 1, - sym__logical_operator, - ACTIONS(1079), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(65), 30, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1300), 2, - sym_comment, - sym_include, - ACTIONS(1203), 11, - 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_input_stream_tuning_token11, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -147650,55 +150414,48 @@ 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, - [111160] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [113277] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(2463), 1, + anon_sym_LPAREN, + STATE(1347), 1, + sym_function_arguments, + STATE(1322), 2, + sym_comment, + sym_include, + ACTIONS(87), 5, anon_sym_SLASH, - STATE(914), 1, - sym__comparison_operator, - STATE(915), 1, - sym__multiplicative_operator, - STATE(916), 1, - sym__additive_operator, - STATE(917), 1, - sym__logical_operator, - ACTIONS(1079), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(85), 30, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1301), 2, - sym_comment, - sym_include, - ACTIONS(1102), 11, - 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_input_stream_tuning_token11, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -147708,58 +150465,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, - [111233] = 15, - ACTIONS(65), 1, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [113336] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(914), 1, - sym__comparison_operator, - STATE(915), 1, - sym__multiplicative_operator, - STATE(916), 1, - sym__additive_operator, - STATE(917), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(2610), 1, + sym_identifier, + STATE(1428), 1, + sym_qualified_name, + ACTIONS(1581), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1302), 2, + STATE(1323), 2, sym_comment, sym_include, - ACTIONS(1191), 11, + ACTIONS(1579), 33, + anon_sym_SLASH, + anon_sym_STAR, 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_input_stream_tuning_token11, - ACTIONS(2396), 13, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, @@ -147770,51 +150518,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [111306] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [113395] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(914), 1, + STATE(876), 1, sym__comparison_operator, - STATE(915), 1, + STATE(877), 1, sym__multiplicative_operator, - STATE(916), 1, + STATE(878), 1, sym__additive_operator, - STATE(917), 1, + STATE(879), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1119), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1303), 2, + STATE(1324), 2, sym_comment, sym_include, - ACTIONS(1106), 11, + ACTIONS(1121), 28, + sym__or_operator, + sym__and_operator, sym__terminator, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token2, - aux_sym_input_stream_tuning_token3, - aux_sym_input_stream_tuning_token4, - aux_sym_input_stream_tuning_token5, - aux_sym_input_stream_tuning_token6, - aux_sym_input_stream_tuning_token7, - aux_sym_input_stream_tuning_token8, - aux_sym_input_stream_tuning_token9, - aux_sym_input_stream_tuning_token11, - ACTIONS(2396), 13, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -147828,26 +150575,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [111379] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + 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_input_stream_tuning_token11, + [113462] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2591), 1, - sym__namedot, - STATE(1304), 3, + STATE(1325), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(119), 5, + ACTIONS(117), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(117), 30, + ACTIONS(115), 32, + sym__namecolon, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -147876,41 +150631,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, + aux_sym_function_call_token1, aux_sym_getter_token1, aux_sym_setter_token1, - [111436] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [113517] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(914), 1, + STATE(876), 1, sym__comparison_operator, - STATE(915), 1, + STATE(877), 1, sym__multiplicative_operator, - STATE(916), 1, + STATE(878), 1, sym__additive_operator, - STATE(917), 1, + STATE(879), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1305), 2, + STATE(1326), 2, sym_comment, sym_include, - ACTIONS(1199), 11, + ACTIONS(1196), 11, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -147922,7 +150678,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_stream_tuning_token8, aux_sym_input_stream_tuning_token9, aux_sym_input_stream_tuning_token11, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -147936,51 +150692,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [111509] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [113590] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + STATE(1327), 2, + sym_comment, + sym_include, + ACTIONS(144), 5, anon_sym_SLASH, - STATE(914), 1, - sym__comparison_operator, - STATE(915), 1, - sym__multiplicative_operator, - STATE(916), 1, - sym__additive_operator, - STATE(917), 1, - sym__logical_operator, - ACTIONS(1079), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(142), 32, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1306), 2, + aux_sym__multiplicative_operator_token1, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + 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_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_function_call_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + [113645] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(1328), 2, sym_comment, sym_include, - ACTIONS(1112), 11, + ACTIONS(140), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(138), 32, + sym__namecolon, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, 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_input_stream_tuning_token11, - ACTIONS(2396), 13, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -147990,43 +150775,100 @@ 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, - [111582] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_function_call_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + [113700] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + STATE(1329), 2, + sym_comment, + sym_include, + ACTIONS(117), 5, anon_sym_SLASH, - STATE(914), 1, - sym__comparison_operator, - STATE(915), 1, - sym__multiplicative_operator, - STATE(916), 1, - sym__additive_operator, - STATE(917), 1, - sym__logical_operator, - ACTIONS(1177), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(115), 32, + sym__namecolon, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1307), 2, + aux_sym__multiplicative_operator_token1, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + 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_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + anon_sym_NO_DASHERROR, + [113755] = 10, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(876), 1, + sym__comparison_operator, + STATE(877), 1, + sym__multiplicative_operator, + STATE(878), 1, + sym__additive_operator, + STATE(879), 1, + sym__logical_operator, + STATE(1330), 2, sym_comment, sym_include, - ACTIONS(1179), 26, + ACTIONS(1214), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1216), 30, sym__or_operator, sym__and_operator, + anon_sym_STAR, sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -148050,41 +150892,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_stream_tuning_token8, aux_sym_input_stream_tuning_token9, aux_sym_input_stream_tuning_token11, - [111651] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [113818] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2596), 1, + STATE(876), 1, + sym__comparison_operator, + STATE(877), 1, + sym__multiplicative_operator, + STATE(878), 1, + sym__additive_operator, + STATE(879), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1331), 2, + sym_comment, + sym_include, + ACTIONS(1212), 13, + sym__or_operator, + sym__and_operator, + sym__terminator, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token5, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + aux_sym_input_stream_tuning_token9, aux_sym_input_stream_tuning_token11, - STATE(914), 1, + ACTIONS(2409), 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, + [113889] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(876), 1, sym__comparison_operator, - STATE(915), 1, + STATE(877), 1, sym__multiplicative_operator, - STATE(916), 1, + STATE(878), 1, sym__additive_operator, - STATE(917), 1, + STATE(879), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1308), 2, + STATE(1332), 2, sym_comment, sym_include, - ACTIONS(2594), 10, + ACTIONS(1204), 11, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -148095,7 +150992,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, aux_sym_input_stream_tuning_token9, - ACTIONS(2396), 13, + aux_sym_input_stream_tuning_token11, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -148109,27 +151007,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [111726] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [113962] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2444), 1, - sym__namedot, - STATE(1304), 1, - aux_sym_qualified_name_repeat1, - STATE(1309), 2, + ACTIONS(2612), 1, + sym__namedoublecolon, + STATE(1333), 3, sym_comment, sym_include, - ACTIONS(100), 5, + aux_sym_member_access_repeat1, + ACTIONS(129), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(98), 30, + ACTIONS(127), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -148160,78 +151057,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [111785] = 8, - ACTIONS(65), 1, + [114019] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2442), 1, - anon_sym_LPAREN, - STATE(1325), 1, - sym_function_arguments, - STATE(1310), 2, + ACTIONS(2415), 1, + sym_identifier, + ACTIONS(2615), 1, + aux_sym_input_expression_token2, + STATE(320), 1, + sym_qualified_name, + ACTIONS(1358), 2, + sym__or_operator, + sym__and_operator, + STATE(1334), 2, sym_comment, sym_include, - ACTIONS(85), 5, + ACTIONS(1354), 32, + anon_sym_COLON, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(83), 30, - sym__or_operator, - sym__and_operator, anon_sym_STAR, - sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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_variable_tuning_token1, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - [111844] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [114080] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2448), 1, - sym__namedoublecolon, - STATE(1319), 1, - aux_sym_member_access_repeat1, - STATE(1311), 2, + ACTIONS(2465), 1, + sym__namedot, + STATE(1339), 1, + aux_sym_qualified_name_repeat1, + STATE(1335), 2, sym_comment, sym_include, - ACTIONS(130), 5, + ACTIONS(106), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(128), 30, + ACTIONS(104), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -148262,86 +151160,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [111903] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(98), 1, - sym__escaped_string, - ACTIONS(720), 1, - sym__namedot, - STATE(1315), 1, - aux_sym_qualified_name_repeat1, - STATE(1312), 2, - sym_comment, - sym_include, - ACTIONS(100), 35, - 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, - aux_sym_scope_tuning_token1, - aux_sym_function_call_token1, - aux_sym_if_statement_token1, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_can_find_expression_token1, - aux_sym_of_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [111960] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [114139] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(914), 1, + STATE(876), 1, sym__comparison_operator, - STATE(915), 1, + STATE(877), 1, sym__multiplicative_operator, - STATE(916), 1, + STATE(878), 1, sym__additive_operator, - STATE(917), 1, + STATE(879), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1313), 2, + STATE(1336), 2, sym_comment, sym_include, - ACTIONS(236), 13, + ACTIONS(230), 13, sym__or_operator, sym__and_operator, sym__terminator, @@ -148355,7 +151203,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_stream_tuning_token8, aux_sym_input_stream_tuning_token9, aux_sym_input_stream_tuning_token11, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -148369,71 +151217,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [112031] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2444), 1, - sym__namedot, - STATE(1309), 1, - aux_sym_qualified_name_repeat1, - STATE(1314), 2, - sym_comment, - sym_include, - ACTIONS(104), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(102), 30, - sym__or_operator, - sym__and_operator, - anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - 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_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - [112090] = 6, + [114210] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(117), 1, + ACTIONS(108), 1, sym__escaped_string, - ACTIONS(2598), 1, + ACTIONS(2617), 1, sym__namedot, - STATE(1315), 3, + STATE(1337), 3, sym_comment, sym_include, aux_sym_qualified_name_repeat1, - ACTIONS(119), 35, + ACTIONS(110), 35, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -148469,39 +151266,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [112145] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [114265] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(914), 1, + STATE(876), 1, sym__comparison_operator, - STATE(915), 1, + STATE(877), 1, sym__multiplicative_operator, - STATE(916), 1, + STATE(878), 1, sym__additive_operator, - STATE(917), 1, + STATE(879), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1316), 2, + STATE(1338), 2, sym_comment, sym_include, - ACTIONS(1183), 11, + ACTIONS(1125), 11, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -148513,7 +151310,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_stream_tuning_token8, aux_sym_input_stream_tuning_token9, aux_sym_input_stream_tuning_token11, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -148527,99 +151324,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [112218] = 9, - ACTIONS(3), 1, + [114338] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2402), 1, - sym_identifier, - ACTIONS(2601), 1, - aux_sym_input_expression_token2, - STATE(243), 1, - sym_qualified_name, - ACTIONS(1351), 2, - sym__or_operator, - sym__and_operator, - STATE(1317), 2, + ACTIONS(2620), 1, + sym__namedot, + STATE(1339), 3, sym_comment, sym_include, - ACTIONS(1347), 32, - anon_sym_COLON, + aux_sym_qualified_name_repeat1, + ACTIONS(110), 5, anon_sym_SLASH, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [112279] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2603), 1, - sym_identifier, - STATE(1417), 1, - sym_qualified_name, - ACTIONS(1366), 2, + aux_sym_variable_tuning_token2, + ACTIONS(108), 30, sym__or_operator, sym__and_operator, - STATE(1318), 2, - sym_comment, - sym_include, - ACTIONS(1364), 33, - anon_sym_SLASH, anon_sym_STAR, sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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_variable_tuning_token1, - aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token6, aux_sym_variable_tuning_token7, aux_sym_variable_tuning_token8, @@ -148630,26 +151374,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [112338] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [114395] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2605), 1, - sym__namedoublecolon, - STATE(1319), 3, + STATE(1340), 2, sym_comment, sym_include, - aux_sym_member_access_repeat1, - ACTIONS(112), 5, + ACTIONS(144), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(110), 30, + ACTIONS(142), 32, + sym__namecolon, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -148680,88 +151422,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [112395] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(610), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2610), 1, - anon_sym_COMMA, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - ACTIONS(2614), 1, - aux_sym_widget_field_token1, - STATE(913), 1, - sym__logical_operator, - STATE(919), 1, - sym__additive_operator, - STATE(920), 1, - sym__multiplicative_operator, - STATE(922), 1, - sym__comparison_operator, - STATE(1863), 1, - sym_do_block, - STATE(3781), 1, - aux_sym_on_statement_repeat1, - STATE(4083), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6240), 1, - sym_label, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1320), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 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, - [112481] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + anon_sym_NO_DASHERROR, + [114450] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1321), 2, + STATE(1341), 2, sym_comment, sym_include, - ACTIONS(144), 5, + ACTIONS(140), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(142), 31, - sym__namedoublecolon, + ACTIONS(138), 32, + sym__namecolon, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -148792,25 +151471,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [112535] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + anon_sym_NO_DASHERROR, + [114505] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2616), 1, - sym__namedot, - STATE(1322), 2, + ACTIONS(2623), 1, + anon_sym_NO_DASHERROR, + STATE(1342), 2, sym_comment, sym_include, - ACTIONS(134), 5, + ACTIONS(393), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(132), 30, + ACTIONS(391), 31, + sym__namecolon, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -148841,60 +151522,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [112591] = 22, - ACTIONS(3), 1, + [114562] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(506), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2610), 1, - anon_sym_COMMA, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - ACTIONS(2618), 1, - aux_sym_widget_field_token1, - STATE(913), 1, - sym__logical_operator, - STATE(919), 1, - sym__additive_operator, - STATE(920), 1, - sym__multiplicative_operator, - STATE(922), 1, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(876), 1, sym__comparison_operator, - STATE(3765), 1, - aux_sym_on_statement_repeat1, - STATE(4124), 1, - aux_sym_on_statement_repeat2, - STATE(4800), 1, - sym_do_block, - STATE(5368), 1, - sym_widget_phrase, - STATE(6189), 1, - sym_label, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, + STATE(877), 1, + sym__multiplicative_operator, + STATE(878), 1, + sym__additive_operator, + STATE(879), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1323), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, - anon_sym_LT, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1343), 2, + sym_comment, + sym_include, + ACTIONS(1192), 11, + 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_input_stream_tuning_token11, + ACTIONS(2409), 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, @@ -148905,50 +151580,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [112677] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [114635] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(876), 1, sym__comparison_operator, - ACTIONS(1079), 2, + STATE(877), 1, + sym__multiplicative_operator, + STATE(878), 1, + sym__additive_operator, + STATE(879), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1324), 2, + STATE(1344), 2, sym_comment, sym_include, - ACTIONS(1203), 10, - anon_sym_RPAREN, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_of_token1, - ACTIONS(2396), 13, + ACTIONS(1208), 11, + 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_input_stream_tuning_token11, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -148962,96 +151638,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [112749] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [114708] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2620), 1, - aux_sym_function_call_token1, - STATE(1325), 2, - sym_comment, - sym_include, - ACTIONS(232), 5, + ACTIONS(1086), 1, anon_sym_SLASH, + STATE(876), 1, + sym__comparison_operator, + STATE(877), 1, + sym__multiplicative_operator, + STATE(878), 1, + sym__additive_operator, + STATE(879), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(230), 30, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - 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_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - [112805] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(2622), 1, - aux_sym_input_expression_token2, - STATE(22), 1, - sym_qualified_name, - ACTIONS(1351), 2, - sym__or_operator, - sym__and_operator, - STATE(1326), 2, + STATE(1345), 2, sym_comment, sym_include, - ACTIONS(1347), 31, - anon_sym_SLASH, - anon_sym_STAR, + ACTIONS(1113), 11, sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, @@ -149062,60 +151682,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_stream_tuning_token8, aux_sym_input_stream_tuning_token9, aux_sym_input_stream_tuning_token11, - [112865] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(506), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2610), 1, - anon_sym_COMMA, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - ACTIONS(2624), 1, - aux_sym_widget_field_token1, - STATE(913), 1, - sym__logical_operator, - STATE(919), 1, - sym__additive_operator, - STATE(920), 1, - sym__multiplicative_operator, - STATE(922), 1, - sym__comparison_operator, - STATE(3725), 1, - aux_sym_on_statement_repeat1, - STATE(4173), 1, - aux_sym_on_statement_repeat2, - STATE(4916), 1, - sym_do_block, - STATE(5368), 1, - sym_widget_phrase, - STATE(6189), 1, - sym_label, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1327), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, - anon_sym_LT, + ACTIONS(2409), 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, @@ -149126,23 +151696,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [112951] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [114781] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1328), 2, + ACTIONS(2469), 1, + sym__namedoublecolon, + STATE(1333), 1, + aux_sym_member_access_repeat1, + STATE(1346), 2, sym_comment, sym_include, - ACTIONS(148), 5, + ACTIONS(121), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(146), 31, + ACTIONS(119), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -149173,34 +151747,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - anon_sym_NO_DASHERROR, - [113005] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [114840] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, - sym__comparison_operator, - STATE(1329), 2, + ACTIONS(2625), 1, + aux_sym_function_call_token1, + STATE(1347), 2, sym_comment, sym_include, - ACTIONS(1193), 3, + ACTIONS(158), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1195), 29, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(156), 31, + sym__namecolon, sym__or_operator, sym__and_operator, anon_sym_STAR, - anon_sym_RPAREN, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -149213,36 +151783,41 @@ 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_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_of_token1, - [113067] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [114897] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1330), 2, + ACTIONS(2465), 1, + sym__namedot, + STATE(1335), 1, + aux_sym_qualified_name_repeat1, + STATE(1348), 2, sym_comment, sym_include, - ACTIONS(152), 5, + ACTIONS(136), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(150), 31, + ACTIONS(134), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -149273,39 +151848,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - anon_sym_NO_DASHERROR, - [113121] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [114956] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(876), 1, sym__comparison_operator, - ACTIONS(1205), 2, + STATE(877), 1, + sym__multiplicative_operator, + STATE(878), 1, + sym__additive_operator, + STATE(879), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(1331), 2, - sym_comment, - sym_include, - ACTIONS(1207), 27, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - anon_sym_RPAREN, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1349), 2, + sym_comment, + sym_include, + ACTIONS(1200), 11, + 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_input_stream_tuning_token11, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -149319,48 +151906,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_of_token1, - [113187] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [115029] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(876), 1, sym__comparison_operator, - ACTIONS(1177), 2, + STATE(877), 1, + sym__multiplicative_operator, + STATE(878), 1, + sym__additive_operator, + STATE(879), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1332), 2, + STATE(1350), 2, sym_comment, sym_include, - ACTIONS(1179), 25, - sym__or_operator, - sym__and_operator, - anon_sym_RPAREN, + ACTIONS(1117), 11, + 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_input_stream_tuning_token11, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -149374,7 +151964,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + [115102] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(104), 1, + sym__escaped_string, + ACTIONS(725), 1, + sym__namedot, + STATE(1337), 1, + aux_sym_qualified_name_repeat1, + STATE(1351), 2, + sym_comment, + sym_include, + ACTIONS(106), 35, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, + aux_sym_scope_tuning_token1, aux_sym_function_call_token1, + aux_sym_if_statement_token1, aux_sym_using_statement_token1, aux_sym_where_clause_token1, aux_sym_query_tuning_token1, @@ -149382,103 +152009,97 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, + aux_sym_can_find_expression_token1, aux_sym_of_token1, - [113255] = 22, - ACTIONS(3), 1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [115159] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(506), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2610), 1, - anon_sym_COMMA, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - ACTIONS(2626), 1, - aux_sym_widget_field_token1, - STATE(913), 1, - sym__logical_operator, - STATE(919), 1, - sym__additive_operator, - STATE(920), 1, - sym__multiplicative_operator, - STATE(922), 1, - sym__comparison_operator, - STATE(3774), 1, - aux_sym_on_statement_repeat1, - STATE(4109), 1, - aux_sym_on_statement_repeat2, - STATE(4994), 1, - sym_do_block, - STATE(5368), 1, - sym_widget_phrase, - STATE(6189), 1, - sym_label, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1333), 2, + ACTIONS(2465), 1, + sym__namedot, + STATE(1335), 1, + aux_sym_qualified_name_repeat1, + STATE(1352), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(125), 5, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(123), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 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, - [113341] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [115218] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(631), 1, - sym__logical_operator, - STATE(632), 1, - sym__additive_operator, - STATE(633), 1, - sym__multiplicative_operator, - STATE(634), 1, + ACTIONS(2629), 1, + aux_sym_input_stream_tuning_token11, + STATE(876), 1, sym__comparison_operator, - ACTIONS(1079), 2, + STATE(877), 1, + sym__multiplicative_operator, + STATE(878), 1, + sym__additive_operator, + STATE(879), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1334), 2, + STATE(1353), 2, sym_comment, sym_include, - ACTIONS(236), 12, - sym__or_operator, - sym__and_operator, + ACTIONS(2627), 10, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -149489,7 +152110,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, aux_sym_input_stream_tuning_token9, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -149503,50 +152124,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [113411] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [115293] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(763), 1, + STATE(618), 1, sym__logical_operator, - STATE(764), 1, + STATE(619), 1, sym__additive_operator, - STATE(766), 1, + STATE(620), 1, sym__multiplicative_operator, - STATE(767), 1, + STATE(621), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1335), 2, + STATE(1354), 2, sym_comment, sym_include, - ACTIONS(1112), 10, - anon_sym_RPAREN, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_of_token1, - ACTIONS(2396), 13, + ACTIONS(1192), 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(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -149560,50 +152181,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [113483] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [115365] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(631), 1, + STATE(618), 1, sym__logical_operator, - STATE(632), 1, + STATE(619), 1, sym__additive_operator, - STATE(633), 1, + STATE(620), 1, sym__multiplicative_operator, - STATE(634), 1, + STATE(621), 1, sym__comparison_operator, - ACTIONS(1079), 2, + STATE(1355), 2, + sym_comment, + sym_include, + ACTIONS(1214), 3, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1216), 29, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1336), 2, - sym_comment, - sym_include, - ACTIONS(1183), 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(2396), 13, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -149617,40 +152224,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [113555] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(631), 1, - sym__logical_operator, - STATE(632), 1, - sym__additive_operator, - STATE(633), 1, - sym__multiplicative_operator, - STATE(634), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1337), 2, - sym_comment, - sym_include, - ACTIONS(1112), 10, - sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, @@ -149660,69 +152233,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, aux_sym_input_stream_tuning_token9, - ACTIONS(2396), 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, - [113627] = 22, + [115427] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(448), 1, + ACTIONS(615), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2633), 1, anon_sym_COMMA, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - ACTIONS(2628), 1, + ACTIONS(2637), 1, aux_sym_widget_field_token1, - STATE(913), 1, + STATE(863), 1, sym__logical_operator, - STATE(919), 1, + STATE(864), 1, sym__additive_operator, - STATE(920), 1, + STATE(866), 1, sym__multiplicative_operator, - STATE(922), 1, + STATE(867), 1, sym__comparison_operator, - STATE(2253), 1, + STATE(1550), 1, sym_do_block, - STATE(3754), 1, + STATE(3880), 1, aux_sym_on_statement_repeat1, - STATE(4138), 1, + STATE(4174), 1, aux_sym_on_statement_repeat2, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6368), 1, + STATE(6172), 1, sym_label, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1338), 2, + STATE(1356), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -149738,203 +152297,178 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [113713] = 6, - ACTIONS(65), 1, + [115513] = 22, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1339), 2, + ACTIONS(563), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2633), 1, + anon_sym_COMMA, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + ACTIONS(2639), 1, + aux_sym_widget_field_token1, + STATE(863), 1, + sym__logical_operator, + STATE(864), 1, + sym__additive_operator, + STATE(866), 1, + sym__multiplicative_operator, + STATE(867), 1, + sym__comparison_operator, + STATE(1808), 1, + sym_do_block, + STATE(3896), 1, + aux_sym_on_statement_repeat1, + STATE(4189), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6365), 1, + sym_label, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(1357), 2, sym_comment, sym_include, - ACTIONS(140), 5, + ACTIONS(1086), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(138), 31, - sym__or_operator, - sym__and_operator, anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_token1, + ACTIONS(1090), 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_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - anon_sym_NO_DASHERROR, - [113767] = 15, - ACTIONS(65), 1, + [115599] = 22, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(631), 1, + ACTIONS(563), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2633), 1, + anon_sym_COMMA, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + ACTIONS(2641), 1, + aux_sym_widget_field_token1, + STATE(863), 1, sym__logical_operator, - STATE(632), 1, + STATE(864), 1, sym__additive_operator, - STATE(633), 1, + STATE(866), 1, sym__multiplicative_operator, - STATE(634), 1, + STATE(867), 1, sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + STATE(1831), 1, + sym_do_block, + STATE(3888), 1, + aux_sym_on_statement_repeat1, + STATE(4159), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6365), 1, + sym_label, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1340), 2, - sym_comment, - sym_include, - ACTIONS(2630), 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(2396), 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, - [113839] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(1341), 2, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(1358), 2, sym_comment, sym_include, - ACTIONS(148), 5, + ACTIONS(1086), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(146), 31, - sym__or_operator, - sym__and_operator, anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_token1, + ACTIONS(1090), 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_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_function_call_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - [113893] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [115685] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(631), 1, - sym__logical_operator, - STATE(632), 1, - sym__additive_operator, - STATE(633), 1, - sym__multiplicative_operator, - STATE(634), 1, + STATE(945), 1, sym__comparison_operator, - ACTIONS(1079), 2, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1342), 2, + STATE(1359), 2, sym_comment, sym_include, - ACTIONS(1191), 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(2396), 13, + ACTIONS(2600), 10, + anon_sym_RPAREN, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_of_token1, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -149948,160 +152482,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [113965] = 9, + [115757] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2640), 3, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_method_tuning_token1, - STATE(1343), 3, - sym_comment, - sym_include, - aux_sym_method_definition_repeat1, - STATE(1488), 3, - sym_scope_tuning, - sym_access_tuning, - sym_method_tuning, - ACTIONS(2634), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - ACTIONS(2637), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - ACTIONS(2632), 20, + ACTIONS(563), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, 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_class_type_token1, - [114025] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(631), 1, + ACTIONS(2633), 1, + anon_sym_COMMA, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + ACTIONS(2643), 1, + aux_sym_widget_field_token1, + STATE(863), 1, sym__logical_operator, - STATE(632), 1, + STATE(864), 1, sym__additive_operator, - STATE(633), 1, + STATE(866), 1, sym__multiplicative_operator, - STATE(634), 1, + STATE(867), 1, sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + STATE(1860), 1, + sym_do_block, + STATE(3877), 1, + aux_sym_on_statement_repeat1, + STATE(4111), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6365), 1, + sym_label, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1344), 2, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(1360), 2, sym_comment, sym_include, - ACTIONS(1106), 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(2396), 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, - [114097] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 3, anon_sym_SLASH, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1345), 2, - sym_comment, - sym_include, - ACTIONS(236), 12, - sym__or_operator, - sym__and_operator, - anon_sym_RPAREN, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_of_token1, - ACTIONS(2396), 13, + ACTIONS(1090), 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, @@ -150112,39 +152546,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [114167] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [115843] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(631), 1, + STATE(618), 1, sym__logical_operator, - STATE(632), 1, + STATE(619), 1, sym__additive_operator, - STATE(633), 1, + STATE(620), 1, sym__multiplicative_operator, - STATE(634), 1, + STATE(621), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1346), 2, + STATE(1361), 2, sym_comment, sym_include, - ACTIONS(1199), 10, + ACTIONS(2645), 10, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -150155,7 +152589,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, aux_sym_input_stream_tuning_token9, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -150169,87 +152603,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [114239] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [115915] = 15, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(1347), 2, - sym_comment, - sym_include, - ACTIONS(152), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(150), 31, - sym__or_operator, - sym__and_operator, - anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - 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_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_function_call_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - [114293] = 15, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - ACTIONS(1079), 2, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1348), 2, + STATE(1362), 2, sym_comment, sym_include, - ACTIONS(1183), 10, + ACTIONS(1208), 10, anon_sym_RPAREN, aux_sym_function_call_token1, aux_sym_using_statement_token1, @@ -150260,7 +152646,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, aux_sym_of_token1, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -150274,50 +152660,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [114365] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [115987] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(631), 1, - sym__logical_operator, - STATE(632), 1, - sym__additive_operator, - STATE(633), 1, - sym__multiplicative_operator, - STATE(634), 1, + STATE(945), 1, sym__comparison_operator, - ACTIONS(1079), 2, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1349), 2, + STATE(1363), 2, sym_comment, sym_include, - ACTIONS(1102), 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(2396), 13, + ACTIONS(1196), 10, + anon_sym_RPAREN, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_of_token1, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -150331,98 +152717,114 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [114437] = 6, - ACTIONS(65), 1, + [116059] = 22, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1350), 2, + ACTIONS(615), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2633), 1, + anon_sym_COMMA, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + ACTIONS(2647), 1, + aux_sym_widget_field_token1, + STATE(863), 1, + sym__logical_operator, + STATE(864), 1, + sym__additive_operator, + STATE(866), 1, + sym__multiplicative_operator, + STATE(867), 1, + sym__comparison_operator, + STATE(1601), 1, + sym_do_block, + STATE(3901), 1, + aux_sym_on_statement_repeat1, + STATE(4230), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6172), 1, + sym_label, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(1364), 2, sym_comment, sym_include, - ACTIONS(140), 5, + ACTIONS(1086), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(138), 31, - sym__or_operator, - sym__and_operator, anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_token1, + ACTIONS(1090), 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_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_function_call_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - [114491] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [116145] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(631), 1, - sym__logical_operator, - STATE(632), 1, - sym__additive_operator, - STATE(633), 1, - sym__multiplicative_operator, - STATE(634), 1, + STATE(945), 1, sym__comparison_operator, - ACTIONS(1079), 2, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1351), 2, + STATE(1365), 2, sym_comment, sym_include, - ACTIONS(2594), 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(2396), 13, + ACTIONS(1192), 10, + anon_sym_RPAREN, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_of_token1, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -150436,39 +152838,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [114563] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [116217] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - ACTIONS(1079), 2, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1352), 2, + STATE(1366), 2, sym_comment, sym_include, - ACTIONS(1187), 10, + ACTIONS(1125), 10, anon_sym_RPAREN, aux_sym_function_call_token1, aux_sym_using_statement_token1, @@ -150479,7 +152881,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, aux_sym_of_token1, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -150493,55 +152895,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [114635] = 22, + [116289] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(558), 1, + ACTIONS(511), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2633), 1, anon_sym_COMMA, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - ACTIONS(2643), 1, + ACTIONS(2649), 1, aux_sym_widget_field_token1, - STATE(913), 1, + STATE(863), 1, sym__logical_operator, - STATE(919), 1, + STATE(864), 1, sym__additive_operator, - STATE(920), 1, + STATE(866), 1, sym__multiplicative_operator, - STATE(922), 1, + STATE(867), 1, sym__comparison_operator, - STATE(1550), 1, - sym_do_block, - STATE(3777), 1, + STATE(3867), 1, aux_sym_on_statement_repeat1, - STATE(3994), 1, + STATE(4071), 1, aux_sym_on_statement_repeat2, - STATE(5368), 1, + STATE(5037), 1, + sym_do_block, + STATE(5271), 1, sym_widget_phrase, - STATE(6056), 1, + STATE(6298), 1, sym_label, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1353), 2, + STATE(1367), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -150557,98 +152959,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [114721] = 15, - ACTIONS(65), 1, + [116375] = 22, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(631), 1, + ACTIONS(284), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2633), 1, + anon_sym_COMMA, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + ACTIONS(2651), 1, + aux_sym_widget_field_token1, + STATE(863), 1, sym__logical_operator, - STATE(632), 1, + STATE(864), 1, sym__additive_operator, - STATE(633), 1, + STATE(866), 1, sym__multiplicative_operator, - STATE(634), 1, + STATE(867), 1, sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + STATE(2209), 1, + sym_do_block, + STATE(3857), 1, + aux_sym_on_statement_repeat1, + STATE(4060), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6498), 1, + sym_label, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1354), 2, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(1368), 2, sym_comment, sym_include, - ACTIONS(1203), 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(2396), 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, - [114793] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 3, anon_sym_SLASH, - STATE(631), 1, - sym__logical_operator, - STATE(632), 1, - sym__additive_operator, - STATE(633), 1, - sym__multiplicative_operator, - STATE(634), 1, - sym__comparison_operator, - ACTIONS(1205), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - STATE(1355), 2, - sym_comment, - sym_include, - ACTIONS(1207), 27, - sym__or_operator, - sym__and_operator, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1090), 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, @@ -150659,42 +153023,33 @@ 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_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, - [114859] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [116461] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(631), 1, - sym__logical_operator, - STATE(632), 1, - sym__additive_operator, - STATE(633), 1, - sym__multiplicative_operator, - STATE(634), 1, + STATE(945), 1, sym__comparison_operator, - STATE(1356), 2, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + STATE(1369), 2, sym_comment, sym_include, - ACTIONS(1193), 3, + ACTIONS(1214), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1195), 29, + ACTIONS(1216), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, - sym__terminator, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -150711,48 +153066,58 @@ 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_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, - [114921] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_of_token1, + [116523] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(631), 1, - sym__logical_operator, - STATE(632), 1, - sym__additive_operator, - STATE(633), 1, - sym__multiplicative_operator, - STATE(634), 1, + STATE(945), 1, sym__comparison_operator, - ACTIONS(1177), 2, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1357), 2, + STATE(1370), 2, sym_comment, sym_include, - ACTIONS(1179), 25, + ACTIONS(1212), 12, sym__or_operator, sym__and_operator, - sym__terminator, + anon_sym_RPAREN, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_of_token1, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -150766,40 +153131,55 @@ 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_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, - [114989] = 8, + [116593] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2406), 1, + ACTIONS(511), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, sym_identifier, - STATE(285), 1, - sym_qualified_name, - ACTIONS(1366), 2, + ACTIONS(2633), 1, + anon_sym_COMMA, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + ACTIONS(2653), 1, + aux_sym_widget_field_token1, + STATE(863), 1, + sym__logical_operator, + STATE(864), 1, + sym__additive_operator, + STATE(866), 1, + sym__multiplicative_operator, + STATE(867), 1, + sym__comparison_operator, + STATE(3872), 1, + aux_sym_on_statement_repeat1, + STATE(4105), 1, + aux_sym_on_statement_repeat2, + STATE(4972), 1, + sym_do_block, + STATE(5271), 1, + sym_widget_phrase, + STATE(6298), 1, + sym_label, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1358), 2, + STATE(1371), 2, sym_comment, sym_include, - ACTIONS(1364), 32, - anon_sym_COLON, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -150815,65 +153195,103 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + [116679] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(945), 1, + sym__comparison_operator, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1372), 2, + sym_comment, + sym_include, + ACTIONS(1204), 10, + anon_sym_RPAREN, aux_sym_function_call_token1, aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, + aux_sym_where_clause_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [115047] = 22, + aux_sym_of_token1, + ACTIONS(2409), 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, + [116751] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(558), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2610), 1, - anon_sym_COMMA, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - ACTIONS(2645), 1, - aux_sym_widget_field_token1, - STATE(913), 1, - sym__logical_operator, - STATE(919), 1, - sym__additive_operator, - STATE(920), 1, - sym__multiplicative_operator, - STATE(922), 1, - sym__comparison_operator, - STATE(1600), 1, - sym_do_block, - STATE(3786), 1, - aux_sym_on_statement_repeat1, - STATE(4013), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6056), 1, - sym_label, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(2655), 1, + anon_sym_LBRACK, + ACTIONS(2657), 1, + anon_sym_LPAREN, + ACTIONS(2659), 1, + sym__namedot, + ACTIONS(2661), 1, + sym__namecolon, + ACTIONS(2663), 1, + sym__namedoublecolon, + STATE(1927), 1, + aux_sym_object_access_repeat1, + STATE(2499), 1, + aux_sym_qualified_name_repeat1, + STATE(2510), 1, + sym_function_arguments, + STATE(2514), 1, + aux_sym_member_access_repeat1, + ACTIONS(65), 2, sym__or_operator, sym__and_operator, - STATE(1359), 2, + STATE(1373), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(71), 25, anon_sym_SLASH, + sym_identifier, anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -150889,39 +153307,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [115133] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [116823] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - ACTIONS(1079), 2, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1360), 2, + STATE(1374), 2, sym_comment, sym_include, - ACTIONS(1191), 10, + ACTIONS(1113), 10, anon_sym_RPAREN, aux_sym_function_call_token1, aux_sym_using_statement_token1, @@ -150932,7 +153352,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, aux_sym_of_token1, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -150946,102 +153366,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [115205] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(117), 2, - sym__namedot, - sym__escaped_string, - STATE(1361), 2, - sym_comment, - sym_include, - ACTIONS(119), 35, - 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, - aux_sym_scope_tuning_token1, - aux_sym_function_call_token1, - aux_sym_if_statement_token1, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_can_find_expression_token1, - aux_sym_of_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [115257] = 22, + [116895] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(558), 1, + ACTIONS(284), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2633), 1, anon_sym_COMMA, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - ACTIONS(2647), 1, + ACTIONS(2665), 1, aux_sym_widget_field_token1, - STATE(913), 1, + STATE(863), 1, sym__logical_operator, - STATE(919), 1, + STATE(864), 1, sym__additive_operator, - STATE(920), 1, + STATE(866), 1, sym__multiplicative_operator, - STATE(922), 1, + STATE(867), 1, sym__comparison_operator, - STATE(1673), 1, + STATE(2143), 1, sym_do_block, - STATE(3787), 1, + STATE(3881), 1, aux_sym_on_statement_repeat1, - STATE(4059), 1, + STATE(4118), 1, aux_sym_on_statement_repeat2, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6056), 1, + STATE(6498), 1, sym_label, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1362), 2, + STATE(1375), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -151057,55 +153430,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [115343] = 22, + [116981] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(41), 1, + ACTIONS(284), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2633), 1, anon_sym_COMMA, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - ACTIONS(2649), 1, + ACTIONS(2667), 1, aux_sym_widget_field_token1, - STATE(913), 1, + STATE(863), 1, sym__logical_operator, - STATE(919), 1, + STATE(864), 1, sym__additive_operator, - STATE(920), 1, + STATE(866), 1, sym__multiplicative_operator, - STATE(922), 1, + STATE(867), 1, sym__comparison_operator, - STATE(2188), 1, + STATE(2089), 1, sym_do_block, - STATE(3764), 1, + STATE(3853), 1, aux_sym_on_statement_repeat1, - STATE(4096), 1, + STATE(4137), 1, aux_sym_on_statement_repeat2, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6159), 1, + STATE(6498), 1, sym_label, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1363), 2, + STATE(1376), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -151121,60 +153494,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [115429] = 22, - ACTIONS(3), 1, + [117067] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(41), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2610), 1, - anon_sym_COMMA, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - ACTIONS(2651), 1, - aux_sym_widget_field_token1, - STATE(913), 1, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(618), 1, sym__logical_operator, - STATE(919), 1, + STATE(619), 1, sym__additive_operator, - STATE(920), 1, + STATE(620), 1, sym__multiplicative_operator, - STATE(922), 1, + STATE(621), 1, sym__comparison_operator, - STATE(2381), 1, - sym_do_block, - STATE(3759), 1, - aux_sym_on_statement_repeat1, - STATE(4047), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6159), 1, - sym_label, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1364), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, - anon_sym_LT, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1377), 2, + sym_comment, + sym_include, + ACTIONS(1204), 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(2409), 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, @@ -151185,39 +153551,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [115515] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [117139] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, + STATE(945), 1, sym__comparison_operator, - ACTIONS(1079), 2, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1365), 2, + STATE(1378), 2, sym_comment, sym_include, - ACTIONS(1106), 10, + ACTIONS(1200), 10, anon_sym_RPAREN, aux_sym_function_call_token1, aux_sym_using_statement_token1, @@ -151228,7 +153594,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, aux_sym_of_token1, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -151242,55 +153608,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [115587] = 22, + [117211] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(610), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2633), 1, anon_sym_COMMA, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - ACTIONS(2653), 1, + ACTIONS(2669), 1, aux_sym_widget_field_token1, - STATE(913), 1, + STATE(863), 1, sym__logical_operator, - STATE(919), 1, + STATE(864), 1, sym__additive_operator, - STATE(920), 1, + STATE(866), 1, sym__multiplicative_operator, - STATE(922), 1, + STATE(867), 1, sym__comparison_operator, - STATE(1838), 1, + STATE(2264), 1, sym_do_block, - STATE(3768), 1, + STATE(3915), 1, aux_sym_on_statement_repeat1, - STATE(4113), 1, + STATE(4244), 1, aux_sym_on_statement_repeat2, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6240), 1, + STATE(6198), 1, sym_label, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1366), 2, + STATE(1379), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -151306,50 +153672,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [115673] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [117297] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(763), 1, + STATE(618), 1, sym__logical_operator, - STATE(764), 1, + STATE(619), 1, sym__additive_operator, - STATE(766), 1, + STATE(620), 1, sym__multiplicative_operator, - STATE(767), 1, + STATE(621), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1367), 2, + STATE(1380), 2, sym_comment, sym_include, - ACTIONS(1199), 10, - anon_sym_RPAREN, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_of_token1, - ACTIONS(2396), 13, + ACTIONS(1212), 12, + sym__or_operator, + sym__and_operator, + sym__terminator, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token5, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + aux_sym_input_stream_tuning_token9, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -151363,53 +153728,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [115745] = 15, - ACTIONS(65), 1, + [117367] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(2419), 1, + sym_identifier, + STATE(326), 1, + sym_qualified_name, + ACTIONS(1581), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + STATE(1381), 2, + sym_comment, + sym_include, + ACTIONS(1579), 32, + anon_sym_COLON, + anon_sym_SLASH, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(1368), 2, - sym_comment, - sym_include, - ACTIONS(1102), 10, - anon_sym_RPAREN, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_of_token1, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -151420,117 +153768,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [115817] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(763), 1, - sym__logical_operator, - STATE(764), 1, - sym__additive_operator, - STATE(766), 1, - sym__multiplicative_operator, - STATE(767), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1369), 2, - sym_comment, - sym_include, - ACTIONS(2567), 10, - anon_sym_RPAREN, aux_sym_function_call_token1, aux_sym_using_statement_token1, - aux_sym_where_clause_token1, + aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - aux_sym_of_token1, - ACTIONS(2396), 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, - [115889] = 22, - ACTIONS(3), 1, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [117425] = 12, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(610), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2610), 1, - anon_sym_COMMA, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - ACTIONS(2655), 1, - aux_sym_widget_field_token1, - STATE(913), 1, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(618), 1, sym__logical_operator, - STATE(919), 1, + STATE(619), 1, sym__additive_operator, - STATE(920), 1, + STATE(620), 1, sym__multiplicative_operator, - STATE(922), 1, + STATE(621), 1, sym__comparison_operator, - STATE(1925), 1, - sym_do_block, - STATE(3791), 1, - aux_sym_on_statement_repeat1, - STATE(4035), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6240), 1, - sym_label, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1370), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, + ACTIONS(1119), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, - anon_sym_LT, + STATE(1382), 2, + sym_comment, + sym_include, + ACTIONS(1121), 27, + sym__or_operator, + sym__and_operator, + sym__terminator, + 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, @@ -151541,25 +153823,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [115975] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + 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, + [117491] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2657), 1, - anon_sym_NO_DASHERROR, - STATE(1371), 2, + STATE(1383), 2, sym_comment, sym_include, - ACTIONS(250), 5, + ACTIONS(168), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(248), 30, + ACTIONS(166), 31, + sym__namecolon, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -151590,50 +153880,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [116031] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [117545] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(631), 1, - sym__logical_operator, - STATE(632), 1, - sym__additive_operator, - STATE(633), 1, - sym__multiplicative_operator, - STATE(634), 1, + STATE(945), 1, sym__comparison_operator, - ACTIONS(1079), 2, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + ACTIONS(1119), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1372), 2, + STATE(1384), 2, sym_comment, sym_include, - ACTIONS(1187), 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(2396), 13, + ACTIONS(1121), 27, + sym__or_operator, + sym__and_operator, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -151647,88 +153925,107 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [116103] = 6, - ACTIONS(65), 1, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_of_token1, + [117611] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1373), 2, + ACTIONS(2679), 3, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_method_tuning_token1, + STATE(1385), 3, sym_comment, sym_include, - ACTIONS(119), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(117), 31, - sym__namedot, + aux_sym_method_definition_repeat1, + STATE(1524), 3, + sym_scope_tuning, + sym_access_tuning, + sym_method_tuning, + ACTIONS(2673), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(2676), 5, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + ACTIONS(2671), 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_class_type_token1, + [117671] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(2682), 1, + aux_sym_input_expression_token2, + STATE(28), 1, + sym_qualified_name, + ACTIONS(1358), 2, sym__or_operator, sym__and_operator, + STATE(1386), 2, + sym_comment, + sym_include, + ACTIONS(1354), 31, + anon_sym_SLASH, anon_sym_STAR, sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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_variable_tuning_token1, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - [116157] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(631), 1, - sym__logical_operator, - STATE(632), 1, - sym__additive_operator, - STATE(633), 1, - sym__multiplicative_operator, - STATE(634), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1374), 2, - sym_comment, - sym_include, - ACTIONS(2659), 10, - sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, @@ -151738,69 +154035,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, aux_sym_input_stream_tuning_token9, - ACTIONS(2396), 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, - [116229] = 22, + aux_sym_input_stream_tuning_token11, + [117731] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(41), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2610), 1, - anon_sym_COMMA, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - ACTIONS(2661), 1, - aux_sym_widget_field_token1, - STATE(913), 1, - sym__logical_operator, - STATE(919), 1, - sym__additive_operator, - STATE(920), 1, - sym__multiplicative_operator, - STATE(922), 1, - sym__comparison_operator, - STATE(2335), 1, - sym_do_block, - STATE(3733), 1, - aux_sym_on_statement_repeat1, - STATE(4137), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6159), 1, - sym_label, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(2686), 1, + anon_sym_LPAREN, + ACTIONS(2688), 1, + sym__namedot, + ACTIONS(2690), 1, + sym__namecolon, + ACTIONS(2692), 1, + sym__namedoublecolon, + STATE(1736), 1, + aux_sym_object_access_repeat1, + STATE(2457), 1, + sym_function_arguments, + STATE(2471), 1, + aux_sym_member_access_repeat1, + STATE(2517), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(65), 2, sym__or_operator, sym__and_operator, - STATE(1375), 2, + STATE(1387), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(71), 25, anon_sym_SLASH, + sym_identifier, anon_sym_STAR, + anon_sym_COMMA, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -151816,60 +154091,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [116315] = 22, - ACTIONS(3), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [117803] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(448), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2610), 1, - anon_sym_COMMA, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - ACTIONS(2663), 1, - aux_sym_widget_field_token1, - STATE(913), 1, - sym__logical_operator, - STATE(919), 1, - sym__additive_operator, - STATE(920), 1, - sym__multiplicative_operator, - STATE(922), 1, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(945), 1, sym__comparison_operator, - STATE(2136), 1, - sym_do_block, - STATE(3778), 1, - aux_sym_on_statement_repeat1, - STATE(4098), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6368), 1, - sym_label, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, + STATE(946), 1, + sym__multiplicative_operator, + STATE(947), 1, + sym__additive_operator, + STATE(948), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1376), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, - anon_sym_LT, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1388), 2, + sym_comment, + sym_include, + ACTIONS(1117), 10, + anon_sym_RPAREN, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_of_token1, + ACTIONS(2409), 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, @@ -151880,60 +154150,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [116401] = 22, - ACTIONS(3), 1, + [117875] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(448), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2610), 1, - anon_sym_COMMA, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - ACTIONS(2665), 1, - aux_sym_widget_field_token1, - STATE(913), 1, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(618), 1, sym__logical_operator, - STATE(919), 1, + STATE(619), 1, sym__additive_operator, - STATE(920), 1, + STATE(620), 1, sym__multiplicative_operator, - STATE(922), 1, + STATE(621), 1, sym__comparison_operator, - STATE(2195), 1, - sym_do_block, - STATE(3746), 1, - aux_sym_on_statement_repeat1, - STATE(4151), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6368), 1, - sym_label, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1377), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, - anon_sym_LT, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1389), 2, + sym_comment, + sym_include, + ACTIONS(2627), 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(2409), 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, @@ -151944,51 +154207,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [116487] = 15, - ACTIONS(3), 1, + [117947] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2667), 1, - anon_sym_LBRACK, - ACTIONS(2669), 1, - anon_sym_LPAREN, - ACTIONS(2671), 1, - sym__namedot, - ACTIONS(2673), 1, - sym__namecolon, - ACTIONS(2675), 1, - sym__namedoublecolon, - STATE(1537), 1, - aux_sym_object_access_repeat1, - STATE(2190), 1, - aux_sym_member_access_repeat1, - STATE(2207), 1, - aux_sym_qualified_name_repeat1, - STATE(2476), 1, - sym_function_arguments, - ACTIONS(63), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(618), 1, + sym__logical_operator, + STATE(619), 1, + sym__additive_operator, + STATE(620), 1, + sym__multiplicative_operator, + STATE(621), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1378), 2, - sym_comment, - sym_include, - ACTIONS(69), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(1390), 2, + sym_comment, + sym_include, + ACTIONS(1196), 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(2409), 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, @@ -151999,47 +154264,55 @@ 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_do_block_token1, - aux_sym_widget_field_token1, - [116559] = 15, + [118019] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2677), 1, - anon_sym_LBRACK, - ACTIONS(2679), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - sym__namedot, - ACTIONS(2683), 1, - sym__namecolon, - ACTIONS(2685), 1, - sym__namedoublecolon, - STATE(1699), 1, - aux_sym_object_access_repeat1, - STATE(2460), 1, - aux_sym_member_access_repeat1, - STATE(2471), 1, - aux_sym_qualified_name_repeat1, - STATE(2767), 1, - sym_function_arguments, - ACTIONS(63), 2, + ACTIONS(43), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2633), 1, + anon_sym_COMMA, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + ACTIONS(2694), 1, + aux_sym_widget_field_token1, + STATE(863), 1, + sym__logical_operator, + STATE(864), 1, + sym__additive_operator, + STATE(866), 1, + sym__multiplicative_operator, + STATE(867), 1, + sym__comparison_operator, + STATE(2057), 1, + sym_do_block, + STATE(3873), 1, + aux_sym_on_statement_repeat1, + STATE(4121), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6198), 1, + sym_label, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1379), 2, + STATE(1391), 2, sym_comment, sym_include, - ACTIONS(69), 24, + ACTIONS(1086), 3, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -152055,25 +154328,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_when_expression_token1, - anon_sym_NO_DASHERROR, - [116630] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [118105] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1380), 2, + STATE(1392), 2, sym_comment, sym_include, - ACTIONS(180), 5, + ACTIONS(148), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(178), 30, + ACTIONS(146), 31, + sym__namecolon, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -152104,77 +154376,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [116683] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [118159] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1381), 2, - sym_comment, - sym_include, - ACTIONS(228), 5, + ACTIONS(1086), 1, anon_sym_SLASH, + STATE(618), 1, + sym__logical_operator, + STATE(619), 1, + sym__additive_operator, + STATE(620), 1, + sym__multiplicative_operator, + STATE(621), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(226), 30, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - 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_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - [116736] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(1382), 2, + STATE(1393), 2, sym_comment, sym_include, - ACTIONS(188), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(186), 30, - sym__or_operator, - sym__and_operator, - anon_sym_STAR, + ACTIONS(1117), 10, sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token5, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + aux_sym_input_stream_tuning_token9, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -152184,63 +154429,53 @@ 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_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - [116789] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [118231] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(238), 1, - aux_sym_variable_tuning_token2, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(889), 1, + STATE(945), 1, sym__comparison_operator, - STATE(890), 1, + STATE(946), 1, sym__multiplicative_operator, - STATE(894), 1, + STATE(947), 1, sym__additive_operator, - STATE(895), 1, + STATE(948), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1383), 2, + STATE(1394), 2, sym_comment, sym_include, - ACTIONS(236), 10, + ACTIONS(230), 12, sym__or_operator, sym__and_operator, - sym__terminator, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - ACTIONS(2396), 13, + anon_sym_RPAREN, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_of_token1, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -152254,97 +154489,114 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [116860] = 6, - ACTIONS(65), 1, + [118301] = 22, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1384), 2, + ACTIONS(43), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2633), 1, + anon_sym_COMMA, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + ACTIONS(2696), 1, + aux_sym_widget_field_token1, + STATE(863), 1, + sym__logical_operator, + STATE(864), 1, + sym__additive_operator, + STATE(866), 1, + sym__multiplicative_operator, + STATE(867), 1, + sym__comparison_operator, + STATE(2130), 1, + sym_do_block, + STATE(3884), 1, + aux_sym_on_statement_repeat1, + STATE(4175), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6198), 1, + sym_label, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(1395), 2, sym_comment, sym_include, - ACTIONS(200), 5, + ACTIONS(1086), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(198), 30, - sym__or_operator, - sym__and_operator, anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_token1, + ACTIONS(1090), 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_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - [116913] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [118387] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1181), 1, - aux_sym_variable_tuning_token2, - STATE(889), 1, - sym__comparison_operator, - STATE(890), 1, - sym__multiplicative_operator, - STATE(894), 1, - sym__additive_operator, - STATE(895), 1, + STATE(618), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(619), 1, + sym__additive_operator, + STATE(620), 1, + sym__multiplicative_operator, + STATE(621), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1385), 2, + STATE(1396), 2, sym_comment, sym_include, - ACTIONS(1183), 8, + ACTIONS(1200), 10, sym__terminator, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - ACTIONS(2396), 13, + 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(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -152358,50 +154610,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [116986] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [118459] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1110), 1, - aux_sym_variable_tuning_token2, - STATE(889), 1, - sym__comparison_operator, - STATE(890), 1, - sym__multiplicative_operator, - STATE(894), 1, - sym__additive_operator, - STATE(895), 1, + STATE(618), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(619), 1, + sym__additive_operator, + STATE(620), 1, + sym__multiplicative_operator, + STATE(621), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1386), 2, + STATE(1397), 2, sym_comment, sym_include, - ACTIONS(1112), 8, + ACTIONS(1113), 10, sym__terminator, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - ACTIONS(2396), 13, + 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(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -152415,40 +154667,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [117059] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [118531] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(889), 1, - sym__comparison_operator, - STATE(890), 1, - sym__multiplicative_operator, - STATE(894), 1, - sym__additive_operator, - STATE(895), 1, + STATE(618), 1, sym__logical_operator, - ACTIONS(2392), 2, + STATE(619), 1, + sym__additive_operator, + STATE(620), 1, + sym__multiplicative_operator, + STATE(621), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1387), 2, + STATE(1398), 2, sym_comment, sym_include, - ACTIONS(1177), 3, - anon_sym_LT, - anon_sym_GT, - aux_sym_variable_tuning_token2, - ACTIONS(1179), 23, - sym__or_operator, - sym__and_operator, + ACTIONS(1208), 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(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -152462,52 +154724,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - [117126] = 14, + [118603] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2687), 1, - anon_sym_LBRACK, - ACTIONS(2689), 1, - anon_sym_LPAREN, - ACTIONS(2691), 1, - sym__namedot, - ACTIONS(2693), 1, - sym__namecolon, - ACTIONS(2695), 1, - sym__namedoublecolon, - STATE(1937), 1, - aux_sym_object_access_repeat1, - STATE(2451), 1, - aux_sym_member_access_repeat1, - STATE(2454), 1, - aux_sym_qualified_name_repeat1, - STATE(2625), 1, - sym_function_arguments, - ACTIONS(63), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(615), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2633), 1, + anon_sym_COMMA, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + ACTIONS(2698), 1, + aux_sym_widget_field_token1, + STATE(863), 1, + sym__logical_operator, + STATE(864), 1, + sym__additive_operator, + STATE(866), 1, + sym__multiplicative_operator, + STATE(867), 1, + sym__comparison_operator, + STATE(1592), 1, + sym_do_block, + STATE(3845), 1, + aux_sym_on_statement_repeat1, + STATE(4092), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6172), 1, + sym_label, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1388), 2, + STATE(1399), 2, sym_comment, sym_include, - ACTIONS(69), 25, + ACTIONS(1086), 3, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, anon_sym_STAR, - anon_sym_DQUOTE, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -152523,31 +154788,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_include_argument_token1, - [117195] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [118689] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(889), 1, - sym__comparison_operator, - STATE(890), 1, - sym__multiplicative_operator, - STATE(894), 1, - sym__additive_operator, - STATE(895), 1, - sym__logical_operator, - STATE(1389), 2, + ACTIONS(2700), 1, + sym__namedot, + STATE(1400), 2, sym_comment, sym_include, - ACTIONS(1193), 4, + ACTIONS(152), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(1195), 27, + ACTIONS(150), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -152564,34 +154823,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token3, aux_sym__comparison_operator_token4, aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, aux_sym_variable_tuning_token7, aux_sym_variable_tuning_token8, - [117256] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [118745] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1390), 2, + STATE(1401), 2, sym_comment, sym_include, - ACTIONS(69), 5, + ACTIONS(110), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(63), 30, + ACTIONS(108), 31, + sym__namedot, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -152622,39 +154885,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [117309] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [118799] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(889), 1, - sym__comparison_operator, - STATE(890), 1, - sym__multiplicative_operator, - STATE(894), 1, - sym__additive_operator, - STATE(895), 1, + STATE(618), 1, sym__logical_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(1391), 2, - sym_comment, - sym_include, - ACTIONS(1205), 3, + STATE(619), 1, + sym__additive_operator, + STATE(620), 1, + sym__multiplicative_operator, + STATE(621), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - aux_sym_variable_tuning_token2, - ACTIONS(1207), 25, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - sym__terminator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1402), 2, + sym_comment, + sym_include, + ACTIONS(1125), 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(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -152668,44 +154942,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - [117374] = 9, - ACTIONS(3), 1, + [118871] = 14, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(2697), 1, - aux_sym_input_expression_token2, - STATE(22), 1, - sym_qualified_name, - ACTIONS(1351), 2, - sym__or_operator, - sym__and_operator, - STATE(1392), 2, - sym_comment, - sym_include, - ACTIONS(1347), 30, + ACTIONS(1086), 1, anon_sym_SLASH, + STATE(618), 1, + sym__logical_operator, + STATE(619), 1, + sym__additive_operator, + STATE(620), 1, + sym__multiplicative_operator, + STATE(621), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(1403), 2, + sym_comment, + sym_include, + ACTIONS(230), 12, + sym__or_operator, + sym__and_operator, + sym__terminator, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token5, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + aux_sym_input_stream_tuning_token9, + ACTIONS(2409), 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, @@ -152716,41 +154998,55 @@ 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_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, - [117433] = 9, + [118941] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2452), 1, + ACTIONS(511), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2699), 1, + ACTIONS(2633), 1, + anon_sym_COMMA, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - STATE(22), 1, - sym_qualified_name, - ACTIONS(1351), 2, + ACTIONS(2702), 1, + aux_sym_widget_field_token1, + STATE(863), 1, + sym__logical_operator, + STATE(864), 1, + sym__additive_operator, + STATE(866), 1, + sym__multiplicative_operator, + STATE(867), 1, + sym__comparison_operator, + STATE(3886), 1, + aux_sym_on_statement_repeat1, + STATE(4191), 1, + aux_sym_on_statement_repeat2, + STATE(4682), 1, + sym_do_block, + STATE(5271), 1, + sym_widget_phrase, + STATE(6298), 1, + sym_label, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1393), 2, + STATE(1404), 2, sym_comment, sym_include, - ACTIONS(1347), 30, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -152766,89 +155062,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_of_token1, - [117492] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [119027] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(1185), 1, - aux_sym_variable_tuning_token2, - STATE(889), 1, - sym__comparison_operator, - STATE(890), 1, - sym__multiplicative_operator, - STATE(894), 1, - sym__additive_operator, - STATE(895), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1394), 2, - sym_comment, - sym_include, - ACTIONS(1187), 8, - sym__terminator, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - ACTIONS(2396), 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, - [117565] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1395), 2, + STATE(1405), 2, sym_comment, sym_include, - ACTIONS(184), 5, + ACTIONS(164), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(182), 30, + ACTIONS(162), 31, + sym__namedoublecolon, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -152879,185 +155110,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [117618] = 7, - ACTIONS(65), 1, + [119081] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2701), 1, - anon_sym_NO_DASHERROR, - STATE(1396), 2, + ACTIONS(108), 2, + sym__namedot, + sym__escaped_string, + STATE(1406), 2, sym_comment, sym_include, - ACTIONS(250), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(248), 31, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_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(110), 35, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, + aux_sym_scope_tuning_token1, aux_sym_function_call_token1, + aux_sym_if_statement_token1, aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, + aux_sym_where_clause_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [117673] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(1397), 2, - sym_comment, - sym_include, - ACTIONS(212), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(210), 30, - sym__or_operator, - sym__and_operator, - anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - 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_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - [117726] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(1398), 2, - sym_comment, - sym_include, - ACTIONS(242), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(240), 30, - sym__or_operator, - sym__and_operator, - anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - 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_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - [117779] = 15, + 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, + [119133] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2703), 1, + ACTIONS(2704), 1, anon_sym_LBRACK, - ACTIONS(2705), 1, + ACTIONS(2706), 1, anon_sym_LPAREN, - ACTIONS(2707), 1, + ACTIONS(2708), 1, sym__namedot, - ACTIONS(2709), 1, + ACTIONS(2710), 1, sym__namecolon, - ACTIONS(2711), 1, + ACTIONS(2712), 1, sym__namedoublecolon, - STATE(1919), 1, + STATE(1920), 1, aux_sym_object_access_repeat1, - STATE(2443), 1, + STATE(2476), 1, + sym_function_arguments, + STATE(2478), 1, aux_sym_qualified_name_repeat1, - STATE(2461), 1, + STATE(2479), 1, aux_sym_member_access_repeat1, - STATE(2695), 1, - sym_function_arguments, - ACTIONS(63), 2, + ACTIONS(65), 2, sym__or_operator, sym__and_operator, - STATE(1399), 2, + STATE(1407), 2, sym_comment, sym_include, - ACTIONS(69), 24, + ACTIONS(71), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -153077,49 +155212,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - [117850] = 14, - ACTIONS(3), 1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [119205] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2669), 1, - anon_sym_LPAREN, - ACTIONS(2671), 1, - sym__namedot, - ACTIONS(2673), 1, - sym__namecolon, - ACTIONS(2675), 1, - sym__namedoublecolon, - STATE(1537), 1, - aux_sym_object_access_repeat1, - STATE(2190), 1, - aux_sym_member_access_repeat1, - STATE(2207), 1, - aux_sym_qualified_name_repeat1, - STATE(2476), 1, - sym_function_arguments, - ACTIONS(83), 2, - sym__or_operator, - sym__and_operator, - STATE(1400), 2, + ACTIONS(2714), 1, + anon_sym_NO_DASHERROR, + STATE(1408), 2, sym_comment, sym_include, - ACTIONS(85), 25, + ACTIONS(393), 3, anon_sym_SLASH, - sym_identifier, + anon_sym_LT, + anon_sym_GT, + ACTIONS(391), 32, + sym__namecolon, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, anon_sym_STAR, anon_sym_COMMA, - aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -153130,52 +155253,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [117919] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [119261] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1189), 1, - aux_sym_variable_tuning_token2, - STATE(889), 1, - sym__comparison_operator, - STATE(890), 1, - sym__multiplicative_operator, - STATE(894), 1, - sym__additive_operator, - STATE(895), 1, + STATE(618), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(619), 1, + sym__additive_operator, + STATE(620), 1, + sym__multiplicative_operator, + STATE(621), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1401), 2, + STATE(1409), 2, sym_comment, sym_include, - ACTIONS(1191), 8, + ACTIONS(2716), 10, sym__terminator, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - ACTIONS(2396), 13, + 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(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -153189,137 +155320,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [117992] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [119333] = 16, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(1402), 2, - sym_comment, - sym_include, - ACTIONS(176), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(174), 30, - sym__or_operator, - sym__and_operator, - anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - 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_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - [118045] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2458), 1, - sym_identifier, - STATE(32), 1, - sym_qualified_name, - ACTIONS(1366), 2, - sym__or_operator, - sym__and_operator, - STATE(1403), 2, - sym_comment, - sym_include, - ACTIONS(1364), 31, - anon_sym_SLASH, - anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_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_input_stream_tuning_token11, - [118102] = 16, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2715), 1, + ACTIONS(1190), 1, aux_sym_variable_tuning_token2, - STATE(889), 1, + STATE(847), 1, sym__comparison_operator, - STATE(890), 1, + STATE(848), 1, sym__multiplicative_operator, - STATE(894), 1, + STATE(849), 1, sym__additive_operator, - STATE(895), 1, + STATE(850), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1404), 2, + STATE(1410), 2, sym_comment, sym_include, - ACTIONS(2713), 8, + ACTIONS(1192), 8, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, @@ -153328,7 +155363,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_tuning_token6, aux_sym_variable_tuning_token7, aux_sym_variable_tuning_token8, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -153342,23 +155377,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [118175] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [119406] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1405), 2, + STATE(1411), 2, sym_comment, sym_include, - ACTIONS(216), 5, + ACTIONS(236), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(214), 30, + ACTIONS(234), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -153389,23 +155424,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [118228] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [119459] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1406), 2, + STATE(1412), 2, sym_comment, sym_include, - ACTIONS(134), 5, + ACTIONS(152), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(132), 30, + ACTIONS(150), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -153436,50 +155471,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [118281] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [119512] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(1104), 1, - aux_sym_variable_tuning_token2, - STATE(889), 1, + STATE(847), 1, sym__comparison_operator, - STATE(890), 1, + STATE(848), 1, sym__multiplicative_operator, - STATE(894), 1, + STATE(849), 1, sym__additive_operator, - STATE(895), 1, + STATE(850), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(1413), 2, + sym_comment, + sym_include, + ACTIONS(1214), 4, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + aux_sym_variable_tuning_token2, + ACTIONS(1216), 27, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1407), 2, - sym_comment, - sym_include, - ACTIONS(1106), 8, - sym__terminator, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -153493,42 +155515,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [118354] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(1197), 1, - aux_sym_variable_tuning_token2, - STATE(889), 1, - sym__comparison_operator, - STATE(890), 1, - sym__multiplicative_operator, - STATE(894), 1, - sym__additive_operator, - STATE(895), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1408), 2, - sym_comment, - sym_include, - ACTIONS(1199), 8, - sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, @@ -153536,28 +155522,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_tuning_token6, aux_sym_variable_tuning_token7, aux_sym_variable_tuning_token8, - ACTIONS(2396), 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, - [118427] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [119573] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1409), 2, + STATE(1414), 2, sym_comment, sym_include, ACTIONS(196), 5, @@ -153597,23 +155569,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [118480] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [119626] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1410), 2, + STATE(1415), 2, sym_comment, sym_include, - ACTIONS(224), 5, + ACTIONS(228), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(222), 30, + ACTIONS(226), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -153644,23 +155616,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [118533] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [119679] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1411), 2, + STATE(1416), 2, sym_comment, sym_include, - ACTIONS(156), 5, + ACTIONS(224), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(154), 30, + ACTIONS(222), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -153691,70 +155663,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [118586] = 6, - ACTIONS(65), 1, + [119732] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1412), 2, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(2718), 1, + aux_sym_input_expression_token2, + STATE(28), 1, + sym_qualified_name, + ACTIONS(1358), 2, + sym__or_operator, + sym__and_operator, + STATE(1417), 2, sym_comment, sym_include, - ACTIONS(160), 5, + ACTIONS(1354), 30, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(158), 30, - sym__or_operator, - sym__and_operator, anon_sym_STAR, - sym__terminator, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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_variable_tuning_token1, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - [118639] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_of_token1, + [119791] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1413), 2, + STATE(1418), 2, sym_comment, sym_include, - ACTIONS(164), 5, + ACTIONS(220), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(162), 30, + ACTIONS(218), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -153785,30 +155760,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [118692] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [119844] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1414), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(847), 1, + sym__comparison_operator, + STATE(848), 1, + sym__multiplicative_operator, + STATE(849), 1, + sym__additive_operator, + STATE(850), 1, + sym__logical_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + STATE(1419), 2, sym_comment, sym_include, - ACTIONS(168), 5, - anon_sym_SLASH, + ACTIONS(1119), 3, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(166), 30, + ACTIONS(1121), 25, sym__or_operator, sym__and_operator, - anon_sym_STAR, sym__terminator, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -153818,37 +155802,34 @@ 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_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, aux_sym_variable_tuning_token7, aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - [118745] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [119909] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1415), 2, + STATE(1420), 2, sym_comment, sym_include, - ACTIONS(172), 5, + ACTIONS(192), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(170), 30, + ACTIONS(190), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -153879,80 +155860,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [118798] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [119962] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(1100), 1, - aux_sym_variable_tuning_token2, - STATE(889), 1, - sym__comparison_operator, - STATE(890), 1, - sym__multiplicative_operator, - STATE(894), 1, - sym__additive_operator, - STATE(895), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1416), 2, - sym_comment, - sym_include, - ACTIONS(1102), 8, - sym__terminator, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - ACTIONS(2396), 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, - [118871] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1417), 2, + STATE(1421), 2, sym_comment, sym_include, - ACTIONS(108), 5, + ACTIONS(188), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(106), 30, + ACTIONS(186), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -153983,50 +155907,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [118924] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [120015] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + STATE(1422), 2, + sym_comment, + sym_include, + ACTIONS(136), 5, anon_sym_SLASH, - ACTIONS(1201), 1, - aux_sym_variable_tuning_token2, - STATE(889), 1, - sym__comparison_operator, - STATE(890), 1, - sym__multiplicative_operator, - STATE(894), 1, - sym__additive_operator, - STATE(895), 1, - sym__logical_operator, - ACTIONS(1079), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(134), 30, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1418), 2, - sym_comment, - sym_include, - ACTIONS(1203), 8, - sym__terminator, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -154036,27 +155940,37 @@ 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, - [118997] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [120068] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1419), 2, + STATE(1423), 2, sym_comment, sym_include, - ACTIONS(192), 5, + ACTIONS(180), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(190), 30, + ACTIONS(178), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -154087,23 +156001,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [119050] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [120121] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1420), 2, + STATE(1424), 2, sym_comment, sym_include, - ACTIONS(238), 5, + ACTIONS(204), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(236), 30, + ACTIONS(202), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -154134,70 +156048,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [119103] = 6, - ACTIONS(65), 1, + [120174] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1421), 2, + ACTIONS(2471), 1, + sym_identifier, + STATE(32), 1, + sym_qualified_name, + ACTIONS(1581), 2, + sym__or_operator, + sym__and_operator, + STATE(1425), 2, sym_comment, sym_include, - ACTIONS(204), 5, + ACTIONS(1579), 31, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_tuning_token2, - ACTIONS(202), 30, - sym__or_operator, - sym__and_operator, anon_sym_STAR, sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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_variable_tuning_token1, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - [119156] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + 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_input_stream_tuning_token11, + [120231] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1422), 2, + STATE(1426), 2, sym_comment, sym_include, - ACTIONS(208), 5, + ACTIONS(216), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(206), 30, + ACTIONS(214), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -154228,23 +156144,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [119209] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [120284] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1423), 2, + STATE(1427), 2, sym_comment, sym_include, - ACTIONS(220), 5, + ACTIONS(176), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(218), 30, + ACTIONS(174), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -154275,23 +156191,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [119262] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [120337] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1424), 2, + STATE(1428), 2, sym_comment, sym_include, - ACTIONS(104), 5, + ACTIONS(125), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(102), 30, + ACTIONS(123), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -154322,23 +156238,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [119315] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [120390] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1425), 2, + STATE(1429), 2, sym_comment, sym_include, - ACTIONS(246), 5, + ACTIONS(244), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(244), 30, + ACTIONS(242), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -154369,23 +156285,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [119368] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [120443] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(1426), 2, + STATE(1430), 2, sym_comment, sym_include, - ACTIONS(85), 5, + ACTIONS(248), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_tuning_token2, - ACTIONS(83), 30, + ACTIONS(246), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -154416,36 +156332,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [119421] = 14, + [120496] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2705), 1, + ACTIONS(2657), 1, anon_sym_LPAREN, - ACTIONS(2707), 1, + ACTIONS(2659), 1, sym__namedot, - ACTIONS(2709), 1, + ACTIONS(2661), 1, sym__namecolon, - ACTIONS(2711), 1, + ACTIONS(2663), 1, sym__namedoublecolon, - STATE(1919), 1, + STATE(1927), 1, aux_sym_object_access_repeat1, - STATE(2443), 1, + STATE(2499), 1, aux_sym_qualified_name_repeat1, - STATE(2461), 1, - aux_sym_member_access_repeat1, - STATE(2695), 1, + STATE(2510), 1, sym_function_arguments, - ACTIONS(83), 2, + STATE(2514), 1, + aux_sym_member_access_repeat1, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, - STATE(1427), 2, + STATE(1431), 2, sym_comment, sym_include, - ACTIONS(85), 24, + ACTIONS(87), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -154470,82 +156386,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - [119489] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2458), 1, - sym_identifier, - STATE(32), 1, - sym_qualified_name, - ACTIONS(1366), 2, - sym__or_operator, - sym__and_operator, - STATE(1428), 2, - sym_comment, - sym_include, - ACTIONS(1364), 30, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_of_token1, - [119545] = 13, + aux_sym_scope_tuning_token1, + [120565] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2689), 1, + ACTIONS(2720), 1, + anon_sym_LBRACK, + ACTIONS(2722), 1, anon_sym_LPAREN, - ACTIONS(2691), 1, + ACTIONS(2724), 1, sym__namedot, - ACTIONS(2693), 1, + ACTIONS(2726), 1, sym__namecolon, - ACTIONS(2695), 1, + ACTIONS(2728), 1, sym__namedoublecolon, - STATE(1937), 1, + STATE(2135), 1, aux_sym_object_access_repeat1, - STATE(2451), 1, + STATE(2560), 1, + sym_function_arguments, + STATE(2574), 1, aux_sym_member_access_repeat1, - STATE(2454), 1, + STATE(2580), 1, aux_sym_qualified_name_repeat1, - STATE(2625), 1, - sym_function_arguments, - ACTIONS(83), 2, + ACTIONS(65), 2, sym__or_operator, sym__and_operator, - STATE(1429), 2, + STATE(1432), 2, sym_comment, sym_include, - ACTIONS(85), 25, + ACTIONS(71), 25, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -154571,102 +156442,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [119611] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2679), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - sym__namedot, - ACTIONS(2683), 1, - sym__namecolon, - ACTIONS(2685), 1, - sym__namedoublecolon, - STATE(1699), 1, - aux_sym_object_access_repeat1, - STATE(2460), 1, - aux_sym_member_access_repeat1, - STATE(2471), 1, - aux_sym_qualified_name_repeat1, - STATE(2767), 1, - sym_function_arguments, - ACTIONS(83), 2, - sym__or_operator, - sym__and_operator, - STATE(1430), 2, - sym_comment, - sym_include, - ACTIONS(85), 24, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_when_expression_token1, - anon_sym_NO_DASHERROR, - [119679] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [120634] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(518), 1, - sym__logical_operator, - STATE(623), 1, - sym__additive_operator, - STATE(624), 1, - sym__multiplicative_operator, - STATE(625), 1, + ACTIONS(1202), 1, + aux_sym_variable_tuning_token2, + STATE(847), 1, sym__comparison_operator, - ACTIONS(1079), 2, + STATE(848), 1, + sym__multiplicative_operator, + STATE(849), 1, + sym__additive_operator, + STATE(850), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1431), 2, + STATE(1433), 2, sym_comment, sym_include, - ACTIONS(1203), 8, + ACTIONS(1204), 8, sym__terminator, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_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(2396), 13, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -154680,48 +156499,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [119749] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [120707] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(518), 1, - sym__logical_operator, - STATE(623), 1, - sym__additive_operator, - STATE(624), 1, - sym__multiplicative_operator, - STATE(625), 1, + ACTIONS(1210), 1, + aux_sym_variable_tuning_token2, + STATE(847), 1, sym__comparison_operator, - ACTIONS(1079), 2, + STATE(848), 1, + sym__multiplicative_operator, + STATE(849), 1, + sym__additive_operator, + STATE(850), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1432), 2, + STATE(1434), 2, sym_comment, sym_include, - ACTIONS(1199), 8, + ACTIONS(1212), 10, + sym__or_operator, + sym__and_operator, sym__terminator, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_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(2396), 13, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -154735,48 +156555,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [119819] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [120778] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(518), 1, - sym__logical_operator, - STATE(623), 1, - sym__additive_operator, - STATE(624), 1, - sym__multiplicative_operator, - STATE(625), 1, + ACTIONS(1194), 1, + aux_sym_variable_tuning_token2, + STATE(847), 1, sym__comparison_operator, - ACTIONS(1079), 2, + STATE(848), 1, + sym__multiplicative_operator, + STATE(849), 1, + sym__additive_operator, + STATE(850), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1433), 2, + STATE(1435), 2, sym_comment, sym_include, - ACTIONS(1102), 8, + ACTIONS(1196), 8, sym__terminator, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_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(2396), 13, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -154790,51 +156612,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [119889] = 15, - ACTIONS(65), 1, + [120851] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(518), 1, - sym__logical_operator, - STATE(623), 1, - sym__additive_operator, - STATE(624), 1, - sym__multiplicative_operator, - STATE(625), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(2730), 1, + anon_sym_LBRACK, + ACTIONS(2732), 1, + anon_sym_LPAREN, + ACTIONS(2734), 1, + sym__namedot, + ACTIONS(2736), 1, + sym__namecolon, + ACTIONS(2738), 1, + sym__namedoublecolon, + STATE(1973), 1, + aux_sym_object_access_repeat1, + STATE(2530), 1, + aux_sym_qualified_name_repeat1, + STATE(2606), 1, + aux_sym_member_access_repeat1, + STATE(2611), 1, + sym_function_arguments, + ACTIONS(65), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1434), 2, + STATE(1436), 2, sym_comment, sym_include, - ACTIONS(1183), 8, + ACTIONS(71), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, sym__terminator, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_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(2396), 13, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, @@ -154845,95 +156667,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [119959] = 14, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + [120922] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(518), 1, - sym__logical_operator, - STATE(623), 1, - sym__additive_operator, - STATE(624), 1, - sym__multiplicative_operator, - STATE(625), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1435), 2, - sym_comment, - sym_include, - ACTIONS(236), 10, + ACTIONS(2686), 1, + anon_sym_LPAREN, + ACTIONS(2688), 1, + sym__namedot, + ACTIONS(2690), 1, + sym__namecolon, + ACTIONS(2692), 1, + sym__namedoublecolon, + STATE(1736), 1, + aux_sym_object_access_repeat1, + STATE(2457), 1, + sym_function_arguments, + STATE(2471), 1, + aux_sym_member_access_repeat1, + STATE(2517), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, - sym__terminator, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_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(2396), 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, - [120027] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(518), 1, - sym__logical_operator, - STATE(623), 1, - sym__additive_operator, - STATE(624), 1, - sym__multiplicative_operator, - STATE(625), 1, - sym__comparison_operator, - ACTIONS(1205), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(1436), 2, + STATE(1437), 2, sym_comment, sym_include, - ACTIONS(1207), 25, - sym__or_operator, - sym__and_operator, - sym__terminator, + ACTIONS(87), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, + aux_sym__multiplicative_operator_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, @@ -154944,35 +156721,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_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [120091] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [120991] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2717), 1, - anon_sym_NO_DASHERROR, - STATE(1437), 2, + STATE(1438), 2, sym_comment, sym_include, - ACTIONS(250), 3, + ACTIONS(200), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(248), 30, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(198), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, sym__terminator, - anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -154985,116 +156756,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token3, aux_sym__comparison_operator_token4, aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_of_token1, - [120145] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [121044] = 16, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(518), 1, - sym__logical_operator, - STATE(623), 1, - sym__additive_operator, - STATE(624), 1, - sym__multiplicative_operator, - STATE(625), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1438), 2, - sym_comment, - sym_include, - ACTIONS(1112), 8, - sym__terminator, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_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(2396), 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, - [120215] = 15, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(518), 1, - sym__logical_operator, - STATE(623), 1, - sym__additive_operator, - STATE(624), 1, - sym__multiplicative_operator, - STATE(625), 1, + ACTIONS(1115), 1, + aux_sym_variable_tuning_token2, + STATE(847), 1, sym__comparison_operator, - ACTIONS(1079), 2, + STATE(848), 1, + sym__multiplicative_operator, + STATE(849), 1, + sym__additive_operator, + STATE(850), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1439), 2, sym_comment, sym_include, - ACTIONS(1106), 8, + ACTIONS(1117), 8, sym__terminator, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_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(2396), 13, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -155108,48 +156827,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [120285] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [121117] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(518), 1, - sym__logical_operator, - STATE(623), 1, - sym__additive_operator, - STATE(624), 1, - sym__multiplicative_operator, - STATE(625), 1, + ACTIONS(2742), 1, + aux_sym_variable_tuning_token2, + STATE(847), 1, sym__comparison_operator, - ACTIONS(1079), 2, + STATE(848), 1, + sym__multiplicative_operator, + STATE(849), 1, + sym__additive_operator, + STATE(850), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1440), 2, sym_comment, sym_include, - ACTIONS(1191), 8, + ACTIONS(2740), 8, sym__terminator, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_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(2396), 13, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -155163,51 +156884,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [120355] = 15, - ACTIONS(65), 1, + [121190] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(518), 1, - sym__logical_operator, - STATE(623), 1, - sym__additive_operator, - STATE(624), 1, - sym__multiplicative_operator, - STATE(625), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(2744), 1, + anon_sym_LBRACK, + ACTIONS(2746), 1, + anon_sym_LPAREN, + ACTIONS(2748), 1, + sym__namedot, + ACTIONS(2750), 1, + sym__namecolon, + ACTIONS(2752), 1, + sym__namedoublecolon, + STATE(2009), 1, + aux_sym_object_access_repeat1, + STATE(2550), 1, + sym_function_arguments, + STATE(2553), 1, + aux_sym_qualified_name_repeat1, + STATE(2556), 1, + aux_sym_member_access_repeat1, + ACTIONS(65), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, STATE(1441), 2, sym_comment, sym_include, - ACTIONS(2567), 8, + ACTIONS(71), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, sym__terminator, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_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(2396), 13, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, @@ -155218,24 +156938,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [120425] = 8, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [121261] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2458), 1, + ACTIONS(2453), 1, sym_identifier, - STATE(32), 1, + ACTIONS(2754), 1, + aux_sym_input_expression_token2, + STATE(28), 1, sym_qualified_name, - ACTIONS(1366), 2, + ACTIONS(1358), 2, sym__or_operator, sym__and_operator, STATE(1442), 2, sym_comment, sym_include, - ACTIONS(1364), 30, + ACTIONS(1354), 30, anon_sym_SLASH, anon_sym_STAR, sym__terminator, @@ -155266,37 +156990,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, aux_sym_input_stream_tuning_token9, - [120481] = 9, - ACTIONS(3), 1, + [121320] = 16, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(2719), 1, - aux_sym_input_expression_token2, - STATE(22), 1, - sym_qualified_name, - ACTIONS(1351), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(1123), 1, + aux_sym_variable_tuning_token2, + STATE(847), 1, + sym__comparison_operator, + STATE(848), 1, + sym__multiplicative_operator, + STATE(849), 1, + sym__additive_operator, + STATE(850), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, STATE(1443), 2, sym_comment, sym_include, - ACTIONS(1347), 29, - anon_sym_SLASH, - anon_sym_STAR, + ACTIONS(1125), 8, sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + ACTIONS(2409), 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, @@ -155307,41 +157047,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_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_variable_tuning_token7, - aux_sym_variable_tuning_token8, - [120539] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [121393] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(518), 1, - sym__logical_operator, - STATE(623), 1, - sym__additive_operator, - STATE(624), 1, - sym__multiplicative_operator, - STATE(625), 1, - sym__comparison_operator, + ACTIONS(2756), 1, + anon_sym_NO_DASHERROR, STATE(1444), 2, sym_comment, sym_include, - ACTIONS(1193), 3, + ACTIONS(393), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1195), 27, + ACTIONS(391), 31, + sym__namecolon, sym__or_operator, sym__and_operator, anon_sym_STAR, sym__terminator, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -155360,53 +157088,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_function_call_token1, aux_sym_using_statement_token1, + aux_sym_where_clause_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [120599] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_of_token1, + [121448] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(518), 1, - sym__logical_operator, - STATE(623), 1, - sym__additive_operator, - STATE(624), 1, - sym__multiplicative_operator, - STATE(625), 1, + ACTIONS(1198), 1, + aux_sym_variable_tuning_token2, + STATE(847), 1, sym__comparison_operator, - ACTIONS(1079), 2, + STATE(848), 1, + sym__multiplicative_operator, + STATE(849), 1, + sym__additive_operator, + STATE(850), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, STATE(1445), 2, sym_comment, sym_include, - ACTIONS(1187), 8, + ACTIONS(1200), 8, sym__terminator, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_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(2396), 13, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -155420,42 +157152,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [120669] = 13, - ACTIONS(65), 1, + [121521] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(518), 1, - sym__logical_operator, - STATE(623), 1, - sym__additive_operator, - STATE(624), 1, - sym__multiplicative_operator, - STATE(625), 1, - sym__comparison_operator, - ACTIONS(1177), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2706), 1, + anon_sym_LPAREN, + ACTIONS(2708), 1, + sym__namedot, + ACTIONS(2710), 1, + sym__namecolon, + ACTIONS(2712), 1, + sym__namedoublecolon, + STATE(1920), 1, + aux_sym_object_access_repeat1, + STATE(2476), 1, + sym_function_arguments, + STATE(2478), 1, + aux_sym_qualified_name_repeat1, + STATE(2479), 1, + aux_sym_member_access_repeat1, + ACTIONS(85), 2, + sym__or_operator, + sym__and_operator, STATE(1446), 2, sym_comment, sym_include, - ACTIONS(1179), 23, - sym__or_operator, - sym__and_operator, + ACTIONS(87), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, @@ -155466,58 +157204,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [120735] = 15, - ACTIONS(3), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [121590] = 16, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2721), 1, - anon_sym_LBRACK, - ACTIONS(2723), 1, - anon_sym_LPAREN, - ACTIONS(2725), 1, - sym__namedot, - ACTIONS(2727), 1, - sym__namecolon, - ACTIONS(2729), 1, - sym__namedoublecolon, - STATE(2198), 1, - aux_sym_object_access_repeat1, - STATE(2637), 1, - aux_sym_qualified_name_repeat1, - STATE(2739), 1, - aux_sym_member_access_repeat1, - STATE(2806), 1, - sym_function_arguments, - ACTIONS(63), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(1111), 1, + aux_sym_variable_tuning_token2, + STATE(847), 1, + sym__comparison_operator, + STATE(848), 1, + sym__multiplicative_operator, + STATE(849), 1, + sym__additive_operator, + STATE(850), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, STATE(1447), 2, sym_comment, sym_include, - ACTIONS(69), 23, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, + ACTIONS(1113), 8, sym__terminator, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + ACTIONS(2409), 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, @@ -155528,156 +157264,147 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [120805] = 15, - ACTIONS(3), 1, + [121663] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2731), 1, - anon_sym_LBRACK, - ACTIONS(2733), 1, - anon_sym_LPAREN, - ACTIONS(2735), 1, - sym__namedot, - ACTIONS(2737), 1, - sym__namecolon, - ACTIONS(2739), 1, - sym__namedoublecolon, - STATE(2066), 1, - aux_sym_object_access_repeat1, - STATE(2660), 1, - aux_sym_member_access_repeat1, - STATE(2681), 1, - aux_sym_qualified_name_repeat1, - STATE(2902), 1, - sym_function_arguments, - ACTIONS(63), 2, - sym__or_operator, - sym__and_operator, STATE(1448), 2, sym_comment, sym_include, - ACTIONS(69), 23, + ACTIONS(71), 5, anon_sym_SLASH, - sym_identifier, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(65), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, - anon_sym_NO_DASHERROR, - [120875] = 14, - ACTIONS(3), 1, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [121716] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2723), 1, - anon_sym_LPAREN, - ACTIONS(2725), 1, - sym__namedot, - ACTIONS(2727), 1, - sym__namecolon, - ACTIONS(2729), 1, - sym__namedoublecolon, - STATE(2198), 1, - aux_sym_object_access_repeat1, - STATE(2637), 1, - aux_sym_qualified_name_repeat1, - STATE(2739), 1, - aux_sym_member_access_repeat1, - STATE(2806), 1, - sym_function_arguments, - ACTIONS(83), 2, - sym__or_operator, - sym__and_operator, STATE(1449), 2, sym_comment, sym_include, - ACTIONS(85), 23, + ACTIONS(208), 5, anon_sym_SLASH, - sym_identifier, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(206), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, - [120942] = 14, - ACTIONS(3), 1, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [121769] = 16, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2733), 1, - anon_sym_LPAREN, - ACTIONS(2735), 1, - sym__namedot, - ACTIONS(2737), 1, - sym__namecolon, - ACTIONS(2739), 1, - sym__namedoublecolon, - STATE(2066), 1, - aux_sym_object_access_repeat1, - STATE(2660), 1, - aux_sym_member_access_repeat1, - STATE(2681), 1, - aux_sym_qualified_name_repeat1, - STATE(2902), 1, - sym_function_arguments, - ACTIONS(83), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(1206), 1, + aux_sym_variable_tuning_token2, + STATE(847), 1, + sym__comparison_operator, + STATE(848), 1, + sym__multiplicative_operator, + STATE(849), 1, + sym__additive_operator, + STATE(850), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, STATE(1450), 2, sym_comment, sym_include, - ACTIONS(85), 23, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, + ACTIONS(1208), 8, sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + ACTIONS(2409), 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, @@ -155688,142 +157415,124 @@ 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, - [121009] = 9, - ACTIONS(3), 1, + [121842] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(2741), 1, - aux_sym_input_expression_token2, - STATE(22), 1, - sym_qualified_name, - ACTIONS(1351), 2, - sym__or_operator, - sym__and_operator, STATE(1451), 2, sym_comment, sym_include, - ACTIONS(1347), 28, + ACTIONS(172), 5, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(170), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [121066] = 8, - ACTIONS(3), 1, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [121895] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2458), 1, - sym_identifier, - STATE(32), 1, - sym_qualified_name, - ACTIONS(1366), 2, - sym__or_operator, - sym__and_operator, STATE(1452), 2, sym_comment, sym_include, - ACTIONS(1364), 29, + ACTIONS(184), 5, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(182), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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_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_variable_tuning_token7, aux_sym_variable_tuning_token8, - [121121] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [121948] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + STATE(1453), 2, + sym_comment, + sym_include, + ACTIONS(240), 5, anon_sym_SLASH, - STATE(854), 1, - sym__logical_operator, - STATE(856), 1, - sym__additive_operator, - STATE(858), 1, - sym__multiplicative_operator, - STATE(859), 1, - sym__comparison_operator, - ACTIONS(1079), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(238), 30, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1453), 2, - sym_comment, - sym_include, - ACTIONS(1191), 6, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_while_phrase_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - anon_sym_BY, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -155833,97 +157542,44 @@ 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, - [121189] = 9, - ACTIONS(3), 1, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [122001] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2743), 1, - ts_builtin_sym_end, - ACTIONS(2747), 1, - aux_sym_else_statement_token1, - STATE(1484), 1, - aux_sym_if_statement_repeat1, - STATE(1958), 1, - sym_else_statement, STATE(1454), 2, sym_comment, sym_include, - ACTIONS(2745), 28, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [121245] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(87), 5, anon_sym_SLASH, - STATE(693), 1, - sym__comparison_operator, - STATE(695), 1, - sym__multiplicative_operator, - STATE(697), 1, - sym__additive_operator, - STATE(699), 1, - sym__logical_operator, - ACTIONS(1079), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(85), 30, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1455), 2, - sym_comment, - sym_include, - ACTIONS(1102), 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(2396), 13, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -155933,50 +157589,44 @@ 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, - [121313] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [122054] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + STATE(1455), 2, + sym_comment, + sym_include, + ACTIONS(232), 5, anon_sym_SLASH, - STATE(854), 1, - sym__logical_operator, - STATE(856), 1, - sym__additive_operator, - STATE(858), 1, - sym__multiplicative_operator, - STATE(859), 1, - sym__comparison_operator, - ACTIONS(1079), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(230), 30, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1456), 2, - sym_comment, - sym_include, - ACTIONS(1203), 6, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_while_phrase_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - anon_sym_BY, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -155986,49 +157636,44 @@ 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, - [121381] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [122107] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + STATE(1456), 2, + sym_comment, + sym_include, + ACTIONS(212), 5, anon_sym_SLASH, - STATE(693), 1, - sym__comparison_operator, - STATE(695), 1, - sym__multiplicative_operator, - STATE(697), 1, - sym__additive_operator, - STATE(699), 1, - sym__logical_operator, - ACTIONS(1079), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + aux_sym__comparison_operator_token6, + aux_sym_variable_tuning_token2, + ACTIONS(210), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1457), 2, - sym_comment, - sym_include, - ACTIONS(236), 8, - sym__or_operator, - sym__and_operator, - 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(2396), 13, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -156038,97 +157683,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token3, aux_sym__comparison_operator_token4, aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [121447] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2752), 1, - aux_sym_else_statement_token1, - STATE(1487), 1, - aux_sym_if_statement_repeat1, - STATE(1724), 1, - sym_else_statement, - STATE(1458), 2, - sym_comment, - sym_include, - ACTIONS(2749), 29, - sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [121501] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [122160] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(232), 1, + aux_sym_variable_tuning_token2, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(2758), 1, - anon_sym_BY, - STATE(693), 1, + STATE(847), 1, sym__comparison_operator, - STATE(695), 1, + STATE(848), 1, sym__multiplicative_operator, - STATE(697), 1, + STATE(849), 1, sym__additive_operator, - STATE(699), 1, + STATE(850), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1459), 2, + STATE(1457), 2, sym_comment, sym_include, - ACTIONS(2756), 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(2396), 13, + ACTIONS(230), 10, + sym__or_operator, + sym__and_operator, + sym__terminator, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -156142,141 +157753,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [121571] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2760), 1, - aux_sym_else_statement_token1, - STATE(1482), 1, - aux_sym_if_statement_repeat1, - STATE(1724), 1, - sym_else_statement, - STATE(1460), 2, - sym_comment, - sym_include, - ACTIONS(2745), 29, - sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [121625] = 8, + [122231] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2764), 1, - aux_sym_else_statement_token1, - STATE(1487), 1, - aux_sym_if_statement_repeat1, - STATE(1724), 1, - sym_else_statement, - STATE(1461), 2, + ACTIONS(2732), 1, + anon_sym_LPAREN, + ACTIONS(2734), 1, + sym__namedot, + ACTIONS(2736), 1, + sym__namecolon, + ACTIONS(2738), 1, + sym__namedoublecolon, + STATE(1973), 1, + aux_sym_object_access_repeat1, + STATE(2530), 1, + aux_sym_qualified_name_repeat1, + STATE(2606), 1, + aux_sym_member_access_repeat1, + STATE(2611), 1, + sym_function_arguments, + ACTIONS(85), 2, + sym__or_operator, + sym__and_operator, + STATE(1458), 2, sym_comment, sym_include, - ACTIONS(2762), 29, - sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [121679] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(87), 24, anon_sym_SLASH, - STATE(854), 1, - sym__logical_operator, - STATE(856), 1, - sym__additive_operator, - STATE(858), 1, - sym__multiplicative_operator, - STATE(859), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(1462), 2, - sym_comment, - sym_include, - ACTIONS(1199), 6, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_while_phrase_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - anon_sym_BY, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -156287,46 +157806,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [121747] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + [122299] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(854), 1, + STATE(979), 1, sym__logical_operator, - STATE(856), 1, + STATE(981), 1, sym__additive_operator, - STATE(858), 1, + STATE(983), 1, sym__multiplicative_operator, - STATE(859), 1, + STATE(984), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1463), 2, + STATE(1459), 2, sym_comment, sym_include, - ACTIONS(1106), 6, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_while_phrase_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - anon_sym_BY, - ACTIONS(2396), 13, + ACTIONS(1200), 8, + sym__terminator, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_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(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -156340,27 +157862,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [121815] = 8, + [122369] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2458), 1, - sym_identifier, - STATE(32), 1, - sym_qualified_name, - ACTIONS(1366), 2, + ACTIONS(2722), 1, + anon_sym_LPAREN, + ACTIONS(2724), 1, + sym__namedot, + ACTIONS(2726), 1, + sym__namecolon, + ACTIONS(2728), 1, + sym__namedoublecolon, + STATE(2135), 1, + aux_sym_object_access_repeat1, + STATE(2560), 1, + sym_function_arguments, + STATE(2574), 1, + aux_sym_member_access_repeat1, + STATE(2580), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, - STATE(1464), 2, + STATE(1460), 2, sym_comment, sym_include, - ACTIONS(1364), 28, + ACTIONS(87), 25, anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - sym__terminator, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -156379,45 +157914,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [121869] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_include_argument_token1, + [122435] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(693), 1, - sym__comparison_operator, - STATE(695), 1, - sym__multiplicative_operator, - STATE(697), 1, - sym__additive_operator, - STATE(699), 1, + STATE(979), 1, sym__logical_operator, - ACTIONS(1205), 2, + STATE(981), 1, + sym__additive_operator, + STATE(983), 1, + sym__multiplicative_operator, + STATE(984), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - STATE(1465), 2, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1461), 2, sym_comment, sym_include, - ACTIONS(1207), 23, + ACTIONS(230), 10, sym__or_operator, sym__and_operator, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, + sym__terminator, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_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(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -156431,51 +157969,48 @@ 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_while_phrase_token1, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - anon_sym_BY, - [121931] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [122503] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(854), 1, + STATE(979), 1, sym__logical_operator, - STATE(856), 1, + STATE(981), 1, sym__additive_operator, - STATE(858), 1, + STATE(983), 1, sym__multiplicative_operator, - STATE(859), 1, + STATE(984), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1466), 2, + STATE(1462), 2, sym_comment, sym_include, - ACTIONS(1187), 6, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_while_phrase_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - anon_sym_BY, - ACTIONS(2396), 13, + ACTIONS(1204), 8, + sym__terminator, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_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(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -156489,46 +158024,97 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [121999] = 15, - ACTIONS(65), 1, + [122573] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(2758), 1, + aux_sym_input_expression_token2, + STATE(28), 1, + sym_qualified_name, + ACTIONS(1358), 2, + sym__or_operator, + sym__and_operator, + STATE(1463), 2, + sym_comment, + sym_include, + ACTIONS(1354), 29, + anon_sym_SLASH, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_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_variable_tuning_token7, + aux_sym_variable_tuning_token8, + [122631] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(854), 1, + STATE(979), 1, sym__logical_operator, - STATE(856), 1, + STATE(981), 1, sym__additive_operator, - STATE(858), 1, + STATE(983), 1, sym__multiplicative_operator, - STATE(859), 1, + STATE(984), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1467), 2, + STATE(1464), 2, sym_comment, sym_include, - ACTIONS(1183), 6, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_while_phrase_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - anon_sym_BY, - ACTIONS(2396), 13, + ACTIONS(1196), 8, + sym__terminator, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_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(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -156542,46 +158128,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [122067] = 15, - ACTIONS(65), 1, + [122701] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2471), 1, + sym_identifier, + STATE(32), 1, + sym_qualified_name, + ACTIONS(1581), 2, + sym__or_operator, + sym__and_operator, + STATE(1465), 2, + sym_comment, + sym_include, + ACTIONS(1579), 30, + anon_sym_SLASH, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_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, + [122757] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(693), 1, - sym__comparison_operator, - STATE(695), 1, - sym__multiplicative_operator, - STATE(697), 1, - sym__additive_operator, - STATE(699), 1, + STATE(979), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(981), 1, + sym__additive_operator, + STATE(983), 1, + sym__multiplicative_operator, + STATE(984), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1468), 2, + STATE(1466), 2, sym_comment, sym_include, - ACTIONS(1203), 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(2396), 13, + ACTIONS(1117), 8, + sym__terminator, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_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(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -156595,92 +158231,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [122135] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2747), 1, - aux_sym_else_statement_token1, - ACTIONS(2767), 1, - ts_builtin_sym_end, - STATE(1454), 1, - aux_sym_if_statement_repeat1, - STATE(1958), 1, - sym_else_statement, - STATE(1469), 2, - sym_comment, - sym_include, - ACTIONS(2762), 28, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [122191] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [122827] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(854), 1, + STATE(979), 1, sym__logical_operator, - STATE(856), 1, + STATE(981), 1, sym__additive_operator, - STATE(858), 1, + STATE(983), 1, sym__multiplicative_operator, - STATE(859), 1, + STATE(984), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1470), 2, + STATE(1467), 2, sym_comment, sym_include, - ACTIONS(236), 8, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_while_phrase_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - anon_sym_BY, - ACTIONS(2396), 13, + ACTIONS(1192), 8, + sym__terminator, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_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(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -156694,37 +158286,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [122257] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [122897] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(854), 1, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(979), 1, sym__logical_operator, - STATE(856), 1, + STATE(981), 1, sym__additive_operator, - STATE(858), 1, + STATE(983), 1, sym__multiplicative_operator, - STATE(859), 1, + STATE(984), 1, sym__comparison_operator, - STATE(1471), 2, - sym_comment, - sym_include, - ACTIONS(1193), 3, - anon_sym_SLASH, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1195), 25, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - anon_sym_COLON, + ACTIONS(2405), 2, anon_sym_STAR, - aux_sym__block_terminator_token1, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(1468), 2, + sym_comment, + sym_include, + ACTIONS(2600), 8, + sym__terminator, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_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(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -156738,97 +158341,102 @@ 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_while_phrase_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - anon_sym_BY, - [122315] = 9, + [122967] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2769), 1, - ts_builtin_sym_end, - ACTIONS(2772), 1, - aux_sym_else_statement_token1, - STATE(1454), 1, - aux_sym_if_statement_repeat1, - STATE(1958), 1, - sym_else_statement, - STATE(1472), 2, + ACTIONS(2746), 1, + anon_sym_LPAREN, + ACTIONS(2748), 1, + sym__namedot, + ACTIONS(2750), 1, + sym__namecolon, + ACTIONS(2752), 1, + sym__namedoublecolon, + STATE(2009), 1, + aux_sym_object_access_repeat1, + STATE(2550), 1, + sym_function_arguments, + STATE(2553), 1, + aux_sym_qualified_name_repeat1, + STATE(2556), 1, + aux_sym_member_access_repeat1, + ACTIONS(85), 2, + sym__or_operator, + sym__and_operator, + STATE(1469), 2, sym_comment, sym_include, - ACTIONS(2749), 28, + ACTIONS(87), 24, + anon_sym_SLASH, sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [122371] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, + anon_sym_NO_DASHERROR, + [123035] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(693), 1, - sym__comparison_operator, - STATE(695), 1, - sym__multiplicative_operator, - STATE(697), 1, - sym__additive_operator, - STATE(699), 1, + STATE(979), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(981), 1, + sym__additive_operator, + STATE(983), 1, + sym__multiplicative_operator, + STATE(984), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1473), 2, + STATE(1470), 2, sym_comment, sym_include, - ACTIONS(1199), 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(2396), 13, + ACTIONS(1113), 8, + sym__terminator, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_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(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -156842,46 +158450,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [122439] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [123105] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(693), 1, - sym__comparison_operator, - STATE(695), 1, - sym__multiplicative_operator, - STATE(697), 1, - sym__additive_operator, - STATE(699), 1, + STATE(979), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(981), 1, + sym__additive_operator, + STATE(983), 1, + sym__multiplicative_operator, + STATE(984), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1474), 2, + STATE(1471), 2, sym_comment, sym_include, - ACTIONS(1106), 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(2396), 13, + ACTIONS(1208), 8, + sym__terminator, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_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(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -156895,46 +158505,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [122507] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [123175] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(693), 1, - sym__comparison_operator, - STATE(695), 1, - sym__multiplicative_operator, - STATE(697), 1, - sym__additive_operator, - STATE(699), 1, + STATE(979), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(981), 1, + sym__additive_operator, + STATE(983), 1, + sym__multiplicative_operator, + STATE(984), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1475), 2, + STATE(1472), 2, sym_comment, sym_include, - ACTIONS(1112), 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(2396), 13, + ACTIONS(1125), 8, + sym__terminator, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_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(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -156948,40 +158560,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [122575] = 13, - ACTIONS(65), 1, + [123245] = 10, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(979), 1, + sym__logical_operator, + STATE(981), 1, + sym__additive_operator, + STATE(983), 1, + sym__multiplicative_operator, + STATE(984), 1, + sym__comparison_operator, + STATE(1473), 2, + sym_comment, + sym_include, + ACTIONS(1214), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1216), 27, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [123305] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(854), 1, + STATE(979), 1, sym__logical_operator, - STATE(856), 1, + STATE(981), 1, sym__additive_operator, - STATE(858), 1, + STATE(983), 1, sym__multiplicative_operator, - STATE(859), 1, + STATE(984), 1, sym__comparison_operator, - ACTIONS(1177), 2, + ACTIONS(1119), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1476), 2, + STATE(1474), 2, sym_comment, sym_include, - ACTIONS(1179), 21, + ACTIONS(1121), 25, sym__or_operator, sym__and_operator, - anon_sym_COLON, - aux_sym__block_terminator_token1, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -156995,53 +158655,96 @@ 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_while_phrase_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - anon_sym_BY, - [122639] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [123369] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(854), 1, + STATE(979), 1, sym__logical_operator, - STATE(856), 1, + STATE(981), 1, sym__additive_operator, - STATE(858), 1, + STATE(983), 1, sym__multiplicative_operator, - STATE(859), 1, + STATE(984), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1477), 2, + STATE(1475), 2, sym_comment, sym_include, - ACTIONS(1112), 6, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_while_phrase_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - anon_sym_BY, - ACTIONS(2396), 13, + ACTIONS(1212), 10, + sym__or_operator, + sym__and_operator, + sym__terminator, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_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(2409), 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, + [123437] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2471), 1, + sym_identifier, + STATE(32), 1, + sym_qualified_name, + ACTIONS(1581), 2, + sym__or_operator, + sym__and_operator, + STATE(1476), 2, + sym_comment, + sym_include, + ACTIONS(1579), 30, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, @@ -157052,25 +158755,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [122707] = 7, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_of_token1, + [123493] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1487), 1, + STATE(1488), 1, aux_sym_if_statement_repeat1, - STATE(1724), 1, + STATE(1731), 1, sym_else_statement, - STATE(1478), 2, + STATE(1477), 2, sym_comment, sym_include, - ACTIONS(2775), 30, + ACTIONS(2760), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -157097,28 +158810,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [122759] = 9, + [123546] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2743), 1, - ts_builtin_sym_end, - ACTIONS(2777), 1, + ACTIONS(2764), 1, aux_sym_else_statement_token1, - STATE(1484), 1, + STATE(1492), 1, aux_sym_if_statement_repeat1, - STATE(1958), 1, + STATE(1731), 1, sym_else_statement, - STATE(1479), 2, + STATE(1478), 2, sym_comment, sym_include, - ACTIONS(2745), 28, + ACTIONS(2762), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -157144,120 +158857,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [122815] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(693), 1, - sym__comparison_operator, - STATE(695), 1, - sym__multiplicative_operator, - STATE(697), 1, - sym__additive_operator, - STATE(699), 1, - sym__logical_operator, - ACTIONS(1177), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1480), 2, - sym_comment, - sym_include, - ACTIONS(1179), 21, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_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_while_phrase_token1, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - anon_sym_BY, - [122879] = 5, + [123601] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1481), 2, + ACTIONS(2769), 1, + aux_sym_else_statement_token1, + STATE(1492), 1, + aux_sym_if_statement_repeat1, + STATE(1731), 1, + sym_else_statement, + STATE(1479), 2, sym_comment, sym_include, - ACTIONS(2780), 32, + ACTIONS(2766), 30, 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__block_terminator_token1, + aux_sym_input_expression_token1, aux_sym_class_type_token1, 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_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_method_tuning_token1, - [122927] = 7, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [123656] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2784), 1, + ACTIONS(2772), 1, aux_sym_else_statement_token1, - STATE(1724), 1, + STATE(1488), 1, + aux_sym_if_statement_repeat1, + STATE(1731), 1, sym_else_statement, - STATE(1482), 3, + STATE(1480), 2, sym_comment, sym_include, - aux_sym_if_statement_repeat1, - ACTIONS(2782), 29, + ACTIONS(2766), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -157283,70 +158951,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [122979] = 5, + [123711] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1483), 2, + ACTIONS(2776), 1, + aux_sym_else_statement_token1, + STATE(1488), 1, + aux_sym_if_statement_repeat1, + STATE(1731), 1, + sym_else_statement, + STATE(1481), 2, sym_comment, sym_include, - ACTIONS(2787), 32, + ACTIONS(2762), 30, 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__block_terminator_token1, + aux_sym_input_expression_token1, aux_sym_class_type_token1, 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_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_method_tuning_token1, - [123027] = 8, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [123766] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2789), 1, + ACTIONS(2779), 1, ts_builtin_sym_end, - ACTIONS(2791), 1, + ACTIONS(2783), 1, aux_sym_else_statement_token1, - STATE(1958), 1, + STATE(1494), 1, + aux_sym_if_statement_repeat1, + STATE(1710), 1, sym_else_statement, - STATE(1484), 3, + STATE(1482), 2, sym_comment, sym_include, - aux_sym_if_statement_repeat1, - ACTIONS(2782), 28, + ACTIONS(2781), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -157372,34 +159046,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [123081] = 9, + [123823] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2767), 1, - ts_builtin_sym_end, - ACTIONS(2794), 1, - aux_sym_else_statement_token1, - STATE(1479), 1, + STATE(1488), 1, aux_sym_if_statement_repeat1, - STATE(1958), 1, + STATE(1731), 1, sym_else_statement, - STATE(1485), 2, + STATE(1483), 2, sym_comment, sym_include, - ACTIONS(2762), 28, + ACTIONS(2760), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, + aux_sym_else_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_terminator_token1, @@ -157419,28 +159092,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [123137] = 9, + [123876] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2769), 1, - ts_builtin_sym_end, - ACTIONS(2797), 1, + ACTIONS(2787), 1, aux_sym_else_statement_token1, - STATE(1479), 1, - aux_sym_if_statement_repeat1, - STATE(1958), 1, + STATE(1731), 1, sym_else_statement, - STATE(1486), 2, + STATE(1484), 3, sym_comment, sym_include, - ACTIONS(2749), 28, + aux_sym_if_statement_repeat1, + ACTIONS(2785), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -157466,27 +159138,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [123193] = 8, + [123929] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2801), 1, + ACTIONS(2779), 1, + ts_builtin_sym_end, + ACTIONS(2790), 1, aux_sym_else_statement_token1, - STATE(1482), 1, + STATE(1494), 1, aux_sym_if_statement_repeat1, - STATE(1724), 1, + STATE(1710), 1, sym_else_statement, - STATE(1487), 2, + STATE(1485), 2, sym_comment, sym_include, - ACTIONS(2745), 29, + ACTIONS(2781), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -157512,115 +159186,123 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [123247] = 5, + [123986] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1488), 2, + ACTIONS(2793), 1, + ts_builtin_sym_end, + STATE(1485), 1, + aux_sym_if_statement_repeat1, + STATE(1710), 1, + sym_else_statement, + STATE(1486), 2, sym_comment, sym_include, - ACTIONS(2804), 32, + ACTIONS(2760), 30, 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_input_expression_token1, aux_sym_class_type_token1, 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_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_method_tuning_token1, - [123295] = 7, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [124041] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2811), 1, - sym__escaped_string, - STATE(1968), 1, - sym_index_tuning, - ACTIONS(2808), 2, - aux_sym_type_tuning_token1, - aux_sym_index_tuning_token1, - STATE(1489), 3, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2795), 1, + ts_builtin_sym_end, + ACTIONS(2797), 1, + aux_sym_else_statement_token1, + STATE(1485), 1, + aux_sym_if_statement_repeat1, + STATE(1710), 1, + sym_else_statement, + STATE(1487), 2, sym_comment, sym_include, - aux_sym_index_definition_repeat1, - ACTIONS(2806), 28, - anon_sym_LBRACE, + ACTIONS(2762), 29, 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, aux_sym_input_expression_token1, + aux_sym_class_type_token1, aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_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, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [123347] = 8, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [124098] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2760), 1, + ACTIONS(2800), 1, aux_sym_else_statement_token1, - STATE(1460), 1, + STATE(1484), 1, aux_sym_if_statement_repeat1, - STATE(1724), 1, + STATE(1731), 1, sym_else_statement, - STATE(1490), 2, + STATE(1488), 2, sym_comment, sym_include, - ACTIONS(2762), 29, + ACTIONS(2781), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -157646,33 +159328,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [123401] = 8, + [124153] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2813), 1, - aux_sym_else_statement_token1, - STATE(1460), 1, + ACTIONS(2793), 1, + ts_builtin_sym_end, + STATE(1485), 1, aux_sym_if_statement_repeat1, - STATE(1724), 1, + STATE(1710), 1, sym_else_statement, - STATE(1491), 2, + STATE(1489), 2, sym_comment, sym_include, - ACTIONS(2749), 29, + ACTIONS(2760), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, + aux_sym_else_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_terminator_token1, @@ -157692,49 +159375,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [123455] = 15, - ACTIONS(65), 1, + [124208] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(854), 1, - sym__logical_operator, - STATE(856), 1, - sym__additive_operator, - STATE(858), 1, - sym__multiplicative_operator, - STATE(859), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(2803), 1, + aux_sym_input_expression_token2, + STATE(28), 1, + sym_qualified_name, + ACTIONS(1358), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + STATE(1490), 2, + sym_comment, + sym_include, + ACTIONS(1354), 28, + anon_sym_SLASH, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1492), 2, - sym_comment, - sym_include, - ACTIONS(1102), 6, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_while_phrase_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - anon_sym_BY, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -157745,337 +159416,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [123523] = 5, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [124265] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1493), 2, + ACTIONS(2783), 1, + aux_sym_else_statement_token1, + ACTIONS(2795), 1, + ts_builtin_sym_end, + STATE(1482), 1, + aux_sym_if_statement_repeat1, + STATE(1710), 1, + sym_else_statement, + STATE(1491), 2, sym_comment, sym_include, - ACTIONS(2816), 32, + ACTIONS(2762), 29, 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_input_expression_token1, aux_sym_class_type_token1, 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_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_method_tuning_token1, - [123571] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(693), 1, - sym__comparison_operator, - STATE(695), 1, - sym__multiplicative_operator, - STATE(697), 1, - sym__additive_operator, - STATE(699), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1494), 2, - sym_comment, - sym_include, - ACTIONS(1191), 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(2396), 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, - [123639] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(2758), 1, - anon_sym_BY, - STATE(854), 1, - sym__logical_operator, - STATE(856), 1, - sym__additive_operator, - STATE(858), 1, - sym__multiplicative_operator, - STATE(859), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1495), 2, - sym_comment, - sym_include, - ACTIONS(2756), 5, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_while_phrase_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - ACTIONS(2396), 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, - [123709] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(693), 1, - sym__comparison_operator, - STATE(695), 1, - sym__multiplicative_operator, - STATE(697), 1, - sym__additive_operator, - STATE(699), 1, - sym__logical_operator, - STATE(1496), 2, - sym_comment, - sym_include, - ACTIONS(1193), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1195), 25, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_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_while_phrase_token1, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - anon_sym_BY, - [123767] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(693), 1, - sym__comparison_operator, - STATE(695), 1, - sym__multiplicative_operator, - STATE(697), 1, - sym__additive_operator, - STATE(699), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1497), 2, - sym_comment, - sym_include, - ACTIONS(1187), 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(2396), 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, - [123835] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(693), 1, - sym__comparison_operator, - STATE(695), 1, - sym__multiplicative_operator, - STATE(697), 1, - sym__additive_operator, - STATE(699), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1498), 2, - sym_comment, - sym_include, - ACTIONS(1183), 6, - anon_sym_COLON, - aux_sym_while_phrase_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - anon_sym_BY, - ACTIONS(2396), 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, - [123903] = 8, + 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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [124322] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2818), 1, - ts_builtin_sym_end, - STATE(1479), 1, + ACTIONS(2764), 1, + aux_sym_else_statement_token1, + STATE(1484), 1, aux_sym_if_statement_repeat1, - STATE(1958), 1, + STATE(1731), 1, sym_else_statement, - STATE(1499), 2, + STATE(1492), 2, sym_comment, sym_include, - ACTIONS(2775), 29, + ACTIONS(2781), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, - aux_sym_else_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_terminator_token1, @@ -158095,83 +159518,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [123957] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(854), 1, - sym__logical_operator, - STATE(856), 1, - sym__additive_operator, - STATE(858), 1, - sym__multiplicative_operator, - STATE(859), 1, - sym__comparison_operator, - ACTIONS(1205), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(1500), 2, - sym_comment, - sym_include, - ACTIONS(1207), 23, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, - 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_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - aux_sym_while_phrase_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - anon_sym_BY, - [124019] = 8, + [124377] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2818), 1, + ACTIONS(2805), 1, ts_builtin_sym_end, - STATE(1479), 1, + ACTIONS(2808), 1, + aux_sym_else_statement_token1, + STATE(1482), 1, aux_sym_if_statement_repeat1, - STATE(1958), 1, + STATE(1710), 1, sym_else_statement, - STATE(1501), 2, + STATE(1493), 2, sym_comment, sym_include, - ACTIONS(2775), 29, + ACTIONS(2766), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, - aux_sym_else_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_terminator_token1, @@ -158191,32 +159566,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [124073] = 7, + [124434] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1487), 1, - aux_sym_if_statement_repeat1, - STATE(1724), 1, + ACTIONS(2811), 1, + ts_builtin_sym_end, + ACTIONS(2813), 1, + aux_sym_else_statement_token1, + STATE(1710), 1, sym_else_statement, - STATE(1502), 2, + STATE(1494), 3, sym_comment, sym_include, - ACTIONS(2775), 30, + aux_sym_if_statement_repeat1, + ACTIONS(2785), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, - aux_sym_else_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_terminator_token1, @@ -158236,93 +159613,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [124125] = 13, + [124489] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(913), 1, - sym__logical_operator, - STATE(919), 1, - sym__additive_operator, - STATE(920), 1, - sym__multiplicative_operator, - STATE(922), 1, - sym__comparison_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1503), 2, + ACTIONS(2805), 1, + ts_builtin_sym_end, + ACTIONS(2816), 1, + aux_sym_else_statement_token1, + STATE(1485), 1, + aux_sym_if_statement_repeat1, + STATE(1710), 1, + sym_else_statement, + STATE(1495), 2, sym_comment, sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1185), 5, + ACTIONS(2766), 29, sym_identifier, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, aux_sym_do_block_token1, - aux_sym_widget_field_token1, - ACTIONS(1079), 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, - [124188] = 15, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [124546] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2822), 1, - aux_sym_when_expression_token1, - STATE(642), 1, - sym__logical_operator, - STATE(644), 1, - sym__additive_operator, - STATE(645), 1, - sym__multiplicative_operator, - STATE(654), 1, - sym__comparison_operator, - STATE(5183), 1, - sym_when_expression, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(2471), 1, + sym_identifier, + STATE(32), 1, + sym_qualified_name, + ACTIONS(1581), 2, sym__or_operator, sym__and_operator, - STATE(1504), 2, + STATE(1496), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1579), 29, anon_sym_SLASH, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2820), 3, - sym_identifier, sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(1079), 15, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -158338,46 +159700,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [124255] = 13, - ACTIONS(3), 1, + aux_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_variable_tuning_token7, + aux_sym_variable_tuning_token8, + [124601] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(913), 1, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(386), 1, sym__logical_operator, - STATE(919), 1, + STATE(801), 1, sym__additive_operator, - STATE(920), 1, + STATE(803), 1, sym__multiplicative_operator, - STATE(922), 1, + STATE(808), 1, sym__comparison_operator, - ACTIONS(236), 2, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(1077), 2, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1505), 2, + STATE(1497), 2, sym_comment, sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(238), 5, - sym_identifier, - anon_sym_COMMA, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - ACTIONS(1079), 15, - anon_sym_LT, + ACTIONS(1208), 6, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_while_phrase_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + anon_sym_BY, + ACTIONS(2409), 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, @@ -158388,45 +159761,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [124318] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [124669] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, + STATE(386), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(801), 1, + sym__additive_operator, + STATE(803), 1, + sym__multiplicative_operator, + STATE(808), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1506), 2, + STATE(1498), 2, sym_comment, sym_include, - ACTIONS(1112), 5, - sym__terminator, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - ACTIONS(2396), 13, + ACTIONS(1113), 6, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_while_phrase_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + anon_sym_BY, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -158440,46 +159814,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [124385] = 13, - ACTIONS(3), 1, + [124737] = 10, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(913), 1, + STATE(953), 1, sym__logical_operator, - STATE(919), 1, + STATE(954), 1, sym__additive_operator, - STATE(920), 1, + STATE(955), 1, sym__multiplicative_operator, - STATE(922), 1, + STATE(958), 1, sym__comparison_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1507), 2, + STATE(1499), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1214), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1216), 25, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, aux_sym__multiplicative_operator_token1, - ACTIONS(1110), 5, - sym_identifier, - anon_sym_COMMA, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - ACTIONS(1079), 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, @@ -158490,46 +159857,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [124448] = 13, - ACTIONS(3), 1, + 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, + [124795] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(913), 1, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(386), 1, sym__logical_operator, - STATE(919), 1, + STATE(801), 1, sym__additive_operator, - STATE(920), 1, + STATE(803), 1, sym__multiplicative_operator, - STATE(922), 1, + STATE(808), 1, sym__comparison_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1508), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1181), 5, - sym_identifier, - anon_sym_COMMA, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - ACTIONS(1079), 15, - anon_sym_LT, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1500), 2, + sym_comment, + sym_include, + ACTIONS(1200), 6, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_while_phrase_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + anon_sym_BY, + ACTIONS(2409), 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, @@ -158540,95 +159915,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [124511] = 13, - ACTIONS(3), 1, + [124863] = 12, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(913), 1, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(953), 1, sym__logical_operator, - STATE(919), 1, + STATE(954), 1, sym__additive_operator, - STATE(920), 1, + STATE(955), 1, sym__multiplicative_operator, - STATE(922), 1, + STATE(958), 1, sym__comparison_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1509), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1104), 5, - sym_identifier, - anon_sym_COMMA, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - ACTIONS(1079), 15, + ACTIONS(1119), 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, - [124574] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - sym__namedot, - ACTIONS(79), 1, - sym__namecolon, - ACTIONS(81), 1, - sym__namedoublecolon, - ACTIONS(2824), 1, - anon_sym_LPAREN, - STATE(5), 1, - aux_sym_object_access_repeat1, - STATE(6), 1, - aux_sym_qualified_name_repeat1, - STATE(13), 1, - aux_sym_member_access_repeat1, - STATE(44), 1, - sym_function_arguments, - STATE(1510), 2, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + STATE(1501), 2, sym_comment, sym_include, - ACTIONS(69), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(63), 19, + ACTIONS(1121), 23, sym__or_operator, sym__and_operator, - anon_sym_STAR, + anon_sym_COLON, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -158642,156 +159960,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [124641] = 24, - ACTIONS(65), 1, + 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, + [124925] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2826), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(2828), 1, - aux_sym_dataset_expression_token1, - ACTIONS(2830), 1, - aux_sym_input_expression_token1, - ACTIONS(2838), 1, - aux_sym_variable_definition_token3, - ACTIONS(2840), 1, - aux_sym_variable_definition_token4, - ACTIONS(2842), 1, - aux_sym_buffer_definition_token1, - ACTIONS(2844), 1, - aux_sym_query_definition_token1, - ACTIONS(2848), 1, - aux_sym_stream_definition_token1, - ACTIONS(2852), 1, - aux_sym_button_definition_token1, - STATE(3130), 1, - sym_access_tuning, - STATE(3160), 1, - sym_scope_tuning, - STATE(3189), 1, - aux_sym_variable_definition_repeat1, - STATE(3246), 1, - aux_sym_buffer_definition_repeat1, - STATE(3318), 1, - aux_sym_workfile_definition_repeat1, - STATE(3327), 1, - sym_serialization_tuning, - ACTIONS(2836), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(2850), 2, - aux_sym_workfile_definition_token1, - aux_sym_workfile_definition_token2, - STATE(1511), 2, + STATE(1502), 2, sym_comment, sym_include, - ACTIONS(2846), 3, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_argument_mode_token2, - ACTIONS(2832), 4, + ACTIONS(2820), 32, + 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_class_type_token1, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [124726] = 13, - ACTIONS(3), 1, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_method_tuning_token1, + [124973] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(913), 1, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(386), 1, sym__logical_operator, - STATE(919), 1, + STATE(801), 1, sym__additive_operator, - STATE(920), 1, + STATE(803), 1, sym__multiplicative_operator, - STATE(922), 1, + STATE(808), 1, sym__comparison_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1512), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1201), 5, - sym_identifier, - anon_sym_COMMA, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - ACTIONS(1079), 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, - [124789] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - sym__namedot, - ACTIONS(79), 1, - sym__namecolon, - ACTIONS(81), 1, - sym__namedoublecolon, - ACTIONS(2854), 1, - anon_sym_LPAREN, - STATE(5), 1, - aux_sym_object_access_repeat1, - STATE(6), 1, - aux_sym_qualified_name_repeat1, - STATE(13), 1, - aux_sym_member_access_repeat1, - STATE(44), 1, - sym_function_arguments, - STATE(1513), 2, - sym_comment, - sym_include, - ACTIONS(69), 3, - anon_sym_SLASH, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(63), 19, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(1503), 2, + sym_comment, + sym_include, + ACTIONS(1192), 6, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_while_phrase_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + anon_sym_BY, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -158805,46 +160061,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [124856] = 13, - ACTIONS(3), 1, + [125041] = 14, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(913), 1, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(953), 1, sym__logical_operator, - STATE(919), 1, + STATE(954), 1, sym__additive_operator, - STATE(920), 1, + STATE(955), 1, sym__multiplicative_operator, - STATE(922), 1, + STATE(958), 1, sym__comparison_operator, - ACTIONS(1077), 2, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1514), 2, + STATE(1504), 2, sym_comment, sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1189), 5, - sym_identifier, - anon_sym_COMMA, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - ACTIONS(1079), 15, - anon_sym_LT, + ACTIONS(1212), 8, + sym__or_operator, + sym__and_operator, + 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(2409), 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, @@ -158855,45 +160113,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [124919] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [125107] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, + STATE(386), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(801), 1, + sym__additive_operator, + STATE(803), 1, + sym__multiplicative_operator, + STATE(808), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1515), 2, + STATE(1505), 2, sym_comment, sym_include, - ACTIONS(1102), 5, - sym__terminator, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - ACTIONS(2396), 13, + ACTIONS(1117), 6, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_while_phrase_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + anon_sym_BY, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -158907,45 +160166,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [124986] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [125175] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, + STATE(953), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(954), 1, + sym__additive_operator, + STATE(955), 1, + sym__multiplicative_operator, + STATE(958), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1516), 2, + STATE(1506), 2, sym_comment, sym_include, - ACTIONS(1203), 5, - sym__terminator, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - ACTIONS(2396), 13, + ACTIONS(1196), 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(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -158959,43 +160219,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [125053] = 15, + [125243] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2822), 1, + ACTIONS(2824), 1, aux_sym_when_expression_token1, - STATE(642), 1, - sym__logical_operator, - STATE(644), 1, - sym__additive_operator, - STATE(645), 1, - sym__multiplicative_operator, - STATE(654), 1, + STATE(974), 1, sym__comparison_operator, - STATE(5151), 1, + STATE(975), 1, + sym__multiplicative_operator, + STATE(976), 1, + sym__additive_operator, + STATE(977), 1, + sym__logical_operator, + STATE(4859), 1, sym_when_expression, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1517), 2, + STATE(1507), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2856), 3, + ACTIONS(2822), 4, sym_identifier, sym__terminator, + aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -159011,45 +160272,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [125120] = 15, - ACTIONS(65), 1, + [125311] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(2831), 1, + sym__escaped_string, + STATE(2194), 1, + sym_index_tuning, + ACTIONS(2828), 2, + aux_sym_type_tuning_token1, + aux_sym_index_tuning_token1, + STATE(1508), 3, + sym_comment, + sym_include, + aux_sym_index_definition_repeat1, + ACTIONS(2826), 28, anon_sym_LBRACE, - ACTIONS(73), 1, + sym_identifier, + sym__terminator, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + sym__integer_literal, + sym_date_literal, anon_sym_LBRACK, - ACTIONS(77), 1, - sym__namedot, - ACTIONS(79), 1, - sym__namecolon, - ACTIONS(81), 1, - sym__namedoublecolon, - ACTIONS(2858), 1, anon_sym_LPAREN, - STATE(5), 1, - aux_sym_object_access_repeat1, - STATE(6), 1, - aux_sym_qualified_name_repeat1, - STATE(13), 1, - aux_sym_member_access_repeat1, - STATE(44), 1, - sym_function_arguments, - STATE(1518), 2, - sym_comment, - sym_include, - ACTIONS(69), 3, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_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, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [125363] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, anon_sym_SLASH, + STATE(953), 1, + sym__logical_operator, + STATE(954), 1, + sym__additive_operator, + STATE(955), 1, + sym__multiplicative_operator, + STATE(958), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(63), 19, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(1509), 2, + sym_comment, + sym_include, + ACTIONS(1117), 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(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -159063,42 +160370,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [125187] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [125431] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, + STATE(953), 1, sym__logical_operator, - ACTIONS(1205), 2, + STATE(954), 1, + sym__additive_operator, + STATE(955), 1, + sym__multiplicative_operator, + STATE(958), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(1519), 2, - sym_comment, - sym_include, - ACTIONS(1207), 22, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - sym__terminator, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1510), 2, + sym_comment, + sym_include, + ACTIONS(1200), 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(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -159112,45 +160423,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [125248] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [125499] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, + ACTIONS(2835), 1, + anon_sym_BY, + STATE(386), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(801), 1, + sym__additive_operator, + STATE(803), 1, + sym__multiplicative_operator, + STATE(808), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1520), 2, + STATE(1511), 2, sym_comment, sym_include, - ACTIONS(1199), 5, - sym__terminator, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - ACTIONS(2396), 13, + ACTIONS(2833), 5, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_while_phrase_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -159164,45 +160477,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [125315] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [125569] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, + STATE(386), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(801), 1, + sym__additive_operator, + STATE(803), 1, + sym__multiplicative_operator, + STATE(808), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1521), 2, + STATE(1512), 2, sym_comment, sym_include, - ACTIONS(1106), 5, - sym__terminator, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - ACTIONS(2396), 13, + ACTIONS(1196), 6, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_while_phrase_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + anon_sym_BY, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -159216,45 +160530,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [125382] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [125637] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, + STATE(386), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(801), 1, + sym__additive_operator, + STATE(803), 1, + sym__multiplicative_operator, + STATE(808), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1522), 2, + STATE(1513), 2, sym_comment, sym_include, - ACTIONS(1191), 5, - sym__terminator, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - ACTIONS(2396), 13, + ACTIONS(1125), 6, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_while_phrase_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + anon_sym_BY, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -159268,45 +160583,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [125449] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [125705] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, + STATE(386), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(801), 1, + sym__additive_operator, + STATE(803), 1, + sym__multiplicative_operator, + STATE(808), 1, + sym__comparison_operator, + ACTIONS(1119), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1523), 2, + STATE(1514), 2, sym_comment, sym_include, - ACTIONS(1187), 5, - sym__terminator, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - ACTIONS(2396), 13, + ACTIONS(1121), 23, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, + aux_sym__block_terminator_token1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -159320,96 +160629,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [125516] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_while_phrase_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + anon_sym_BY, + [125767] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, + STATE(386), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(801), 1, + sym__additive_operator, + STATE(803), 1, + sym__multiplicative_operator, + STATE(808), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1524), 2, + STATE(1515), 2, sym_comment, sym_include, - ACTIONS(1183), 5, - sym__terminator, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - ACTIONS(2396), 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, - [125583] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1525), 2, - sym_comment, - sym_include, - ACTIONS(236), 7, + ACTIONS(230), 8, sym__or_operator, sym__and_operator, - sym__terminator, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - ACTIONS(2396), 13, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_while_phrase_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + anon_sym_BY, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -159423,37 +160685,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [125648] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [125833] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, + STATE(386), 1, sym__logical_operator, - STATE(1526), 2, + STATE(801), 1, + sym__additive_operator, + STATE(803), 1, + sym__multiplicative_operator, + STATE(808), 1, + sym__comparison_operator, + STATE(1516), 2, sym_comment, sym_include, - ACTIONS(1193), 3, + ACTIONS(1214), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1195), 24, + ACTIONS(1216), 25, sym__or_operator, sym__and_operator, + anon_sym_COLON, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, + aux_sym__block_terminator_token1, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -159470,43 +160729,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [125705] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_while_phrase_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + anon_sym_BY, + [125891] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, + STATE(953), 1, sym__logical_operator, - ACTIONS(1177), 2, + STATE(954), 1, + sym__additive_operator, + STATE(955), 1, + sym__multiplicative_operator, + STATE(958), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1527), 2, + STATE(1517), 2, sym_comment, sym_include, - ACTIONS(1179), 20, - sym__or_operator, - sym__and_operator, - sym__terminator, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1113), 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(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -159520,42 +160786,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [125768] = 11, - ACTIONS(3), 1, + [125959] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(913), 1, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(953), 1, sym__logical_operator, - STATE(919), 1, + STATE(954), 1, sym__additive_operator, - STATE(920), 1, + STATE(955), 1, sym__multiplicative_operator, - STATE(922), 1, + STATE(958), 1, sym__comparison_operator, - ACTIONS(1207), 2, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1528), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1205), 22, - sym_identifier, - anon_sym_COMMA, - aux_sym_input_expression_token2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, + STATE(1518), 2, + sym_comment, + sym_include, + ACTIONS(1208), 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(2409), 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, @@ -159566,92 +160839,49 @@ 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_do_block_token1, - aux_sym_widget_field_token1, - [125827] = 10, - ACTIONS(3), 1, + [126027] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(913), 1, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(953), 1, sym__logical_operator, - STATE(919), 1, + STATE(954), 1, sym__additive_operator, - STATE(920), 1, + STATE(955), 1, sym__multiplicative_operator, - STATE(922), 1, + STATE(958), 1, sym__comparison_operator, - ACTIONS(1195), 2, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1529), 2, - sym_comment, - sym_include, - ACTIONS(1193), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_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_do_block_token1, - aux_sym_widget_field_token1, - [125884] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(913), 1, - sym__logical_operator, - STATE(919), 1, - sym__additive_operator, - STATE(920), 1, - sym__multiplicative_operator, - STATE(922), 1, - sym__comparison_operator, - ACTIONS(1077), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 2, - sym__or_operator, - sym__and_operator, - STATE(1530), 2, + STATE(1519), 2, sym_comment, sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1177), 20, - sym_identifier, - anon_sym_COMMA, - aux_sym_input_expression_token2, - anon_sym_LT, + ACTIONS(1192), 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(2409), 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, @@ -159662,47 +160892,46 @@ 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_do_block_token1, - aux_sym_widget_field_token1, - [125945] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [126095] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - sym__namedot, - ACTIONS(79), 1, - sym__namecolon, - ACTIONS(81), 1, - sym__namedoublecolon, - ACTIONS(2860), 1, - anon_sym_LPAREN, - STATE(5), 1, - aux_sym_object_access_repeat1, - STATE(6), 1, - aux_sym_qualified_name_repeat1, - STATE(13), 1, - aux_sym_member_access_repeat1, - STATE(44), 1, - sym_function_arguments, - STATE(1531), 2, - sym_comment, - sym_include, - ACTIONS(69), 3, + anon_sym_LBRACE, + ACTIONS(1086), 1, anon_sym_SLASH, + STATE(953), 1, + sym__logical_operator, + STATE(954), 1, + sym__additive_operator, + STATE(955), 1, + sym__multiplicative_operator, + STATE(958), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(63), 19, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(1520), 2, + sym_comment, + sym_include, + ACTIONS(1125), 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(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -159716,41 +160945,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [126012] = 13, + [126163] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(913), 1, - sym__logical_operator, - STATE(919), 1, - sym__additive_operator, - STATE(920), 1, - sym__multiplicative_operator, - STATE(922), 1, - sym__comparison_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(2839), 1, + aux_sym_input_expression_token2, + STATE(28), 1, + sym_qualified_name, + ACTIONS(1358), 2, sym__or_operator, sym__and_operator, - STATE(1532), 2, + STATE(1521), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(2837), 5, + aux_sym_dataset_expression_token1, + aux_sym_scope_tuning_token1, + aux_sym__function_argument_with_mode_token1, + aux_sym__function_argument_with_mode_token2, + aux_sym__function_argument_with_mode_token3, + ACTIONS(1354), 22, anon_sym_SLASH, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1197), 5, - sym_identifier, anon_sym_COMMA, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - ACTIONS(1079), 15, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -159766,46 +160993,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [126075] = 13, - ACTIONS(3), 1, + [126221] = 14, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(913), 1, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(953), 1, sym__logical_operator, - STATE(919), 1, + STATE(954), 1, sym__additive_operator, - STATE(920), 1, + STATE(955), 1, sym__multiplicative_operator, - STATE(922), 1, + STATE(958), 1, sym__comparison_operator, - ACTIONS(1077), 2, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1533), 2, + STATE(1522), 2, sym_comment, sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1100), 5, - sym_identifier, - anon_sym_COMMA, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - ACTIONS(1079), 15, - anon_sym_LT, + ACTIONS(230), 8, + sym__or_operator, + sym__and_operator, + 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(2409), 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, @@ -159816,86 +161045,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [126138] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2864), 1, - aux_sym_variable_tuning_token2, - STATE(1534), 2, - sym_comment, - sym_include, - ACTIONS(2862), 30, - sym__terminator, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_unary_expression_token2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token2, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_field_option_token1, - aux_sym_field_option_token2, - aux_sym_field_option_token3, - aux_sym_field_option_token4, - aux_sym_field_option_token5, - aux_sym_field_option_token6, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [126187] = 15, + [126287] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2866), 1, + ACTIONS(2841), 1, aux_sym_when_expression_token1, - STATE(933), 1, + STATE(891), 1, sym__comparison_operator, - STATE(934), 1, + STATE(892), 1, sym__multiplicative_operator, - STATE(935), 1, + STATE(893), 1, sym__additive_operator, - STATE(936), 1, + STATE(894), 1, sym__logical_operator, - STATE(5343), 1, + STATE(4650), 1, sym_when_expression, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1535), 2, + STATE(1523), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2856), 3, + ACTIONS(2822), 4, sym_identifier, sym__terminator, anon_sym_COMMA, - ACTIONS(1079), 15, + aux_sym_scope_tuning_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -159911,136 +161098,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [126254] = 9, + [126355] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(2868), 1, - aux_sym_input_expression_token2, - STATE(22), 1, - sym_qualified_name, - ACTIONS(1351), 2, - sym__or_operator, - sym__and_operator, - STATE(1536), 2, + STATE(1524), 2, sym_comment, sym_include, - ACTIONS(1347), 26, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_while_phrase_token1, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - anon_sym_BY, - [126309] = 8, - ACTIONS(3), 1, + ACTIONS(2843), 32, + 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_class_type_token1, + 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_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_method_tuning_token1, + [126403] = 14, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2673), 1, - sym__namecolon, - STATE(1544), 1, - aux_sym_object_access_repeat1, - ACTIONS(94), 2, - sym__or_operator, - sym__and_operator, - STATE(1537), 2, - sym_comment, - sym_include, - ACTIONS(96), 27, + ACTIONS(1086), 1, anon_sym_SLASH, - sym_identifier, + STATE(386), 1, + sym__logical_operator, + STATE(801), 1, + sym__additive_operator, + STATE(803), 1, + sym__multiplicative_operator, + STATE(808), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_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_do_block_token1, - aux_sym_widget_field_token1, - [126362] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(77), 1, - sym__namedot, - ACTIONS(79), 1, - sym__namecolon, - ACTIONS(81), 1, - sym__namedoublecolon, - ACTIONS(2870), 1, - anon_sym_LPAREN, - STATE(5), 1, - aux_sym_object_access_repeat1, - STATE(6), 1, - aux_sym_qualified_name_repeat1, - STATE(13), 1, - aux_sym_member_access_repeat1, - STATE(44), 1, - sym_function_arguments, - STATE(1538), 2, + STATE(1525), 2, sym_comment, sym_include, - ACTIONS(69), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(63), 19, + ACTIONS(1212), 8, sym__or_operator, sym__and_operator, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_while_phrase_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + anon_sym_BY, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -160054,46 +161193,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [126429] = 13, - ACTIONS(3), 1, + [126469] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(913), 1, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(386), 1, sym__logical_operator, - STATE(919), 1, + STATE(801), 1, sym__additive_operator, - STATE(920), 1, + STATE(803), 1, sym__multiplicative_operator, - STATE(922), 1, + STATE(808), 1, sym__comparison_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1539), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2872), 5, - sym_identifier, - anon_sym_COMMA, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - ACTIONS(1079), 15, - anon_sym_LT, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1526), 2, + sym_comment, + sym_include, + ACTIONS(1204), 6, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_while_phrase_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + anon_sym_BY, + ACTIONS(2409), 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, @@ -160104,35 +161246,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [126492] = 10, + [126537] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2452), 1, + ACTIONS(2471), 1, sym_identifier, - ACTIONS(2876), 1, - aux_sym_input_expression_token2, - STATE(22), 1, + STATE(32), 1, sym_qualified_name, - ACTIONS(1351), 2, + ACTIONS(1581), 2, sym__or_operator, sym__and_operator, - STATE(1540), 2, + STATE(1527), 2, sym_comment, sym_include, - ACTIONS(2874), 4, - aux_sym_dataset_expression_token1, - aux_sym__function_argument_with_mode_token1, - aux_sym__function_argument_with_mode_token2, - aux_sym__function_argument_with_mode_token3, - ACTIONS(1347), 22, + ACTIONS(1579), 28, anon_sym_SLASH, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RPAREN, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -160151,155 +161285,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [126549] = 24, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [126591] = 16, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2878), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(2880), 1, - aux_sym_dataset_expression_token1, - ACTIONS(2882), 1, - aux_sym_input_expression_token1, - ACTIONS(2884), 1, - aux_sym_variable_definition_token3, - ACTIONS(2886), 1, - aux_sym_variable_definition_token4, - ACTIONS(2888), 1, - aux_sym_buffer_definition_token1, - ACTIONS(2890), 1, - aux_sym_query_definition_token1, - ACTIONS(2894), 1, - aux_sym_stream_definition_token1, - ACTIONS(2898), 1, - aux_sym_button_definition_token1, - STATE(3119), 1, - sym_access_tuning, - STATE(3160), 1, - sym_scope_tuning, - STATE(3190), 1, - aux_sym_variable_definition_repeat1, - STATE(3294), 1, - aux_sym_buffer_definition_repeat1, - STATE(3327), 1, - sym_serialization_tuning, - STATE(3330), 1, - aux_sym_workfile_definition_repeat1, - ACTIONS(2836), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(2896), 2, - aux_sym_workfile_definition_token1, - aux_sym_workfile_definition_token2, - STATE(1541), 2, - sym_comment, - sym_include, - ACTIONS(2892), 3, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_argument_mode_token2, - ACTIONS(2832), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - [126634] = 9, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(2900), 1, - aux_sym_input_expression_token2, - STATE(22), 1, - sym_qualified_name, - ACTIONS(1351), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(2835), 1, + anon_sym_BY, + STATE(953), 1, + sym__logical_operator, + STATE(954), 1, + sym__additive_operator, + STATE(955), 1, + sym__multiplicative_operator, + STATE(958), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1542), 2, - sym_comment, - sym_include, - ACTIONS(1347), 26, - anon_sym_COLON, - anon_sym_SLASH, + ACTIONS(2405), 2, anon_sym_STAR, - aux_sym__block_terminator_token1, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_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_while_phrase_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - anon_sym_BY, - [126689] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2866), 1, - aux_sym_when_expression_token1, - STATE(933), 1, - sym__comparison_operator, - STATE(934), 1, - sym__multiplicative_operator, - STATE(935), 1, - sym__additive_operator, - STATE(936), 1, - sym__logical_operator, - STATE(5367), 1, - sym_when_expression, - ACTIONS(1077), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1543), 2, + STATE(1528), 2, sym_comment, sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2820), 3, - sym_identifier, - sym__terminator, - anon_sym_COMMA, - ACTIONS(1079), 15, - anon_sym_LT, + ACTIONS(2833), 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(2409), 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, @@ -160310,249 +161346,161 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [126756] = 7, + [126661] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2902), 1, - sym__namecolon, - ACTIONS(87), 2, - sym__or_operator, - sym__and_operator, - STATE(1544), 3, + STATE(1529), 2, sym_comment, sym_include, - aux_sym_object_access_repeat1, - ACTIONS(89), 27, - anon_sym_SLASH, + ACTIONS(2845), 32, sym_identifier, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_do_block_token1, - aux_sym_widget_field_token1, - [126807] = 24, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2905), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(2907), 1, - aux_sym_dataset_expression_token1, - ACTIONS(2909), 1, - aux_sym_input_expression_token1, - ACTIONS(2911), 1, - aux_sym_variable_definition_token3, - ACTIONS(2913), 1, - aux_sym_variable_definition_token4, - ACTIONS(2915), 1, - aux_sym_buffer_definition_token1, - ACTIONS(2917), 1, - aux_sym_query_definition_token1, - ACTIONS(2921), 1, - aux_sym_stream_definition_token1, - ACTIONS(2925), 1, - aux_sym_button_definition_token1, - STATE(3108), 1, - sym_access_tuning, - STATE(3160), 1, - sym_scope_tuning, - STATE(3200), 1, - aux_sym_variable_definition_repeat1, - STATE(3248), 1, - aux_sym_buffer_definition_repeat1, - STATE(3316), 1, - aux_sym_workfile_definition_repeat1, - STATE(3327), 1, - sym_serialization_tuning, - ACTIONS(2836), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(2923), 2, - aux_sym_workfile_definition_token1, - aux_sym_workfile_definition_token2, - STATE(1545), 2, - sym_comment, - sym_include, - ACTIONS(2919), 3, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_argument_mode_token2, - ACTIONS(2832), 4, + 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_class_type_token1, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [126892] = 24, - ACTIONS(65), 1, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_method_tuning_token1, + [126709] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2927), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(2929), 1, - aux_sym_dataset_expression_token1, - ACTIONS(2931), 1, - aux_sym_input_expression_token1, - ACTIONS(2933), 1, - aux_sym_variable_definition_token3, - ACTIONS(2935), 1, - aux_sym_variable_definition_token4, - ACTIONS(2937), 1, - aux_sym_buffer_definition_token1, - ACTIONS(2939), 1, - aux_sym_query_definition_token1, - ACTIONS(2943), 1, - aux_sym_stream_definition_token1, - ACTIONS(2947), 1, - aux_sym_button_definition_token1, - STATE(3100), 1, - sym_access_tuning, - STATE(3160), 1, - sym_scope_tuning, - STATE(3175), 1, - aux_sym_variable_definition_repeat1, - STATE(3247), 1, - aux_sym_buffer_definition_repeat1, - STATE(3317), 1, - aux_sym_workfile_definition_repeat1, - STATE(3327), 1, - sym_serialization_tuning, - ACTIONS(2836), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(2945), 2, - aux_sym_workfile_definition_token1, - aux_sym_workfile_definition_token2, - STATE(1546), 2, + STATE(1530), 2, sym_comment, sym_include, - ACTIONS(2941), 3, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_argument_mode_token2, - ACTIONS(2832), 4, + ACTIONS(2847), 32, + 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_class_type_token1, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [126977] = 24, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_method_tuning_token1, + [126757] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2949), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(2951), 1, - aux_sym_dataset_expression_token1, - ACTIONS(2953), 1, - aux_sym_input_expression_token1, - ACTIONS(2955), 1, - aux_sym_variable_definition_token3, - ACTIONS(2957), 1, - aux_sym_variable_definition_token4, - ACTIONS(2959), 1, - aux_sym_buffer_definition_token1, - ACTIONS(2961), 1, - aux_sym_query_definition_token1, - ACTIONS(2965), 1, - aux_sym_stream_definition_token1, - ACTIONS(2969), 1, - aux_sym_button_definition_token1, - STATE(3110), 1, - sym_access_tuning, - STATE(3160), 1, - sym_scope_tuning, - STATE(3173), 1, - aux_sym_variable_definition_repeat1, - STATE(3272), 1, - aux_sym_buffer_definition_repeat1, - STATE(3327), 1, - sym_serialization_tuning, - STATE(3334), 1, - aux_sym_workfile_definition_repeat1, - ACTIONS(2836), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(2967), 2, - aux_sym_workfile_definition_token1, - aux_sym_workfile_definition_token2, - STATE(1547), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(953), 1, + sym__logical_operator, + STATE(954), 1, + sym__additive_operator, + STATE(955), 1, + sym__multiplicative_operator, + STATE(958), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1531), 2, sym_comment, sym_include, - ACTIONS(2963), 3, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_argument_mode_token2, - ACTIONS(2832), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - [127062] = 6, + ACTIONS(1204), 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(2409), 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, + [126825] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2971), 1, - ts_builtin_sym_end, - STATE(1548), 2, + STATE(1532), 2, sym_comment, sym_include, - ACTIONS(2973), 29, + ACTIONS(2849), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -160579,21 +161527,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127110] = 5, + [126872] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1549), 2, + STATE(1533), 2, sym_comment, sym_include, - ACTIONS(2975), 30, + ACTIONS(2851), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -160620,21 +161569,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127156] = 5, + [126919] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1550), 2, + ACTIONS(2853), 1, + ts_builtin_sym_end, + STATE(1534), 2, sym_comment, sym_include, - ACTIONS(2977), 30, + ACTIONS(2855), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -160661,21 +161612,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127202] = 5, + [126968] = 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(1535), 2, sym_comment, sym_include, - ACTIONS(2979), 30, + ACTIONS(2857), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -160702,21 +161654,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127248] = 5, + [127015] = 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(1536), 2, sym_comment, sym_include, - ACTIONS(2981), 30, + ACTIONS(2859), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -160743,21 +161696,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127294] = 5, + [127062] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1553), 2, + STATE(974), 1, + sym__comparison_operator, + STATE(975), 1, + sym__multiplicative_operator, + STATE(976), 1, + sym__additive_operator, + STATE(977), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(1537), 2, sym_comment, sym_include, - ACTIONS(2983), 30, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1202), 5, + sym_identifier, + sym__terminator, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1090), 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, + [127125] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1538), 2, + sym_comment, + sym_include, + ACTIONS(2861), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -160784,21 +161788,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127340] = 5, + [127172] = 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(1539), 2, sym_comment, sym_include, - ACTIONS(2985), 30, + ACTIONS(2863), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -160825,21 +161830,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127386] = 5, + [127219] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1555), 2, + STATE(1540), 2, sym_comment, sym_include, - ACTIONS(2987), 30, + ACTIONS(2865), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -160866,22 +161872,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127432] = 6, + [127266] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2989), 1, - ts_builtin_sym_end, - STATE(1556), 2, + STATE(1541), 2, sym_comment, sym_include, - ACTIONS(2991), 29, + ACTIONS(2867), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -160908,22 +161914,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127480] = 6, + [127313] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2993), 1, - ts_builtin_sym_end, - STATE(1557), 2, + STATE(1542), 2, sym_comment, sym_include, - ACTIONS(2995), 29, + ACTIONS(2869), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -160950,22 +161956,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127528] = 6, + [127360] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2997), 1, - ts_builtin_sym_end, - STATE(1558), 2, + STATE(1543), 2, sym_comment, sym_include, - ACTIONS(2999), 29, + ACTIONS(2871), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -160992,22 +161998,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127576] = 6, + [127407] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3001), 1, - ts_builtin_sym_end, - STATE(1559), 2, + STATE(1544), 2, sym_comment, sym_include, - ACTIONS(3003), 29, + ACTIONS(2873), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -161034,21 +162040,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127624] = 5, + [127454] = 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(1545), 2, sym_comment, sym_include, - ACTIONS(3005), 30, + ACTIONS(2875), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -161075,22 +162082,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127670] = 6, + [127501] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3007), 1, - ts_builtin_sym_end, - STATE(1561), 2, + STATE(1546), 2, sym_comment, sym_include, - ACTIONS(3009), 29, + ACTIONS(2877), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -161117,22 +162124,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127718] = 6, + [127548] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3011), 1, - ts_builtin_sym_end, - STATE(1562), 2, + STATE(1547), 2, sym_comment, sym_include, - ACTIONS(3013), 29, + ACTIONS(2879), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -161159,21 +162166,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127766] = 5, + [127595] = 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(1548), 2, sym_comment, sym_include, - ACTIONS(3015), 30, + ACTIONS(2881), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -161200,22 +162208,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127812] = 6, + [127642] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3017), 1, - ts_builtin_sym_end, - STATE(1564), 2, + STATE(1549), 2, sym_comment, sym_include, - ACTIONS(3019), 29, + ACTIONS(2883), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -161242,22 +162250,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127860] = 6, + [127689] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3021), 1, - ts_builtin_sym_end, - STATE(1565), 2, + STATE(1550), 2, sym_comment, sym_include, - ACTIONS(3023), 29, + ACTIONS(2885), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -161284,21 +162292,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127908] = 5, + [127736] = 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(1551), 2, sym_comment, sym_include, - ACTIONS(3025), 30, + ACTIONS(2887), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -161325,21 +162334,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [127954] = 5, + [127783] = 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(1552), 2, sym_comment, sym_include, - ACTIONS(3027), 30, + ACTIONS(2889), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -161366,70 +162376,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128000] = 13, + [127830] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(642), 1, - sym__logical_operator, - STATE(644), 1, - sym__additive_operator, - STATE(645), 1, - sym__multiplicative_operator, - STATE(654), 1, - sym__comparison_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1568), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1110), 4, - sym_identifier, - sym__terminator, - aux_sym_when_expression_token1, - anon_sym_NO_DASHERROR, - ACTIONS(1079), 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, - [128062] = 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(1553), 2, sym_comment, sym_include, - ACTIONS(3029), 30, + ACTIONS(2891), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -161456,72 +162418,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128108] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(742), 1, - sym__logical_operator, - STATE(743), 1, - sym__additive_operator, - STATE(744), 1, - sym__multiplicative_operator, - STATE(745), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1570), 2, - sym_comment, - sym_include, - ACTIONS(1203), 4, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - ACTIONS(2396), 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, - [128174] = 5, + [127877] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1571), 2, + STATE(1554), 2, sym_comment, sym_include, - ACTIONS(3031), 30, + ACTIONS(2893), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -161548,69 +162460,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128220] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(742), 1, - sym__logical_operator, - STATE(743), 1, - sym__additive_operator, - STATE(744), 1, - sym__multiplicative_operator, - STATE(745), 1, - sym__comparison_operator, - ACTIONS(1205), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(1572), 2, - sym_comment, - sym_include, - ACTIONS(1207), 21, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - [128280] = 5, + [127924] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1573), 2, + STATE(1555), 2, sym_comment, sym_include, - ACTIONS(3033), 30, + ACTIONS(2895), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -161637,21 +162502,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128326] = 5, + [127971] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1574), 2, + STATE(1556), 2, sym_comment, sym_include, - ACTIONS(3035), 30, + ACTIONS(2897), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -161678,21 +162544,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128372] = 5, + [128018] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1575), 2, + STATE(1557), 2, sym_comment, sym_include, - ACTIONS(3037), 30, + ACTIONS(2899), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -161719,21 +162586,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128418] = 5, + [128065] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1576), 2, + ACTIONS(2901), 1, + ts_builtin_sym_end, + STATE(1558), 2, sym_comment, sym_include, - ACTIONS(3039), 30, + ACTIONS(2903), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -161760,21 +162629,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128464] = 5, + [128114] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1577), 2, + STATE(1559), 2, sym_comment, sym_include, - ACTIONS(3041), 30, + ACTIONS(2905), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -161801,167 +162671,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128510] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(742), 1, - sym__logical_operator, - STATE(743), 1, - sym__additive_operator, - STATE(744), 1, - sym__multiplicative_operator, - STATE(745), 1, - sym__comparison_operator, - STATE(1578), 2, - sym_comment, - sym_include, - ACTIONS(1193), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1195), 23, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_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_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - [128566] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(742), 1, - sym__logical_operator, - STATE(743), 1, - sym__additive_operator, - STATE(744), 1, - sym__multiplicative_operator, - STATE(745), 1, - sym__comparison_operator, - ACTIONS(1177), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1579), 2, - sym_comment, - sym_include, - ACTIONS(1179), 19, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_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_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - [128628] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(742), 1, - sym__logical_operator, - STATE(743), 1, - sym__additive_operator, - STATE(744), 1, - sym__multiplicative_operator, - STATE(745), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1580), 2, - sym_comment, - sym_include, - ACTIONS(1112), 4, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - ACTIONS(2396), 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, - [128694] = 5, + [128161] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1581), 2, + STATE(1560), 2, sym_comment, sym_include, - ACTIONS(3043), 30, + ACTIONS(2907), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -161988,21 +162713,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128740] = 5, + [128208] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1582), 2, + ACTIONS(2909), 1, + ts_builtin_sym_end, + STATE(1561), 2, sym_comment, sym_include, - ACTIONS(3045), 30, + ACTIONS(2911), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -162029,21 +162756,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128786] = 5, + [128257] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1583), 2, + ACTIONS(2913), 1, + ts_builtin_sym_end, + STATE(1562), 2, sym_comment, sym_include, - ACTIONS(3047), 30, + ACTIONS(2915), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -162070,66 +162799,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128832] = 9, + [128306] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(2876), 1, - aux_sym_input_expression_token2, - STATE(22), 1, - sym_qualified_name, - ACTIONS(1351), 2, - sym__or_operator, - sym__and_operator, - STATE(1584), 2, - sym_comment, - sym_include, - ACTIONS(1347), 25, - anon_sym_SLASH, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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, - [128886] = 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(2917), 1, + ts_builtin_sym_end, + STATE(1563), 2, sym_comment, sym_include, - ACTIONS(3049), 30, + ACTIONS(2919), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -162156,21 +162842,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128932] = 5, + [128355] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1586), 2, + STATE(1564), 2, sym_comment, sym_include, - ACTIONS(3051), 30, + ACTIONS(2921), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -162197,21 +162884,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [128978] = 5, + [128402] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1587), 2, + ACTIONS(2923), 1, + ts_builtin_sym_end, + STATE(1565), 2, sym_comment, sym_include, - ACTIONS(3053), 30, + ACTIONS(2925), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -162238,21 +162927,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129024] = 5, + [128451] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1588), 2, + ACTIONS(2927), 1, + ts_builtin_sym_end, + STATE(1566), 2, sym_comment, sym_include, - ACTIONS(3055), 30, + ACTIONS(2851), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -162279,22 +162970,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129070] = 6, + [128500] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3057), 1, - ts_builtin_sym_end, - STATE(1589), 2, + STATE(1567), 2, sym_comment, sym_include, - ACTIONS(3059), 29, + ACTIONS(2929), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -162321,22 +163012,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129118] = 6, + [128547] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3061), 1, - ts_builtin_sym_end, - STATE(1590), 2, + STATE(1568), 2, sym_comment, sym_include, - ACTIONS(3063), 29, + ACTIONS(2931), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -162363,22 +163054,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129166] = 6, + [128594] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3065), 1, + ACTIONS(2933), 1, ts_builtin_sym_end, - STATE(1591), 2, + STATE(1569), 2, sym_comment, sym_include, - ACTIONS(3067), 29, + ACTIONS(2935), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -162405,21 +163097,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129214] = 5, + [128643] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1592), 2, + STATE(1570), 2, sym_comment, sym_include, - ACTIONS(3069), 30, + ACTIONS(2937), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -162446,21 +163139,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129260] = 5, + [128690] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1593), 2, + STATE(1571), 2, sym_comment, sym_include, - ACTIONS(3071), 30, + ACTIONS(2939), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -162487,21 +163181,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129306] = 5, + [128737] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1594), 2, + STATE(1572), 2, sym_comment, sym_include, - ACTIONS(3073), 30, + ACTIONS(2941), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -162528,21 +163223,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129352] = 5, + [128784] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1595), 2, + STATE(1573), 2, sym_comment, sym_include, - ACTIONS(3075), 30, + ACTIONS(2943), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -162569,21 +163265,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129398] = 5, + [128831] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1596), 2, + STATE(1574), 2, sym_comment, sym_include, - ACTIONS(3077), 30, + ACTIONS(2945), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -162610,21 +163307,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129444] = 5, + [128878] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1597), 2, + STATE(1575), 2, sym_comment, sym_include, - ACTIONS(3079), 30, + ACTIONS(2947), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -162651,21 +163349,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129490] = 5, + [128925] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1598), 2, + STATE(1576), 2, sym_comment, sym_include, - ACTIONS(3081), 30, + ACTIONS(2949), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -162692,21 +163391,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129536] = 5, + [128972] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1599), 2, + ACTIONS(2951), 1, + ts_builtin_sym_end, + STATE(1577), 2, sym_comment, sym_include, - ACTIONS(3083), 30, + ACTIONS(2953), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -162733,21 +163434,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129582] = 5, + [129021] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1600), 2, + STATE(1578), 2, sym_comment, sym_include, - ACTIONS(3085), 30, + ACTIONS(2955), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -162774,21 +163476,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129628] = 5, + [129068] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1601), 2, + ACTIONS(2957), 1, + ts_builtin_sym_end, + STATE(1579), 2, sym_comment, sym_include, - ACTIONS(3087), 30, + ACTIONS(2959), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -162815,21 +163519,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129674] = 5, + [129117] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1602), 2, + STATE(1580), 2, sym_comment, sym_include, - ACTIONS(3089), 30, + ACTIONS(2961), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -162856,64 +163561,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129720] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, - ts_builtin_sym_end, - STATE(1603), 2, - sym_comment, - sym_include, - ACTIONS(3093), 29, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [129768] = 6, + [129164] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3095), 1, + ACTIONS(2963), 1, ts_builtin_sym_end, - STATE(1604), 2, + STATE(1581), 2, sym_comment, sym_include, - ACTIONS(3097), 29, + ACTIONS(2965), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -162940,22 +163604,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129816] = 6, + [129213] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3099), 1, - ts_builtin_sym_end, - STATE(1605), 2, + STATE(1582), 2, sym_comment, sym_include, - ACTIONS(3101), 29, + ACTIONS(2967), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -162982,21 +163646,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129864] = 5, + [129260] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1606), 2, + STATE(1583), 2, sym_comment, sym_include, - ACTIONS(3103), 30, + ACTIONS(2969), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -163023,21 +163688,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129910] = 5, + [129307] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1607), 2, + ACTIONS(2971), 1, + ts_builtin_sym_end, + STATE(1584), 2, sym_comment, sym_include, - ACTIONS(3105), 30, + ACTIONS(2973), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -163064,21 +163731,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [129956] = 5, + [129356] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1608), 2, + ACTIONS(2975), 1, + ts_builtin_sym_end, + STATE(1585), 2, sym_comment, sym_include, - ACTIONS(3107), 30, + ACTIONS(2977), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -163105,21 +163774,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130002] = 5, + [129405] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1609), 2, + STATE(1586), 2, sym_comment, sym_include, - ACTIONS(3109), 30, + ACTIONS(2979), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -163146,21 +163816,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130048] = 5, + [129452] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1610), 2, + STATE(1587), 2, sym_comment, sym_include, - ACTIONS(3111), 30, + ACTIONS(2981), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -163187,72 +163858,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130094] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(672), 1, - sym__logical_operator, - STATE(673), 1, - sym__additive_operator, - STATE(674), 1, - sym__multiplicative_operator, - STATE(675), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1611), 2, - sym_comment, - sym_include, - ACTIONS(1187), 4, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - ACTIONS(2396), 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, - [130160] = 5, + [129499] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1612), 2, + STATE(1588), 2, sym_comment, sym_include, - ACTIONS(3113), 30, + ACTIONS(2983), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -163279,21 +163900,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130206] = 5, + [129546] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1613), 2, + STATE(1589), 2, sym_comment, sym_include, - ACTIONS(3115), 30, + ACTIONS(2985), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -163320,21 +163942,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130252] = 5, + [129593] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1614), 2, + STATE(1590), 2, sym_comment, sym_include, - ACTIONS(3117), 30, + ACTIONS(2987), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -163361,21 +163984,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130298] = 5, + [129640] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1615), 2, + STATE(1591), 2, sym_comment, sym_include, - ACTIONS(3119), 30, + ACTIONS(2989), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -163402,22 +164026,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130344] = 6, + [129687] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3121), 1, - ts_builtin_sym_end, - STATE(1616), 2, + STATE(1592), 2, sym_comment, sym_include, - ACTIONS(3123), 29, + ACTIONS(2991), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -163444,64 +164068,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130392] = 6, - ACTIONS(3), 1, + [129734] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3125), 1, - ts_builtin_sym_end, - STATE(1617), 2, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(79), 1, + sym__namedot, + ACTIONS(81), 1, + sym__namecolon, + ACTIONS(83), 1, + sym__namedoublecolon, + ACTIONS(2993), 1, + anon_sym_LPAREN, + STATE(4), 1, + aux_sym_object_access_repeat1, + STATE(8), 1, + aux_sym_qualified_name_repeat1, + STATE(12), 1, + aux_sym_member_access_repeat1, + STATE(24), 1, + sym_function_arguments, + STATE(1593), 2, sym_comment, sym_include, - ACTIONS(3127), 29, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [130440] = 6, + ACTIONS(71), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(65), 19, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [129801] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3129), 1, - ts_builtin_sym_end, - STATE(1618), 2, + STATE(1594), 2, sym_comment, sym_include, - ACTIONS(3131), 29, + ACTIONS(2995), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -163528,21 +164162,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130488] = 5, + [129848] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1619), 2, + STATE(1595), 2, sym_comment, sym_include, - ACTIONS(3133), 30, + ACTIONS(2997), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -163569,21 +164204,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130534] = 5, + [129895] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1620), 2, + STATE(1596), 2, sym_comment, sym_include, - ACTIONS(3135), 30, + ACTIONS(2999), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -163610,21 +164246,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130580] = 5, + [129942] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1621), 2, + STATE(1597), 2, sym_comment, sym_include, - ACTIONS(3137), 30, + ACTIONS(3001), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -163651,21 +164288,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130626] = 5, + [129989] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1622), 2, + STATE(1598), 2, sym_comment, sym_include, - ACTIONS(3139), 30, + ACTIONS(3003), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -163692,21 +164330,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130672] = 5, + [130036] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1623), 2, + STATE(1599), 2, sym_comment, sym_include, - ACTIONS(3141), 30, + ACTIONS(3005), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -163733,21 +164372,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130718] = 5, + [130083] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1624), 2, + STATE(1600), 2, sym_comment, sym_include, - ACTIONS(3143), 30, + ACTIONS(3007), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -163774,21 +164414,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130764] = 5, + [130130] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1625), 2, + STATE(1601), 2, sym_comment, sym_include, - ACTIONS(3145), 30, + ACTIONS(3009), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -163815,63 +164456,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130810] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3147), 1, - ts_builtin_sym_end, - STATE(1626), 2, - sym_comment, - sym_include, - ACTIONS(3149), 29, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [130858] = 5, + [130177] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1627), 2, + STATE(1602), 2, sym_comment, sym_include, - ACTIONS(3151), 30, + ACTIONS(3011), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -163898,21 +164498,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130904] = 5, + [130224] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1628), 2, + STATE(1603), 2, sym_comment, sym_include, - ACTIONS(3153), 30, + ACTIONS(3013), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -163939,21 +164540,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130950] = 5, + [130271] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1629), 2, + STATE(1604), 2, sym_comment, sym_include, - ACTIONS(3155), 30, + ACTIONS(3015), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -163980,21 +164582,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [130996] = 5, + [130318] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1630), 2, + STATE(1605), 2, sym_comment, sym_include, - ACTIONS(3157), 30, + ACTIONS(3017), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -164021,105 +164624,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [131042] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3159), 1, - ts_builtin_sym_end, - STATE(1631), 2, - sym_comment, - sym_include, - ACTIONS(3161), 29, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [131090] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - ts_builtin_sym_end, - STATE(1632), 2, - sym_comment, - sym_include, - ACTIONS(3165), 29, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [131138] = 5, + [130365] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1633), 2, + STATE(1606), 2, sym_comment, sym_include, - ACTIONS(3167), 30, + ACTIONS(3019), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -164146,21 +164666,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [131184] = 5, + [130412] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1634), 2, + STATE(1607), 2, sym_comment, sym_include, - ACTIONS(3169), 30, + ACTIONS(3021), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -164187,21 +164708,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [131230] = 5, + [130459] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1635), 2, + STATE(1608), 2, sym_comment, sym_include, - ACTIONS(3171), 30, + ACTIONS(3023), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -164228,21 +164750,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [131276] = 5, + [130506] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1636), 2, + STATE(1609), 2, sym_comment, sym_include, - ACTIONS(3173), 30, + ACTIONS(3025), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -164269,63 +164792,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [131322] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3175), 1, - ts_builtin_sym_end, - STATE(1637), 2, - sym_comment, - sym_include, - ACTIONS(3177), 29, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [131370] = 5, + [130553] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1638), 2, + STATE(1610), 2, sym_comment, sym_include, - ACTIONS(3179), 30, + ACTIONS(3027), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -164352,21 +164834,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [131416] = 5, + [130600] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1639), 2, + STATE(1611), 2, sym_comment, sym_include, - ACTIONS(3181), 30, + ACTIONS(3029), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -164393,64 +164876,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [131462] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3183), 1, - ts_builtin_sym_end, - STATE(1640), 2, - sym_comment, - sym_include, - ACTIONS(3185), 29, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [131510] = 6, + [130647] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3187), 1, - ts_builtin_sym_end, - STATE(1641), 2, + STATE(1612), 2, sym_comment, sym_include, - ACTIONS(3189), 29, + ACTIONS(3031), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -164477,22 +164918,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [131558] = 6, + [130694] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3191), 1, - ts_builtin_sym_end, - STATE(1642), 2, + STATE(1613), 2, sym_comment, sym_include, - ACTIONS(3193), 29, + ACTIONS(3033), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -164519,21 +164960,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [131606] = 5, + [130741] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1643), 2, + STATE(1614), 2, sym_comment, sym_include, - ACTIONS(3195), 30, + ACTIONS(3035), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -164560,22 +165002,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [131652] = 6, + [130788] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3197), 1, + ACTIONS(3037), 1, ts_builtin_sym_end, - STATE(1644), 2, + STATE(1615), 2, sym_comment, sym_include, - ACTIONS(3199), 29, + ACTIONS(3039), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -164602,22 +165045,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [131700] = 6, + [130837] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3201), 1, + ACTIONS(3041), 1, ts_builtin_sym_end, - STATE(1645), 2, + STATE(1616), 2, sym_comment, sym_include, - ACTIONS(3203), 29, + ACTIONS(3043), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -164644,21 +165088,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [131748] = 5, + [130886] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1646), 2, + ACTIONS(3045), 1, + ts_builtin_sym_end, + STATE(1617), 2, sym_comment, sym_include, - ACTIONS(3205), 30, + ACTIONS(3047), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -164685,21 +165131,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [131794] = 5, + [130935] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1647), 2, + ACTIONS(3049), 1, + ts_builtin_sym_end, + STATE(1618), 2, sym_comment, sym_include, - ACTIONS(3207), 30, + ACTIONS(3051), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -164726,21 +165174,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [131840] = 5, + [130984] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(79), 1, + sym__namedot, + ACTIONS(81), 1, + sym__namecolon, + ACTIONS(83), 1, + sym__namedoublecolon, + ACTIONS(3053), 1, + anon_sym_LPAREN, + STATE(4), 1, + aux_sym_object_access_repeat1, + STATE(8), 1, + aux_sym_qualified_name_repeat1, + STATE(12), 1, + aux_sym_member_access_repeat1, + STATE(24), 1, + sym_function_arguments, + STATE(1619), 2, + sym_comment, + sym_include, + ACTIONS(71), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(65), 19, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [131051] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1648), 2, + ACTIONS(3055), 1, + ts_builtin_sym_end, + STATE(1620), 2, sym_comment, sym_include, - ACTIONS(3209), 30, + ACTIONS(3057), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -164767,21 +165269,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [131886] = 5, + [131100] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1649), 2, + STATE(1621), 2, sym_comment, sym_include, - ACTIONS(3211), 30, + ACTIONS(3059), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -164808,21 +165311,385 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [131932] = 5, + [131147] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(79), 1, + sym__namedot, + ACTIONS(81), 1, + sym__namecolon, + ACTIONS(83), 1, + sym__namedoublecolon, + ACTIONS(3061), 1, + anon_sym_LPAREN, + STATE(4), 1, + aux_sym_object_access_repeat1, + STATE(8), 1, + aux_sym_qualified_name_repeat1, + STATE(12), 1, + aux_sym_member_access_repeat1, + STATE(24), 1, + sym_function_arguments, + STATE(1622), 2, + sym_comment, + sym_include, + ACTIONS(71), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(65), 19, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [131214] = 14, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1623), 2, + sym_comment, + sym_include, + ACTIONS(230), 7, + sym__or_operator, + sym__and_operator, + sym__terminator, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(2409), 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, + [131279] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1624), 2, + sym_comment, + sym_include, + ACTIONS(1125), 5, + sym__terminator, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(2409), 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, + [131346] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1625), 2, + sym_comment, + sym_include, + ACTIONS(1192), 5, + sym__terminator, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(2409), 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, + [131413] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1626), 2, + sym_comment, + sym_include, + ACTIONS(1208), 5, + sym__terminator, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(2409), 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, + [131480] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1627), 2, + sym_comment, + sym_include, + ACTIONS(1113), 5, + sym__terminator, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(2409), 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, + [131547] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1628), 2, + sym_comment, + sym_include, + ACTIONS(1200), 5, + sym__terminator, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(2409), 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, + [131614] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1650), 2, + STATE(1629), 2, sym_comment, sym_include, - ACTIONS(3213), 30, + ACTIONS(3063), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -164849,21 +165716,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [131978] = 5, + [131661] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1651), 2, + STATE(1630), 2, sym_comment, sym_include, - ACTIONS(3215), 30, + ACTIONS(3065), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -164890,21 +165758,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132024] = 5, + [131708] = 24, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3067), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(3069), 1, + aux_sym_dataset_expression_token1, + ACTIONS(3071), 1, + aux_sym_input_expression_token1, + ACTIONS(3079), 1, + aux_sym_variable_definition_token3, + ACTIONS(3081), 1, + aux_sym_variable_definition_token4, + ACTIONS(3083), 1, + aux_sym_buffer_definition_token1, + ACTIONS(3085), 1, + aux_sym_query_definition_token1, + ACTIONS(3089), 1, + aux_sym_stream_definition_token1, + ACTIONS(3093), 1, + aux_sym_button_definition_token1, + STATE(3181), 1, + sym_access_tuning, + STATE(3204), 1, + sym_scope_tuning, + STATE(3244), 1, + aux_sym_variable_definition_repeat1, + STATE(3325), 1, + aux_sym_buffer_definition_repeat1, + STATE(3366), 1, + sym_serialization_tuning, + STATE(3373), 1, + aux_sym_workfile_definition_repeat1, + ACTIONS(3077), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(3091), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(1631), 2, + sym_comment, + sym_include, + ACTIONS(3087), 3, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_argument_mode_token2, + ACTIONS(3073), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3075), 5, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + [131793] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1652), 2, + STATE(1632), 2, sym_comment, sym_include, - ACTIONS(3217), 30, + ACTIONS(3095), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -164931,21 +165861,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132070] = 5, + [131840] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(79), 1, + sym__namedot, + ACTIONS(81), 1, + sym__namecolon, + ACTIONS(83), 1, + sym__namedoublecolon, + ACTIONS(3097), 1, + anon_sym_LPAREN, + STATE(4), 1, + aux_sym_object_access_repeat1, + STATE(8), 1, + aux_sym_qualified_name_repeat1, + STATE(12), 1, + aux_sym_member_access_repeat1, + STATE(24), 1, + sym_function_arguments, + STATE(1633), 2, + sym_comment, + sym_include, + ACTIONS(71), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(65), 19, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [131907] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1653), 2, + STATE(1634), 2, sym_comment, sym_include, - ACTIONS(3219), 30, + ACTIONS(3099), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -164972,21 +165955,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132116] = 5, + [131954] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1654), 2, + STATE(1635), 2, sym_comment, sym_include, - ACTIONS(3221), 30, + ACTIONS(3101), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -165013,21 +165997,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132162] = 5, + [132001] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1655), 2, + STATE(1636), 2, sym_comment, sym_include, - ACTIONS(3223), 30, + ACTIONS(3103), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -165054,22 +166039,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132208] = 6, + [132048] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3225), 1, - ts_builtin_sym_end, - STATE(1656), 2, + STATE(1637), 2, sym_comment, sym_include, - ACTIONS(3227), 29, + ACTIONS(3105), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -165096,21 +166081,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132256] = 5, + [132095] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1657), 2, + STATE(1638), 2, sym_comment, sym_include, - ACTIONS(3229), 30, + ACTIONS(3107), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -165137,21 +166123,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132302] = 5, + [132142] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1658), 2, + STATE(1639), 2, sym_comment, sym_include, - ACTIONS(3231), 30, + ACTIONS(3109), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -165178,21 +166165,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132348] = 5, + [132189] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1659), 2, + ACTIONS(3111), 1, + ts_builtin_sym_end, + STATE(1640), 2, sym_comment, sym_include, - ACTIONS(3233), 30, + ACTIONS(3113), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -165219,21 +166208,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132394] = 5, + [132238] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1660), 2, + ACTIONS(3115), 1, + ts_builtin_sym_end, + STATE(1641), 2, sym_comment, sym_include, - ACTIONS(3235), 30, + ACTIONS(3117), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -165260,21 +166251,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132440] = 5, + [132287] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1661), 2, + STATE(1642), 2, sym_comment, sym_include, - ACTIONS(3237), 30, + ACTIONS(3119), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -165301,21 +166293,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132486] = 5, + [132334] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1662), 2, + STATE(1643), 2, sym_comment, sym_include, - ACTIONS(3239), 30, + ACTIONS(3121), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -165342,21 +166335,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132532] = 5, + [132381] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1663), 2, + ACTIONS(3123), 1, + ts_builtin_sym_end, + STATE(1644), 2, sym_comment, sym_include, - ACTIONS(3241), 30, + ACTIONS(3125), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -165383,21 +166378,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132578] = 5, + [132430] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1664), 2, + STATE(1645), 2, sym_comment, sym_include, - ACTIONS(3243), 30, + ACTIONS(3127), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -165424,21 +166420,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132624] = 5, + [132477] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1665), 2, + STATE(1646), 2, sym_comment, sym_include, - ACTIONS(3245), 30, + ACTIONS(3129), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -165465,21 +166462,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132670] = 5, + [132524] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1666), 2, + STATE(1647), 2, sym_comment, sym_include, - ACTIONS(3247), 30, + ACTIONS(3131), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -165506,123 +166504,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132716] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(742), 1, - sym__logical_operator, - STATE(743), 1, - sym__additive_operator, - STATE(744), 1, - sym__multiplicative_operator, - STATE(745), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1667), 2, - sym_comment, - sym_include, - ACTIONS(1102), 4, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - ACTIONS(2396), 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, - [132782] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(742), 1, - sym__logical_operator, - STATE(743), 1, - sym__additive_operator, - STATE(744), 1, - sym__multiplicative_operator, - STATE(745), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1668), 2, - sym_comment, - sym_include, - ACTIONS(1199), 4, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - ACTIONS(2396), 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, - [132848] = 5, + [132571] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1669), 2, + STATE(1648), 2, sym_comment, sym_include, - ACTIONS(3249), 30, + ACTIONS(3133), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -165649,21 +166546,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132894] = 5, + [132618] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1670), 2, + ACTIONS(3135), 1, + ts_builtin_sym_end, + STATE(1649), 2, sym_comment, sym_include, - ACTIONS(3251), 30, + ACTIONS(3137), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -165690,21 +166589,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132940] = 5, + [132667] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1671), 2, + ACTIONS(3139), 1, + ts_builtin_sym_end, + STATE(1650), 2, sym_comment, sym_include, - ACTIONS(3253), 30, + ACTIONS(3141), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -165731,21 +166632,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [132986] = 5, + [132716] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1672), 2, + STATE(1651), 2, sym_comment, sym_include, - ACTIONS(3255), 30, + ACTIONS(3143), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -165772,21 +166674,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133032] = 5, + [132763] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1673), 2, + STATE(1652), 2, sym_comment, sym_include, - ACTIONS(3257), 30, + ACTIONS(3145), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -165813,21 +166716,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133078] = 5, + [132810] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1674), 2, + STATE(1653), 2, sym_comment, sym_include, - ACTIONS(3259), 30, + ACTIONS(3147), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -165854,174 +166758,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133124] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(742), 1, - sym__logical_operator, - STATE(743), 1, - sym__additive_operator, - STATE(744), 1, - sym__multiplicative_operator, - STATE(745), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1675), 2, - sym_comment, - sym_include, - ACTIONS(1106), 4, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - ACTIONS(2396), 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, - [133190] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(742), 1, - sym__logical_operator, - STATE(743), 1, - sym__additive_operator, - STATE(744), 1, - sym__multiplicative_operator, - STATE(745), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1676), 2, - sym_comment, - sym_include, - ACTIONS(1191), 4, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - ACTIONS(2396), 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, - [133256] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(742), 1, - sym__logical_operator, - STATE(743), 1, - sym__additive_operator, - STATE(744), 1, - sym__multiplicative_operator, - STATE(745), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1677), 2, - sym_comment, - sym_include, - ACTIONS(1187), 4, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - ACTIONS(2396), 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, - [133322] = 5, + [132857] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1678), 2, + STATE(1654), 2, sym_comment, sym_include, - ACTIONS(3261), 30, + ACTIONS(3149), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -166048,21 +166800,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133368] = 5, + [132904] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1679), 2, + STATE(1655), 2, sym_comment, sym_include, - ACTIONS(3263), 30, + ACTIONS(3151), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -166089,21 +166842,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133414] = 5, + [132951] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1680), 2, + STATE(1656), 2, sym_comment, sym_include, - ACTIONS(3265), 30, + ACTIONS(3153), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -166130,21 +166884,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133460] = 5, + [132998] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1681), 2, + STATE(1657), 2, sym_comment, sym_include, - ACTIONS(3267), 30, + ACTIONS(3155), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -166171,21 +166926,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133506] = 5, + [133045] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1682), 2, + STATE(1658), 2, sym_comment, sym_include, - ACTIONS(3269), 30, + ACTIONS(3157), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -166212,72 +166968,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133552] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(742), 1, - sym__logical_operator, - STATE(743), 1, - sym__additive_operator, - STATE(744), 1, - sym__multiplicative_operator, - STATE(745), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1683), 2, - sym_comment, - sym_include, - ACTIONS(1183), 4, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - ACTIONS(2396), 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, - [133618] = 5, + [133092] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1684), 2, + STATE(1659), 2, sym_comment, sym_include, - ACTIONS(3271), 30, + ACTIONS(3159), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -166304,71 +167010,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133664] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(742), 1, - sym__logical_operator, - STATE(743), 1, - sym__additive_operator, - STATE(744), 1, - sym__multiplicative_operator, - STATE(745), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1685), 2, - sym_comment, - sym_include, - ACTIONS(236), 6, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - ACTIONS(2396), 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, - [133728] = 5, + [133139] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1686), 2, + STATE(1660), 2, sym_comment, sym_include, - ACTIONS(3273), 30, + ACTIONS(3161), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -166395,21 +167052,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133774] = 5, + [133186] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1687), 2, + STATE(1661), 2, sym_comment, sym_include, - ACTIONS(3275), 30, + ACTIONS(3163), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -166436,21 +167094,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133820] = 5, + [133233] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1688), 2, + STATE(1662), 2, sym_comment, sym_include, - ACTIONS(3277), 30, + ACTIONS(3165), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -166477,21 +167136,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133866] = 5, + [133280] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1689), 2, + STATE(1663), 2, sym_comment, sym_include, - ACTIONS(3279), 30, + ACTIONS(3167), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -166518,21 +167178,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133912] = 5, + [133327] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1690), 2, + STATE(1664), 2, sym_comment, sym_include, - ACTIONS(3281), 30, + ACTIONS(3169), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -166559,21 +167220,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [133958] = 5, + [133374] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1691), 2, + STATE(1665), 2, sym_comment, sym_include, - ACTIONS(3283), 30, + ACTIONS(3171), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -166600,21 +167262,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [134004] = 5, + [133421] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1692), 2, + STATE(1666), 2, sym_comment, sym_include, - ACTIONS(3285), 30, + ACTIONS(3173), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -166641,64 +167304,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [134050] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3287), 1, - ts_builtin_sym_end, - STATE(1693), 2, - sym_comment, - sym_include, - ACTIONS(3289), 29, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [134098] = 6, + [133468] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, - ts_builtin_sym_end, - STATE(1694), 2, + STATE(1667), 2, sym_comment, sym_include, - ACTIONS(3293), 29, + ACTIONS(3175), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -166725,21 +167346,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [134146] = 5, + [133515] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1695), 2, + STATE(1668), 2, sym_comment, sym_include, - ACTIONS(3295), 30, + ACTIONS(3177), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -166766,21 +167388,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [134192] = 5, + [133562] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1696), 2, + STATE(1669), 2, sym_comment, sym_include, - ACTIONS(3297), 30, + ACTIONS(3179), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -166807,21 +167430,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [134238] = 5, + [133609] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1697), 2, + STATE(1670), 2, sym_comment, sym_include, - ACTIONS(3299), 30, + ACTIONS(3181), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -166848,21 +167472,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [134284] = 5, + [133656] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1698), 2, + STATE(1671), 2, sym_comment, sym_include, - ACTIONS(3301), 30, + ACTIONS(3183), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -166889,88 +167514,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [134330] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2683), 1, - sym__namecolon, - STATE(1738), 1, - aux_sym_object_access_repeat1, - ACTIONS(94), 2, - sym__or_operator, - sym__and_operator, - STATE(1699), 2, - sym_comment, - sym_include, - ACTIONS(96), 26, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_when_expression_token1, - anon_sym_NO_DASHERROR, - [134382] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [133703] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(672), 1, - sym__logical_operator, - STATE(673), 1, - sym__additive_operator, - STATE(674), 1, - sym__multiplicative_operator, - STATE(675), 1, + STATE(492), 1, sym__comparison_operator, - ACTIONS(1079), 2, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1700), 2, + STATE(1672), 2, sym_comment, sym_include, - ACTIONS(1112), 4, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - ACTIONS(2396), 13, + ACTIONS(1117), 5, + sym__terminator, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -166984,47 +167566,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [134448] = 18, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [133770] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3303), 1, - anon_sym_COMMA, - ACTIONS(3305), 1, - aux_sym_of_token1, - ACTIONS(3307), 1, - aux_sym_on_statement_token1, - STATE(431), 1, - sym__logical_operator, - STATE(433), 1, - sym__additive_operator, - STATE(434), 1, - sym__multiplicative_operator, - STATE(435), 1, + STATE(492), 1, sym__comparison_operator, - STATE(4936), 1, - aux_sym_on_statement_repeat1, - ACTIONS(1079), 2, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1701), 2, + STATE(1673), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(1196), 5, + sym__terminator, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -167038,40 +167618,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [134520] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [133837] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(672), 1, - sym__logical_operator, - STATE(673), 1, - sym__additive_operator, - STATE(674), 1, - sym__multiplicative_operator, - STATE(675), 1, + STATE(492), 1, sym__comparison_operator, - ACTIONS(1177), 2, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1119), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1702), 2, + STATE(1674), 2, sym_comment, sym_include, - ACTIONS(1179), 19, + ACTIONS(1121), 22, sym__or_operator, sym__and_operator, - anon_sym_COLON, - aux_sym__block_terminator_token1, + sym__terminator, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -167085,36 +167667,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_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - [134582] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [133898] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(672), 1, - sym__logical_operator, - STATE(673), 1, - sym__additive_operator, - STATE(674), 1, - sym__multiplicative_operator, - STATE(675), 1, + STATE(492), 1, sym__comparison_operator, - STATE(1703), 2, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + STATE(1675), 2, sym_comment, sym_include, - ACTIONS(1193), 3, + ACTIONS(1214), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1195), 23, + ACTIONS(1216), 24, sym__or_operator, sym__and_operator, - anon_sym_COLON, anon_sym_STAR, - aux_sym__block_terminator_token1, + sym__terminator, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -167131,49 +167714,44 @@ 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_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - [134638] = 18, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [133955] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3303), 1, - anon_sym_COMMA, - ACTIONS(3309), 1, - aux_sym_of_token1, - ACTIONS(3311), 1, - aux_sym_on_statement_token1, - STATE(431), 1, - sym__logical_operator, - STATE(433), 1, - sym__additive_operator, - STATE(434), 1, - sym__multiplicative_operator, - STATE(435), 1, + STATE(492), 1, sym__comparison_operator, - STATE(5033), 1, - aux_sym_on_statement_repeat1, - ACTIONS(1079), 2, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1704), 2, + STATE(1676), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(1212), 7, + sym__or_operator, + sym__and_operator, + sym__terminator, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -167187,21 +167765,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [134710] = 5, + [134020] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1705), 2, + STATE(1677), 2, sym_comment, sym_include, - ACTIONS(3313), 30, + ACTIONS(3185), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -167228,120 +167807,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [134756] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(672), 1, - sym__logical_operator, - STATE(673), 1, - sym__additive_operator, - STATE(674), 1, - sym__multiplicative_operator, - STATE(675), 1, - sym__comparison_operator, - ACTIONS(1205), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(1706), 2, - sym_comment, - sym_include, - ACTIONS(1207), 21, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, - 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_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - [134816] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(672), 1, - sym__logical_operator, - STATE(673), 1, - sym__additive_operator, - STATE(674), 1, - sym__multiplicative_operator, - STATE(675), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1707), 2, - sym_comment, - sym_include, - ACTIONS(1203), 4, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - ACTIONS(2396), 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, - [134882] = 5, + [134067] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1708), 2, + ACTIONS(3187), 1, + ts_builtin_sym_end, + STATE(1678), 2, sym_comment, sym_include, - ACTIONS(3315), 30, + ACTIONS(3189), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -167368,21 +167850,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [134928] = 5, + [134116] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1709), 2, + STATE(1679), 2, sym_comment, sym_include, - ACTIONS(3317), 30, + ACTIONS(3191), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -167409,21 +167892,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [134974] = 5, + [134163] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1710), 2, + STATE(1680), 2, sym_comment, sym_include, - ACTIONS(3319), 30, + ACTIONS(3193), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -167450,21 +167934,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135020] = 5, + [134210] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1711), 2, + STATE(1681), 2, sym_comment, sym_include, - ACTIONS(3321), 30, + ACTIONS(3195), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -167491,21 +167976,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135066] = 5, + [134257] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1712), 2, + ACTIONS(3197), 1, + ts_builtin_sym_end, + STATE(1682), 2, sym_comment, sym_include, - ACTIONS(3323), 30, + ACTIONS(3199), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -167532,21 +168019,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135112] = 5, + [134306] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1713), 2, + STATE(1683), 2, sym_comment, sym_include, - ACTIONS(3325), 30, + ACTIONS(3201), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -167573,21 +168061,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135158] = 5, + [134353] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1714), 2, + STATE(1684), 2, sym_comment, sym_include, - ACTIONS(3327), 30, + ACTIONS(3203), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -167614,21 +168103,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135204] = 5, + [134400] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1715), 2, + STATE(1685), 2, sym_comment, sym_include, - ACTIONS(3329), 30, + ACTIONS(3205), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -167655,21 +168145,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135250] = 5, + [134447] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1716), 2, + STATE(1686), 2, sym_comment, sym_include, - ACTIONS(3331), 30, + ACTIONS(3207), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -167696,21 +168187,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135296] = 5, + [134494] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1717), 2, + ACTIONS(3209), 1, + ts_builtin_sym_end, + STATE(1687), 2, sym_comment, sym_include, - ACTIONS(3333), 30, + ACTIONS(3211), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -167737,21 +168230,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135342] = 5, + [134543] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1718), 2, + STATE(1688), 2, sym_comment, sym_include, - ACTIONS(3335), 30, + ACTIONS(3213), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -167778,72 +168272,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135388] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(672), 1, - sym__logical_operator, - STATE(673), 1, - sym__additive_operator, - STATE(674), 1, - sym__multiplicative_operator, - STATE(675), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1719), 2, - sym_comment, - sym_include, - ACTIONS(1102), 4, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - ACTIONS(2396), 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, - [135454] = 5, + [134590] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1720), 2, + STATE(1689), 2, sym_comment, sym_include, - ACTIONS(3337), 30, + ACTIONS(3215), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -167870,21 +168314,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135500] = 5, + [134637] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1721), 2, + ACTIONS(3217), 1, + ts_builtin_sym_end, + STATE(1690), 2, sym_comment, sym_include, - ACTIONS(3339), 30, + ACTIONS(3219), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -167911,21 +168357,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135546] = 5, + [134686] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1722), 2, + STATE(1691), 2, sym_comment, sym_include, - ACTIONS(3341), 30, + ACTIONS(3221), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -167952,47 +168399,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135592] = 15, - ACTIONS(65), 1, + [134733] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(672), 1, - sym__logical_operator, - STATE(673), 1, - sym__additive_operator, - STATE(674), 1, - sym__multiplicative_operator, - STATE(675), 1, + STATE(974), 1, sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + STATE(975), 1, + sym__multiplicative_operator, + STATE(976), 1, + sym__additive_operator, + STATE(977), 1, + sym__logical_operator, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1723), 2, + ACTIONS(1212), 2, + sym__or_operator, + sym__and_operator, + STATE(1692), 2, sym_comment, sym_include, - ACTIONS(1199), 4, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - ACTIONS(2396), 13, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1210), 5, + sym_identifier, + sym__terminator, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1090), 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, @@ -168003,88 +168449,138 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [135658] = 5, + [134796] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1724), 2, + STATE(974), 1, + sym__comparison_operator, + STATE(975), 1, + sym__multiplicative_operator, + STATE(976), 1, + sym__additive_operator, + STATE(977), 1, + sym__logical_operator, + ACTIONS(1216), 2, + sym__or_operator, + sym__and_operator, + STATE(1693), 2, sym_comment, sym_include, - ACTIONS(3343), 30, + ACTIONS(1214), 25, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [135704] = 15, - ACTIONS(65), 1, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [134853] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(672), 1, + STATE(863), 1, sym__logical_operator, - STATE(673), 1, + STATE(864), 1, sym__additive_operator, - STATE(674), 1, + STATE(866), 1, sym__multiplicative_operator, - STATE(675), 1, + STATE(867), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(1694), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(3223), 5, + sym_identifier, + anon_sym_COMMA, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(1090), 15, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, anon_sym_GT, - ACTIONS(1083), 2, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [134916] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(974), 1, + sym__comparison_operator, + STATE(975), 1, + sym__multiplicative_operator, + STATE(976), 1, + sym__additive_operator, + STATE(977), 1, + sym__logical_operator, + ACTIONS(1121), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + STATE(1695), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(1119), 22, + sym_identifier, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(1725), 2, - sym_comment, - sym_include, - ACTIONS(1106), 4, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - ACTIONS(2396), 13, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -168095,47 +168591,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [135770] = 15, - ACTIONS(65), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [134975] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(672), 1, - sym__logical_operator, - STATE(673), 1, - sym__additive_operator, - STATE(674), 1, - sym__multiplicative_operator, - STATE(675), 1, + STATE(974), 1, sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + STATE(975), 1, + sym__multiplicative_operator, + STATE(976), 1, + sym__additive_operator, + STATE(977), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + STATE(1696), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(1194), 5, + sym_identifier, + sym__terminator, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1090), 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, + [135038] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(974), 1, + sym__comparison_operator, + STATE(975), 1, + sym__multiplicative_operator, + STATE(976), 1, + sym__additive_operator, + STATE(977), 1, + sym__logical_operator, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1726), 2, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(1697), 2, sym_comment, sym_include, - ACTIONS(1191), 4, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - ACTIONS(2396), 13, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1115), 5, + sym_identifier, + sym__terminator, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1090), 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, @@ -168146,21 +168694,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [135836] = 5, + [135101] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1727), 2, + ACTIONS(3225), 1, + ts_builtin_sym_end, + STATE(1698), 2, sym_comment, sym_include, - ACTIONS(3345), 30, + ACTIONS(2983), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -168187,21 +168737,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135882] = 5, + [135150] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1728), 2, + STATE(1699), 2, sym_comment, sym_include, - ACTIONS(3347), 30, + ACTIONS(3227), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -168228,21 +168779,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135928] = 5, + [135197] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1729), 2, + STATE(1700), 2, sym_comment, sym_include, - ACTIONS(3349), 30, + ACTIONS(3229), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -168269,21 +168821,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [135974] = 5, + [135244] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1730), 2, + STATE(1701), 2, sym_comment, sym_include, - ACTIONS(3351), 30, + ACTIONS(3231), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -168310,22 +168863,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [136020] = 6, + [135291] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3353), 1, - ts_builtin_sym_end, - STATE(1731), 2, + STATE(1702), 2, sym_comment, sym_include, - ACTIONS(3355), 29, + ACTIONS(3233), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -168352,21 +168905,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [136068] = 5, + [135338] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1732), 2, + STATE(1703), 2, sym_comment, sym_include, - ACTIONS(3357), 30, + ACTIONS(3235), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -168393,303 +168947,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [136114] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(642), 1, - sym__logical_operator, - STATE(644), 1, - sym__additive_operator, - STATE(645), 1, - sym__multiplicative_operator, - STATE(654), 1, - sym__comparison_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1179), 2, - sym__or_operator, - sym__and_operator, - STATE(1733), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1177), 19, - sym_identifier, - sym__terminator, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_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_when_expression_token1, - anon_sym_NO_DASHERROR, - [136174] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(642), 1, - sym__logical_operator, - STATE(644), 1, - sym__additive_operator, - STATE(645), 1, - sym__multiplicative_operator, - STATE(654), 1, - sym__comparison_operator, - ACTIONS(1195), 2, - sym__or_operator, - sym__and_operator, - STATE(1734), 2, - sym_comment, - sym_include, - ACTIONS(1193), 24, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_when_expression_token1, - anon_sym_NO_DASHERROR, - [136230] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(642), 1, - sym__logical_operator, - STATE(644), 1, - sym__additive_operator, - STATE(645), 1, - sym__multiplicative_operator, - STATE(654), 1, - sym__comparison_operator, - ACTIONS(1207), 2, - sym__or_operator, - sym__and_operator, - STATE(1735), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1205), 21, - sym_identifier, - 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, - aux_sym_when_expression_token1, - anon_sym_NO_DASHERROR, - [136288] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(642), 1, - sym__logical_operator, - STATE(644), 1, - sym__additive_operator, - STATE(645), 1, - sym__multiplicative_operator, - STATE(654), 1, - sym__comparison_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1736), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1201), 4, - sym_identifier, - sym__terminator, - aux_sym_when_expression_token1, - anon_sym_NO_DASHERROR, - ACTIONS(1079), 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, - [136350] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(642), 1, - sym__logical_operator, - STATE(644), 1, - sym__additive_operator, - STATE(645), 1, - sym__multiplicative_operator, - STATE(654), 1, - sym__comparison_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1737), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1100), 4, - sym_identifier, - sym__terminator, - aux_sym_when_expression_token1, - anon_sym_NO_DASHERROR, - ACTIONS(1079), 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, - [136412] = 7, + [135385] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3359), 1, - sym__namecolon, - ACTIONS(87), 2, - sym__or_operator, - sym__and_operator, - STATE(1738), 3, - sym_comment, - sym_include, - aux_sym_object_access_repeat1, - ACTIONS(89), 26, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_when_expression_token1, - anon_sym_NO_DASHERROR, - [136462] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1739), 2, + STATE(1704), 2, sym_comment, sym_include, - ACTIONS(3362), 30, + ACTIONS(3237), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -168716,21 +168989,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [136508] = 5, + [135432] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1740), 2, + STATE(1705), 2, sym_comment, sym_include, - ACTIONS(3364), 30, + ACTIONS(3239), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -168757,21 +169031,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [136554] = 5, + [135479] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1741), 2, + STATE(1706), 2, sym_comment, sym_include, - ACTIONS(3366), 30, + ACTIONS(3241), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -168798,21 +169073,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [136600] = 5, + [135526] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1742), 2, + STATE(1707), 2, sym_comment, sym_include, - ACTIONS(3368), 30, + ACTIONS(3243), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -168839,21 +169115,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [136646] = 5, + [135573] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1743), 2, + ACTIONS(3245), 1, + ts_builtin_sym_end, + STATE(1708), 2, sym_comment, sym_include, - ACTIONS(3370), 30, + ACTIONS(3205), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -168880,21 +169158,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [136692] = 5, + [135622] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1744), 2, + STATE(1709), 2, sym_comment, sym_include, - ACTIONS(3372), 30, + ACTIONS(3247), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -168921,21 +169200,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [136738] = 5, + [135669] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1745), 2, + ACTIONS(3249), 1, + ts_builtin_sym_end, + STATE(1710), 2, sym_comment, sym_include, - ACTIONS(3374), 30, + ACTIONS(3251), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -168962,21 +169243,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [136784] = 5, + [135718] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1746), 2, + STATE(1711), 2, sym_comment, sym_include, - ACTIONS(3376), 30, + ACTIONS(3253), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -169003,21 +169285,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [136830] = 5, + [135765] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1747), 2, + ACTIONS(3255), 1, + ts_builtin_sym_end, + STATE(1712), 2, sym_comment, sym_include, - ACTIONS(3378), 30, + ACTIONS(3257), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -169044,21 +169328,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [136876] = 5, + [135814] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1748), 2, + STATE(1713), 2, sym_comment, sym_include, - ACTIONS(3019), 30, + ACTIONS(3259), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -169085,176 +169370,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [136922] = 18, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(3303), 1, - anon_sym_COMMA, - ACTIONS(3380), 1, - aux_sym_of_token1, - ACTIONS(3382), 1, - aux_sym_on_statement_token1, - STATE(431), 1, - sym__logical_operator, - STATE(433), 1, - sym__additive_operator, - STATE(434), 1, - sym__multiplicative_operator, - STATE(435), 1, - sym__comparison_operator, - STATE(5062), 1, - aux_sym_on_statement_repeat1, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1749), 2, - sym_comment, - sym_include, - ACTIONS(2396), 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, - [136994] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(672), 1, - sym__logical_operator, - STATE(673), 1, - sym__additive_operator, - STATE(674), 1, - sym__multiplicative_operator, - STATE(675), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1750), 2, - sym_comment, - sym_include, - ACTIONS(1183), 4, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - ACTIONS(2396), 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, - [137060] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(672), 1, - sym__logical_operator, - STATE(673), 1, - sym__additive_operator, - STATE(674), 1, - sym__multiplicative_operator, - STATE(675), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1751), 2, - sym_comment, - sym_include, - ACTIONS(236), 6, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - ACTIONS(2396), 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, - [137124] = 5, + [135861] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1752), 2, + STATE(1714), 2, sym_comment, sym_include, - ACTIONS(3384), 30, + ACTIONS(3261), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -169281,21 +169412,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [137170] = 5, + [135908] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1753), 2, + STATE(1715), 2, sym_comment, sym_include, - ACTIONS(3386), 30, + ACTIONS(3263), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -169322,21 +169454,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [137216] = 5, + [135955] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1754), 2, + STATE(1716), 2, sym_comment, sym_include, - ACTIONS(3388), 30, + ACTIONS(3265), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -169363,21 +169496,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [137262] = 5, + [136002] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1755), 2, + STATE(1717), 2, sym_comment, sym_include, - ACTIONS(3390), 30, + ACTIONS(3267), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -169404,21 +169538,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [137308] = 5, + [136049] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1756), 2, + STATE(1718), 2, sym_comment, sym_include, - ACTIONS(3392), 30, + ACTIONS(3269), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -169445,21 +169580,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [137354] = 5, + [136096] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1757), 2, + STATE(1719), 2, sym_comment, sym_include, - ACTIONS(3394), 30, + ACTIONS(3271), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -169486,75 +169622,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [137400] = 18, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(3303), 1, - anon_sym_COMMA, - ACTIONS(3396), 1, - aux_sym_of_token1, - ACTIONS(3398), 1, - aux_sym_on_statement_token1, - STATE(431), 1, - sym__logical_operator, - STATE(433), 1, - sym__additive_operator, - STATE(434), 1, - sym__multiplicative_operator, - STATE(435), 1, - sym__comparison_operator, - STATE(5019), 1, - aux_sym_on_statement_repeat1, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1758), 2, - sym_comment, - sym_include, - ACTIONS(2396), 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, - [137472] = 5, + [136143] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1759), 2, + STATE(1720), 2, sym_comment, sym_include, - ACTIONS(3355), 30, + ACTIONS(3273), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -169581,21 +169664,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [137518] = 5, + [136190] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1760), 2, + STATE(1721), 2, sym_comment, sym_include, - ACTIONS(3293), 30, + ACTIONS(3275), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -169622,21 +169706,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [137564] = 5, + [136237] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1761), 2, + STATE(1722), 2, sym_comment, sym_include, - ACTIONS(3289), 30, + ACTIONS(3277), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -169663,21 +169748,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [137610] = 5, + [136284] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1762), 2, + STATE(1723), 2, sym_comment, sym_include, - ACTIONS(3203), 30, + ACTIONS(3279), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -169704,21 +169790,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [137656] = 5, + [136331] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1763), 2, + STATE(1724), 2, sym_comment, sym_include, - ACTIONS(3199), 30, + ACTIONS(3281), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -169745,89 +169832,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [137702] = 13, + [136378] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(642), 1, - sym__logical_operator, - STATE(644), 1, - sym__additive_operator, - STATE(645), 1, - sym__multiplicative_operator, - STATE(654), 1, - sym__comparison_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1764), 2, + STATE(1725), 2, sym_comment, sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1197), 4, + ACTIONS(3283), 31, sym_identifier, - sym__terminator, - aux_sym_when_expression_token1, - anon_sym_NO_DASHERROR, - ACTIONS(1079), 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, - [137764] = 13, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [136425] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(642), 1, - sym__logical_operator, - STATE(644), 1, - sym__additive_operator, - STATE(645), 1, - sym__multiplicative_operator, - STATE(654), 1, - sym__comparison_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(3285), 1, + aux_sym_input_expression_token2, + STATE(28), 1, + sym_qualified_name, + ACTIONS(1358), 2, sym__or_operator, sym__and_operator, - STATE(1765), 2, + STATE(1726), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1354), 26, + anon_sym_COLON, anon_sym_SLASH, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, aux_sym__multiplicative_operator_token1, - ACTIONS(1104), 4, - sym_identifier, - sym__terminator, - aux_sym_when_expression_token1, - anon_sym_NO_DASHERROR, - ACTIONS(1079), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -169843,21 +169915,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [137826] = 5, + 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, + [136480] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1766), 2, + STATE(1727), 2, sym_comment, sym_include, - ACTIONS(3193), 30, + ACTIONS(3287), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -169884,40 +169962,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [137872] = 13, + [136527] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(642), 1, - sym__logical_operator, - STATE(644), 1, - sym__additive_operator, - STATE(645), 1, - sym__multiplicative_operator, - STATE(654), 1, + STATE(974), 1, sym__comparison_operator, - ACTIONS(1077), 2, + STATE(975), 1, + sym__multiplicative_operator, + STATE(976), 1, + sym__additive_operator, + STATE(977), 1, + sym__logical_operator, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1767), 2, + STATE(1728), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1189), 4, + ACTIONS(1198), 5, sym_identifier, sym__terminator, aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -169933,40 +170012,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [137934] = 13, + [136590] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(642), 1, - sym__logical_operator, - STATE(644), 1, - sym__additive_operator, - STATE(645), 1, - sym__multiplicative_operator, - STATE(654), 1, + STATE(974), 1, sym__comparison_operator, - ACTIONS(1077), 2, + STATE(975), 1, + sym__multiplicative_operator, + STATE(976), 1, + sym__additive_operator, + STATE(977), 1, + sym__logical_operator, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1768), 2, + STATE(1729), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1185), 4, + ACTIONS(1111), 5, sym_identifier, sym__terminator, aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -169982,62 +170062,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [137996] = 5, + [136653] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1769), 2, + STATE(974), 1, + sym__comparison_operator, + STATE(975), 1, + sym__multiplicative_operator, + STATE(976), 1, + sym__additive_operator, + STATE(977), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(1730), 2, sym_comment, sym_include, - ACTIONS(3400), 30, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1206), 5, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [138042] = 5, + sym__terminator, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1090), 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, + [136716] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1770), 2, + STATE(1731), 2, sym_comment, sym_include, - ACTIONS(3400), 30, + ACTIONS(3251), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -170064,81 +170154,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138088] = 5, + [136763] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1771), 2, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(3289), 1, + aux_sym_input_expression_token2, + STATE(28), 1, + sym_qualified_name, + ACTIONS(1358), 2, + sym__or_operator, + sym__and_operator, + STATE(1732), 2, sym_comment, sym_include, - ACTIONS(3189), 30, - sym_identifier, + ACTIONS(1354), 26, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_STAR, aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_while_phrase_token1, + aux_sym_repeat_tuning_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [138134] = 13, + anon_sym_BY, + [136818] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(642), 1, - sym__logical_operator, - STATE(644), 1, - sym__additive_operator, - STATE(645), 1, - sym__multiplicative_operator, - STATE(654), 1, + STATE(974), 1, sym__comparison_operator, - ACTIONS(1077), 2, + STATE(975), 1, + sym__multiplicative_operator, + STATE(976), 1, + sym__additive_operator, + STATE(977), 1, + sym__logical_operator, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1772), 2, + STATE(1733), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1181), 4, + ACTIONS(1190), 5, sym_identifier, sym__terminator, aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -170154,40 +170250,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [138196] = 13, + [136881] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(642), 1, - sym__logical_operator, - STATE(644), 1, - sym__additive_operator, - STATE(645), 1, + STATE(974), 1, + sym__comparison_operator, + STATE(975), 1, sym__multiplicative_operator, - STATE(654), 1, + STATE(976), 1, + sym__additive_operator, + STATE(977), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(1734), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1123), 5, + sym_identifier, + sym__terminator, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1090), 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, + [136944] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(974), 1, sym__comparison_operator, - ACTIONS(236), 2, + STATE(975), 1, + sym__multiplicative_operator, + STATE(976), 1, + sym__additive_operator, + STATE(977), 1, + sym__logical_operator, + ACTIONS(230), 2, sym__or_operator, sym__and_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1773), 2, + STATE(1735), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(238), 4, + ACTIONS(232), 5, sym_identifier, sym__terminator, aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - ACTIONS(1079), 15, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -170203,103 +170350,165 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [138258] = 5, + [137007] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1774), 2, + ACTIONS(2690), 1, + sym__namecolon, + STATE(1739), 1, + aux_sym_object_access_repeat1, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(1736), 2, sym_comment, sym_include, - ACTIONS(3185), 30, + ACTIONS(91), 27, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_do_block_token1, - aux_sym__case_terminator_token1, - aux_sym_find_statement_token1, - aux_sym_assign_statement_token1, - aux_sym_catch_statement_token1, - aux_sym_finally_statement_token1, - aux_sym_accumulate_statement_token1, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [138304] = 5, + aux_sym_widget_field_token1, + [137060] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1775), 2, + ACTIONS(2690), 1, + sym__namecolon, + STATE(1739), 1, + aux_sym_object_access_repeat1, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(1737), 2, sym_comment, sym_include, - ACTIONS(3177), 30, + ACTIONS(91), 27, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_do_block_token1, - aux_sym__case_terminator_token1, - aux_sym_find_statement_token1, - aux_sym_assign_statement_token1, - aux_sym_catch_statement_token1, - aux_sym_finally_statement_token1, - aux_sym_accumulate_statement_token1, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [138350] = 6, + aux_sym_widget_field_token1, + [137113] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(79), 1, + sym__namedot, + ACTIONS(81), 1, + sym__namecolon, + ACTIONS(83), 1, + sym__namedoublecolon, + ACTIONS(3291), 1, + anon_sym_LPAREN, + STATE(4), 1, + aux_sym_object_access_repeat1, + STATE(8), 1, + aux_sym_qualified_name_repeat1, + STATE(12), 1, + aux_sym_member_access_repeat1, + STATE(24), 1, + sym_function_arguments, + STATE(1738), 2, + sym_comment, + sym_include, + ACTIONS(71), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(65), 19, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [137180] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1776), 2, - sym_comment, - sym_include, - ACTIONS(124), 3, + ACTIONS(3293), 1, sym__namecolon, + ACTIONS(93), 2, sym__or_operator, sym__and_operator, - ACTIONS(126), 27, + STATE(1739), 3, + sym_comment, + sym_include, + aux_sym_object_access_repeat1, + ACTIONS(95), 27, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -170327,21 +170536,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [138398] = 5, + [137231] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1777), 2, + STATE(1740), 2, sym_comment, sym_include, - ACTIONS(3402), 30, + ACTIONS(3296), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -170368,21 +170578,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138444] = 5, + [137278] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1778), 2, + STATE(1741), 2, sym_comment, sym_include, - ACTIONS(3404), 30, + ACTIONS(3298), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -170409,21 +170620,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138490] = 5, + [137325] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1779), 2, + STATE(1742), 2, sym_comment, sym_include, - ACTIONS(3406), 30, + ACTIONS(3300), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -170450,21 +170662,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138536] = 5, + [137372] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1780), 2, + STATE(1743), 2, sym_comment, sym_include, - ACTIONS(3408), 30, + ACTIONS(3302), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -170491,21 +170704,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138582] = 5, + [137419] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1781), 2, + STATE(1744), 2, sym_comment, sym_include, - ACTIONS(3410), 30, + ACTIONS(3304), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -170532,21 +170746,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138628] = 5, + [137466] = 24, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3306), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(3308), 1, + aux_sym_dataset_expression_token1, + ACTIONS(3310), 1, + aux_sym_input_expression_token1, + ACTIONS(3312), 1, + aux_sym_variable_definition_token3, + ACTIONS(3314), 1, + aux_sym_variable_definition_token4, + ACTIONS(3316), 1, + aux_sym_buffer_definition_token1, + ACTIONS(3318), 1, + aux_sym_query_definition_token1, + ACTIONS(3322), 1, + aux_sym_stream_definition_token1, + ACTIONS(3326), 1, + aux_sym_button_definition_token1, + STATE(3182), 1, + sym_access_tuning, + STATE(3204), 1, + sym_scope_tuning, + STATE(3217), 1, + aux_sym_variable_definition_repeat1, + STATE(3317), 1, + aux_sym_buffer_definition_repeat1, + STATE(3366), 1, + sym_serialization_tuning, + STATE(3385), 1, + aux_sym_workfile_definition_repeat1, + ACTIONS(3077), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(3324), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(1745), 2, + sym_comment, + sym_include, + ACTIONS(3320), 3, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_argument_mode_token2, + ACTIONS(3073), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3075), 5, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + [137551] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1782), 2, + STATE(1746), 2, sym_comment, sym_include, - ACTIONS(3023), 30, + ACTIONS(2935), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -170573,82 +170849,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138674] = 25, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [137598] = 24, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2927), 1, + ACTIONS(3328), 1, aux_sym_temp_table_expression_token1, - ACTIONS(2929), 1, + ACTIONS(3330), 1, aux_sym_dataset_expression_token1, - ACTIONS(2933), 1, + ACTIONS(3332), 1, + aux_sym_input_expression_token1, + ACTIONS(3334), 1, aux_sym_variable_definition_token3, - ACTIONS(2935), 1, + ACTIONS(3336), 1, aux_sym_variable_definition_token4, - ACTIONS(2937), 1, + ACTIONS(3338), 1, aux_sym_buffer_definition_token1, - ACTIONS(2939), 1, + ACTIONS(3340), 1, aux_sym_query_definition_token1, - ACTIONS(3412), 1, - aux_sym_argument_mode_token3, - ACTIONS(3416), 1, - aux_sym_property_definition_token1, - ACTIONS(3418), 1, - aux_sym_event_definition_token1, - STATE(3013), 1, + ACTIONS(3344), 1, + aux_sym_stream_definition_token1, + ACTIONS(3348), 1, + aux_sym_button_definition_token1, + STATE(3194), 1, sym_access_tuning, - STATE(3053), 1, + STATE(3204), 1, sym_scope_tuning, - STATE(3147), 1, - aux_sym_property_definition_repeat1, - STATE(3175), 1, + STATE(3248), 1, aux_sym_variable_definition_repeat1, - STATE(3216), 1, - sym_serialization_tuning, - STATE(3242), 1, - aux_sym_event_definition_repeat1, - STATE(3247), 1, + STATE(3323), 1, aux_sym_buffer_definition_repeat1, - STATE(3269), 1, - sym_property_type, - ACTIONS(2836), 2, + STATE(3366), 1, + sym_serialization_tuning, + STATE(3378), 1, + aux_sym_workfile_definition_repeat1, + ACTIONS(3077), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - ACTIONS(3414), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - STATE(1783), 2, + ACTIONS(3346), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(1747), 2, sym_comment, sym_include, - ACTIONS(2832), 4, + ACTIONS(3342), 3, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_argument_mode_token2, + ACTIONS(3073), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, + ACTIONS(3075), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [138760] = 5, + [137683] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1784), 2, + STATE(1748), 2, sym_comment, sym_include, - ACTIONS(3127), 30, + ACTIONS(3219), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -170675,21 +170952,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138806] = 5, + [137730] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1785), 2, + STATE(1749), 2, sym_comment, sym_include, - ACTIONS(3013), 30, + ACTIONS(3141), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -170716,21 +170994,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138852] = 5, + [137777] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1786), 2, + STATE(1750), 2, sym_comment, sym_include, - ACTIONS(3009), 30, + ACTIONS(3137), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -170757,21 +171036,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138898] = 5, + [137824] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1787), 2, + ACTIONS(3350), 1, + ts_builtin_sym_end, + STATE(1751), 2, sym_comment, sym_include, - ACTIONS(3003), 30, + ACTIONS(3352), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -170798,21 +171079,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138944] = 5, + [137873] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1788), 2, + STATE(1752), 2, sym_comment, sym_include, - ACTIONS(2999), 30, + ACTIONS(3354), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -170839,21 +171121,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [138990] = 5, + [137920] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1789), 2, + STATE(1753), 2, sym_comment, sym_include, - ACTIONS(3420), 30, + ACTIONS(2925), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -170880,21 +171163,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139036] = 5, + [137967] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1790), 2, + STATE(1754), 2, sym_comment, sym_include, - ACTIONS(2995), 30, + ACTIONS(3356), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -170921,21 +171205,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139082] = 5, + [138014] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1791), 2, + STATE(1755), 2, sym_comment, sym_include, - ACTIONS(3422), 30, + ACTIONS(2919), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -170962,39 +171247,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139128] = 8, + [138061] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3426), 1, - aux_sym_buffer_definition_token2, - ACTIONS(3428), 1, - aux_sym_repeat_statement_token1, - ACTIONS(3430), 1, - aux_sym_do_block_token1, - STATE(1792), 2, + STATE(1756), 2, sym_comment, sym_include, - ACTIONS(3424), 27, + ACTIONS(2915), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, aux_sym_else_statement_token1, + aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_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, @@ -171006,21 +171289,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139180] = 5, + [138108] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1793), 2, + STATE(1757), 2, sym_comment, sym_include, - ACTIONS(2991), 30, + ACTIONS(2911), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -171047,21 +171331,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139226] = 5, + [138155] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1794), 2, + STATE(1758), 2, sym_comment, sym_include, - ACTIONS(3059), 30, + ACTIONS(2903), 31, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -171088,21 +171373,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139272] = 5, + [138202] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1795), 2, + ACTIONS(3360), 1, + aux_sym_buffer_definition_token2, + ACTIONS(3362), 1, + aux_sym_repeat_statement_token1, + ACTIONS(3364), 1, + aux_sym_do_block_token1, + STATE(1759), 2, sym_comment, sym_include, - ACTIONS(3063), 30, + ACTIONS(3358), 28, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [138255] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1760), 2, + sym_comment, + sym_include, + ACTIONS(3358), 31, + sym_identifier, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -171129,21 +171460,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139318] = 5, + [138302] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1796), 2, + ACTIONS(3366), 1, + ts_builtin_sym_end, + STATE(1761), 2, sym_comment, sym_include, - ACTIONS(3067), 30, + ACTIONS(3283), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -171170,21 +171503,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139364] = 5, + [138351] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1797), 2, + ACTIONS(3368), 1, + ts_builtin_sym_end, + STATE(1762), 2, sym_comment, sym_include, - ACTIONS(3424), 30, + ACTIONS(3281), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -171211,22 +171546,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139410] = 6, + [138400] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3432), 1, + ACTIONS(3370), 1, ts_builtin_sym_end, - STATE(1798), 2, + STATE(1763), 2, sym_comment, sym_include, - ACTIONS(3245), 29, + ACTIONS(3279), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -171253,22 +171589,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139458] = 6, + [138449] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3434), 1, + ACTIONS(3372), 1, ts_builtin_sym_end, - STATE(1799), 2, + STATE(1764), 2, sym_comment, sym_include, - ACTIONS(3243), 29, + ACTIONS(3277), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -171295,22 +171632,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139506] = 6, + [138498] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3436), 1, + ACTIONS(3374), 1, ts_builtin_sym_end, - STATE(1800), 2, + STATE(1765), 2, sym_comment, sym_include, - ACTIONS(3241), 29, + ACTIONS(3275), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -171337,22 +171675,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139554] = 6, + [138547] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3438), 1, + ACTIONS(3376), 1, ts_builtin_sym_end, - STATE(1801), 2, + STATE(1766), 2, sym_comment, sym_include, - ACTIONS(3235), 29, + ACTIONS(3261), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -171379,22 +171718,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139602] = 6, + [138596] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + ACTIONS(3378), 1, ts_builtin_sym_end, - STATE(1802), 2, + STATE(1767), 2, sym_comment, sym_include, - ACTIONS(3233), 29, + ACTIONS(3259), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -171421,22 +171761,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139650] = 6, + [138645] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3442), 1, + ACTIONS(3380), 1, ts_builtin_sym_end, - STATE(1803), 2, + STATE(1768), 2, sym_comment, sym_include, - ACTIONS(3231), 29, + ACTIONS(3253), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -171463,22 +171804,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139698] = 6, + [138694] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3444), 1, + ACTIONS(3382), 1, ts_builtin_sym_end, - STATE(1804), 2, + STATE(1769), 2, sym_comment, sym_include, - ACTIONS(3229), 29, + ACTIONS(2969), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -171505,22 +171847,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139746] = 6, + [138743] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3446), 1, + ACTIONS(3384), 1, ts_builtin_sym_end, - STATE(1805), 2, + STATE(1770), 2, sym_comment, sym_include, - ACTIONS(3223), 29, + ACTIONS(3386), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -171547,22 +171890,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139794] = 6, + [138792] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3388), 1, ts_builtin_sym_end, - STATE(1806), 2, + STATE(1771), 2, sym_comment, sym_include, - ACTIONS(3209), 29, + ACTIONS(3390), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -171589,22 +171933,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139842] = 6, + [138841] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3450), 1, + ACTIONS(3392), 1, ts_builtin_sym_end, - STATE(1807), 2, + STATE(1772), 2, sym_comment, sym_include, - ACTIONS(3157), 29, + ACTIONS(3203), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -171631,22 +171976,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139890] = 6, + [138890] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3452), 1, - ts_builtin_sym_end, - STATE(1808), 2, + STATE(1773), 2, sym_comment, sym_include, - ACTIONS(3155), 29, + ACTIONS(2855), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -171673,22 +172018,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139938] = 6, + [138937] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3454), 1, + ACTIONS(3394), 1, ts_builtin_sym_end, - STATE(1809), 2, + STATE(1774), 2, sym_comment, sym_include, - ACTIONS(3153), 29, + ACTIONS(3201), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -171715,22 +172061,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [139986] = 6, + [138986] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3456), 1, + ACTIONS(3396), 1, ts_builtin_sym_end, - STATE(1810), 2, + STATE(1775), 2, sym_comment, sym_include, - ACTIONS(3151), 29, + ACTIONS(3181), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -171757,22 +172104,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140034] = 6, + [139035] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3458), 1, - ts_builtin_sym_end, - STATE(1811), 2, + STATE(1776), 2, sym_comment, sym_include, - ACTIONS(3145), 29, + ACTIONS(3398), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -171799,22 +172146,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140082] = 6, + [139082] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3460), 1, - ts_builtin_sym_end, - STATE(1812), 2, + STATE(1777), 2, sym_comment, sym_include, - ACTIONS(3143), 29, + ACTIONS(3398), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -171841,22 +172188,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140130] = 6, + [139129] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3462), 1, + STATE(1778), 2, + sym_comment, + sym_include, + ACTIONS(3352), 31, + sym_identifier, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [139176] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3400), 1, ts_builtin_sym_end, - STATE(1813), 2, + STATE(1779), 2, sym_comment, sym_include, - ACTIONS(3141), 29, + ACTIONS(3179), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -171883,22 +172273,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140178] = 6, + [139225] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3464), 1, + ACTIONS(3402), 1, ts_builtin_sym_end, - STATE(1814), 2, + STATE(1780), 2, sym_comment, sym_include, - ACTIONS(3137), 29, + ACTIONS(3177), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -171925,22 +172316,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140226] = 6, + [139274] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3466), 1, + ACTIONS(3404), 1, ts_builtin_sym_end, - STATE(1815), 2, + STATE(1781), 2, sym_comment, sym_include, - ACTIONS(3135), 29, + ACTIONS(3175), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -171967,22 +172359,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140274] = 6, + [139323] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3468), 1, + ACTIONS(3406), 1, ts_builtin_sym_end, - STATE(1816), 2, + STATE(1782), 2, sym_comment, sym_include, - ACTIONS(3133), 29, + ACTIONS(3171), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -172009,22 +172402,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140322] = 6, + [139372] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3470), 1, + ACTIONS(3408), 1, ts_builtin_sym_end, - STATE(1817), 2, + STATE(1783), 2, sym_comment, sym_include, - ACTIONS(3119), 29, + ACTIONS(3151), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -172051,22 +172445,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140370] = 6, + [139421] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3472), 1, + ACTIONS(3410), 1, ts_builtin_sym_end, - STATE(1818), 2, + STATE(1784), 2, sym_comment, sym_include, - ACTIONS(3117), 29, + ACTIONS(3109), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -172093,22 +172488,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140418] = 6, + [139470] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3474), 1, + ACTIONS(3412), 1, ts_builtin_sym_end, - STATE(1819), 2, + STATE(1785), 2, sym_comment, sym_include, - ACTIONS(3115), 29, + ACTIONS(3107), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -172135,22 +172531,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140466] = 6, + [139519] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3476), 1, + ACTIONS(3414), 1, ts_builtin_sym_end, - STATE(1820), 2, + STATE(1786), 2, sym_comment, sym_include, - ACTIONS(3113), 29, + ACTIONS(3105), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -172177,22 +172574,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140514] = 6, + [139568] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3478), 1, + ACTIONS(3416), 1, ts_builtin_sym_end, - STATE(1821), 2, + STATE(1787), 2, sym_comment, sym_include, - ACTIONS(3035), 29, + ACTIONS(3103), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -172219,22 +172617,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140562] = 6, + [139617] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3480), 1, + ACTIONS(3418), 1, ts_builtin_sym_end, - STATE(1822), 2, + STATE(1788), 2, sym_comment, sym_include, - ACTIONS(3111), 29, + ACTIONS(3101), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -172261,22 +172660,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140610] = 6, + [139666] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3482), 1, + ACTIONS(3420), 1, ts_builtin_sym_end, - STATE(1823), 2, + STATE(1789), 2, sym_comment, sym_include, - ACTIONS(3109), 29, + ACTIONS(3099), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -172303,22 +172703,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140658] = 6, + [139715] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3484), 1, + ACTIONS(3422), 1, ts_builtin_sym_end, - STATE(1824), 2, + STATE(1790), 2, sym_comment, sym_include, - ACTIONS(3107), 29, + ACTIONS(3095), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -172345,22 +172746,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140706] = 6, + [139764] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3486), 1, + ACTIONS(3424), 1, ts_builtin_sym_end, - STATE(1825), 2, + STATE(1791), 2, sym_comment, sym_include, - ACTIONS(3105), 29, + ACTIONS(3065), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -172387,22 +172789,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140754] = 6, + [139813] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3488), 1, + ACTIONS(3426), 1, ts_builtin_sym_end, - STATE(1826), 2, + STATE(1792), 2, sym_comment, sym_include, - ACTIONS(3103), 29, + ACTIONS(3063), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -172429,22 +172832,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140802] = 6, + [139862] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3490), 1, + ACTIONS(3428), 1, ts_builtin_sym_end, - STATE(1827), 2, + STATE(1793), 2, sym_comment, sym_include, - ACTIONS(3055), 29, + ACTIONS(3059), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -172471,22 +172875,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140850] = 6, + [139911] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3492), 1, + ACTIONS(3430), 1, ts_builtin_sym_end, - STATE(1828), 2, + STATE(1794), 2, sym_comment, sym_include, - ACTIONS(3053), 29, + ACTIONS(3035), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -172513,21 +172918,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140898] = 5, + [139960] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1829), 2, + ACTIONS(3432), 1, + ts_builtin_sym_end, + STATE(1795), 2, sym_comment, sym_include, - ACTIONS(3093), 30, + ACTIONS(3033), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -172554,22 +172961,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140944] = 6, + [140009] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3494), 1, + ACTIONS(3434), 1, ts_builtin_sym_end, - STATE(1830), 2, + STATE(1796), 2, sym_comment, sym_include, - ACTIONS(3051), 29, + ACTIONS(3031), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -172596,22 +173004,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [140992] = 6, + [140058] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3496), 1, + ACTIONS(3436), 1, ts_builtin_sym_end, - STATE(1831), 2, + STATE(1797), 2, sym_comment, sym_include, - ACTIONS(3049), 29, + ACTIONS(3029), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -172638,22 +173047,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141040] = 6, + [140107] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3498), 1, + ACTIONS(3438), 1, ts_builtin_sym_end, - STATE(1832), 2, + STATE(1798), 2, sym_comment, sym_include, - ACTIONS(3047), 29, + ACTIONS(3025), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -172680,22 +173090,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141088] = 6, + [140156] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3500), 1, + ACTIONS(3440), 1, ts_builtin_sym_end, - STATE(1833), 2, + STATE(1799), 2, sym_comment, sym_include, - ACTIONS(3045), 29, + ACTIONS(3023), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -172722,22 +173133,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141136] = 6, + [140205] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1800), 2, + sym_comment, + sym_include, + ACTIONS(1204), 5, + sym__terminator, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(2409), 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, + [140272] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3502), 1, - ts_builtin_sym_end, - STATE(1834), 2, + STATE(1801), 2, sym_comment, sym_include, - ACTIONS(3043), 29, + ACTIONS(2953), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -172764,22 +173227,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141184] = 6, + [140319] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3504), 1, + ACTIONS(3442), 1, ts_builtin_sym_end, - STATE(1835), 2, + STATE(1802), 2, sym_comment, sym_include, - ACTIONS(3039), 29, + ACTIONS(3221), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -172806,22 +173270,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141232] = 6, + [140368] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3506), 1, + STATE(1803), 2, + sym_comment, + sym_include, + ACTIONS(2959), 31, + sym_identifier, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [140415] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3444), 1, ts_builtin_sym_end, - STATE(1836), 2, + STATE(1804), 2, sym_comment, sym_include, - ACTIONS(3037), 29, + ACTIONS(3001), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -172848,22 +173355,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141280] = 6, + [140464] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3446), 1, ts_builtin_sym_end, - STATE(1837), 2, + STATE(1805), 2, sym_comment, sym_include, - ACTIONS(2975), 29, + ACTIONS(2999), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -172890,22 +173398,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141328] = 6, + [140513] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3510), 1, + ACTIONS(3448), 1, ts_builtin_sym_end, - STATE(1838), 2, + STATE(1806), 2, sym_comment, sym_include, - ACTIONS(2977), 29, + ACTIONS(2997), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -172932,22 +173441,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141376] = 6, + [140562] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3512), 1, + ACTIONS(3450), 1, ts_builtin_sym_end, - STATE(1839), 2, + STATE(1807), 2, sym_comment, sym_include, - ACTIONS(2979), 29, + ACTIONS(2995), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -172974,22 +173484,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141424] = 6, + [140611] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3514), 1, + ACTIONS(3452), 1, ts_builtin_sym_end, - STATE(1840), 2, + STATE(1808), 2, sym_comment, sym_include, - ACTIONS(2981), 29, + ACTIONS(2991), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -173016,22 +173527,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141472] = 6, + [140660] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3454), 1, ts_builtin_sym_end, - STATE(1841), 2, + STATE(1809), 2, sym_comment, sym_include, - ACTIONS(2983), 29, + ACTIONS(2989), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -173058,22 +173570,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141520] = 6, + [140709] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3518), 1, + ACTIONS(3456), 1, ts_builtin_sym_end, - STATE(1842), 2, + STATE(1810), 2, sym_comment, sym_include, - ACTIONS(2985), 29, + ACTIONS(2987), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -173100,22 +173613,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141568] = 6, + [140758] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3520), 1, + STATE(1811), 2, + sym_comment, + sym_include, + ACTIONS(3386), 31, + sym_identifier, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [140805] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3458), 1, ts_builtin_sym_end, - STATE(1843), 2, + STATE(1812), 2, sym_comment, sym_include, - ACTIONS(2987), 29, + ACTIONS(2981), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -173142,22 +173698,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141616] = 6, + [140854] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3522), 1, + ACTIONS(3460), 1, ts_builtin_sym_end, - STATE(1844), 2, + STATE(1813), 2, sym_comment, sym_include, - ACTIONS(3005), 29, + ACTIONS(2979), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -173184,22 +173741,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141664] = 6, + [140903] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3524), 1, + ACTIONS(3462), 1, ts_builtin_sym_end, - STATE(1845), 2, + STATE(1814), 2, sym_comment, sym_include, - ACTIONS(3015), 29, + ACTIONS(2961), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -173226,22 +173784,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141712] = 6, + [140952] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3526), 1, + ACTIONS(3464), 1, ts_builtin_sym_end, - STATE(1846), 2, + STATE(1815), 2, sym_comment, sym_include, - ACTIONS(3025), 29, + ACTIONS(2947), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -173268,63 +173827,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141760] = 6, + [141001] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3528), 1, + ACTIONS(3466), 1, ts_builtin_sym_end, - STATE(1847), 2, - sym_comment, - sym_include, - ACTIONS(3027), 29, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [141808] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1848), 2, + STATE(1816), 2, sym_comment, sym_include, - ACTIONS(3097), 30, + ACTIONS(2857), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -173351,22 +173870,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141854] = 6, + [141050] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3530), 1, + ACTIONS(3468), 1, ts_builtin_sym_end, - STATE(1849), 2, + STATE(1817), 2, sym_comment, sym_include, - ACTIONS(3029), 29, + ACTIONS(2859), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -173393,62 +173913,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141902] = 5, + [141099] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1850), 2, + STATE(863), 1, + sym__logical_operator, + STATE(864), 1, + sym__additive_operator, + STATE(866), 1, + sym__multiplicative_operator, + STATE(867), 1, + sym__comparison_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(1818), 2, sym_comment, sym_include, - ACTIONS(3101), 30, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1202), 5, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, + anon_sym_COMMA, + aux_sym_input_expression_token2, aux_sym_do_block_token1, - aux_sym__case_terminator_token1, - aux_sym_find_statement_token1, - aux_sym_assign_statement_token1, - aux_sym_catch_statement_token1, - aux_sym_finally_statement_token1, - aux_sym_accumulate_statement_token1, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [141948] = 5, + aux_sym_widget_field_token1, + ACTIONS(1090), 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, + [141162] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1851), 2, + ACTIONS(3470), 1, + ts_builtin_sym_end, + STATE(1819), 2, sym_comment, sym_include, - ACTIONS(3123), 30, + ACTIONS(2861), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -173475,22 +174006,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [141994] = 6, + [141211] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3532), 1, + ACTIONS(3472), 1, ts_builtin_sym_end, - STATE(1852), 2, + STATE(1820), 2, sym_comment, sym_include, - ACTIONS(3031), 29, + ACTIONS(2863), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -173517,22 +174049,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142042] = 6, + [141260] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3534), 1, + ACTIONS(3474), 1, ts_builtin_sym_end, - STATE(1853), 2, + STATE(1821), 2, sym_comment, sym_include, - ACTIONS(3033), 29, + ACTIONS(2865), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -173559,22 +174092,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142090] = 6, + [141309] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3536), 1, + ACTIONS(3476), 1, ts_builtin_sym_end, - STATE(1854), 2, + STATE(1822), 2, sym_comment, sym_include, - ACTIONS(3041), 29, + ACTIONS(2867), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -173601,22 +174135,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142138] = 6, + [141358] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3538), 1, + ACTIONS(3478), 1, ts_builtin_sym_end, - STATE(1855), 2, + STATE(1823), 2, sym_comment, sym_include, - ACTIONS(3069), 29, + ACTIONS(2869), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -173643,22 +174178,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142186] = 6, + [141407] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3540), 1, + ACTIONS(3480), 1, ts_builtin_sym_end, - STATE(1856), 2, + STATE(1824), 2, sym_comment, sym_include, - ACTIONS(3071), 29, + ACTIONS(2871), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -173685,22 +174221,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142234] = 6, + [141456] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3482), 1, ts_builtin_sym_end, - STATE(1857), 2, + STATE(1825), 2, sym_comment, sym_include, - ACTIONS(3073), 29, + ACTIONS(2873), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -173727,22 +174264,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142282] = 6, + [141505] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3544), 1, + ACTIONS(3484), 1, ts_builtin_sym_end, - STATE(1858), 2, + STATE(1826), 2, sym_comment, sym_include, - ACTIONS(3075), 29, + ACTIONS(2875), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -173769,22 +174307,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142330] = 6, + [141554] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3546), 1, + ACTIONS(3486), 1, ts_builtin_sym_end, - STATE(1859), 2, + STATE(1827), 2, sym_comment, sym_include, - ACTIONS(3077), 29, + ACTIONS(2877), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -173811,22 +174350,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142378] = 6, + [141603] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3548), 1, + ACTIONS(3488), 1, ts_builtin_sym_end, - STATE(1860), 2, + STATE(1828), 2, sym_comment, sym_include, - ACTIONS(3079), 29, + ACTIONS(2879), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -173853,22 +174393,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142426] = 6, + [141652] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3550), 1, + ACTIONS(3490), 1, ts_builtin_sym_end, - STATE(1861), 2, + STATE(1829), 2, sym_comment, sym_include, - ACTIONS(3081), 29, + ACTIONS(2881), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -173895,22 +174436,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142474] = 6, + [141701] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3552), 1, + ACTIONS(3492), 1, ts_builtin_sym_end, - STATE(1862), 2, + STATE(1830), 2, sym_comment, sym_include, - ACTIONS(3083), 29, + ACTIONS(2883), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -173937,22 +174479,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142522] = 6, + [141750] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3554), 1, + ACTIONS(3494), 1, ts_builtin_sym_end, - STATE(1863), 2, + STATE(1831), 2, sym_comment, sym_include, - ACTIONS(3085), 29, + ACTIONS(2885), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -173979,22 +174522,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142570] = 6, + [141799] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3556), 1, + ACTIONS(3496), 1, ts_builtin_sym_end, - STATE(1864), 2, + STATE(1832), 2, sym_comment, sym_include, - ACTIONS(3087), 29, + ACTIONS(2887), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -174021,22 +174565,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142618] = 6, + [141848] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3558), 1, + ACTIONS(3498), 1, ts_builtin_sym_end, - STATE(1865), 2, + STATE(1833), 2, sym_comment, sym_include, - ACTIONS(3089), 29, + ACTIONS(2889), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -174063,22 +174608,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142666] = 6, + [141897] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3560), 1, + ACTIONS(3500), 1, ts_builtin_sym_end, - STATE(1866), 2, + STATE(1834), 2, sym_comment, sym_include, - ACTIONS(3139), 29, + ACTIONS(2891), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -174105,22 +174651,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142714] = 6, + [141946] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3562), 1, + ACTIONS(3502), 1, ts_builtin_sym_end, - STATE(1867), 2, + STATE(1835), 2, sym_comment, sym_include, - ACTIONS(3167), 29, + ACTIONS(2893), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -174147,22 +174694,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142762] = 6, + [141995] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3564), 1, - ts_builtin_sym_end, - STATE(1868), 2, + STATE(1836), 2, sym_comment, sym_include, - ACTIONS(3169), 29, + ACTIONS(2965), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -174189,22 +174736,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142810] = 6, + [142042] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3566), 1, + ACTIONS(3504), 1, ts_builtin_sym_end, - STATE(1869), 2, + STATE(1837), 2, sym_comment, sym_include, - ACTIONS(3171), 29, + ACTIONS(2895), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -174231,22 +174779,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142858] = 6, + [142091] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3568), 1, + ACTIONS(3506), 1, ts_builtin_sym_end, - STATE(1870), 2, + STATE(1838), 2, sym_comment, sym_include, - ACTIONS(3173), 29, + ACTIONS(2897), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -174273,22 +174822,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142906] = 6, + [142140] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3570), 1, + ACTIONS(3508), 1, ts_builtin_sym_end, - STATE(1871), 2, + STATE(1839), 2, sym_comment, sym_include, - ACTIONS(3179), 29, + ACTIONS(2899), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -174315,22 +174865,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [142954] = 6, + [142189] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3510), 1, ts_builtin_sym_end, - STATE(1872), 2, + STATE(1840), 2, sym_comment, sym_include, - ACTIONS(3181), 29, + ACTIONS(2905), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -174357,22 +174908,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143002] = 6, + [142238] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3574), 1, + ACTIONS(3512), 1, ts_builtin_sym_end, - STATE(1873), 2, + STATE(1841), 2, sym_comment, sym_include, - ACTIONS(3195), 29, + ACTIONS(2907), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -174399,22 +174951,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143050] = 6, + [142287] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3576), 1, + ACTIONS(3514), 1, ts_builtin_sym_end, - STATE(1874), 2, + STATE(1842), 2, sym_comment, sym_include, - ACTIONS(3205), 29, + ACTIONS(2921), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -174441,22 +174994,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143098] = 6, + [142336] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3578), 1, + ACTIONS(3516), 1, ts_builtin_sym_end, - STATE(1875), 2, + STATE(1843), 2, sym_comment, sym_include, - ACTIONS(3424), 29, + ACTIONS(2929), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -174483,67 +175037,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143146] = 9, + [142385] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3578), 1, - ts_builtin_sym_end, - ACTIONS(3580), 1, - aux_sym_buffer_definition_token2, - ACTIONS(3582), 1, - aux_sym_repeat_statement_token1, - ACTIONS(3584), 1, - aux_sym_do_block_token1, - STATE(1876), 2, - sym_comment, - sym_include, - ACTIONS(3424), 26, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym__case_terminator_token1, - aux_sym_find_statement_token1, - aux_sym_assign_statement_token1, - aux_sym_catch_statement_token1, - aux_sym_finally_statement_token1, - aux_sym_accumulate_statement_token1, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [143200] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3586), 1, + ACTIONS(3518), 1, ts_builtin_sym_end, - STATE(1877), 2, + STATE(1844), 2, sym_comment, sym_include, - ACTIONS(3422), 29, + ACTIONS(2931), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -174570,40 +175080,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143248] = 13, + [142434] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(933), 1, + STATE(891), 1, sym__comparison_operator, - STATE(934), 1, + STATE(892), 1, sym__multiplicative_operator, - STATE(935), 1, + STATE(893), 1, sym__additive_operator, - STATE(936), 1, + STATE(894), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(1878), 2, + STATE(1845), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1110), 4, + ACTIONS(1190), 5, sym_identifier, sym__terminator, anon_sym_COMMA, aux_sym_when_expression_token1, - ACTIONS(1079), 15, + aux_sym_scope_tuning_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -174619,63 +175130,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [143310] = 6, + [142497] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, + ACTIONS(3520), 1, ts_builtin_sym_end, - STATE(1879), 2, - sym_comment, - sym_include, - ACTIONS(3247), 29, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [143358] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1880), 2, + STATE(1846), 2, sym_comment, sym_include, - ACTIONS(3131), 30, + ACTIONS(2937), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -174702,22 +175173,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143404] = 6, + [142546] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3590), 1, + ACTIONS(3522), 1, ts_builtin_sym_end, - STATE(1881), 2, + STATE(1847), 2, sym_comment, sym_include, - ACTIONS(3420), 29, + ACTIONS(2939), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -174744,22 +175216,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143452] = 6, + [142595] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3592), 1, + ACTIONS(3524), 1, ts_builtin_sym_end, - STATE(1882), 2, + STATE(1848), 2, sym_comment, sym_include, - ACTIONS(3207), 29, + ACTIONS(2941), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -174786,21 +175259,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143500] = 5, + [142644] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1883), 2, + ACTIONS(3526), 1, + ts_builtin_sym_end, + STATE(1849), 2, sym_comment, sym_include, - ACTIONS(3149), 30, + ACTIONS(2943), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -174827,22 +175302,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143546] = 6, + [142693] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3594), 1, + ACTIONS(3528), 1, ts_builtin_sym_end, - STATE(1884), 2, + STATE(1850), 2, sym_comment, sym_include, - ACTIONS(3211), 29, + ACTIONS(2945), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -174869,22 +175345,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143594] = 6, + [142742] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3596), 1, + ACTIONS(3530), 1, ts_builtin_sym_end, - STATE(1885), 2, + STATE(1851), 2, sym_comment, sym_include, - ACTIONS(3213), 29, + ACTIONS(2949), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -174911,21 +175388,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143642] = 5, + [142791] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1886), 2, + ACTIONS(3532), 1, + ts_builtin_sym_end, + STATE(1852), 2, sym_comment, sym_include, - ACTIONS(2973), 30, + ACTIONS(2955), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -174952,21 +175431,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143688] = 5, + [142840] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1887), 2, + ACTIONS(3534), 1, + ts_builtin_sym_end, + STATE(1853), 2, sym_comment, sym_include, - ACTIONS(3161), 30, + ACTIONS(2967), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -174993,21 +175474,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143734] = 5, + [142889] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1888), 2, + ACTIONS(3536), 1, + ts_builtin_sym_end, + STATE(1854), 2, sym_comment, sym_include, - ACTIONS(3165), 30, + ACTIONS(2985), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -175034,21 +175517,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143780] = 5, + [142938] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1889), 2, + ACTIONS(3538), 1, + ts_builtin_sym_end, + STATE(1855), 2, sym_comment, sym_include, - ACTIONS(3227), 30, + ACTIONS(3003), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -175075,122 +175560,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [143826] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(672), 1, - sym__logical_operator, - STATE(673), 1, - sym__additive_operator, - STATE(674), 1, - sym__multiplicative_operator, - STATE(675), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1890), 2, - sym_comment, - sym_include, - ACTIONS(3598), 4, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - ACTIONS(2396), 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, - [143892] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(933), 1, - sym__comparison_operator, - STATE(934), 1, - sym__multiplicative_operator, - STATE(935), 1, - sym__additive_operator, - STATE(936), 1, - sym__logical_operator, - ACTIONS(236), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1891), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(238), 4, - sym_identifier, - sym__terminator, - anon_sym_COMMA, - aux_sym_when_expression_token1, - ACTIONS(1079), 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, - [143954] = 6, + [142987] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3600), 1, + ACTIONS(3540), 1, ts_builtin_sym_end, - STATE(1892), 2, + STATE(1856), 2, sym_comment, sym_include, - ACTIONS(3215), 29, + ACTIONS(3005), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -175217,22 +175603,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144002] = 6, + [143036] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3602), 1, - ts_builtin_sym_end, - STATE(1893), 2, + STATE(1857), 2, sym_comment, sym_include, - ACTIONS(3217), 29, + ACTIONS(2973), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -175259,22 +175645,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144050] = 6, + [143083] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3604), 1, - ts_builtin_sym_end, - STATE(1894), 2, + STATE(1858), 2, sym_comment, sym_include, - ACTIONS(3219), 29, + ACTIONS(2977), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -175301,361 +175687,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144098] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(933), 1, - sym__comparison_operator, - STATE(934), 1, - sym__multiplicative_operator, - STATE(935), 1, - sym__additive_operator, - STATE(936), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1895), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1181), 4, - sym_identifier, - sym__terminator, - anon_sym_COMMA, - aux_sym_when_expression_token1, - ACTIONS(1079), 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, - [144160] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2667), 1, - anon_sym_LBRACK, - ACTIONS(2669), 1, - anon_sym_LPAREN, - STATE(2476), 1, - sym_function_arguments, - ACTIONS(63), 2, - sym__or_operator, - sym__and_operator, - STATE(1896), 2, - sym_comment, - sym_include, - ACTIONS(69), 25, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_do_block_token1, - aux_sym_widget_field_token1, - [144214] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(933), 1, - sym__comparison_operator, - STATE(934), 1, - sym__multiplicative_operator, - STATE(935), 1, - sym__additive_operator, - STATE(936), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1897), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1185), 4, - sym_identifier, - sym__terminator, - anon_sym_COMMA, - aux_sym_when_expression_token1, - ACTIONS(1079), 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, - [144276] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(933), 1, - sym__comparison_operator, - STATE(934), 1, - sym__multiplicative_operator, - STATE(935), 1, - sym__additive_operator, - STATE(936), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1898), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1189), 4, - sym_identifier, - sym__terminator, - anon_sym_COMMA, - aux_sym_when_expression_token1, - ACTIONS(1079), 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, - [144338] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(933), 1, - sym__comparison_operator, - STATE(934), 1, - sym__multiplicative_operator, - STATE(935), 1, - sym__additive_operator, - STATE(936), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1899), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1104), 4, - sym_identifier, - sym__terminator, - anon_sym_COMMA, - aux_sym_when_expression_token1, - ACTIONS(1079), 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, - [144400] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(933), 1, - sym__comparison_operator, - STATE(934), 1, - sym__multiplicative_operator, - STATE(935), 1, - sym__additive_operator, - STATE(936), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1900), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1197), 4, - sym_identifier, - sym__terminator, - anon_sym_COMMA, - aux_sym_when_expression_token1, - ACTIONS(1079), 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, - [144462] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(933), 1, - sym__comparison_operator, - STATE(934), 1, - sym__multiplicative_operator, - STATE(935), 1, - sym__additive_operator, - STATE(936), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1901), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1100), 4, - sym_identifier, - sym__terminator, - anon_sym_COMMA, - aux_sym_when_expression_token1, - ACTIONS(1079), 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, - [144524] = 6, + [143130] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3606), 1, + ACTIONS(3542), 1, ts_builtin_sym_end, - STATE(1902), 2, + STATE(1859), 2, sym_comment, sym_include, - ACTIONS(3410), 29, + ACTIONS(3007), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -175682,22 +175730,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144572] = 6, + [143179] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3608), 1, + ACTIONS(3544), 1, ts_builtin_sym_end, - STATE(1903), 2, + STATE(1860), 2, sym_comment, sym_include, - ACTIONS(3408), 29, + ACTIONS(3009), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -175724,22 +175773,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144620] = 6, + [143228] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3546), 1, ts_builtin_sym_end, - STATE(1904), 2, + STATE(1861), 2, sym_comment, sym_include, - ACTIONS(3406), 29, + ACTIONS(3011), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -175766,22 +175816,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144668] = 6, + [143277] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3612), 1, + ACTIONS(3548), 1, ts_builtin_sym_end, - STATE(1905), 2, + STATE(1862), 2, sym_comment, sym_include, - ACTIONS(3221), 29, + ACTIONS(3013), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -175808,22 +175859,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144716] = 6, + [143326] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3614), 1, + ACTIONS(3550), 1, ts_builtin_sym_end, - STATE(1906), 2, + STATE(1863), 2, sym_comment, sym_include, - ACTIONS(3237), 29, + ACTIONS(3015), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -175850,22 +175902,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144764] = 6, + [143375] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3616), 1, + ACTIONS(3552), 1, ts_builtin_sym_end, - STATE(1907), 2, + STATE(1864), 2, sym_comment, sym_include, - ACTIONS(3239), 29, + ACTIONS(3017), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -175892,22 +175945,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144812] = 6, + [143424] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3618), 1, + ACTIONS(3554), 1, ts_builtin_sym_end, - STATE(1908), 2, + STATE(1865), 2, sym_comment, sym_include, - ACTIONS(3404), 29, + ACTIONS(3019), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -175934,22 +175988,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144860] = 6, + [143473] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3620), 1, + ACTIONS(3556), 1, ts_builtin_sym_end, - STATE(1909), 2, + STATE(1866), 2, sym_comment, sym_include, - ACTIONS(3402), 29, + ACTIONS(3021), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -175976,164 +176031,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [144908] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(933), 1, - sym__comparison_operator, - STATE(934), 1, - sym__multiplicative_operator, - STATE(935), 1, - sym__additive_operator, - STATE(936), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1910), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1201), 4, - sym_identifier, - sym__terminator, - anon_sym_COMMA, - aux_sym_when_expression_token1, - ACTIONS(1079), 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, - [144970] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(933), 1, - sym__comparison_operator, - STATE(934), 1, - sym__multiplicative_operator, - STATE(935), 1, - sym__additive_operator, - STATE(936), 1, - sym__logical_operator, - ACTIONS(1207), 2, - sym__or_operator, - sym__and_operator, - STATE(1911), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1205), 21, - sym_identifier, - sym__terminator, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_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_when_expression_token1, - [145028] = 10, + [143522] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(933), 1, - sym__comparison_operator, - STATE(934), 1, - sym__multiplicative_operator, - STATE(935), 1, - sym__additive_operator, - STATE(936), 1, - sym__logical_operator, - ACTIONS(1195), 2, - sym__or_operator, - sym__and_operator, - STATE(1912), 2, + STATE(1867), 2, sym_comment, sym_include, - ACTIONS(1193), 24, - anon_sym_SLASH, + ACTIONS(3039), 31, sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_when_expression_token1, - [145084] = 6, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [143569] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3622), 1, + ACTIONS(3558), 1, ts_builtin_sym_end, - STATE(1913), 2, + STATE(1868), 2, sym_comment, sym_include, - ACTIONS(3249), 29, + ACTIONS(3027), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -176160,118 +176116,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [145132] = 12, + [143618] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(933), 1, - sym__comparison_operator, - STATE(934), 1, - sym__multiplicative_operator, - STATE(935), 1, - sym__additive_operator, - STATE(936), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1179), 2, - sym__or_operator, - sym__and_operator, - STATE(1914), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1177), 19, - sym_identifier, - sym__terminator, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_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_when_expression_token1, - [145192] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(924), 1, - sym__comparison_operator, - STATE(925), 1, - sym__multiplicative_operator, - STATE(926), 1, - sym__additive_operator, - STATE(927), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1915), 2, + ACTIONS(3560), 1, + ts_builtin_sym_end, + STATE(1869), 2, sym_comment, sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(3624), 5, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(2849), 30, sym_identifier, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - ACTIONS(1079), 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, - [145252] = 6, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [143667] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3626), 1, + ACTIONS(3562), 1, ts_builtin_sym_end, - STATE(1916), 2, + STATE(1870), 2, sym_comment, sym_include, - ACTIONS(3251), 29, + ACTIONS(3119), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -176298,22 +176202,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [145300] = 6, + [143716] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3628), 1, + ACTIONS(3564), 1, ts_builtin_sym_end, - STATE(1917), 2, + STATE(1871), 2, sym_comment, sym_include, - ACTIONS(3253), 29, + ACTIONS(3121), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -176340,22 +176245,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [145348] = 6, + [143765] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3630), 1, + ACTIONS(3566), 1, ts_builtin_sym_end, - STATE(1918), 2, + STATE(1872), 2, sym_comment, sym_include, - ACTIONS(3255), 29, + ACTIONS(3127), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -176382,306 +176288,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [145396] = 8, + [143814] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2709), 1, - sym__namecolon, - STATE(1928), 1, - aux_sym_object_access_repeat1, - ACTIONS(94), 2, - sym__or_operator, - sym__and_operator, - STATE(1919), 2, - sym_comment, - sym_include, - ACTIONS(96), 26, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_when_expression_token1, - [145448] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(924), 1, - sym__comparison_operator, - STATE(925), 1, - sym__multiplicative_operator, - STATE(926), 1, - sym__additive_operator, - STATE(927), 1, - sym__logical_operator, - ACTIONS(236), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1920), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(238), 5, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - ACTIONS(1079), 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, - [145508] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(924), 1, - sym__comparison_operator, - STATE(925), 1, - sym__multiplicative_operator, - STATE(926), 1, - sym__additive_operator, - STATE(927), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1921), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1181), 5, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - ACTIONS(1079), 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, - [145568] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(924), 1, - sym__comparison_operator, - STATE(925), 1, - sym__multiplicative_operator, - STATE(926), 1, - sym__additive_operator, - STATE(927), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1922), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1185), 5, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - ACTIONS(1079), 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, - [145628] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(924), 1, - sym__comparison_operator, - STATE(925), 1, - sym__multiplicative_operator, - STATE(926), 1, - sym__additive_operator, - STATE(927), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1923), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1189), 5, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - ACTIONS(1079), 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, - [145688] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(924), 1, - sym__comparison_operator, - STATE(925), 1, - sym__multiplicative_operator, - STATE(926), 1, - sym__additive_operator, - STATE(927), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1924), 2, + ACTIONS(3568), 1, + ts_builtin_sym_end, + STATE(1873), 2, sym_comment, sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1104), 5, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3129), 30, sym_identifier, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - ACTIONS(1079), 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, - [145748] = 6, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [143863] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3632), 1, + ACTIONS(3570), 1, ts_builtin_sym_end, - STATE(1925), 2, + STATE(1874), 2, sym_comment, sym_include, - ACTIONS(3257), 29, + ACTIONS(3131), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -176708,22 +176374,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [145796] = 6, + [143912] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3634), 1, + ACTIONS(3572), 1, ts_builtin_sym_end, - STATE(1926), 2, + STATE(1875), 2, sym_comment, sym_include, - ACTIONS(3259), 29, + ACTIONS(3133), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -176750,113 +176417,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [145844] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(924), 1, - sym__comparison_operator, - STATE(925), 1, - sym__multiplicative_operator, - STATE(926), 1, - sym__additive_operator, - STATE(927), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1927), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1197), 5, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - ACTIONS(1079), 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, - [145904] = 7, + [143961] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3636), 1, - sym__namecolon, - ACTIONS(87), 2, - sym__or_operator, - sym__and_operator, - STATE(1928), 3, + ACTIONS(3574), 1, + ts_builtin_sym_end, + STATE(1876), 2, sym_comment, sym_include, - aux_sym_object_access_repeat1, - ACTIONS(89), 26, - anon_sym_SLASH, + ACTIONS(3143), 30, sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_when_expression_token1, - [145954] = 6, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [144010] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3639), 1, + ACTIONS(3576), 1, ts_builtin_sym_end, - STATE(1929), 2, + STATE(1877), 2, sym_comment, sym_include, - ACTIONS(3261), 29, + ACTIONS(3145), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -176883,401 +176503,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [146002] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(924), 1, - sym__comparison_operator, - STATE(925), 1, - sym__multiplicative_operator, - STATE(926), 1, - sym__additive_operator, - STATE(927), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1930), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1100), 5, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - ACTIONS(1079), 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, - [146062] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(924), 1, - sym__comparison_operator, - STATE(925), 1, - sym__multiplicative_operator, - STATE(926), 1, - sym__additive_operator, - STATE(927), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1931), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1201), 5, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - ACTIONS(1079), 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, - [146122] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(924), 1, - sym__comparison_operator, - STATE(925), 1, - sym__multiplicative_operator, - STATE(926), 1, - sym__additive_operator, - STATE(927), 1, - sym__logical_operator, - ACTIONS(1207), 2, - sym__or_operator, - sym__and_operator, - STATE(1932), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1205), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_DQUOTE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_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, - [146178] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(924), 1, - sym__comparison_operator, - STATE(925), 1, - sym__multiplicative_operator, - STATE(926), 1, - sym__additive_operator, - STATE(927), 1, - sym__logical_operator, - ACTIONS(1195), 2, - sym__or_operator, - sym__and_operator, - STATE(1933), 2, - sym_comment, - sym_include, - ACTIONS(1193), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_include_argument_token1, - [146232] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(924), 1, - sym__comparison_operator, - STATE(925), 1, - sym__multiplicative_operator, - STATE(926), 1, - sym__additive_operator, - STATE(927), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1179), 2, - sym__or_operator, - sym__and_operator, - STATE(1934), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1177), 20, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_DQUOTE, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - aux_sym_include_argument_token1, - [146290] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(924), 1, - sym__comparison_operator, - STATE(925), 1, - sym__multiplicative_operator, - STATE(926), 1, - sym__additive_operator, - STATE(927), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(1935), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1110), 5, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - ACTIONS(1079), 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, - [146350] = 18, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(3303), 1, - anon_sym_COMMA, - ACTIONS(3641), 1, - aux_sym_of_token1, - ACTIONS(3643), 1, - aux_sym_on_statement_token1, - STATE(431), 1, - sym__logical_operator, - STATE(433), 1, - sym__additive_operator, - STATE(434), 1, - sym__multiplicative_operator, - STATE(435), 1, - sym__comparison_operator, - STATE(4680), 1, - aux_sym_on_statement_repeat1, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1936), 2, - sym_comment, - sym_include, - ACTIONS(2396), 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, - [146422] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(2693), 1, - sym__namecolon, - STATE(1959), 1, - aux_sym_object_access_repeat1, - ACTIONS(94), 2, - sym__or_operator, - sym__and_operator, - STATE(1937), 2, - sym_comment, - sym_include, - ACTIONS(96), 27, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_include_argument_token1, - [146472] = 6, + [144059] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3645), 1, + ACTIONS(3578), 1, ts_builtin_sym_end, - STATE(1938), 2, + STATE(1878), 2, sym_comment, sym_include, - ACTIONS(3394), 29, + ACTIONS(3147), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -177304,22 +176546,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [146520] = 6, + [144108] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3647), 1, + ACTIONS(3580), 1, ts_builtin_sym_end, - STATE(1939), 2, + STATE(1879), 2, sym_comment, sym_include, - ACTIONS(3392), 29, + ACTIONS(3149), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -177346,22 +176589,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [146568] = 6, + [144157] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3649), 1, - ts_builtin_sym_end, - STATE(1940), 2, + STATE(1880), 2, sym_comment, sym_include, - ACTIONS(3390), 29, + ACTIONS(3043), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -177388,22 +176631,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [146616] = 6, + [144204] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3651), 1, + ACTIONS(3582), 1, ts_builtin_sym_end, - STATE(1941), 2, + STATE(1881), 2, sym_comment, sym_include, - ACTIONS(3388), 29, + ACTIONS(3153), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -177430,22 +176674,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [146664] = 6, + [144253] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3653), 1, + ACTIONS(3584), 1, ts_builtin_sym_end, - STATE(1942), 2, + STATE(1882), 2, sym_comment, sym_include, - ACTIONS(3386), 29, + ACTIONS(3358), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -177472,37 +176717,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [146712] = 6, + [144302] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3655), 1, + ACTIONS(3584), 1, ts_builtin_sym_end, - STATE(1943), 2, + ACTIONS(3586), 1, + aux_sym_buffer_definition_token2, + ACTIONS(3588), 1, + aux_sym_repeat_statement_token1, + ACTIONS(3590), 1, + aux_sym_do_block_token1, + STATE(1883), 2, sym_comment, sym_include, - ACTIONS(3384), 29, + ACTIONS(3358), 27, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_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, @@ -177514,22 +176763,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [146760] = 6, + [144357] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3657), 1, + ACTIONS(3592), 1, ts_builtin_sym_end, - STATE(1944), 2, + STATE(1884), 2, sym_comment, sym_include, - ACTIONS(3263), 29, + ACTIONS(3356), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -177556,22 +176806,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [146808] = 6, + [144406] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3659), 1, - ts_builtin_sym_end, - STATE(1945), 2, + STATE(1885), 2, sym_comment, sym_include, - ACTIONS(3265), 29, + ACTIONS(3047), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -177598,22 +176848,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [146856] = 6, + [144453] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3661), 1, + ACTIONS(3594), 1, ts_builtin_sym_end, - STATE(1946), 2, + STATE(1886), 2, sym_comment, sym_include, - ACTIONS(3267), 29, + ACTIONS(3287), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -177640,22 +176891,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [146904] = 6, + [144502] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3663), 1, - ts_builtin_sym_end, - STATE(1947), 2, + STATE(1887), 2, sym_comment, sym_include, - ACTIONS(3378), 29, + ACTIONS(3051), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -177682,22 +176933,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [146952] = 6, + [144549] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3665), 1, + ACTIONS(3596), 1, ts_builtin_sym_end, - STATE(1948), 2, + STATE(1888), 2, sym_comment, sym_include, - ACTIONS(3376), 29, + ACTIONS(3354), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -177724,22 +176976,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [147000] = 6, + [144598] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3667), 1, + ACTIONS(3598), 1, ts_builtin_sym_end, - STATE(1949), 2, + STATE(1889), 2, sym_comment, sym_include, - ACTIONS(3374), 29, + ACTIONS(3155), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -177766,22 +177019,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [147048] = 6, + [144647] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3669), 1, + ACTIONS(3600), 1, ts_builtin_sym_end, - STATE(1950), 2, + STATE(1890), 2, sym_comment, sym_include, - ACTIONS(3372), 29, + ACTIONS(3157), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -177808,22 +177062,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [147096] = 6, + [144696] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3671), 1, + ACTIONS(3602), 1, ts_builtin_sym_end, - STATE(1951), 2, + STATE(1891), 2, sym_comment, sym_include, - ACTIONS(3370), 29, + ACTIONS(3159), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -177850,22 +177105,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [147144] = 6, + [144745] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3673), 1, + ACTIONS(3604), 1, ts_builtin_sym_end, - STATE(1952), 2, + STATE(1892), 2, sym_comment, sym_include, - ACTIONS(3368), 29, + ACTIONS(3161), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -177892,22 +177148,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [147192] = 6, + [144794] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3675), 1, - ts_builtin_sym_end, - STATE(1953), 2, + STATE(1893), 2, sym_comment, sym_include, - ACTIONS(3366), 29, + ACTIONS(3606), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -177934,22 +177190,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [147240] = 6, + [144841] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3677), 1, - ts_builtin_sym_end, - STATE(1954), 2, + STATE(1894), 2, sym_comment, sym_include, - ACTIONS(3269), 29, + ACTIONS(3057), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -177976,63 +177232,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [147288] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3681), 1, - sym__escaped_string, - STATE(1955), 2, - sym_comment, - sym_include, - ACTIONS(3679), 30, - anon_sym_COLON, - 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [147334] = 6, + [144888] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3683), 1, - ts_builtin_sym_end, - STATE(1956), 2, + STATE(1895), 2, sym_comment, sym_include, - ACTIONS(3364), 29, + ACTIONS(3113), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -178059,22 +177274,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [147382] = 6, + [144935] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3685), 1, - ts_builtin_sym_end, - STATE(1957), 2, + STATE(1896), 2, sym_comment, sym_include, - ACTIONS(3362), 29, + ACTIONS(3117), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -178101,22 +177316,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [147430] = 6, + [144982] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3687), 1, - ts_builtin_sym_end, - STATE(1958), 2, + STATE(1897), 2, sym_comment, sym_include, - ACTIONS(3343), 29, + ACTIONS(3125), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -178143,64 +177358,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [147478] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3689), 1, - sym__namecolon, - ACTIONS(87), 2, - sym__or_operator, - sym__and_operator, - STATE(1959), 3, - sym_comment, - sym_include, - aux_sym_object_access_repeat1, - ACTIONS(89), 27, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_include_argument_token1, - [147526] = 6, + [145029] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3692), 1, - ts_builtin_sym_end, - STATE(1960), 2, + STATE(1898), 2, sym_comment, sym_include, - ACTIONS(3271), 29, + ACTIONS(3189), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -178227,22 +177400,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [147574] = 6, + [145076] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3694), 1, + ACTIONS(3608), 1, ts_builtin_sym_end, - STATE(1961), 2, + STATE(1899), 2, sym_comment, sym_include, - ACTIONS(3273), 29, + ACTIONS(3163), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -178269,73 +177443,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [147622] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(742), 1, - sym__logical_operator, - STATE(743), 1, - sym__additive_operator, - STATE(744), 1, - sym__multiplicative_operator, - STATE(745), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1962), 2, - sym_comment, - sym_include, - ACTIONS(3598), 4, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - ACTIONS(2396), 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, - [147688] = 6, + [145125] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3696), 1, + ACTIONS(3610), 1, ts_builtin_sym_end, - STATE(1963), 2, + STATE(1900), 2, sym_comment, sym_include, - ACTIONS(3275), 29, + ACTIONS(3165), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -178362,22 +177486,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [147736] = 6, + [145174] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3698), 1, + ACTIONS(3612), 1, ts_builtin_sym_end, - STATE(1964), 2, + STATE(1901), 2, sym_comment, sym_include, - ACTIONS(3277), 29, + ACTIONS(3167), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -178404,22 +177529,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [147784] = 6, + [145223] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3700), 1, - ts_builtin_sym_end, - STATE(1965), 2, + STATE(1902), 2, sym_comment, sym_include, - ACTIONS(3279), 29, + ACTIONS(3199), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -178446,233 +177571,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [147832] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2458), 1, - sym_identifier, - STATE(32), 1, - sym_qualified_name, - ACTIONS(1366), 2, - sym__or_operator, - sym__and_operator, - STATE(1966), 2, - sym_comment, - sym_include, - ACTIONS(1364), 26, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_while_phrase_token1, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - anon_sym_BY, - [147884] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2458), 1, - sym_identifier, - STATE(32), 1, - sym_qualified_name, - ACTIONS(1366), 2, - sym__or_operator, - sym__and_operator, - STATE(1967), 2, - sym_comment, - sym_include, - ACTIONS(1364), 26, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__block_terminator_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_while_phrase_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - anon_sym_BY, - [147936] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3704), 1, - sym__escaped_string, - STATE(1968), 2, - sym_comment, - sym_include, - ACTIONS(3702), 30, - 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_type_tuning_token1, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_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, - aux_sym_field_definition_token1, - aux_sym_index_tuning_token1, - aux_sym_index_definition_token1, - [147982] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3708), 1, - sym__escaped_string, - STATE(1969), 2, - sym_comment, - sym_include, - ACTIONS(3706), 30, - 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_type_tuning_token1, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_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, - aux_sym_field_definition_token1, - aux_sym_index_tuning_token1, - aux_sym_index_definition_token1, - [148028] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3712), 1, - sym__escaped_string, - STATE(1970), 2, - sym_comment, - sym_include, - ACTIONS(3710), 30, - anon_sym_COLON, - 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [148074] = 6, + [145270] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3714), 1, + ACTIONS(3614), 1, ts_builtin_sym_end, - STATE(1971), 2, + STATE(1903), 2, sym_comment, sym_include, - ACTIONS(3357), 29, + ACTIONS(3169), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -178699,22 +177614,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148122] = 6, + [145319] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3716), 1, + ACTIONS(3616), 1, ts_builtin_sym_end, - STATE(1972), 2, + STATE(1904), 2, sym_comment, sym_include, - ACTIONS(3351), 29, + ACTIONS(3173), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -178741,22 +177657,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148170] = 6, + [145368] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3718), 1, + ACTIONS(3618), 1, ts_builtin_sym_end, - STATE(1973), 2, + STATE(1905), 2, sym_comment, sym_include, - ACTIONS(3349), 29, + ACTIONS(3398), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -178783,22 +177700,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148218] = 6, + [145417] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3720), 1, + ACTIONS(3618), 1, ts_builtin_sym_end, - STATE(1974), 2, + STATE(1906), 2, sym_comment, sym_include, - ACTIONS(3347), 29, + ACTIONS(3398), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -178825,22 +177743,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148266] = 6, + [145466] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3722), 1, - ts_builtin_sym_end, - STATE(1975), 2, + STATE(1907), 2, sym_comment, sym_include, - ACTIONS(3345), 29, + ACTIONS(3211), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -178867,63 +177785,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148314] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3726), 1, - sym__escaped_string, - STATE(1976), 2, - sym_comment, - sym_include, - ACTIONS(3724), 30, - anon_sym_COLON, - 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [148360] = 6, + [145513] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3728), 1, - ts_builtin_sym_end, - STATE(1977), 2, + STATE(1908), 2, sym_comment, sym_include, - ACTIONS(3400), 29, + ACTIONS(3390), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -178950,22 +177827,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148408] = 6, + [145560] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3730), 1, - ts_builtin_sym_end, - STATE(1978), 2, + STATE(1909), 2, sym_comment, sym_include, - ACTIONS(3341), 29, + ACTIONS(3257), 31, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -178992,22 +177869,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148456] = 6, + [145607] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3732), 1, + ACTIONS(3620), 1, ts_builtin_sym_end, - STATE(1979), 2, + STATE(1910), 2, sym_comment, sym_include, - ACTIONS(3339), 29, + ACTIONS(3304), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -179034,22 +177912,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148504] = 6, + [145656] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3734), 1, + ACTIONS(3622), 1, ts_builtin_sym_end, - STATE(1980), 2, + STATE(1911), 2, sym_comment, sym_include, - ACTIONS(3337), 29, + ACTIONS(3302), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -179076,22 +177955,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148552] = 6, + [145705] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3736), 1, + ACTIONS(3624), 1, ts_builtin_sym_end, - STATE(1981), 2, + STATE(1912), 2, sym_comment, sym_include, - ACTIONS(3335), 29, + ACTIONS(3300), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -179118,22 +177998,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148600] = 6, + [145754] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3738), 1, + ACTIONS(3626), 1, ts_builtin_sym_end, - STATE(1982), 2, + STATE(1913), 2, sym_comment, sym_include, - ACTIONS(3333), 29, + ACTIONS(3183), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -179160,22 +178041,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148648] = 6, + [145803] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3740), 1, + ACTIONS(3628), 1, ts_builtin_sym_end, - STATE(1983), 2, + STATE(1914), 2, sym_comment, sym_include, - ACTIONS(3331), 29, + ACTIONS(3185), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -179202,22 +178084,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148696] = 6, + [145852] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3742), 1, + ACTIONS(3630), 1, ts_builtin_sym_end, - STATE(1984), 2, + STATE(1915), 2, sym_comment, sym_include, - ACTIONS(3329), 29, + ACTIONS(3191), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -179244,22 +178127,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148744] = 6, + [145901] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3744), 1, + ACTIONS(3632), 1, ts_builtin_sym_end, - STATE(1985), 2, + STATE(1916), 2, sym_comment, sym_include, - ACTIONS(3327), 29, + ACTIONS(3298), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -179286,22 +178170,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148792] = 6, + [145950] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3746), 1, + ACTIONS(3634), 1, ts_builtin_sym_end, - STATE(1986), 2, + STATE(1917), 2, sym_comment, sym_include, - ACTIONS(3325), 29, + ACTIONS(3296), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -179328,22 +178213,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148840] = 6, + [145999] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3748), 1, + ACTIONS(3636), 1, ts_builtin_sym_end, - STATE(1987), 2, + STATE(1918), 2, sym_comment, sym_include, - ACTIONS(3323), 29, + ACTIONS(3606), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -179370,274 +178256,261 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [148888] = 6, - ACTIONS(3), 1, + [146048] = 24, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3750), 1, - ts_builtin_sym_end, - STATE(1988), 2, + ACTIONS(3638), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(3640), 1, + aux_sym_dataset_expression_token1, + ACTIONS(3642), 1, + aux_sym_input_expression_token1, + ACTIONS(3644), 1, + aux_sym_variable_definition_token3, + ACTIONS(3646), 1, + aux_sym_variable_definition_token4, + ACTIONS(3648), 1, + aux_sym_buffer_definition_token1, + ACTIONS(3650), 1, + aux_sym_query_definition_token1, + ACTIONS(3654), 1, + aux_sym_stream_definition_token1, + ACTIONS(3658), 1, + aux_sym_button_definition_token1, + STATE(3189), 1, + sym_access_tuning, + STATE(3204), 1, + sym_scope_tuning, + STATE(3223), 1, + aux_sym_variable_definition_repeat1, + STATE(3301), 1, + aux_sym_buffer_definition_repeat1, + STATE(3366), 1, + sym_serialization_tuning, + STATE(3374), 1, + aux_sym_workfile_definition_repeat1, + ACTIONS(3077), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(3656), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(1919), 2, sym_comment, sym_include, - ACTIONS(3321), 29, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, + ACTIONS(3652), 3, aux_sym_return_type_token2, aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [148936] = 6, + aux_sym_argument_mode_token2, + ACTIONS(3073), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3075), 5, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + [146133] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3752), 1, - ts_builtin_sym_end, - STATE(1989), 2, + ACTIONS(2710), 1, + sym__namecolon, + STATE(1928), 1, + aux_sym_object_access_repeat1, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(1920), 2, sym_comment, sym_include, - ACTIONS(3319), 29, + ACTIONS(91), 27, + anon_sym_SLASH, sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [148984] = 6, + anon_sym_STAR, + sym__terminator, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [146186] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3754), 1, - ts_builtin_sym_end, - STATE(1990), 2, - sym_comment, - sym_include, - ACTIONS(3317), 29, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [149032] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3756), 1, - ts_builtin_sym_end, - STATE(1991), 2, + ACTIONS(2710), 1, + sym__namecolon, + STATE(1928), 1, + aux_sym_object_access_repeat1, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(1921), 2, sym_comment, sym_include, - ACTIONS(3315), 29, + ACTIONS(91), 27, + anon_sym_SLASH, sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [149080] = 6, + anon_sym_STAR, + sym__terminator, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [146239] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3758), 1, - ts_builtin_sym_end, - STATE(1992), 2, + ACTIONS(3660), 1, + sym__namecolon, + ACTIONS(93), 2, + sym__or_operator, + sym__and_operator, + STATE(1922), 3, sym_comment, sym_include, - ACTIONS(3313), 29, + aux_sym_object_access_repeat1, + ACTIONS(95), 27, + anon_sym_SLASH, sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [149128] = 6, - ACTIONS(3), 1, + anon_sym_STAR, + sym__terminator, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + [146290] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3728), 1, - ts_builtin_sym_end, - STATE(1993), 2, + ACTIONS(3665), 1, + aux_sym_variable_tuning_token2, + STATE(1923), 2, sym_comment, sym_include, - ACTIONS(3400), 29, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [149176] = 6, + ACTIONS(3663), 30, + sym__terminator, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_unary_expression_token2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_field_option_token1, + aux_sym_field_option_token2, + aux_sym_field_option_token3, + aux_sym_field_option_token4, + aux_sym_field_option_token5, + aux_sym_field_option_token6, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [146339] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3760), 1, + ACTIONS(3667), 1, ts_builtin_sym_end, - STATE(1994), 2, + STATE(1924), 2, sym_comment, sym_include, - ACTIONS(3281), 29, + ACTIONS(3193), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -179664,22 +178537,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [149224] = 6, + [146388] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3762), 1, + ACTIONS(3669), 1, ts_builtin_sym_end, - STATE(1995), 2, + STATE(1925), 2, sym_comment, sym_include, - ACTIONS(3301), 29, + ACTIONS(3195), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -179706,148 +178580,157 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [149272] = 6, + [146437] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3764), 1, - ts_builtin_sym_end, - STATE(1996), 2, + ACTIONS(2661), 1, + sym__namecolon, + STATE(1922), 1, + aux_sym_object_access_repeat1, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(1926), 2, sym_comment, sym_include, - ACTIONS(3299), 29, + ACTIONS(91), 27, + anon_sym_SLASH, sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [149320] = 6, + anon_sym_STAR, + sym__terminator, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + [146490] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3766), 1, - ts_builtin_sym_end, - STATE(1997), 2, + ACTIONS(2661), 1, + sym__namecolon, + STATE(1922), 1, + aux_sym_object_access_repeat1, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(1927), 2, sym_comment, sym_include, - ACTIONS(3297), 29, + ACTIONS(91), 27, + anon_sym_SLASH, sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [149368] = 6, + anon_sym_STAR, + sym__terminator, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + [146543] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3768), 1, - ts_builtin_sym_end, - STATE(1998), 2, + ACTIONS(3671), 1, + sym__namecolon, + ACTIONS(93), 2, + sym__or_operator, + sym__and_operator, + STATE(1928), 3, sym_comment, sym_include, - ACTIONS(3295), 29, + aux_sym_object_access_repeat1, + ACTIONS(95), 27, + anon_sym_SLASH, sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [149416] = 6, + anon_sym_STAR, + sym__terminator, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [146594] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3770), 1, + ACTIONS(3674), 1, ts_builtin_sym_end, - STATE(1999), 2, + STATE(1929), 2, sym_comment, sym_include, - ACTIONS(3285), 29, + ACTIONS(3207), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -179874,22 +178757,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [149464] = 6, + [146643] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3772), 1, + ACTIONS(3676), 1, ts_builtin_sym_end, - STATE(2000), 2, + STATE(1930), 2, sym_comment, sym_include, - ACTIONS(3283), 29, + ACTIONS(3237), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -179916,154 +178800,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [149512] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2001), 2, - sym_comment, - sym_include, - ACTIONS(3341), 29, - sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [149557] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3191), 1, - ts_builtin_sym_end, - STATE(2002), 2, - sym_comment, - sym_include, - ACTIONS(3193), 28, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [149604] = 6, + [146692] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3667), 1, - ts_builtin_sym_end, - STATE(2003), 2, + STATE(863), 1, + sym__logical_operator, + STATE(864), 1, + sym__additive_operator, + STATE(866), 1, + sym__multiplicative_operator, + STATE(867), 1, + sym__comparison_operator, + ACTIONS(230), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1931), 2, sym_comment, sym_include, - ACTIONS(3374), 28, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(232), 5, sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, + anon_sym_COMMA, + aux_sym_input_expression_token2, aux_sym_do_block_token1, - aux_sym__case_terminator_token1, - aux_sym_find_statement_token1, - aux_sym_assign_statement_token1, - aux_sym_catch_statement_token1, - aux_sym_finally_statement_token1, - aux_sym_accumulate_statement_token1, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [149651] = 8, + aux_sym_widget_field_token1, + ACTIONS(1090), 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, + [146755] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2671), 1, - sym__namedot, - STATE(2207), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(106), 2, + STATE(863), 1, + sym__logical_operator, + STATE(864), 1, + sym__additive_operator, + STATE(866), 1, + sym__multiplicative_operator, + STATE(867), 1, + sym__comparison_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2004), 2, + STATE(1932), 2, sym_comment, sym_include, - ACTIONS(108), 25, + ACTIONS(1086), 3, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1123), 5, + sym_identifier, anon_sym_COMMA, aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -180079,41 +178900,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [149702] = 13, + [146818] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, + STATE(863), 1, + sym__logical_operator, + STATE(864), 1, + sym__additive_operator, + STATE(866), 1, + sym__multiplicative_operator, STATE(867), 1, sym__comparison_operator, - STATE(868), 1, - sym__multiplicative_operator, - STATE(869), 1, - sym__additive_operator, - STATE(870), 1, - sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2005), 2, + STATE(1933), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1197), 3, + ACTIONS(1190), 5, sym_identifier, - sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(1079), 15, + anon_sym_COMMA, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -180129,39 +178950,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [149763] = 13, + [146881] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(857), 1, - sym__comparison_operator, - STATE(860), 1, - sym__multiplicative_operator, STATE(863), 1, - sym__additive_operator, - STATE(864), 1, sym__logical_operator, - ACTIONS(1077), 2, + STATE(864), 1, + sym__additive_operator, + STATE(866), 1, + sym__multiplicative_operator, + STATE(867), 1, + sym__comparison_operator, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2006), 2, + STATE(1934), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(3774), 3, + ACTIONS(1206), 5, sym_identifier, - sym__terminator, anon_sym_COMMA, - ACTIONS(1079), 15, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -180177,39 +179000,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [149824] = 13, + [146944] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, + STATE(863), 1, + sym__logical_operator, + STATE(864), 1, + sym__additive_operator, + STATE(866), 1, + sym__multiplicative_operator, STATE(867), 1, sym__comparison_operator, - STATE(868), 1, - sym__multiplicative_operator, - STATE(869), 1, - sym__additive_operator, - STATE(870), 1, - sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2007), 2, + STATE(1935), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1104), 3, + ACTIONS(1111), 5, sym_identifier, - sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(1079), 15, + anon_sym_COMMA, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -180225,39 +179050,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [149885] = 13, + [147007] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, + STATE(863), 1, + sym__logical_operator, + STATE(864), 1, + sym__additive_operator, + STATE(866), 1, + sym__multiplicative_operator, STATE(867), 1, sym__comparison_operator, - STATE(868), 1, - sym__multiplicative_operator, - STATE(869), 1, - sym__additive_operator, - STATE(870), 1, - sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2008), 2, + STATE(1936), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1189), 3, + ACTIONS(1198), 5, sym_identifier, - sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(1079), 15, + anon_sym_COMMA, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -180273,28 +179100,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [149946] = 6, + [147070] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3700), 1, + ACTIONS(3678), 1, ts_builtin_sym_end, - STATE(2009), 2, + STATE(1937), 2, sym_comment, sym_include, - ACTIONS(3279), 28, + ACTIONS(3213), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, + aux_sym_else_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_terminator_token1, @@ -180314,39 +179143,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [149993] = 13, + [147119] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(867), 1, + ACTIONS(3680), 1, + ts_builtin_sym_end, + STATE(1938), 2, + sym_comment, + sym_include, + ACTIONS(3215), 30, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [147168] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(891), 1, sym__comparison_operator, - STATE(868), 1, + STATE(892), 1, sym__multiplicative_operator, - STATE(869), 1, + STATE(893), 1, sym__additive_operator, - STATE(870), 1, + STATE(894), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2010), 2, + STATE(1939), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1185), 3, + ACTIONS(1202), 5, sym_identifier, sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(1079), 15, + anon_sym_COMMA, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -180362,39 +179236,102 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [150054] = 13, + [147231] = 24, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3682), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(3684), 1, + aux_sym_dataset_expression_token1, + ACTIONS(3686), 1, + aux_sym_input_expression_token1, + ACTIONS(3688), 1, + aux_sym_variable_definition_token3, + ACTIONS(3690), 1, + aux_sym_variable_definition_token4, + ACTIONS(3692), 1, + aux_sym_buffer_definition_token1, + ACTIONS(3694), 1, + aux_sym_query_definition_token1, + ACTIONS(3698), 1, + aux_sym_stream_definition_token1, + ACTIONS(3702), 1, + aux_sym_button_definition_token1, + STATE(3176), 1, + sym_access_tuning, + STATE(3204), 1, + sym_scope_tuning, + STATE(3246), 1, + aux_sym_variable_definition_repeat1, + STATE(3348), 1, + aux_sym_buffer_definition_repeat1, + STATE(3366), 1, + sym_serialization_tuning, + STATE(3370), 1, + aux_sym_workfile_definition_repeat1, + ACTIONS(3077), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(3700), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(1940), 2, + sym_comment, + sym_include, + ACTIONS(3696), 3, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_argument_mode_token2, + ACTIONS(3073), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3075), 5, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + [147316] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(867), 1, + STATE(891), 1, sym__comparison_operator, - STATE(868), 1, + STATE(892), 1, sym__multiplicative_operator, - STATE(869), 1, + STATE(893), 1, sym__additive_operator, - STATE(870), 1, + STATE(894), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1212), 2, sym__or_operator, sym__and_operator, - STATE(2011), 2, + STATE(1941), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1181), 3, + ACTIONS(1210), 5, sym_identifier, sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(1079), 15, + anon_sym_COMMA, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -180410,87 +179347,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [150115] = 6, + [147379] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3698), 1, - ts_builtin_sym_end, - STATE(2012), 2, - sym_comment, - sym_include, - ACTIONS(3277), 28, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [150162] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(431), 1, - sym__logical_operator, - STATE(433), 1, - sym__additive_operator, - STATE(434), 1, - sym__multiplicative_operator, - STATE(435), 1, + STATE(891), 1, sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + STATE(892), 1, + sym__multiplicative_operator, + STATE(893), 1, + sym__additive_operator, + STATE(894), 1, + sym__logical_operator, + ACTIONS(1216), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2013), 2, + STATE(1942), 2, sym_comment, sym_include, - ACTIONS(1112), 3, + ACTIONS(1214), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, anon_sym_COMMA, - aux_sym_of_token1, - aux_sym_on_statement_token1, - ACTIONS(2396), 13, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, @@ -180501,42 +179392,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [150227] = 13, - ACTIONS(65), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [147436] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(431), 1, - sym__logical_operator, - STATE(433), 1, - sym__additive_operator, - STATE(434), 1, - sym__multiplicative_operator, - STATE(435), 1, + STATE(891), 1, sym__comparison_operator, - ACTIONS(1177), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, + STATE(892), 1, + sym__multiplicative_operator, + STATE(893), 1, + sym__additive_operator, + STATE(894), 1, + sym__logical_operator, + ACTIONS(1121), 2, + sym__or_operator, + sym__and_operator, + STATE(1943), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(1119), 22, + sym_identifier, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2014), 2, - sym_comment, - sym_include, - ACTIONS(1179), 18, - sym__or_operator, - sym__and_operator, - anon_sym_COMMA, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -180547,41 +179440,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_of_token1, - aux_sym_on_statement_token1, - [150288] = 13, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [147495] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(867), 1, + STATE(891), 1, sym__comparison_operator, - STATE(868), 1, + STATE(892), 1, sym__multiplicative_operator, - STATE(869), 1, + STATE(893), 1, sym__additive_operator, - STATE(870), 1, + STATE(894), 1, sym__logical_operator, - ACTIONS(236), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2015), 2, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(1944), 2, sym_comment, sym_include, - ACTIONS(238), 3, - sym_identifier, - sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, + ACTIONS(1194), 5, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -180597,39 +179492,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [150349] = 10, - ACTIONS(65), 1, + [147558] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(431), 1, - sym__logical_operator, - STATE(433), 1, - sym__additive_operator, - STATE(434), 1, - sym__multiplicative_operator, - STATE(435), 1, + STATE(891), 1, sym__comparison_operator, - STATE(2016), 2, + STATE(892), 1, + sym__multiplicative_operator, + STATE(893), 1, + sym__additive_operator, + STATE(894), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(1945), 2, sym_comment, sym_include, - ACTIONS(1193), 3, + ACTIONS(1086), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1195), 22, - sym__or_operator, - sym__and_operator, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_token1, + ACTIONS(1115), 5, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + ACTIONS(1090), 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, @@ -180640,43 +179542,46 @@ 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_of_token1, - aux_sym_on_statement_token1, - [150404] = 12, - ACTIONS(65), 1, + [147621] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(431), 1, - sym__logical_operator, - STATE(433), 1, - sym__additive_operator, - STATE(434), 1, - sym__multiplicative_operator, - STATE(435), 1, + STATE(891), 1, sym__comparison_operator, - ACTIONS(1205), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(2017), 2, - sym_comment, - sym_include, - ACTIONS(1207), 20, + STATE(892), 1, + sym__multiplicative_operator, + STATE(893), 1, + sym__additive_operator, + STATE(894), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, + STATE(1946), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1198), 5, + sym_identifier, + sym__terminator, anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + ACTIONS(1090), 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, @@ -180687,34 +179592,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_of_token1, - aux_sym_on_statement_token1, - [150463] = 8, + [147684] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2671), 1, - sym__namedot, - STATE(2207), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(102), 2, + STATE(891), 1, + sym__comparison_operator, + STATE(892), 1, + sym__multiplicative_operator, + STATE(893), 1, + sym__additive_operator, + STATE(894), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2018), 2, + STATE(1947), 2, sym_comment, sym_include, - ACTIONS(104), 25, + ACTIONS(1086), 3, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_token1, + ACTIONS(1206), 5, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -180730,48 +179642,46 @@ 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_do_block_token1, - aux_sym_widget_field_token1, - [150514] = 15, - ACTIONS(65), 1, + [147747] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(431), 1, - sym__logical_operator, - STATE(433), 1, - sym__additive_operator, - STATE(434), 1, - sym__multiplicative_operator, - STATE(435), 1, + STATE(891), 1, sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + STATE(892), 1, + sym__multiplicative_operator, + STATE(893), 1, + sym__additive_operator, + STATE(894), 1, + sym__logical_operator, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2019), 2, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(1948), 2, sym_comment, sym_include, - ACTIONS(1203), 3, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1111), 5, + sym_identifier, + sym__terminator, anon_sym_COMMA, - aux_sym_of_token1, - aux_sym_on_statement_token1, - ACTIONS(2396), 13, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + ACTIONS(1090), 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, @@ -180782,28 +179692,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [150579] = 6, + [147810] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3665), 1, + ACTIONS(3704), 1, ts_builtin_sym_end, - STATE(2020), 2, + STATE(1949), 2, sym_comment, sym_include, - ACTIONS(3376), 28, + ACTIONS(3273), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, + aux_sym_else_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_terminator_token1, @@ -180823,76 +179735,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [150626] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(867), 1, - sym__comparison_operator, - STATE(868), 1, - sym__multiplicative_operator, - STATE(869), 1, - sym__additive_operator, - STATE(870), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(2021), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1100), 3, - sym_identifier, - sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(1079), 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, - [150687] = 6, + [147859] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3663), 1, + ACTIONS(3706), 1, ts_builtin_sym_end, - STATE(2022), 2, + STATE(1950), 2, sym_comment, sym_include, - ACTIONS(3378), 28, + ACTIONS(3271), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, + aux_sym_else_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_terminator_token1, @@ -180912,89 +179778,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [150734] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(431), 1, - sym__logical_operator, - STATE(433), 1, - sym__additive_operator, - STATE(434), 1, - sym__multiplicative_operator, - STATE(435), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2023), 2, - sym_comment, - sym_include, - ACTIONS(1102), 3, - anon_sym_COMMA, - aux_sym_of_token1, - aux_sym_on_statement_token1, - ACTIONS(2396), 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, - [150799] = 13, + [147908] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(867), 1, + STATE(891), 1, sym__comparison_operator, - STATE(868), 1, + STATE(892), 1, sym__multiplicative_operator, - STATE(869), 1, + STATE(893), 1, sym__additive_operator, - STATE(870), 1, + STATE(894), 1, sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(230), 2, sym__or_operator, sym__and_operator, - STATE(2024), 2, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1951), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1201), 3, + ACTIONS(232), 5, sym_identifier, sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(1079), 15, + anon_sym_COMMA, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -181010,28 +179828,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [150860] = 6, + [147971] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3578), 1, + ACTIONS(3708), 1, ts_builtin_sym_end, - STATE(2025), 2, + STATE(1952), 2, sym_comment, sym_include, - ACTIONS(3424), 28, + ACTIONS(3269), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, + aux_sym_else_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_terminator_token1, @@ -181051,130 +179871,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [150907] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(867), 1, - sym__comparison_operator, - STATE(868), 1, - sym__multiplicative_operator, - STATE(869), 1, - sym__additive_operator, - STATE(870), 1, - sym__logical_operator, - ACTIONS(1207), 2, - sym__or_operator, - sym__and_operator, - STATE(2026), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1205), 20, - sym_identifier, - 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, - [150964] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(867), 1, - sym__comparison_operator, - STATE(868), 1, - sym__multiplicative_operator, - STATE(869), 1, - sym__additive_operator, - STATE(870), 1, - sym__logical_operator, - ACTIONS(1195), 2, - sym__or_operator, - sym__and_operator, - STATE(2027), 2, - sym_comment, - sym_include, - ACTIONS(1193), 23, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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, - anon_sym_NO_DASHERROR, - [151019] = 9, + [148020] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3578), 1, + ACTIONS(3710), 1, ts_builtin_sym_end, - ACTIONS(3776), 1, - aux_sym_buffer_definition_token2, - ACTIONS(3778), 1, - aux_sym_repeat_statement_token1, - ACTIONS(3780), 1, - aux_sym_do_block_token1, - STATE(2028), 2, + STATE(1953), 2, sym_comment, sym_include, - ACTIONS(3424), 25, + ACTIONS(3267), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, + aux_sym_else_statement_token1, + aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_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, @@ -181186,28 +179914,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151072] = 6, + [148069] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3586), 1, + ACTIONS(3712), 1, ts_builtin_sym_end, - STATE(2029), 2, + STATE(1954), 2, sym_comment, sym_include, - ACTIONS(3422), 28, + ACTIONS(3265), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, + aux_sym_else_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_terminator_token1, @@ -181227,28 +179957,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151119] = 6, + [148118] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3782), 1, + ACTIONS(3714), 1, ts_builtin_sym_end, - STATE(2030), 2, + STATE(1955), 2, sym_comment, sym_include, - ACTIONS(3784), 28, + ACTIONS(3263), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, + aux_sym_else_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_terminator_token1, @@ -181268,125 +180000,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151166] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(431), 1, - sym__logical_operator, - STATE(433), 1, - sym__additive_operator, - STATE(434), 1, - sym__multiplicative_operator, - STATE(435), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2031), 2, - sym_comment, - sym_include, - ACTIONS(1199), 3, - anon_sym_COMMA, - aux_sym_of_token1, - aux_sym_on_statement_token1, - ACTIONS(2396), 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, - [151231] = 12, + [148167] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(867), 1, - sym__comparison_operator, - STATE(868), 1, - sym__multiplicative_operator, - STATE(869), 1, - sym__additive_operator, - STATE(870), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1179), 2, - sym__or_operator, - sym__and_operator, - STATE(2032), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1177), 18, - sym_identifier, - sym__terminator, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_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, - [151290] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3669), 1, + ACTIONS(3716), 1, ts_builtin_sym_end, - STATE(2033), 2, + STATE(1956), 2, sym_comment, sym_include, - ACTIONS(3372), 28, + ACTIONS(3247), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, + aux_sym_else_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_terminator_token1, @@ -181406,27 +180043,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151337] = 5, + [148216] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2034), 2, + ACTIONS(3718), 1, + ts_builtin_sym_end, + STATE(1957), 2, sym_comment, sym_include, - ACTIONS(3123), 29, + ACTIONS(3243), 30, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, + aux_sym_else_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_terminator_token1, @@ -181446,71 +180086,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151382] = 8, + [148265] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2669), 1, - anon_sym_LPAREN, - STATE(2476), 1, - sym_function_arguments, - ACTIONS(83), 2, - sym__or_operator, - sym__and_operator, - STATE(2035), 2, + ACTIONS(3720), 1, + ts_builtin_sym_end, + STATE(1958), 2, sym_comment, sym_include, - ACTIONS(85), 25, - anon_sym_SLASH, + ACTIONS(3241), 30, sym_identifier, - anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, - [151433] = 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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [148314] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3492), 1, + ACTIONS(3722), 1, ts_builtin_sym_end, - STATE(2036), 2, + STATE(1959), 2, sym_comment, sym_include, - ACTIONS(3053), 28, + ACTIONS(3239), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, + aux_sym_else_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_terminator_token1, @@ -181530,28 +180172,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151480] = 6, + [148363] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3655), 1, + ACTIONS(3724), 1, ts_builtin_sym_end, - STATE(2037), 2, + STATE(1960), 2, sym_comment, sym_include, - ACTIONS(3384), 28, + ACTIONS(3235), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, + aux_sym_else_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_terminator_token1, @@ -181571,28 +180215,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151527] = 6, + [148412] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3494), 1, + ACTIONS(3726), 1, ts_builtin_sym_end, - STATE(2038), 2, + STATE(1961), 2, sym_comment, sym_include, - ACTIONS(3051), 28, + ACTIONS(3233), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, + aux_sym_else_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_terminator_token1, @@ -181612,28 +180258,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151574] = 6, + [148461] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3653), 1, + ACTIONS(3728), 1, ts_builtin_sym_end, - STATE(2039), 2, + STATE(1962), 2, sym_comment, sym_include, - ACTIONS(3386), 28, + ACTIONS(3231), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, + aux_sym_else_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_terminator_token1, @@ -181653,28 +180301,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151621] = 6, + [148510] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3651), 1, + ACTIONS(3730), 1, ts_builtin_sym_end, - STATE(2040), 2, + STATE(1963), 2, sym_comment, sym_include, - ACTIONS(3388), 28, + ACTIONS(3229), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, + aux_sym_else_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_terminator_token1, @@ -181694,28 +180344,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151668] = 6, + [148559] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3649), 1, + ACTIONS(3732), 1, ts_builtin_sym_end, - STATE(2041), 2, + STATE(1964), 2, sym_comment, sym_include, - ACTIONS(3390), 28, + ACTIONS(3227), 30, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, + aux_sym_else_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_terminator_token1, @@ -181735,103 +180387,286 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151715] = 29, - ACTIONS(65), 1, + [148608] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, + STATE(891), 1, + sym__comparison_operator, + STATE(892), 1, + sym__multiplicative_operator, + STATE(893), 1, + sym__additive_operator, + STATE(894), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(1965), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1123), 5, + sym_identifier, + sym__terminator, anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(2911), 1, - sym_of, - STATE(3007), 1, - sym__pre_tuning, - STATE(3057), 1, - aux_sym_for_phrase_repeat1, - STATE(3071), 1, - sym_where_clause, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3459), 1, - aux_sym_for_phrase_repeat2, - STATE(4196), 1, - sym_on_error_phrase, - STATE(4377), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4971), 1, - aux_sym_for_statement_repeat1, - STATE(4992), 1, - sym_on_stop_phrase, - STATE(5731), 1, - sym_body, - STATE(2042), 2, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + ACTIONS(1090), 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, + [148671] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(863), 1, + sym__logical_operator, + STATE(864), 1, + sym__additive_operator, + STATE(866), 1, + sym__multiplicative_operator, + STATE(867), 1, + sym__comparison_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(1966), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [151808] = 13, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1115), 5, + sym_identifier, + anon_sym_COMMA, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(1090), 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, + [148734] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, + STATE(863), 1, + sym__logical_operator, + STATE(864), 1, + sym__additive_operator, + STATE(866), 1, + sym__multiplicative_operator, STATE(867), 1, sym__comparison_operator, - STATE(868), 1, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(1967), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1194), 5, + sym_identifier, + anon_sym_COMMA, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(1090), 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, + [148797] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(863), 1, + sym__logical_operator, + STATE(864), 1, + sym__additive_operator, + STATE(866), 1, sym__multiplicative_operator, - STATE(869), 1, + STATE(867), 1, + sym__comparison_operator, + ACTIONS(1121), 2, + sym__or_operator, + sym__and_operator, + STATE(1968), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1119), 22, + sym_identifier, + anon_sym_COMMA, + 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, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [148856] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(863), 1, + sym__logical_operator, + STATE(864), 1, sym__additive_operator, - STATE(870), 1, + STATE(866), 1, + sym__multiplicative_operator, + STATE(867), 1, + sym__comparison_operator, + ACTIONS(1216), 2, + sym__or_operator, + sym__and_operator, + STATE(1969), 2, + sym_comment, + sym_include, + ACTIONS(1214), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + anon_sym_COMMA, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_do_block_token1, + aux_sym_widget_field_token1, + [148913] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(863), 1, sym__logical_operator, - ACTIONS(1077), 2, + STATE(864), 1, + sym__additive_operator, + STATE(866), 1, + sym__multiplicative_operator, + STATE(867), 1, + sym__comparison_operator, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1212), 2, sym__or_operator, sym__and_operator, - STATE(2043), 2, + STATE(1970), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1110), 3, + ACTIONS(1210), 5, sym_identifier, - sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(1079), 15, + anon_sym_COMMA, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -181847,22 +180682,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [151869] = 6, + [148976] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3057), 1, + STATE(1971), 2, + sym_comment, + sym_include, + ACTIONS(3159), 30, + sym_identifier, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [149022] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3634), 1, ts_builtin_sym_end, - STATE(2044), 2, + STATE(1972), 2, sym_comment, sym_include, - ACTIONS(3059), 28, + ACTIONS(3296), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -181888,46 +180765,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [151916] = 15, - ACTIONS(65), 1, + [149070] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(431), 1, - sym__logical_operator, - STATE(433), 1, - sym__additive_operator, - STATE(434), 1, - sym__multiplicative_operator, - STATE(435), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(2736), 1, + sym__namecolon, + STATE(1988), 1, + aux_sym_object_access_repeat1, + ACTIONS(89), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2045), 2, + STATE(1973), 2, sym_comment, sym_include, - ACTIONS(1106), 3, + ACTIONS(91), 26, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_LBRACK, anon_sym_COMMA, - aux_sym_of_token1, - aux_sym_on_statement_token1, - ACTIONS(2396), 13, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, @@ -181938,22 +180808,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [151981] = 6, + aux_sym_scope_tuning_token1, + [149122] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3736), 1, + sym__escaped_string, + STATE(1974), 2, + sym_comment, + sym_include, + ACTIONS(3734), 30, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_type_tuning_token1, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_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, + aux_sym_field_definition_token1, + aux_sym_index_tuning_token1, + aux_sym_index_definition_token1, + [149168] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3061), 1, + ACTIONS(2853), 1, ts_builtin_sym_end, - STATE(2046), 2, + STATE(1975), 2, sym_comment, sym_include, - ACTIONS(3063), 28, + ACTIONS(2855), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -181979,22 +180892,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152028] = 6, + [149216] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2736), 1, + sym__namecolon, + STATE(1988), 1, + aux_sym_object_access_repeat1, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(1976), 2, + sym_comment, + sym_include, + ACTIONS(91), 26, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, + [149268] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3065), 1, + ACTIONS(3350), 1, ts_builtin_sym_end, - STATE(2047), 2, + STATE(1977), 2, sym_comment, sym_include, - ACTIONS(3067), 28, + ACTIONS(3352), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -182020,22 +180978,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152075] = 6, + [149316] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3091), 1, + ACTIONS(3584), 1, ts_builtin_sym_end, - STATE(2048), 2, + STATE(1978), 2, sym_comment, sym_include, - ACTIONS(3093), 28, + ACTIONS(3358), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -182061,36 +181020,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152122] = 6, + [149364] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3095), 1, + ACTIONS(3584), 1, ts_builtin_sym_end, - STATE(2049), 2, + ACTIONS(3738), 1, + aux_sym_buffer_definition_token2, + ACTIONS(3740), 1, + aux_sym_repeat_statement_token1, + ACTIONS(3742), 1, + aux_sym_do_block_token1, + STATE(1979), 2, sym_comment, sym_include, - ACTIONS(3097), 28, + ACTIONS(3358), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_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, @@ -182102,22 +181065,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152169] = 6, + [149418] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3496), 1, + ACTIONS(3592), 1, ts_builtin_sym_end, - STATE(2050), 2, + STATE(1980), 2, sym_comment, sym_include, - ACTIONS(3049), 28, + ACTIONS(3356), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -182143,22 +181107,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152216] = 6, + [149466] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3099), 1, + ACTIONS(3744), 1, ts_builtin_sym_end, - STATE(2051), 2, + STATE(1981), 2, sym_comment, sym_include, - ACTIONS(3101), 28, + ACTIONS(3746), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -182184,121 +181149,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152263] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(431), 1, - sym__logical_operator, - STATE(433), 1, - sym__additive_operator, - STATE(434), 1, - sym__multiplicative_operator, - STATE(435), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2052), 2, - sym_comment, - sym_include, - ACTIONS(1191), 3, - anon_sym_COMMA, - aux_sym_of_token1, - aux_sym_on_statement_token1, - ACTIONS(2396), 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, - [152328] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(431), 1, - sym__logical_operator, - STATE(433), 1, - sym__additive_operator, - STATE(434), 1, - sym__multiplicative_operator, - STATE(435), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2053), 2, - sym_comment, - sym_include, - ACTIONS(1187), 3, - anon_sym_COMMA, - aux_sym_of_token1, - aux_sym_on_statement_token1, - ACTIONS(2396), 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, - [152393] = 5, + [149514] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2054), 2, + ACTIONS(3466), 1, + ts_builtin_sym_end, + STATE(1982), 2, sym_comment, sym_include, - ACTIONS(3245), 29, + ACTIONS(2857), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -182324,121 +181191,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152438] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(431), 1, - sym__logical_operator, - STATE(433), 1, - sym__additive_operator, - STATE(434), 1, - sym__multiplicative_operator, - STATE(435), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2055), 2, - sym_comment, - sym_include, - ACTIONS(1183), 3, - anon_sym_COMMA, - aux_sym_of_token1, - aux_sym_on_statement_token1, - ACTIONS(2396), 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, - [152503] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(431), 1, - sym__logical_operator, - STATE(433), 1, - sym__additive_operator, - STATE(434), 1, - sym__multiplicative_operator, - STATE(435), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2056), 2, - sym_comment, - sym_include, - ACTIONS(236), 5, - sym__or_operator, - sym__and_operator, - anon_sym_COMMA, - aux_sym_of_token1, - aux_sym_on_statement_token1, - ACTIONS(2396), 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, - [152566] = 6, + [149562] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3488), 1, + ACTIONS(3464), 1, ts_builtin_sym_end, - STATE(2057), 2, + STATE(1983), 2, sym_comment, sym_include, - ACTIONS(3103), 28, + ACTIONS(2947), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -182464,21 +181233,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152613] = 5, + [149610] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2058), 2, + ACTIONS(2951), 1, + ts_builtin_sym_end, + STATE(1984), 2, sym_comment, sym_include, - ACTIONS(3243), 29, + ACTIONS(2953), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -182504,21 +181275,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152658] = 5, + [149658] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2059), 2, + ACTIONS(3468), 1, + ts_builtin_sym_end, + STATE(1985), 2, sym_comment, sym_include, - ACTIONS(3241), 29, + ACTIONS(2859), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -182544,61 +181317,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152703] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2060), 2, - sym_comment, - sym_include, - ACTIONS(124), 3, - sym__namecolon, - sym__or_operator, - sym__and_operator, - ACTIONS(126), 27, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_include_argument_token1, - [152748] = 5, + [149706] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2061), 2, + ACTIONS(2957), 1, + ts_builtin_sym_end, + STATE(1986), 2, sym_comment, sym_include, - ACTIONS(3235), 29, + ACTIONS(2959), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -182624,21 +181359,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152793] = 5, + [149754] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2062), 2, + ACTIONS(3484), 1, + ts_builtin_sym_end, + STATE(1987), 2, sym_comment, sym_include, - ACTIONS(3233), 29, + ACTIONS(2875), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -182664,21 +181401,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152838] = 5, + [149802] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2063), 2, + ACTIONS(3748), 1, + sym__namecolon, + ACTIONS(93), 2, + sym__or_operator, + sym__and_operator, + STATE(1988), 3, sym_comment, sym_include, - ACTIONS(3231), 29, + aux_sym_object_access_repeat1, + ACTIONS(95), 26, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, + [149852] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2963), 1, + ts_builtin_sym_end, + STATE(1989), 2, + sym_comment, + sym_include, + ACTIONS(2965), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -182704,66 +181486,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152883] = 9, + [149900] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(3798), 1, - aux_sym_input_expression_token2, - STATE(22), 1, - sym_qualified_name, - ACTIONS(1351), 2, - sym__or_operator, - sym__and_operator, - STATE(2064), 2, - sym_comment, - sym_include, - ACTIONS(1347), 24, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - [152936] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3486), 1, + ACTIONS(2933), 1, ts_builtin_sym_end, - STATE(2065), 2, + STATE(1990), 2, sym_comment, sym_include, - ACTIONS(3105), 28, + ACTIONS(2935), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -182789,30 +181528,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [152983] = 8, + [149948] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2737), 1, - sym__namecolon, - STATE(2148), 1, - aux_sym_object_access_repeat1, - ACTIONS(94), 2, + ACTIONS(2471), 1, + sym_identifier, + STATE(32), 1, + sym_qualified_name, + ACTIONS(1581), 2, sym__or_operator, sym__and_operator, - STATE(2066), 2, + STATE(1991), 2, sym_comment, sym_include, - ACTIONS(96), 25, + ACTIONS(1579), 26, + anon_sym_COLON, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, - sym__terminator, - anon_sym_LBRACK, - anon_sym_LPAREN, + aux_sym__block_terminator_token1, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -182831,23 +181568,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_NO_DASHERROR, - [153034] = 6, + aux_sym_while_phrase_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + anon_sym_BY, + [150000] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3588), 1, + ACTIONS(3470), 1, ts_builtin_sym_end, - STATE(2067), 2, + STATE(1992), 2, sym_comment, sym_include, - ACTIONS(3247), 28, + ACTIONS(2861), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -182873,22 +181614,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153081] = 6, + [150048] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3590), 1, + ACTIONS(3594), 1, ts_builtin_sym_end, - STATE(2068), 2, + STATE(1993), 2, sym_comment, sym_include, - ACTIONS(3420), 28, + ACTIONS(3287), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -182914,21 +181656,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153128] = 5, + [150096] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2069), 2, + ACTIONS(2971), 1, + ts_builtin_sym_end, + STATE(1994), 2, sym_comment, sym_include, - ACTIONS(3229), 29, + ACTIONS(2973), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -182954,21 +181698,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153173] = 5, + [150144] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2070), 2, + ACTIONS(3596), 1, + ts_builtin_sym_end, + STATE(1995), 2, sym_comment, sym_include, - ACTIONS(3227), 29, + ACTIONS(3354), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -182994,21 +181740,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153218] = 5, + [150192] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2071), 2, + STATE(1996), 2, sym_comment, sym_include, - ACTIONS(3223), 29, + ACTIONS(3039), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -183034,61 +181781,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153263] = 5, + [150238] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2072), 2, + ACTIONS(3751), 1, + sym__namecolon, + ACTIONS(93), 2, + sym__or_operator, + sym__and_operator, + STATE(1997), 3, sym_comment, sym_include, - ACTIONS(3209), 29, + aux_sym_object_access_repeat1, + ACTIONS(95), 26, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [153308] = 5, + anon_sym_STAR, + sym__terminator, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, + anon_sym_NO_DASHERROR, + [150288] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2073), 2, + ACTIONS(3472), 1, + ts_builtin_sym_end, + STATE(1998), 2, sym_comment, sym_include, - ACTIONS(3165), 29, + ACTIONS(2863), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -183114,21 +181866,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153353] = 5, + [150336] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2074), 2, + ACTIONS(2975), 1, + ts_builtin_sym_end, + STATE(1999), 2, sym_comment, sym_include, - ACTIONS(3161), 29, + ACTIONS(2977), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -183154,21 +181908,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153398] = 5, + [150384] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2075), 2, + ACTIONS(3474), 1, + ts_builtin_sym_end, + STATE(2000), 2, sym_comment, sym_include, - ACTIONS(3157), 29, + ACTIONS(2865), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -183194,21 +181950,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153443] = 5, + [150432] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2076), 2, + ACTIONS(3476), 1, + ts_builtin_sym_end, + STATE(2001), 2, sym_comment, sym_include, - ACTIONS(3155), 29, + ACTIONS(2867), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -183234,21 +181992,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153488] = 5, + [150480] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2077), 2, + ACTIONS(2684), 1, + anon_sym_LBRACK, + ACTIONS(2686), 1, + anon_sym_LPAREN, + STATE(2457), 1, + sym_function_arguments, + ACTIONS(65), 2, + sym__or_operator, + sym__and_operator, + STATE(2002), 2, sym_comment, sym_include, - ACTIONS(3153), 29, + ACTIONS(71), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + anon_sym_COMMA, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_do_block_token1, + aux_sym_widget_field_token1, + [150534] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3460), 1, + ts_builtin_sym_end, + STATE(2003), 2, + sym_comment, + sym_include, + ACTIONS(2979), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -183274,21 +182079,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153533] = 5, + [150582] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2078), 2, + ACTIONS(3478), 1, + ts_builtin_sym_end, + STATE(2004), 2, sym_comment, sym_include, - ACTIONS(3151), 29, + ACTIONS(2869), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -183314,21 +182121,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153578] = 5, + [150630] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2079), 2, + ACTIONS(3480), 1, + ts_builtin_sym_end, + STATE(2005), 2, sym_comment, sym_include, - ACTIONS(2973), 29, + ACTIONS(2871), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -183354,21 +182163,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153623] = 5, + [150678] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2080), 2, + ACTIONS(3482), 1, + ts_builtin_sym_end, + STATE(2006), 2, sym_comment, sym_include, - ACTIONS(3149), 29, + ACTIONS(2873), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -183394,21 +182205,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153668] = 5, + [150726] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2081), 2, + ACTIONS(3486), 1, + ts_builtin_sym_end, + STATE(2007), 2, sym_comment, sym_include, - ACTIONS(3145), 29, + ACTIONS(2877), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -183434,21 +182247,111 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153713] = 5, + [150774] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2082), 2, + ACTIONS(2750), 1, + sym__namecolon, + STATE(1997), 1, + aux_sym_object_access_repeat1, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(2008), 2, sym_comment, sym_include, - ACTIONS(3143), 29, + ACTIONS(91), 26, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, + anon_sym_NO_DASHERROR, + [150826] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2750), 1, + sym__namecolon, + STATE(1997), 1, + aux_sym_object_access_repeat1, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(2009), 2, + sym_comment, + sym_include, + ACTIONS(91), 26, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, + anon_sym_NO_DASHERROR, + [150878] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3458), 1, + ts_builtin_sym_end, + STATE(2010), 2, + sym_comment, + sym_include, + ACTIONS(2981), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -183474,21 +182377,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153758] = 5, + [150926] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2083), 2, + STATE(2011), 2, sym_comment, sym_include, - ACTIONS(3141), 29, + ACTIONS(3283), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -183514,21 +182418,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153803] = 5, + [150972] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2084), 2, + STATE(815), 1, + sym__comparison_operator, + STATE(816), 1, + sym__multiplicative_operator, + STATE(817), 1, + sym__additive_operator, + STATE(818), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(2012), 2, sym_comment, sym_include, - ACTIONS(3137), 29, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(3754), 4, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + aux_sym_scope_tuning_token1, + ACTIONS(1090), 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, + [151034] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3488), 1, + ts_builtin_sym_end, + STATE(2013), 2, + sym_comment, + sym_include, + ACTIONS(2879), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -183554,21 +182509,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153848] = 5, + [151082] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2085), 2, + ACTIONS(3490), 1, + ts_builtin_sym_end, + STATE(2014), 2, sym_comment, sym_include, - ACTIONS(3135), 29, + ACTIONS(2881), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -183594,21 +182551,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153893] = 5, + [151130] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2086), 2, + ACTIONS(3492), 1, + ts_builtin_sym_end, + STATE(2015), 2, sym_comment, sym_include, - ACTIONS(3133), 29, + ACTIONS(2883), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -183634,22 +182593,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153938] = 6, + [151178] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3484), 1, + STATE(815), 1, + sym__comparison_operator, + STATE(816), 1, + sym__multiplicative_operator, + STATE(817), 1, + sym__additive_operator, + STATE(818), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(2016), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1202), 4, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + aux_sym_scope_tuning_token1, + ACTIONS(1090), 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, + [151240] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3225), 1, ts_builtin_sym_end, - STATE(2087), 2, + STATE(2017), 2, sym_comment, sym_include, - ACTIONS(3107), 28, + ACTIONS(2983), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -183675,22 +182684,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [153985] = 6, + [151288] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3498), 1, - ts_builtin_sym_end, - STATE(2088), 2, + STATE(2018), 2, sym_comment, sym_include, - ACTIONS(3047), 28, + ACTIONS(3281), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -183716,22 +182725,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154032] = 6, + [151334] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3500), 1, - ts_builtin_sym_end, - STATE(2089), 2, + STATE(2019), 2, sym_comment, sym_include, - ACTIONS(3045), 28, + ACTIONS(3279), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -183757,21 +182766,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154079] = 5, + [151380] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2090), 2, + STATE(2020), 2, sym_comment, sym_include, - ACTIONS(3131), 29, + ACTIONS(3277), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -183797,21 +182807,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154124] = 5, + [151426] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2091), 2, + STATE(2021), 2, sym_comment, sym_include, - ACTIONS(3127), 29, + ACTIONS(3275), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -183837,39 +182848,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154169] = 13, + [151472] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(857), 1, - sym__comparison_operator, - STATE(860), 1, - sym__multiplicative_operator, - STATE(863), 1, - sym__additive_operator, - STATE(864), 1, - sym__logical_operator, - ACTIONS(236), 2, + ACTIONS(2471), 1, + sym_identifier, + STATE(32), 1, + sym_qualified_name, + ACTIONS(1581), 2, sym__or_operator, sym__and_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2092), 2, + STATE(2022), 2, sym_comment, sym_include, - ACTIONS(238), 3, - sym_identifier, - sym__terminator, - anon_sym_COMMA, - ACTIONS(1075), 3, + ACTIONS(1579), 26, + anon_sym_COLON, anon_sym_SLASH, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, aux_sym__multiplicative_operator_token1, - ACTIONS(1079), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -183885,39 +182887,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [154230] = 13, + 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, + [151524] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(857), 1, + STATE(815), 1, sym__comparison_operator, - STATE(860), 1, + STATE(816), 1, sym__multiplicative_operator, - STATE(863), 1, + STATE(817), 1, sym__additive_operator, - STATE(864), 1, + STATE(818), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1212), 2, sym__or_operator, sym__and_operator, - STATE(2093), 2, + STATE(2023), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1181), 3, + ACTIONS(1210), 4, sym_identifier, sym__terminator, anon_sym_COMMA, - ACTIONS(1079), 15, + aux_sym_scope_tuning_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -183933,21 +182941,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [154291] = 5, + [151586] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2094), 2, + STATE(2024), 2, sym_comment, sym_include, - ACTIONS(3027), 29, + ACTIONS(3261), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -183973,22 +182982,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154336] = 6, + [151632] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3760), 1, - ts_builtin_sym_end, - STATE(2095), 2, + STATE(2025), 2, sym_comment, sym_include, - ACTIONS(3281), 28, + ACTIONS(3259), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -184014,69 +183023,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154383] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(857), 1, - sym__comparison_operator, - STATE(860), 1, - sym__multiplicative_operator, - STATE(863), 1, - sym__additive_operator, - STATE(864), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(2096), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1185), 3, - sym_identifier, - sym__terminator, - anon_sym_COMMA, - ACTIONS(1079), 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, - [154444] = 5, + [151678] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2097), 2, + STATE(2026), 2, sym_comment, sym_include, - ACTIONS(3119), 29, + ACTIONS(3257), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -184102,22 +183064,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154489] = 6, + [151724] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3482), 1, - ts_builtin_sym_end, - STATE(2098), 2, + STATE(2027), 2, sym_comment, sym_include, - ACTIONS(3109), 28, + ACTIONS(3253), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -184143,22 +183105,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154536] = 6, + [151770] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3772), 1, - ts_builtin_sym_end, - STATE(2099), 2, + STATE(2028), 2, sym_comment, sym_include, - ACTIONS(3283), 28, + ACTIONS(2969), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -184184,110 +183146,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154583] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2100), 2, - sym_comment, - sym_include, - ACTIONS(124), 3, - sym__namecolon, - sym__or_operator, - sym__and_operator, - ACTIONS(126), 26, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_when_expression_token1, - [154630] = 13, + [151816] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(857), 1, - sym__comparison_operator, - STATE(860), 1, - sym__multiplicative_operator, - STATE(863), 1, - sym__additive_operator, - STATE(864), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(2101), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1189), 3, - sym_identifier, - sym__terminator, - anon_sym_COMMA, - ACTIONS(1079), 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, - [154691] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2102), 2, + STATE(2029), 2, sym_comment, sym_include, - ACTIONS(3117), 29, + ACTIONS(3205), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -184313,21 +183187,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154736] = 5, + [151862] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2103), 2, + STATE(2030), 2, sym_comment, sym_include, - ACTIONS(3115), 29, + ACTIONS(3211), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -184353,21 +183228,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154781] = 5, + [151908] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2104), 2, + STATE(2031), 2, sym_comment, sym_include, - ACTIONS(3113), 29, + ACTIONS(3386), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -184393,39 +183269,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154826] = 13, + [151954] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(857), 1, + STATE(815), 1, sym__comparison_operator, - STATE(860), 1, + STATE(816), 1, sym__multiplicative_operator, - STATE(863), 1, + STATE(817), 1, sym__additive_operator, - STATE(864), 1, + STATE(818), 1, sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1216), 2, sym__or_operator, sym__and_operator, - STATE(2105), 2, + STATE(2032), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1214), 24, anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1104), 3, sym_identifier, + anon_sym_STAR, sym__terminator, anon_sym_COMMA, - ACTIONS(1079), 15, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -184441,62 +183314,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [154887] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3480), 1, - ts_builtin_sym_end, - STATE(2106), 2, - sym_comment, - sym_include, - ACTIONS(3111), 28, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [154934] = 5, + aux_sym_scope_tuning_token1, + [152010] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2107), 2, + STATE(2033), 2, sym_comment, sym_include, - ACTIONS(3035), 29, + ACTIONS(3390), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -184522,21 +183356,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [154979] = 5, + [152056] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2108), 2, + STATE(815), 1, + sym__comparison_operator, + STATE(816), 1, + sym__multiplicative_operator, + STATE(817), 1, + sym__additive_operator, + STATE(818), 1, + sym__logical_operator, + ACTIONS(1121), 2, + sym__or_operator, + sym__and_operator, + STATE(2034), 2, sym_comment, sym_include, - ACTIONS(3111), 29, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1119), 21, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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, + [152114] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2035), 2, + sym_comment, + sym_include, + ACTIONS(3203), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -184562,21 +183444,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [155024] = 5, + [152160] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2109), 2, + STATE(2036), 2, sym_comment, sym_include, - ACTIONS(3109), 29, + ACTIONS(3201), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -184602,21 +183485,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [155069] = 5, + [152206] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2110), 2, + STATE(2037), 2, sym_comment, sym_include, - ACTIONS(3107), 29, + ACTIONS(3199), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -184642,21 +183526,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [155114] = 5, + [152252] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2111), 2, + STATE(2038), 2, sym_comment, sym_include, - ACTIONS(3105), 29, + ACTIONS(3189), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -184682,21 +183567,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [155159] = 5, + [152298] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2112), 2, + STATE(815), 1, + sym__comparison_operator, + STATE(816), 1, + sym__multiplicative_operator, + STATE(817), 1, + sym__additive_operator, + STATE(818), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(2039), 2, sym_comment, sym_include, - ACTIONS(3103), 29, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1194), 4, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + aux_sym_scope_tuning_token1, + ACTIONS(1090), 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, + [152360] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2040), 2, + sym_comment, + sym_include, + ACTIONS(3181), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -184722,21 +183657,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [155204] = 5, + [152406] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2113), 2, + STATE(2041), 2, sym_comment, sym_include, - ACTIONS(3101), 29, + ACTIONS(3179), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -184762,21 +183698,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [155249] = 5, + [152452] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2114), 2, + STATE(2042), 2, sym_comment, sym_include, - ACTIONS(3097), 29, + ACTIONS(3177), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -184802,21 +183739,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [155294] = 5, + [152498] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2115), 2, + STATE(2043), 2, sym_comment, sym_include, - ACTIONS(3093), 29, + ACTIONS(3175), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -184842,21 +183780,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [155339] = 5, + [152544] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2116), 2, + STATE(2044), 2, sym_comment, sym_include, - ACTIONS(3067), 29, + ACTIONS(3171), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -184882,21 +183821,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [155384] = 5, + [152590] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2117), 2, + STATE(2045), 2, sym_comment, sym_include, - ACTIONS(3063), 29, + ACTIONS(3151), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -184922,21 +183862,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [155429] = 5, + [152636] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2118), 2, + STATE(2046), 2, sym_comment, sym_include, - ACTIONS(3059), 29, + ACTIONS(3125), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -184962,21 +183903,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [155474] = 5, + [152682] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2119), 2, + STATE(2047), 2, sym_comment, sym_include, - ACTIONS(3055), 29, + ACTIONS(3117), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -185002,109 +183944,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [155519] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(2687), 1, - anon_sym_LBRACK, - ACTIONS(2689), 1, - anon_sym_LPAREN, - STATE(2625), 1, - sym_function_arguments, - ACTIONS(63), 2, - sym__or_operator, - sym__and_operator, - STATE(2120), 2, - sym_comment, - sym_include, - ACTIONS(69), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_include_argument_token1, - [155570] = 9, + [152728] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(3800), 1, - aux_sym_input_expression_token2, - STATE(22), 1, - sym_qualified_name, - ACTIONS(1351), 2, - sym__or_operator, - sym__and_operator, - STATE(2121), 2, + STATE(2048), 2, sym_comment, sym_include, - ACTIONS(1347), 24, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_STAR, + ACTIONS(3113), 30, + sym_identifier, aux_sym__block_terminator_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_repeat_tuning_token1, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, aux_sym_on_error_phrase_token1, - [155623] = 6, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [152774] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3770), 1, - ts_builtin_sym_end, - STATE(2122), 2, + STATE(2049), 2, sym_comment, sym_include, - ACTIONS(3285), 28, + ACTIONS(3109), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -185130,22 +184026,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [155670] = 6, + [152820] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3478), 1, - ts_builtin_sym_end, - STATE(2123), 2, + STATE(2050), 2, sym_comment, sym_include, - ACTIONS(3035), 28, + ACTIONS(3107), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -185171,22 +184067,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [155717] = 6, + [152866] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3476), 1, - ts_builtin_sym_end, - STATE(2124), 2, + STATE(2051), 2, sym_comment, sym_include, - ACTIONS(3113), 28, + ACTIONS(3105), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -185212,22 +184108,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [155764] = 6, + [152912] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3694), 1, - ts_builtin_sym_end, - STATE(2125), 2, + STATE(2052), 2, sym_comment, sym_include, - ACTIONS(3273), 28, + ACTIONS(3103), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -185253,22 +184149,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [155811] = 6, + [152958] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3692), 1, - ts_builtin_sym_end, - STATE(2126), 2, + STATE(2053), 2, sym_comment, sym_include, - ACTIONS(3271), 28, + ACTIONS(3101), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -185294,21 +184190,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [155858] = 5, + [153004] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2127), 2, + STATE(2054), 2, sym_comment, sym_include, - ACTIONS(3053), 29, + ACTIONS(3099), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -185334,21 +184231,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [155903] = 5, + [153050] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2128), 2, + STATE(2055), 2, sym_comment, sym_include, - ACTIONS(3051), 29, + ACTIONS(3095), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -185374,61 +184272,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [155948] = 5, + [153096] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2129), 2, + STATE(815), 1, + sym__comparison_operator, + STATE(816), 1, + sym__multiplicative_operator, + STATE(817), 1, + sym__additive_operator, + STATE(818), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(2056), 2, sym_comment, sym_include, - ACTIONS(3049), 29, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1115), 4, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [155993] = 5, + sym__terminator, + anon_sym_COMMA, + aux_sym_scope_tuning_token1, + ACTIONS(1090), 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, + [153158] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2130), 2, + ACTIONS(3494), 1, + ts_builtin_sym_end, + STATE(2057), 2, sym_comment, sym_include, - ACTIONS(3047), 29, + ACTIONS(2885), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -185454,21 +184363,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156038] = 5, + [153206] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2131), 2, + ACTIONS(3496), 1, + ts_builtin_sym_end, + STATE(2058), 2, sym_comment, sym_include, - ACTIONS(3045), 29, + ACTIONS(2887), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -185494,21 +184405,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156083] = 5, + [153254] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2132), 2, + STATE(2059), 2, sym_comment, sym_include, - ACTIONS(3043), 29, + ACTIONS(3065), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -185534,21 +184446,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156128] = 5, + [153300] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2133), 2, + STATE(2060), 2, sym_comment, sym_include, - ACTIONS(3039), 29, + ACTIONS(3063), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -185574,21 +184487,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156173] = 5, + [153346] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2134), 2, + ACTIONS(3498), 1, + ts_builtin_sym_end, + STATE(2061), 2, sym_comment, sym_include, - ACTIONS(3037), 29, + ACTIONS(2889), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -185614,21 +184529,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156218] = 5, + [153394] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2135), 2, + ACTIONS(3462), 1, + ts_builtin_sym_end, + STATE(2062), 2, sym_comment, sym_include, - ACTIONS(2975), 29, + ACTIONS(2961), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -185654,21 +184571,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156263] = 5, + [153442] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2136), 2, + STATE(2063), 2, sym_comment, sym_include, - ACTIONS(2977), 29, + ACTIONS(3059), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -185694,22 +184612,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156308] = 6, + [153488] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3474), 1, + ACTIONS(2927), 1, ts_builtin_sym_end, - STATE(2137), 2, + STATE(2064), 2, sym_comment, sym_include, - ACTIONS(3115), 28, + ACTIONS(2851), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -185735,22 +184654,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156355] = 6, + [153536] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3287), 1, + ACTIONS(3500), 1, ts_builtin_sym_end, - STATE(2138), 2, + STATE(2065), 2, sym_comment, sym_include, - ACTIONS(3289), 28, + ACTIONS(2891), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -185776,62 +184696,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156402] = 6, + [153584] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3647), 1, - ts_builtin_sym_end, - STATE(2139), 2, + STATE(815), 1, + sym__comparison_operator, + STATE(816), 1, + sym__multiplicative_operator, + STATE(817), 1, + sym__additive_operator, + STATE(818), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(2066), 2, sym_comment, sym_include, - ACTIONS(3392), 28, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1198), 4, sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [156449] = 5, + sym__terminator, + anon_sym_COMMA, + aux_sym_scope_tuning_token1, + ACTIONS(1090), 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, + [153646] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2140), 2, + STATE(2067), 2, sym_comment, sym_include, - ACTIONS(2979), 29, + ACTIONS(3057), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -185857,63 +184786,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156494] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3472), 1, - ts_builtin_sym_end, - STATE(2141), 2, - sym_comment, - sym_include, - ACTIONS(3117), 28, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [156541] = 6, + [153692] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3470), 1, - ts_builtin_sym_end, - STATE(2142), 2, + STATE(2068), 2, sym_comment, sym_include, - ACTIONS(3119), 28, + ACTIONS(3606), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -185939,39 +184827,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156588] = 13, + [153738] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(857), 1, + STATE(815), 1, sym__comparison_operator, - STATE(860), 1, + STATE(816), 1, sym__multiplicative_operator, - STATE(863), 1, + STATE(817), 1, sym__additive_operator, - STATE(864), 1, + STATE(818), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2143), 2, + STATE(2069), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1197), 3, + ACTIONS(1111), 4, sym_identifier, sym__terminator, anon_sym_COMMA, - ACTIONS(1079), 15, + aux_sym_scope_tuning_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -185987,21 +184876,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [156649] = 5, + [153800] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2144), 2, + STATE(2070), 2, sym_comment, sym_include, - ACTIONS(2981), 29, + ACTIONS(3051), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -186027,22 +184917,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156694] = 6, + [153846] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3645), 1, - ts_builtin_sym_end, - STATE(2145), 2, + STATE(2071), 2, sym_comment, sym_include, - ACTIONS(3394), 28, + ACTIONS(3047), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -186068,22 +184958,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156741] = 6, + [153892] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3502), 1, - ts_builtin_sym_end, - STATE(2146), 2, + STATE(2072), 2, sym_comment, sym_include, - ACTIONS(3043), 28, + ACTIONS(3043), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -186109,73 +184999,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156788] = 6, + [153938] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3504), 1, - ts_builtin_sym_end, - STATE(2147), 2, + STATE(815), 1, + sym__comparison_operator, + STATE(816), 1, + sym__multiplicative_operator, + STATE(817), 1, + sym__additive_operator, + STATE(818), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(2073), 2, sym_comment, sym_include, - ACTIONS(3039), 28, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1206), 4, sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [156835] = 7, + sym__terminator, + anon_sym_COMMA, + aux_sym_scope_tuning_token1, + ACTIONS(1090), 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, + [154000] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3802), 1, - sym__namecolon, - ACTIONS(87), 2, + STATE(815), 1, + sym__comparison_operator, + STATE(816), 1, + sym__multiplicative_operator, + STATE(817), 1, + sym__additive_operator, + STATE(818), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2148), 3, + STATE(2074), 2, sym_comment, sym_include, - aux_sym_object_access_repeat1, - ACTIONS(89), 25, + ACTIONS(1086), 3, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, - sym__terminator, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_token1, + ACTIONS(1190), 4, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + aux_sym_scope_tuning_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -186191,49 +185097,94 @@ 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, - [156884] = 17, - ACTIONS(65), 1, + [154062] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + STATE(815), 1, + sym__comparison_operator, + STATE(816), 1, + sym__multiplicative_operator, + STATE(817), 1, + sym__additive_operator, + STATE(818), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(2075), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, anon_sym_SLASH, - ACTIONS(3805), 1, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1123), 4, + sym_identifier, sym__terminator, - ACTIONS(3807), 1, - aux_sym_when_expression_token1, - STATE(556), 1, - sym__logical_operator, - STATE(557), 1, - sym__additive_operator, - STATE(558), 1, - sym__multiplicative_operator, - STATE(559), 1, - sym__comparison_operator, - STATE(5623), 1, - sym_when_expression, - ACTIONS(1079), 2, + anon_sym_COMMA, + aux_sym_scope_tuning_token1, + ACTIONS(1090), 15, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, anon_sym_GT, - ACTIONS(1083), 2, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [154124] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(815), 1, + sym__comparison_operator, + STATE(816), 1, + sym__multiplicative_operator, + STATE(817), 1, + sym__additive_operator, + STATE(818), 1, + sym__logical_operator, + ACTIONS(230), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2149), 2, + STATE(2076), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(232), 4, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + aux_sym_scope_tuning_token1, + ACTIONS(1090), 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, @@ -186244,21 +185195,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [156953] = 5, + [154186] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2150), 2, + ACTIONS(3502), 1, + ts_builtin_sym_end, + STATE(2077), 2, sym_comment, sym_include, - ACTIONS(2983), 29, + ACTIONS(2893), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -186284,21 +185237,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [156998] = 5, + [154234] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2151), 2, + STATE(2078), 2, sym_comment, sym_include, - ACTIONS(2985), 29, + ACTIONS(2871), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -186324,21 +185278,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157043] = 5, + [154280] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2152), 2, + STATE(2079), 2, sym_comment, sym_include, - ACTIONS(2987), 29, + ACTIONS(3035), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -186364,21 +185319,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157088] = 5, + [154326] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2153), 2, + STATE(2080), 2, sym_comment, sym_include, - ACTIONS(2991), 29, + ACTIONS(3033), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -186404,22 +185360,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157133] = 6, + [154372] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3506), 1, - ts_builtin_sym_end, - STATE(2154), 2, + STATE(2081), 2, sym_comment, sym_include, - ACTIONS(3037), 28, + ACTIONS(3031), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -186445,65 +185401,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157180] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2703), 1, - anon_sym_LBRACK, - ACTIONS(2705), 1, - anon_sym_LPAREN, - STATE(2695), 1, - sym_function_arguments, - ACTIONS(63), 2, - sym__or_operator, - sym__and_operator, - STATE(2155), 2, - sym_comment, - sym_include, - ACTIONS(69), 24, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_when_expression_token1, - [157233] = 5, + [154418] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2156), 2, + STATE(2082), 2, sym_comment, sym_include, - ACTIONS(2995), 29, + ACTIONS(3029), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -186529,21 +185442,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157278] = 5, + [154464] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2157), 2, + STATE(2083), 2, sym_comment, sym_include, - ACTIONS(2999), 29, + ACTIONS(3025), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -186569,69 +185483,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157323] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(857), 1, - sym__comparison_operator, - STATE(860), 1, - sym__multiplicative_operator, - STATE(863), 1, - sym__additive_operator, - STATE(864), 1, - sym__logical_operator, - ACTIONS(1077), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - STATE(2158), 2, - sym_comment, - sym_include, - ACTIONS(1075), 3, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(1100), 3, - sym_identifier, - sym__terminator, - anon_sym_COMMA, - ACTIONS(1079), 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, - [157384] = 5, + [154510] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2159), 2, + STATE(2084), 2, sym_comment, sym_include, - ACTIONS(3003), 29, + ACTIONS(3023), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -186657,21 +185524,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157429] = 5, + [154556] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2160), 2, + STATE(2085), 2, sym_comment, sym_include, - ACTIONS(3005), 29, + ACTIONS(3001), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -186697,21 +185565,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157474] = 5, + [154602] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2161), 2, + STATE(2086), 2, sym_comment, sym_include, - ACTIONS(3009), 29, + ACTIONS(2999), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -186737,21 +185606,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157519] = 5, + [154648] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2162), 2, + STATE(2087), 2, sym_comment, sym_include, - ACTIONS(3013), 29, + ACTIONS(2997), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -186777,61 +185647,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157564] = 5, + [154694] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2163), 2, - sym_comment, - sym_include, - ACTIONS(3015), 29, - sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [157609] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2164), 2, + STATE(2088), 2, sym_comment, sym_include, - ACTIONS(3019), 29, + ACTIONS(2995), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -186857,21 +185688,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157654] = 5, + [154740] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2165), 2, + STATE(2089), 2, sym_comment, sym_include, - ACTIONS(3023), 29, + ACTIONS(2991), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -186897,21 +185729,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157699] = 5, + [154786] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2166), 2, + STATE(2090), 2, sym_comment, sym_include, - ACTIONS(3025), 29, + ACTIONS(2989), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -186937,21 +185770,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157744] = 5, + [154832] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2167), 2, + ACTIONS(3456), 1, + ts_builtin_sym_end, + STATE(2091), 2, sym_comment, sym_include, - ACTIONS(3185), 29, + ACTIONS(2987), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -186977,21 +185812,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157789] = 5, + [154880] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2168), 2, + STATE(2092), 2, sym_comment, sym_include, - ACTIONS(3029), 29, + ACTIONS(2987), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -187017,39 +185853,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [157834] = 13, + [154926] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(857), 1, + STATE(821), 1, sym__comparison_operator, - STATE(860), 1, + STATE(822), 1, sym__multiplicative_operator, - STATE(863), 1, + STATE(823), 1, sym__additive_operator, - STATE(864), 1, + STATE(824), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2169), 2, + STATE(2093), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1201), 3, + ACTIONS(1202), 4, sym_identifier, sym__terminator, - anon_sym_COMMA, - ACTIONS(1079), 15, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -187065,37 +185902,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [157895] = 11, + [154988] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(857), 1, + STATE(821), 1, sym__comparison_operator, - STATE(860), 1, + STATE(822), 1, sym__multiplicative_operator, - STATE(863), 1, + STATE(823), 1, sym__additive_operator, - STATE(864), 1, + STATE(824), 1, sym__logical_operator, - ACTIONS(1207), 2, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1212), 2, sym__or_operator, sym__and_operator, - STATE(2170), 2, + STATE(2094), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1205), 20, + ACTIONS(1210), 4, sym_identifier, sym__terminator, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -187111,116 +185951,133 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [157952] = 5, + [155050] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2171), 2, + STATE(821), 1, + sym__comparison_operator, + STATE(822), 1, + sym__multiplicative_operator, + STATE(823), 1, + sym__additive_operator, + STATE(824), 1, + sym__logical_operator, + ACTIONS(1216), 2, + sym__or_operator, + sym__and_operator, + STATE(2095), 2, sym_comment, sym_include, - ACTIONS(3031), 29, + ACTIONS(1214), 24, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [157997] = 5, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, + anon_sym_NO_DASHERROR, + [155106] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2172), 2, + STATE(821), 1, + sym__comparison_operator, + STATE(822), 1, + sym__multiplicative_operator, + STATE(823), 1, + sym__additive_operator, + STATE(824), 1, + sym__logical_operator, + ACTIONS(1121), 2, + sym__or_operator, + sym__and_operator, + STATE(2096), 2, sym_comment, sym_include, - ACTIONS(3033), 29, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1119), 21, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [158042] = 10, + 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, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [155164] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(857), 1, + STATE(821), 1, sym__comparison_operator, - STATE(860), 1, + STATE(822), 1, sym__multiplicative_operator, - STATE(863), 1, + STATE(823), 1, sym__additive_operator, - STATE(864), 1, + STATE(824), 1, sym__logical_operator, - ACTIONS(1195), 2, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2173), 2, + STATE(2097), 2, sym_comment, sym_include, - ACTIONS(1193), 23, + ACTIONS(1086), 3, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_token1, + ACTIONS(1194), 4, + sym_identifier, + sym__terminator, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -187236,38 +186093,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [158097] = 12, + [155226] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(857), 1, + STATE(821), 1, sym__comparison_operator, - STATE(860), 1, + STATE(822), 1, sym__multiplicative_operator, - STATE(863), 1, + STATE(823), 1, sym__additive_operator, - STATE(864), 1, + STATE(824), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1179), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2174), 2, + STATE(2098), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1177), 18, + ACTIONS(1115), 4, sym_identifier, sym__terminator, - anon_sym_COMMA, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -187283,22 +186142,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [158156] = 6, + [155288] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, - ts_builtin_sym_end, - STATE(2175), 2, + STATE(2099), 2, sym_comment, sym_include, - ACTIONS(2975), 28, + ACTIONS(2983), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -187324,22 +186183,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158203] = 6, + [155334] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3121), 1, - ts_builtin_sym_end, - STATE(2176), 2, + STATE(2100), 2, sym_comment, sym_include, - ACTIONS(3123), 28, + ACTIONS(2981), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -187365,21 +186224,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158250] = 5, + [155380] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3756), 1, + sym__namecolon, + ACTIONS(93), 2, + sym__or_operator, + sym__and_operator, + STATE(2101), 3, + sym_comment, + sym_include, + aux_sym_object_access_repeat1, + ACTIONS(95), 27, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_include_argument_token1, + [155428] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2177), 2, + ACTIONS(3504), 1, + ts_builtin_sym_end, + STATE(2102), 2, sym_comment, sym_include, - ACTIONS(3041), 29, + ACTIONS(2895), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -187405,21 +186308,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158295] = 5, + [155476] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2178), 2, + STATE(2103), 2, sym_comment, sym_include, - ACTIONS(3069), 29, + ACTIONS(2979), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -187445,21 +186349,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158340] = 5, + [155522] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2179), 2, + ACTIONS(3454), 1, + ts_builtin_sym_end, + STATE(2104), 2, sym_comment, sym_include, - ACTIONS(3071), 29, + ACTIONS(2989), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -187485,21 +186391,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158385] = 5, + [155570] = 18, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(3759), 1, + anon_sym_COMMA, + ACTIONS(3761), 1, + aux_sym_of_token1, + ACTIONS(3763), 1, + aux_sym_on_statement_token1, + STATE(457), 1, + sym__logical_operator, + STATE(458), 1, + sym__additive_operator, + STATE(465), 1, + sym__multiplicative_operator, + STATE(466), 1, + sym__comparison_operator, + STATE(4714), 1, + aux_sym_on_statement_repeat1, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2105), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, + [155642] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2180), 2, + STATE(2106), 2, sym_comment, sym_include, - ACTIONS(3073), 29, + ACTIONS(2977), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -187525,119 +186486,138 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158430] = 5, + [155688] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2181), 2, + STATE(821), 1, + sym__comparison_operator, + STATE(822), 1, + sym__multiplicative_operator, + STATE(823), 1, + sym__additive_operator, + STATE(824), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(2107), 2, sym_comment, sym_include, - ACTIONS(3075), 29, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1198), 4, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [158475] = 5, + sym__terminator, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1090), 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, + [155750] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2182), 2, + STATE(821), 1, + sym__comparison_operator, + STATE(822), 1, + sym__multiplicative_operator, + STATE(823), 1, + sym__additive_operator, + STATE(824), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(2108), 2, sym_comment, sym_include, - ACTIONS(3077), 29, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1111), 4, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [158520] = 13, + sym__terminator, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1090), 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, + [155812] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(857), 1, + STATE(821), 1, sym__comparison_operator, - STATE(860), 1, + STATE(822), 1, sym__multiplicative_operator, - STATE(863), 1, + STATE(823), 1, sym__additive_operator, - STATE(864), 1, + STATE(824), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2183), 2, + STATE(2109), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(1110), 3, + ACTIONS(1206), 4, sym_identifier, sym__terminator, - anon_sym_COMMA, - ACTIONS(1079), 15, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -187653,22 +186633,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [158581] = 6, + [155874] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3125), 1, - ts_builtin_sym_end, - STATE(2184), 2, + STATE(821), 1, + sym__comparison_operator, + STATE(822), 1, + sym__multiplicative_operator, + STATE(823), 1, + sym__additive_operator, + STATE(824), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(2110), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1190), 4, + sym_identifier, + sym__terminator, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1090), 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, + [155936] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2111), 2, sym_comment, sym_include, - ACTIONS(3127), 28, + ACTIONS(2973), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -187694,22 +186723,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158628] = 6, + [155982] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3129), 1, - ts_builtin_sym_end, - STATE(2185), 2, + STATE(2112), 2, sym_comment, sym_include, - ACTIONS(3131), 28, + ACTIONS(2935), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -187735,36 +186764,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158675] = 7, + [156028] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3809), 1, - sym__namedot, - ACTIONS(117), 2, - sym__or_operator, - sym__and_operator, - STATE(2186), 3, + STATE(2113), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(119), 25, - anon_sym_SLASH, + ACTIONS(2965), 30, sym_identifier, - anon_sym_STAR, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [156074] = 18, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(3759), 1, anon_sym_COMMA, - aux_sym_input_expression_token2, + ACTIONS(3765), 1, + aux_sym_of_token1, + ACTIONS(3767), 1, + aux_sym_on_statement_token1, + STATE(457), 1, + sym__logical_operator, + STATE(458), 1, + sym__additive_operator, + STATE(465), 1, + sym__multiplicative_operator, + STATE(466), 1, + sym__comparison_operator, + STATE(4740), 1, + aux_sym_on_statement_repeat1, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2114), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -187775,35 +186859,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [158724] = 9, + [156146] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2677), 1, - anon_sym_LBRACK, - ACTIONS(2679), 1, - anon_sym_LPAREN, - STATE(2767), 1, - sym_function_arguments, - ACTIONS(63), 2, + STATE(821), 1, + sym__comparison_operator, + STATE(822), 1, + sym__multiplicative_operator, + STATE(823), 1, + sym__additive_operator, + STATE(824), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2187), 2, + STATE(2115), 2, sym_comment, sym_include, - ACTIONS(69), 24, + ACTIONS(1086), 3, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_token1, + ACTIONS(1123), 4, + sym_identifier, + sym__terminator, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -187819,24 +186908,22 @@ 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_when_expression_token1, - anon_sym_NO_DASHERROR, - [158777] = 6, + [156208] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3510), 1, - ts_builtin_sym_end, - STATE(2188), 2, + STATE(2116), 2, sym_comment, sym_include, - ACTIONS(2977), 28, + ACTIONS(2961), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -187862,21 +186949,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158824] = 5, + [156254] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2189), 2, + STATE(2117), 2, sym_comment, sym_include, - ACTIONS(3079), 29, + ACTIONS(2959), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -187902,65 +186990,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158869] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2675), 1, - sym__namedoublecolon, - STATE(2224), 1, - aux_sym_member_access_repeat1, - ACTIONS(128), 2, - sym__or_operator, - sym__and_operator, - STATE(2190), 2, - sym_comment, - sym_include, - ACTIONS(130), 25, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_do_block_token1, - aux_sym_widget_field_token1, - [158920] = 6, + [156300] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3671), 1, - ts_builtin_sym_end, - STATE(2191), 2, + STATE(2118), 2, sym_comment, sym_include, - ACTIONS(3370), 28, + ACTIONS(2953), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -187986,22 +187031,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [158967] = 6, + [156346] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3512), 1, - ts_builtin_sym_end, - STATE(2192), 2, + STATE(2119), 2, sym_comment, sym_include, - ACTIONS(2979), 28, + ACTIONS(2947), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -188027,21 +187072,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159014] = 5, + [156392] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2193), 2, + STATE(2120), 2, sym_comment, sym_include, - ACTIONS(3081), 29, + ACTIONS(3352), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -188067,21 +187113,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159059] = 5, + [156438] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2194), 2, + STATE(2121), 2, sym_comment, sym_include, - ACTIONS(3083), 29, + ACTIONS(2855), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -188107,21 +187154,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159104] = 5, + [156484] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2195), 2, + STATE(2122), 2, sym_comment, sym_include, - ACTIONS(3085), 29, + ACTIONS(2857), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -188147,21 +187195,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159149] = 5, + [156530] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2196), 2, + STATE(2123), 2, sym_comment, sym_include, - ACTIONS(3087), 29, + ACTIONS(2859), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -188187,21 +187236,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159194] = 5, + [156576] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2197), 2, + STATE(2124), 2, sym_comment, sym_include, - ACTIONS(3089), 29, + ACTIONS(2861), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -188227,65 +187277,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159239] = 8, + [156622] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2727), 1, - sym__namecolon, - STATE(2212), 1, - aux_sym_object_access_repeat1, - ACTIONS(94), 2, - sym__or_operator, - sym__and_operator, - STATE(2198), 2, - sym_comment, - sym_include, - ACTIONS(96), 25, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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, - [159290] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3468), 1, - ts_builtin_sym_end, - STATE(2199), 2, + STATE(2125), 2, sym_comment, sym_include, - ACTIONS(3133), 28, + ACTIONS(2863), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -188311,86 +187318,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159337] = 29, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(2952), 1, - sym_of, - STATE(2993), 1, - sym__pre_tuning, - STATE(3044), 1, - sym_where_clause, - STATE(3063), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3483), 1, - aux_sym_for_phrase_repeat2, - STATE(4069), 1, - sym_on_error_phrase, - STATE(4275), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4822), 1, - sym_on_stop_phrase, - STATE(4864), 1, - aux_sym_for_statement_repeat1, - STATE(5881), 1, - sym_body, - STATE(2200), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [159430] = 6, + [156668] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3466), 1, - ts_builtin_sym_end, - STATE(2201), 2, + STATE(2126), 2, sym_comment, sym_include, - ACTIONS(3135), 28, + ACTIONS(2865), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -188416,21 +187359,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159477] = 5, + [156714] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2202), 2, + STATE(2127), 2, sym_comment, sym_include, - ACTIONS(3139), 29, + ACTIONS(2867), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -188456,21 +187400,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159522] = 5, + [156760] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2203), 2, + STATE(2128), 2, sym_comment, sym_include, - ACTIONS(3167), 29, + ACTIONS(2869), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -188496,63 +187441,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159567] = 6, + [156806] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3514), 1, - ts_builtin_sym_end, - STATE(2204), 2, + STATE(821), 1, + sym__comparison_operator, + STATE(822), 1, + sym__multiplicative_operator, + STATE(823), 1, + sym__additive_operator, + STATE(824), 1, + sym__logical_operator, + ACTIONS(230), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2129), 2, sym_comment, sym_include, - ACTIONS(2981), 28, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(232), 4, sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [159614] = 6, + sym__terminator, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1090), 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, + [156868] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3464), 1, + ACTIONS(3452), 1, ts_builtin_sym_end, - STATE(2205), 2, + STATE(2130), 2, sym_comment, sym_include, - ACTIONS(3137), 28, + ACTIONS(2991), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -188578,22 +187532,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159661] = 6, + [156916] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3462), 1, + ACTIONS(3506), 1, ts_builtin_sym_end, - STATE(2206), 2, + STATE(2131), 2, sym_comment, sym_include, - ACTIONS(3141), 28, + ACTIONS(2897), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -188619,29 +187574,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159708] = 8, + [156964] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2671), 1, - sym__namedot, - STATE(2186), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(98), 2, + ACTIONS(2726), 1, + sym__namecolon, + STATE(2101), 1, + aux_sym_object_access_repeat1, + ACTIONS(89), 2, sym__or_operator, sym__and_operator, - STATE(2207), 2, + STATE(2132), 2, sym_comment, sym_include, - ACTIONS(100), 25, + ACTIONS(91), 27, anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -188660,65 +187616,161 @@ 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_do_block_token1, - aux_sym_widget_field_token1, - [159759] = 6, + aux_sym_include_argument_token1, + [157014] = 18, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(3759), 1, + anon_sym_COMMA, + ACTIONS(3769), 1, + aux_sym_of_token1, + ACTIONS(3771), 1, + aux_sym_on_statement_token1, + STATE(457), 1, + sym__logical_operator, + STATE(458), 1, + sym__additive_operator, + STATE(465), 1, + sym__multiplicative_operator, + STATE(466), 1, + sym__comparison_operator, + STATE(4754), 1, + aux_sym_on_statement_repeat1, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2133), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, + [157086] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3460), 1, - ts_builtin_sym_end, - STATE(2208), 2, + ACTIONS(3775), 1, + sym__escaped_string, + STATE(2134), 2, sym_comment, sym_include, - ACTIONS(3143), 28, + ACTIONS(3773), 30, + anon_sym_COLON, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, + aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [159806] = 6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [157132] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2726), 1, + sym__namecolon, + STATE(2101), 1, + aux_sym_object_access_repeat1, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(2135), 2, + sym_comment, + sym_include, + ACTIONS(91), 27, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_include_argument_token1, + [157182] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3458), 1, - ts_builtin_sym_end, - STATE(2209), 2, + STATE(2136), 2, sym_comment, sym_include, - ACTIONS(3145), 28, + ACTIONS(3005), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -188744,21 +187796,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159853] = 5, + [157228] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2210), 2, + STATE(2137), 2, sym_comment, sym_include, - ACTIONS(3169), 29, + ACTIONS(2873), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -188784,21 +187837,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159898] = 5, + [157274] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2211), 2, + STATE(2138), 2, sym_comment, sym_include, - ACTIONS(3171), 29, + ACTIONS(2875), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -188824,128 +187878,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [159943] = 7, + [157320] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3812), 1, - sym__namecolon, - ACTIONS(87), 2, - sym__or_operator, - sym__and_operator, - STATE(2212), 3, - sym_comment, - sym_include, - aux_sym_object_access_repeat1, - ACTIONS(89), 25, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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, - [159992] = 29, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(2941), 1, - sym_of, - STATE(3000), 1, - sym__pre_tuning, - STATE(3085), 1, - sym_where_clause, - STATE(3087), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3438), 1, - aux_sym_for_phrase_repeat2, - STATE(4126), 1, - sym_on_error_phrase, - STATE(4297), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4930), 1, - sym_on_stop_phrase, - STATE(4954), 1, - aux_sym_for_statement_repeat1, - STATE(6020), 1, - sym_body, - STATE(2213), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [160085] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3673), 1, - ts_builtin_sym_end, - STATE(2214), 2, + STATE(2139), 2, sym_comment, sym_include, - ACTIONS(3368), 28, + ACTIONS(2877), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -188971,22 +187919,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [160132] = 6, + [157366] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3675), 1, - ts_builtin_sym_end, - STATE(2215), 2, + STATE(2140), 2, sym_comment, sym_include, - ACTIONS(3366), 28, + ACTIONS(2879), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -189012,22 +187960,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [160179] = 6, + [157412] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, - ts_builtin_sym_end, - STATE(2216), 2, + STATE(2141), 2, sym_comment, sym_include, - ACTIONS(2983), 28, + ACTIONS(2881), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -189053,22 +188001,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [160226] = 6, + [157458] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3683), 1, - ts_builtin_sym_end, - STATE(2217), 2, + STATE(2142), 2, sym_comment, sym_include, - ACTIONS(3364), 28, + ACTIONS(2883), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -189094,21 +188042,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [160273] = 5, + [157504] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2218), 2, + STATE(2143), 2, sym_comment, sym_include, - ACTIONS(3173), 29, + ACTIONS(2885), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -189134,21 +188083,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [160318] = 5, + [157550] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2219), 2, + STATE(2144), 2, sym_comment, sym_include, - ACTIONS(3177), 29, + ACTIONS(2887), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -189174,21 +188124,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [160363] = 5, + [157596] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2220), 2, + STATE(2145), 2, sym_comment, sym_include, - ACTIONS(3179), 29, + ACTIONS(2889), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -189214,62 +188165,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [160408] = 5, + [157642] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2221), 2, + ACTIONS(3779), 1, + sym__escaped_string, + STATE(2146), 2, sym_comment, sym_include, - ACTIONS(3181), 29, + ACTIONS(3777), 30, + anon_sym_COLON, + anon_sym_LBRACE, sym_identifier, - aux_sym__block_terminator_token1, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + sym__integer_literal, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, + aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [160453] = 6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [157688] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3518), 1, + ACTIONS(3450), 1, ts_builtin_sym_end, - STATE(2222), 2, + STATE(2147), 2, sym_comment, sym_include, - ACTIONS(2985), 28, + ACTIONS(2995), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -189295,21 +188248,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [160500] = 5, + [157736] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2223), 2, + ACTIONS(3448), 1, + ts_builtin_sym_end, + STATE(2148), 2, sym_comment, sym_include, - ACTIONS(3357), 29, + ACTIONS(2997), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -189335,36 +188290,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [160545] = 7, - ACTIONS(3), 1, + [157784] = 18, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3815), 1, - sym__namedoublecolon, - ACTIONS(110), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(3759), 1, + anon_sym_COMMA, + ACTIONS(3781), 1, + aux_sym_of_token1, + ACTIONS(3783), 1, + aux_sym_on_statement_token1, + STATE(457), 1, + sym__logical_operator, + STATE(458), 1, + sym__additive_operator, + STATE(465), 1, + sym__multiplicative_operator, + STATE(466), 1, + sym__comparison_operator, + STATE(4772), 1, + aux_sym_on_statement_repeat1, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2224), 3, - sym_comment, - sym_include, - aux_sym_member_access_repeat1, - ACTIONS(112), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2149), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -189375,23 +188344,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [160594] = 5, + [157856] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2225), 2, + ACTIONS(3446), 1, + ts_builtin_sym_end, + STATE(2150), 2, sym_comment, sym_include, - ACTIONS(3189), 29, + ACTIONS(2999), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -189417,21 +188386,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [160639] = 5, + [157904] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2226), 2, + ACTIONS(3444), 1, + ts_builtin_sym_end, + STATE(2151), 2, sym_comment, sym_include, - ACTIONS(3193), 29, + ACTIONS(3001), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -189457,21 +188428,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [160684] = 5, + [157952] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2227), 2, + STATE(2152), 2, sym_comment, sym_include, - ACTIONS(3195), 29, + ACTIONS(2891), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -189497,21 +188469,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [160729] = 5, + [157998] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2228), 2, + STATE(2153), 2, sym_comment, sym_include, - ACTIONS(3199), 29, + ACTIONS(2893), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -189537,21 +188510,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [160774] = 5, + [158044] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2229), 2, + ACTIONS(3508), 1, + ts_builtin_sym_end, + STATE(2154), 2, sym_comment, sym_include, - ACTIONS(3203), 29, + ACTIONS(2899), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -189577,21 +188552,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [160819] = 5, + [158092] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2230), 2, + ACTIONS(3440), 1, + ts_builtin_sym_end, + STATE(2155), 2, sym_comment, sym_include, - ACTIONS(3205), 29, + ACTIONS(3023), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -189617,22 +188594,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [160864] = 6, + [158140] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3685), 1, + ACTIONS(3438), 1, ts_builtin_sym_end, - STATE(2231), 2, + STATE(2156), 2, sym_comment, sym_include, - ACTIONS(3362), 28, + ACTIONS(3025), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -189658,22 +188636,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [160911] = 6, + [158188] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3520), 1, + ACTIONS(3436), 1, ts_builtin_sym_end, - STATE(2232), 2, + STATE(2157), 2, sym_comment, sym_include, - ACTIONS(2987), 28, + ACTIONS(3029), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -189699,22 +188678,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [160958] = 6, + [158236] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2989), 1, + ACTIONS(3434), 1, ts_builtin_sym_end, - STATE(2233), 2, + STATE(2158), 2, sym_comment, sym_include, - ACTIONS(2991), 28, + ACTIONS(3031), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -189740,21 +188720,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161005] = 5, + [158284] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2234), 2, + STATE(2159), 2, sym_comment, sym_include, - ACTIONS(3207), 29, + ACTIONS(2895), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -189780,21 +188761,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161050] = 5, + [158330] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2235), 2, + STATE(2160), 2, sym_comment, sym_include, - ACTIONS(3211), 29, + ACTIONS(2897), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -189820,21 +188802,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161095] = 5, + [158376] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2236), 2, + ACTIONS(3432), 1, + ts_builtin_sym_end, + STATE(2161), 2, sym_comment, sym_include, - ACTIONS(3213), 29, + ACTIONS(3033), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -189860,21 +188844,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161140] = 5, + [158424] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2237), 2, + ACTIONS(2901), 1, + ts_builtin_sym_end, + STATE(2162), 2, sym_comment, sym_include, - ACTIONS(3215), 29, + ACTIONS(2903), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -189900,21 +188886,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161185] = 5, + [158472] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2238), 2, + ACTIONS(3430), 1, + ts_builtin_sym_end, + STATE(2163), 2, sym_comment, sym_include, - ACTIONS(3217), 29, + ACTIONS(3035), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -189940,21 +188928,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161230] = 5, + [158520] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2239), 2, + ACTIONS(3620), 1, + ts_builtin_sym_end, + STATE(2164), 2, sym_comment, sym_include, - ACTIONS(3219), 29, + ACTIONS(3304), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -189980,21 +188970,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161275] = 5, + [158568] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2240), 2, + STATE(2165), 2, sym_comment, sym_include, - ACTIONS(3221), 29, + ACTIONS(2899), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -190020,21 +189011,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161320] = 5, + [158614] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2241), 2, + STATE(2166), 2, sym_comment, sym_include, - ACTIONS(3237), 29, + ACTIONS(2903), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -190060,21 +189052,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161365] = 5, + [158660] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2242), 2, + ACTIONS(3510), 1, + ts_builtin_sym_end, + STATE(2167), 2, sym_comment, sym_include, - ACTIONS(3239), 29, + ACTIONS(2905), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -190100,22 +189094,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161410] = 6, + [158708] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2993), 1, - ts_builtin_sym_end, - STATE(2243), 2, + STATE(2168), 2, sym_comment, sym_include, - ACTIONS(2995), 28, + ACTIONS(2905), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -190141,22 +189135,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161457] = 6, + [158754] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2997), 1, - ts_builtin_sym_end, - STATE(2244), 2, + STATE(2169), 2, sym_comment, sym_include, - ACTIONS(2999), 28, + ACTIONS(2907), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -190182,22 +189176,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161504] = 6, + [158800] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3001), 1, - ts_builtin_sym_end, - STATE(2245), 2, + STATE(2170), 2, sym_comment, sym_include, - ACTIONS(3003), 28, + ACTIONS(2911), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -190223,21 +189217,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161551] = 5, + [158846] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2246), 2, + STATE(2171), 2, sym_comment, sym_include, - ACTIONS(3249), 29, + ACTIONS(2915), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -190263,22 +189258,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161596] = 6, + [158892] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3522), 1, - ts_builtin_sym_end, - STATE(2247), 2, + STATE(2172), 2, sym_comment, sym_include, - ACTIONS(3005), 28, + ACTIONS(2919), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -190304,22 +189299,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161643] = 6, + [158938] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3007), 1, - ts_builtin_sym_end, - STATE(2248), 2, + STATE(2173), 2, sym_comment, sym_include, - ACTIONS(3009), 28, + ACTIONS(2921), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -190345,73 +189340,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161690] = 17, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(3807), 1, - aux_sym_when_expression_token1, - ACTIONS(3818), 1, - sym__terminator, - STATE(556), 1, - sym__logical_operator, - STATE(557), 1, - sym__additive_operator, - STATE(558), 1, - sym__multiplicative_operator, - STATE(559), 1, - sym__comparison_operator, - STATE(5905), 1, - sym_when_expression, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2249), 2, - sym_comment, - sym_include, - ACTIONS(2396), 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, - [161759] = 5, + [158984] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2250), 2, + STATE(2174), 2, sym_comment, sym_include, - ACTIONS(3251), 29, + ACTIONS(2925), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -190437,21 +189381,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161804] = 5, + [159030] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2251), 2, + STATE(2175), 2, sym_comment, sym_include, - ACTIONS(3253), 29, + ACTIONS(2851), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -190477,21 +189422,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161849] = 5, + [159076] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2252), 2, + STATE(2176), 2, sym_comment, sym_include, - ACTIONS(3255), 29, + ACTIONS(2929), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -190517,21 +189463,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161894] = 5, + [159122] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2253), 2, + STATE(2177), 2, sym_comment, sym_include, - ACTIONS(3257), 29, + ACTIONS(2931), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -190557,21 +189504,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161939] = 5, + [159168] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2254), 2, + ACTIONS(3512), 1, + ts_builtin_sym_end, + STATE(2178), 2, sym_comment, sym_include, - ACTIONS(3259), 29, + ACTIONS(2907), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -190597,21 +189546,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [161984] = 5, + [159216] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2255), 2, + ACTIONS(3622), 1, + ts_builtin_sym_end, + STATE(2179), 2, sym_comment, sym_include, - ACTIONS(3261), 29, + ACTIONS(3302), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -190637,22 +189588,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162029] = 6, + [159264] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3011), 1, - ts_builtin_sym_end, - STATE(2256), 2, + STATE(2180), 2, sym_comment, sym_include, - ACTIONS(3013), 28, + ACTIONS(2937), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -190678,21 +189629,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162076] = 5, + [159310] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2257), 2, + STATE(2181), 2, sym_comment, sym_include, - ACTIONS(3263), 29, + ACTIONS(2939), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -190718,22 +189670,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162121] = 6, + [159356] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3524), 1, + ACTIONS(2909), 1, ts_builtin_sym_end, - STATE(2258), 2, + STATE(2182), 2, sym_comment, sym_include, - ACTIONS(3015), 28, + ACTIONS(2911), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -190759,21 +189712,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162168] = 5, + [159404] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2259), 2, + ACTIONS(2913), 1, + ts_builtin_sym_end, + STATE(2183), 2, sym_comment, sym_include, - ACTIONS(3265), 29, + ACTIONS(2915), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -190799,21 +189754,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162213] = 5, + [159452] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2260), 2, + ACTIONS(2917), 1, + ts_builtin_sym_end, + STATE(2184), 2, sym_comment, sym_include, - ACTIONS(3267), 29, + ACTIONS(2919), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -190839,21 +189796,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162258] = 5, + [159500] = 18, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(3759), 1, + anon_sym_COMMA, + ACTIONS(3785), 1, + aux_sym_of_token1, + ACTIONS(3787), 1, + aux_sym_on_statement_token1, + STATE(457), 1, + sym__logical_operator, + STATE(458), 1, + sym__additive_operator, + STATE(465), 1, + sym__multiplicative_operator, + STATE(466), 1, + sym__comparison_operator, + STATE(4773), 1, + aux_sym_on_statement_repeat1, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2185), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, + [159572] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2261), 2, + STATE(2186), 2, sym_comment, sym_include, - ACTIONS(3269), 29, + ACTIONS(2941), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -190879,22 +189891,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162303] = 6, + [159618] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3017), 1, - ts_builtin_sym_end, - STATE(2262), 2, + STATE(2187), 2, sym_comment, sym_include, - ACTIONS(3019), 28, + ACTIONS(2943), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -190920,21 +189932,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162350] = 5, + [159664] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2263), 2, + STATE(2188), 2, sym_comment, sym_include, - ACTIONS(3271), 29, + ACTIONS(2945), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -190960,22 +189973,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162395] = 6, + [159710] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3021), 1, - ts_builtin_sym_end, - STATE(2264), 2, + STATE(2189), 2, sym_comment, sym_include, - ACTIONS(3023), 28, + ACTIONS(2949), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -191001,21 +190014,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162442] = 5, + [159756] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2265), 2, + STATE(2190), 2, sym_comment, sym_include, - ACTIONS(3273), 29, + ACTIONS(2955), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -191041,86 +190055,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162487] = 29, - ACTIONS(65), 1, + [159802] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(2908), 1, - sym_of, - STATE(2989), 1, - sym__pre_tuning, - STATE(3025), 1, - aux_sym_for_phrase_repeat1, - STATE(3078), 1, - sym_where_clause, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3443), 1, - aux_sym_for_phrase_repeat2, - STATE(4192), 1, - sym_on_error_phrase, - STATE(4387), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4966), 1, - aux_sym_for_statement_repeat1, - STATE(4975), 1, - sym_on_stop_phrase, - STATE(5765), 1, - sym_body, - STATE(2266), 2, + STATE(2191), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [162580] = 6, + ACTIONS(2967), 30, + sym_identifier, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [159848] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3620), 1, + ACTIONS(3514), 1, ts_builtin_sym_end, - STATE(2267), 2, + STATE(2192), 2, sym_comment, sym_include, - ACTIONS(3402), 28, + ACTIONS(2921), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -191146,21 +190138,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162627] = 5, + [159896] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2268), 2, + ACTIONS(2923), 1, + ts_builtin_sym_end, + STATE(2193), 2, sym_comment, sym_include, - ACTIONS(3275), 29, + ACTIONS(2925), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -191186,21 +190180,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162672] = 5, + [159944] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3791), 1, + sym__escaped_string, + STATE(2194), 2, + sym_comment, + sym_include, + ACTIONS(3789), 30, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_type_tuning_token1, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_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, + aux_sym_field_definition_token1, + aux_sym_index_tuning_token1, + aux_sym_index_definition_token1, + [159990] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2269), 2, + ACTIONS(3516), 1, + ts_builtin_sym_end, + STATE(2195), 2, sym_comment, sym_include, - ACTIONS(3277), 29, + ACTIONS(2929), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -191226,22 +190263,109 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162717] = 6, + [160038] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3618), 1, - ts_builtin_sym_end, - STATE(2270), 2, + STATE(2196), 2, + sym_comment, + sym_include, + ACTIONS(100), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(102), 27, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + [160086] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2704), 1, + anon_sym_LBRACK, + ACTIONS(2706), 1, + anon_sym_LPAREN, + STATE(2476), 1, + sym_function_arguments, + ACTIONS(65), 2, + sym__or_operator, + sym__and_operator, + STATE(2197), 2, + sym_comment, + sym_include, + ACTIONS(71), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [160140] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2198), 2, sym_comment, sym_include, - ACTIONS(3404), 28, + ACTIONS(2985), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -191267,22 +190391,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162764] = 6, + [160186] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3526), 1, + ACTIONS(2661), 1, + sym__namecolon, + STATE(1922), 1, + aux_sym_object_access_repeat1, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(2199), 2, + sym_comment, + sym_include, + ACTIONS(91), 26, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + [160238] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3518), 1, ts_builtin_sym_end, - STATE(2271), 2, + STATE(2200), 2, sym_comment, sym_include, - ACTIONS(3025), 28, + ACTIONS(2931), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -191308,21 +190477,118 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162811] = 5, + [160286] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(885), 1, + sym__comparison_operator, + STATE(886), 1, + sym__multiplicative_operator, + STATE(887), 1, + sym__additive_operator, + STATE(888), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(2201), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(3793), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(1090), 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, + [160346] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(885), 1, + sym__comparison_operator, + STATE(886), 1, + sym__multiplicative_operator, + STATE(887), 1, + sym__additive_operator, + STATE(888), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(2202), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1202), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(1090), 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, + [160406] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2272), 2, + STATE(2203), 2, sym_comment, sym_include, - ACTIONS(3279), 29, + ACTIONS(3003), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -191348,22 +190614,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162856] = 6, + [160452] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3714), 1, + ACTIONS(3520), 1, ts_builtin_sym_end, - STATE(2273), 2, + STATE(2204), 2, sym_comment, sym_include, - ACTIONS(3357), 28, + ACTIONS(2937), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -191389,21 +190656,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162903] = 5, + [160500] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2274), 2, + STATE(2205), 2, sym_comment, sym_include, - ACTIONS(3281), 29, + ACTIONS(3007), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -191429,21 +190697,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162948] = 5, + [160546] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2275), 2, + ACTIONS(3522), 1, + ts_builtin_sym_end, + STATE(2206), 2, sym_comment, sym_include, - ACTIONS(3283), 29, + ACTIONS(2939), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -191469,21 +190739,115 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [162993] = 5, + [160594] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(885), 1, + sym__comparison_operator, + STATE(886), 1, + sym__multiplicative_operator, + STATE(887), 1, + sym__additive_operator, + STATE(888), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1212), 2, + sym__or_operator, + sym__and_operator, + STATE(2207), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1210), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(1090), 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, + [160654] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(885), 1, + sym__comparison_operator, + STATE(886), 1, + sym__multiplicative_operator, + STATE(887), 1, + sym__additive_operator, + STATE(888), 1, + sym__logical_operator, + ACTIONS(1216), 2, + sym__or_operator, + sym__and_operator, + STATE(2208), 2, + sym_comment, + sym_include, + ACTIONS(1214), 25, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_STAR, + anon_sym_DQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_include_argument_token1, + [160708] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2276), 2, + STATE(2209), 2, sym_comment, sym_include, - ACTIONS(3285), 29, + ACTIONS(3009), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -191509,21 +190873,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163038] = 5, + [160754] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2277), 2, + STATE(2210), 2, sym_comment, sym_include, - ACTIONS(3289), 29, + ACTIONS(3011), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -191549,21 +190914,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163083] = 5, + [160800] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(885), 1, + sym__comparison_operator, + STATE(886), 1, + sym__multiplicative_operator, + STATE(887), 1, + sym__additive_operator, + STATE(888), 1, + sym__logical_operator, + ACTIONS(1121), 2, + sym__or_operator, + sym__and_operator, + STATE(2211), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1119), 22, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_DQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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, + [160856] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2278), 2, + STATE(2212), 2, sym_comment, sym_include, - ACTIONS(3293), 29, + ACTIONS(3013), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -191589,21 +191001,119 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163128] = 5, + [160902] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(885), 1, + sym__comparison_operator, + STATE(886), 1, + sym__multiplicative_operator, + STATE(887), 1, + sym__additive_operator, + STATE(888), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(2213), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1194), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(1090), 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, + [160962] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(885), 1, + sym__comparison_operator, + STATE(886), 1, + sym__multiplicative_operator, + STATE(887), 1, + sym__additive_operator, + STATE(888), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(2214), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1115), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(1090), 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, + [161022] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2279), 2, + ACTIONS(3524), 1, + ts_builtin_sym_end, + STATE(2215), 2, sym_comment, sym_include, - ACTIONS(3295), 29, + ACTIONS(2941), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -191629,21 +191139,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163173] = 5, + [161070] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2280), 2, + ACTIONS(3037), 1, + ts_builtin_sym_end, + STATE(2216), 2, sym_comment, sym_include, - ACTIONS(3297), 29, + ACTIONS(3039), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -191669,21 +191181,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163218] = 5, + [161118] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2281), 2, + STATE(2217), 2, sym_comment, sym_include, - ACTIONS(3299), 29, + ACTIONS(3015), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -191709,21 +191222,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163263] = 5, + [161164] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2282), 2, + ACTIONS(3526), 1, + ts_builtin_sym_end, + STATE(2218), 2, sym_comment, sym_include, - ACTIONS(3301), 29, + ACTIONS(2943), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -191749,7 +191264,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163308] = 6, + [161212] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -191758,13 +191273,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(3528), 1, ts_builtin_sym_end, - STATE(2283), 2, + STATE(2219), 2, sym_comment, sym_include, - ACTIONS(3027), 28, + ACTIONS(2945), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -191790,22 +191306,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163355] = 6, + [161260] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3147), 1, + ACTIONS(3041), 1, ts_builtin_sym_end, - STATE(2284), 2, + STATE(2220), 2, sym_comment, sym_include, - ACTIONS(3149), 28, + ACTIONS(3043), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -191831,39 +191348,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163402] = 13, + [161308] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(867), 1, + ACTIONS(3530), 1, + ts_builtin_sym_end, + STATE(2221), 2, + sym_comment, + sym_include, + ACTIONS(2949), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [161356] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(885), 1, sym__comparison_operator, - STATE(868), 1, + STATE(886), 1, sym__multiplicative_operator, - STATE(869), 1, + STATE(887), 1, sym__additive_operator, - STATE(870), 1, + STATE(888), 1, sym__logical_operator, - ACTIONS(1077), 2, + ACTIONS(1088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2285), 2, + STATE(2222), 2, sym_comment, sym_include, - ACTIONS(1075), 3, + ACTIONS(1086), 3, anon_sym_SLASH, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(3774), 3, + ACTIONS(1198), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(1079), 15, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(1090), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -191879,86 +191438,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [163463] = 29, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(2930), 1, - sym_of, - STATE(3008), 1, - sym__pre_tuning, - STATE(3046), 1, - sym_where_clause, - STATE(3048), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3460), 1, - aux_sym_for_phrase_repeat2, - STATE(4179), 1, - sym_on_error_phrase, - STATE(4398), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4926), 1, - aux_sym_for_statement_repeat1, - STATE(4937), 1, - sym_on_stop_phrase, - STATE(5458), 1, - sym_body, - STATE(2286), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [163556] = 6, + [161416] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3530), 1, - ts_builtin_sym_end, - STATE(2287), 2, + STATE(2223), 2, sym_comment, sym_include, - ACTIONS(3029), 28, + ACTIONS(3017), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -191984,22 +191479,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163603] = 6, + [161462] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3532), 1, - ts_builtin_sym_end, - STATE(2288), 2, + STATE(2224), 2, sym_comment, sym_include, - ACTIONS(3031), 28, + ACTIONS(3019), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -192025,22 +191520,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163650] = 6, + [161508] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3534), 1, - ts_builtin_sym_end, - STATE(2289), 2, + STATE(2225), 2, sym_comment, sym_include, - ACTIONS(3033), 28, + ACTIONS(3021), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -192066,22 +191561,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163697] = 6, + [161554] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(885), 1, + sym__comparison_operator, + STATE(886), 1, + sym__multiplicative_operator, + STATE(887), 1, + sym__additive_operator, + STATE(888), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(2226), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1111), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(1090), 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, + [161614] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3536), 1, - ts_builtin_sym_end, - STATE(2290), 2, + STATE(2227), 2, sym_comment, sym_include, - ACTIONS(3041), 28, + ACTIONS(3027), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -192107,21 +191650,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163744] = 5, + [161660] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2291), 2, + STATE(2228), 2, sym_comment, sym_include, - ACTIONS(3313), 29, + ACTIONS(2849), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -192147,21 +191691,118 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163789] = 5, + [161706] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(885), 1, + sym__comparison_operator, + STATE(886), 1, + sym__multiplicative_operator, + STATE(887), 1, + sym__additive_operator, + STATE(888), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(2229), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1206), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(1090), 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, + [161766] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(885), 1, + sym__comparison_operator, + STATE(886), 1, + sym__multiplicative_operator, + STATE(887), 1, + sym__additive_operator, + STATE(888), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(2230), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1190), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(1090), 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, + [161826] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2292), 2, + STATE(2231), 2, sym_comment, sym_include, - ACTIONS(3315), 29, + ACTIONS(3119), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -192187,21 +191828,118 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163834] = 5, + [161872] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(885), 1, + sym__comparison_operator, + STATE(886), 1, + sym__multiplicative_operator, + STATE(887), 1, + sym__additive_operator, + STATE(888), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(2232), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(1123), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(1090), 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, + [161932] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(885), 1, + sym__comparison_operator, + STATE(886), 1, + sym__multiplicative_operator, + STATE(887), 1, + sym__additive_operator, + STATE(888), 1, + sym__logical_operator, + ACTIONS(230), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2233), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(232), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(1090), 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, + [161992] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2293), 2, + STATE(2234), 2, sym_comment, sym_include, - ACTIONS(3317), 29, + ACTIONS(3121), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -192227,21 +191965,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163879] = 5, + [162038] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2294), 2, + ACTIONS(3045), 1, + ts_builtin_sym_end, + STATE(2235), 2, sym_comment, sym_include, - ACTIONS(3319), 29, + ACTIONS(3047), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -192267,21 +192007,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163924] = 5, + [162086] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2295), 2, + STATE(2236), 2, sym_comment, sym_include, - ACTIONS(3321), 29, + ACTIONS(3127), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -192307,21 +192048,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [163969] = 5, + [162132] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2296), 2, + STATE(2237), 2, sym_comment, sym_include, - ACTIONS(3323), 29, + ACTIONS(3129), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -192347,21 +192089,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164014] = 5, + [162178] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2297), 2, + STATE(2238), 2, sym_comment, sym_include, - ACTIONS(3325), 29, + ACTIONS(3131), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -192387,21 +192130,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164059] = 5, + [162224] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2298), 2, + ACTIONS(3049), 1, + ts_builtin_sym_end, + STATE(2239), 2, sym_comment, sym_include, - ACTIONS(3327), 29, + ACTIONS(3051), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -192427,21 +192172,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164104] = 5, + [162272] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2299), 2, + ACTIONS(3636), 1, + ts_builtin_sym_end, + STATE(2240), 2, sym_comment, sym_include, - ACTIONS(3329), 29, + ACTIONS(3606), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -192467,22 +192214,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164149] = 6, + [162320] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3538), 1, - ts_builtin_sym_end, - STATE(2300), 2, + STATE(2241), 2, sym_comment, sym_include, - ACTIONS(3069), 28, + ACTIONS(3133), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -192508,21 +192255,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164196] = 5, + [162366] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2301), 2, + STATE(2242), 2, sym_comment, sym_include, - ACTIONS(3331), 29, + ACTIONS(3137), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -192548,21 +192296,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164241] = 5, + [162412] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2302), 2, + ACTIONS(3532), 1, + ts_builtin_sym_end, + STATE(2243), 2, sym_comment, sym_include, - ACTIONS(3333), 29, + ACTIONS(2955), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -192588,22 +192338,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164286] = 6, + [162460] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3353), 1, - ts_builtin_sym_end, - STATE(2303), 2, + STATE(2244), 2, sym_comment, sym_include, - ACTIONS(3355), 28, + ACTIONS(3141), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -192629,22 +192379,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164333] = 6, + [162506] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3540), 1, - ts_builtin_sym_end, - STATE(2304), 2, + STATE(2245), 2, sym_comment, sym_include, - ACTIONS(3071), 28, + ACTIONS(3143), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -192670,21 +192420,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164380] = 5, + [162552] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2305), 2, + STATE(2246), 2, sym_comment, sym_include, - ACTIONS(3335), 29, + ACTIONS(3145), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -192710,21 +192461,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164425] = 5, + [162598] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2306), 2, + STATE(2247), 2, sym_comment, sym_include, - ACTIONS(3337), 29, + ACTIONS(3147), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -192750,22 +192502,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164470] = 6, + [162644] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3542), 1, + ACTIONS(3534), 1, ts_builtin_sym_end, - STATE(2307), 2, + STATE(2248), 2, sym_comment, sym_include, - ACTIONS(3073), 28, + ACTIONS(2967), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -192791,22 +192544,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164517] = 6, + [162692] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3544), 1, + ACTIONS(3055), 1, ts_builtin_sym_end, - STATE(2308), 2, + STATE(2249), 2, sym_comment, sym_include, - ACTIONS(3075), 28, + ACTIONS(3057), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -192832,22 +192586,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164564] = 6, + [162740] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3428), 1, ts_builtin_sym_end, - STATE(2309), 2, + STATE(2250), 2, sym_comment, sym_include, - ACTIONS(3293), 28, + ACTIONS(3059), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -192873,21 +192628,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164611] = 5, + [162788] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2310), 2, + STATE(2251), 2, sym_comment, sym_include, - ACTIONS(3339), 29, + ACTIONS(3149), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -192913,62 +192669,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164656] = 6, + [162834] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3546), 1, - ts_builtin_sym_end, - STATE(2311), 2, - sym_comment, - sym_include, - ACTIONS(3077), 28, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [164703] = 5, + STATE(821), 1, + sym__comparison_operator, + STATE(822), 1, + sym__multiplicative_operator, + STATE(823), 1, + sym__additive_operator, + STATE(824), 1, + sym__logical_operator, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + STATE(2252), 2, + sym_comment, + sym_include, + ACTIONS(1086), 3, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(3754), 4, + sym_identifier, + sym__terminator, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + ACTIONS(1090), 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, + [162896] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2312), 2, + STATE(2253), 2, sym_comment, sym_include, - ACTIONS(3345), 29, + ACTIONS(3153), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -192994,21 +192759,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164748] = 5, + [162942] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2313), 2, + STATE(2254), 2, sym_comment, sym_include, - ACTIONS(3347), 29, + ACTIONS(3155), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -193034,21 +192800,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164793] = 5, + [162988] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2314), 2, + STATE(2255), 2, sym_comment, sym_include, - ACTIONS(3349), 29, + ACTIONS(3157), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -193074,21 +192841,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164838] = 5, + [163034] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2315), 2, + STATE(2256), 2, sym_comment, sym_include, - ACTIONS(3351), 29, + ACTIONS(3161), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -193114,21 +192882,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164883] = 5, + [163080] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2316), 2, + STATE(2257), 2, sym_comment, sym_include, - ACTIONS(3355), 29, + ACTIONS(3163), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -193154,22 +192923,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164928] = 6, + [163126] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2971), 1, + ACTIONS(3536), 1, ts_builtin_sym_end, - STATE(2317), 2, + STATE(2258), 2, sym_comment, sym_include, - ACTIONS(2973), 28, + ACTIONS(2985), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -193195,22 +192965,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [164975] = 6, + [163174] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3548), 1, + ACTIONS(3538), 1, ts_builtin_sym_end, - STATE(2318), 2, + STATE(2259), 2, sym_comment, sym_include, - ACTIONS(3079), 28, + ACTIONS(3003), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -193236,64 +193007,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165022] = 8, + [163222] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2458), 1, - sym_identifier, - STATE(32), 1, - sym_qualified_name, - ACTIONS(1366), 2, - sym__or_operator, - sym__and_operator, - STATE(2319), 2, - sym_comment, - sym_include, - ACTIONS(1364), 25, - anon_sym_SLASH, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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, - [165073] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2320), 2, + STATE(2260), 2, sym_comment, sym_include, - ACTIONS(3362), 29, + ACTIONS(3165), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -193319,21 +193048,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165118] = 5, + [163268] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2321), 2, + STATE(2261), 2, sym_comment, sym_include, - ACTIONS(3364), 29, + ACTIONS(3167), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -193359,22 +193089,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165163] = 6, + [163314] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3677), 1, + ACTIONS(3540), 1, ts_builtin_sym_end, - STATE(2322), 2, + STATE(2262), 2, sym_comment, sym_include, - ACTIONS(3269), 28, + ACTIONS(3005), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -193400,22 +193131,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165210] = 6, + [163362] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3696), 1, + ACTIONS(3542), 1, ts_builtin_sym_end, - STATE(2323), 2, + STATE(2263), 2, sym_comment, sym_include, - ACTIONS(3275), 28, + ACTIONS(3007), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -193441,21 +193173,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165257] = 5, + [163410] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2324), 2, + ACTIONS(3544), 1, + ts_builtin_sym_end, + STATE(2264), 2, sym_comment, sym_include, - ACTIONS(3366), 29, + ACTIONS(3009), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -193481,21 +193215,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165302] = 5, + [163458] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2325), 2, + STATE(2265), 2, sym_comment, sym_include, - ACTIONS(3368), 29, + ACTIONS(3169), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -193521,22 +193256,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165347] = 6, + [163504] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3550), 1, + ACTIONS(3426), 1, ts_builtin_sym_end, - STATE(2326), 2, + STATE(2266), 2, sym_comment, sym_include, - ACTIONS(3081), 28, + ACTIONS(3063), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -193562,22 +193298,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165394] = 6, + [163552] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3552), 1, + ACTIONS(3546), 1, ts_builtin_sym_end, - STATE(2327), 2, + STATE(2267), 2, sym_comment, sym_include, - ACTIONS(3083), 28, + ACTIONS(3011), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -193603,22 +193340,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165441] = 6, + [163600] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3716), 1, + ACTIONS(3548), 1, ts_builtin_sym_end, - STATE(2328), 2, + STATE(2268), 2, sym_comment, sym_include, - ACTIONS(3351), 28, + ACTIONS(3013), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -193644,21 +193382,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165488] = 5, + [163648] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2329), 2, + STATE(2269), 2, sym_comment, sym_include, - ACTIONS(3370), 29, + ACTIONS(3173), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -193684,21 +193423,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165533] = 5, + [163694] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2330), 2, + STATE(2270), 2, sym_comment, sym_include, - ACTIONS(3372), 29, + ACTIONS(3183), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -193724,21 +193464,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165578] = 5, + [163740] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2331), 2, + ACTIONS(3550), 1, + ts_builtin_sym_end, + STATE(2271), 2, sym_comment, sym_include, - ACTIONS(3374), 29, + ACTIONS(3015), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -193764,21 +193506,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165623] = 5, + [163788] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(702), 1, + sym__logical_operator, + STATE(707), 1, + sym__additive_operator, + STATE(709), 1, + sym__multiplicative_operator, + STATE(710), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2272), 2, + sym_comment, + sym_include, + ACTIONS(3795), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(2409), 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, + [163854] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2332), 2, + STATE(2273), 2, sym_comment, sym_include, - ACTIONS(3376), 29, + ACTIONS(3185), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -193804,21 +193598,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165668] = 5, + [163900] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2333), 2, + ACTIONS(3424), 1, + ts_builtin_sym_end, + STATE(2274), 2, sym_comment, sym_include, - ACTIONS(3378), 29, + ACTIONS(3065), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -193844,22 +193640,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165713] = 6, + [163948] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3768), 1, - ts_builtin_sym_end, - STATE(2334), 2, + STATE(2275), 2, sym_comment, sym_include, - ACTIONS(3295), 28, + ACTIONS(3191), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -193885,22 +193681,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165760] = 6, + [163994] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3554), 1, + ACTIONS(3552), 1, ts_builtin_sym_end, - STATE(2335), 2, + STATE(2276), 2, sym_comment, sym_include, - ACTIONS(3085), 28, + ACTIONS(3017), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -193926,22 +193723,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165807] = 6, + [164042] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3718), 1, + ACTIONS(3554), 1, ts_builtin_sym_end, - STATE(2336), 2, + STATE(2277), 2, sym_comment, sym_include, - ACTIONS(3349), 28, + ACTIONS(3019), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -193967,21 +193765,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165854] = 5, + [164090] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2337), 2, + STATE(2278), 2, sym_comment, sym_include, - ACTIONS(3384), 29, + ACTIONS(3193), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -194007,21 +193806,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165899] = 5, + [164136] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2338), 2, + ACTIONS(3422), 1, + ts_builtin_sym_end, + STATE(2279), 2, sym_comment, sym_include, - ACTIONS(3386), 29, + ACTIONS(3095), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [164184] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2280), 2, + sym_comment, + sym_include, + ACTIONS(3195), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -194047,21 +193889,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165944] = 5, + [164230] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2339), 2, + STATE(2281), 2, sym_comment, sym_include, - ACTIONS(3388), 29, + ACTIONS(3207), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -194087,21 +193930,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [165989] = 5, + [164276] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2340), 2, + STATE(2282), 2, sym_comment, sym_include, - ACTIONS(3390), 29, + ACTIONS(3237), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -194127,22 +193971,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166034] = 6, + [164322] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3556), 1, - ts_builtin_sym_end, - STATE(2341), 2, + ACTIONS(2655), 1, + anon_sym_LBRACK, + ACTIONS(2657), 1, + anon_sym_LPAREN, + STATE(2510), 1, + sym_function_arguments, + ACTIONS(65), 2, + sym__or_operator, + sym__and_operator, + STATE(2283), 2, sym_comment, sym_include, - ACTIONS(3087), 28, + ACTIONS(71), 25, + anon_sym_SLASH, sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + [164376] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2284), 2, + sym_comment, + sym_include, + ACTIONS(3213), 30, + sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -194168,22 +194057,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166081] = 6, + [164422] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3558), 1, + ACTIONS(3420), 1, ts_builtin_sym_end, - STATE(2342), 2, + STATE(2285), 2, sym_comment, sym_include, - ACTIONS(3089), 28, + ACTIONS(3099), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -194209,21 +194099,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166128] = 5, + [164470] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2343), 2, + ACTIONS(3418), 1, + ts_builtin_sym_end, + STATE(2286), 2, sym_comment, sym_include, - ACTIONS(3392), 29, + ACTIONS(3101), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -194249,21 +194141,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166173] = 5, + [164518] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2344), 2, + STATE(2287), 2, sym_comment, sym_include, - ACTIONS(3394), 29, + ACTIONS(3215), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -194289,22 +194182,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166218] = 6, + [164564] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3661), 1, - ts_builtin_sym_end, - STATE(2345), 2, + STATE(2288), 2, sym_comment, sym_include, - ACTIONS(3267), 28, + ACTIONS(3219), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -194330,21 +194223,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166265] = 5, + [164610] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2346), 2, + ACTIONS(3416), 1, + ts_builtin_sym_end, + STATE(2289), 2, sym_comment, sym_include, - ACTIONS(3402), 29, + ACTIONS(3103), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -194370,21 +194265,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166310] = 5, + [164658] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2347), 2, + STATE(2290), 2, sym_comment, sym_include, - ACTIONS(3404), 29, + ACTIONS(3221), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -194410,22 +194306,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166355] = 6, + [164704] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3659), 1, + ACTIONS(3556), 1, ts_builtin_sym_end, - STATE(2348), 2, + STATE(2291), 2, sym_comment, sym_include, - ACTIONS(3265), 28, + ACTIONS(3021), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -194451,22 +194348,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166402] = 6, + [164752] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3657), 1, + ACTIONS(3414), 1, ts_builtin_sym_end, - STATE(2349), 2, + STATE(2292), 2, sym_comment, sym_include, - ACTIONS(3263), 28, + ACTIONS(3105), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -194492,22 +194390,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166449] = 6, + [164800] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3639), 1, + ACTIONS(3412), 1, ts_builtin_sym_end, - STATE(2350), 2, + STATE(2293), 2, sym_comment, sym_include, - ACTIONS(3261), 28, + ACTIONS(3107), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -194533,21 +194432,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166496] = 5, + [164848] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2351), 2, + STATE(2294), 2, sym_comment, sym_include, - ACTIONS(3406), 29, + ACTIONS(3227), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -194573,21 +194473,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166541] = 5, + [164894] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2352), 2, + STATE(2295), 2, sym_comment, sym_include, - ACTIONS(3408), 29, + ACTIONS(3229), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -194613,21 +194514,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166586] = 5, + [164940] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2353), 2, + ACTIONS(3410), 1, + ts_builtin_sym_end, + STATE(2296), 2, sym_comment, sym_include, - ACTIONS(3410), 29, + ACTIONS(3109), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -194653,22 +194556,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166631] = 6, + [164988] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3634), 1, + ACTIONS(3570), 1, ts_builtin_sym_end, - STATE(2354), 2, + STATE(2297), 2, sym_comment, sym_include, - ACTIONS(3259), 28, + ACTIONS(3131), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -194694,86 +194598,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166678] = 29, - ACTIONS(65), 1, + [165036] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(2967), 1, - sym_of, - STATE(2985), 1, - sym__pre_tuning, - STATE(3024), 1, - aux_sym_for_phrase_repeat1, - STATE(3026), 1, - sym_where_clause, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3469), 1, - aux_sym_for_phrase_repeat2, - STATE(4037), 1, - sym_on_error_phrase, - STATE(4452), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4770), 1, - aux_sym_for_statement_repeat1, - STATE(4781), 1, - sym_on_stop_phrase, - STATE(5471), 1, - sym_body, - STATE(2355), 2, + STATE(2298), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [166771] = 6, + ACTIONS(3231), 30, + sym_identifier, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [165082] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3560), 1, - ts_builtin_sym_end, - STATE(2356), 2, + STATE(2299), 2, sym_comment, sym_include, - ACTIONS(3139), 28, + ACTIONS(3233), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -194799,22 +194680,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166818] = 6, + [165128] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3562), 1, - ts_builtin_sym_end, - STATE(2357), 2, + STATE(2300), 2, sym_comment, sym_include, - ACTIONS(3167), 28, + ACTIONS(3235), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -194840,21 +194721,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166865] = 5, + [165174] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2358), 2, + STATE(2301), 2, sym_comment, sym_include, - ACTIONS(3420), 29, + ACTIONS(3239), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -194880,21 +194762,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166910] = 5, + [165220] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2359), 2, + ACTIONS(3558), 1, + ts_builtin_sym_end, + STATE(2302), 2, sym_comment, sym_include, - ACTIONS(3247), 29, + ACTIONS(3027), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -194920,21 +194804,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [166955] = 5, + [165268] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2360), 2, + ACTIONS(3560), 1, + ts_builtin_sym_end, + STATE(2303), 2, sym_comment, sym_include, - ACTIONS(3784), 29, + ACTIONS(2849), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -194960,86 +194846,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167000] = 29, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(2943), 1, - sym_of, - STATE(2990), 1, - sym__pre_tuning, - STATE(3021), 1, - aux_sym_for_phrase_repeat1, - STATE(3065), 1, - sym_where_clause, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3457), 1, - aux_sym_for_phrase_repeat2, - STATE(3992), 1, - sym_on_error_phrase, - STATE(4433), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4732), 1, - aux_sym_for_statement_repeat1, - STATE(4740), 1, - sym_on_stop_phrase, - STATE(5603), 1, - sym_body, - STATE(2361), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [167093] = 6, + [165316] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3456), 1, - ts_builtin_sym_end, - STATE(2362), 2, + STATE(2304), 2, sym_comment, sym_include, - ACTIONS(3151), 28, + ACTIONS(3241), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -195065,22 +194887,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167140] = 6, + [165362] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3720), 1, + ACTIONS(3562), 1, ts_builtin_sym_end, - STATE(2363), 2, + STATE(2305), 2, sym_comment, sym_include, - ACTIONS(3347), 28, + ACTIONS(3119), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -195106,21 +194929,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167187] = 5, + [165410] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2364), 2, + ACTIONS(3564), 1, + ts_builtin_sym_end, + STATE(2306), 2, sym_comment, sym_include, - ACTIONS(3422), 29, + ACTIONS(3121), 29, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -195146,38 +194971,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167232] = 8, + [165458] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3799), 1, + sym__escaped_string, + STATE(2307), 2, + sym_comment, + sym_include, + ACTIONS(3797), 30, + anon_sym_COLON, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [165504] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3820), 1, - aux_sym_buffer_definition_token2, - ACTIONS(3822), 1, - aux_sym_repeat_statement_token1, - ACTIONS(3824), 1, - aux_sym_do_block_token1, - STATE(2365), 2, + STATE(2308), 2, sym_comment, sym_include, - ACTIONS(3424), 26, + ACTIONS(3243), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_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, @@ -195189,21 +195053,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167283] = 5, + [165550] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2366), 2, + STATE(2309), 2, sym_comment, sym_include, - ACTIONS(3424), 29, + ACTIONS(3247), 30, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -195229,22 +195094,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167328] = 6, + [165596] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3564), 1, + ACTIONS(3566), 1, ts_builtin_sym_end, - STATE(2367), 2, + STATE(2310), 2, sym_comment, sym_include, - ACTIONS(3169), 28, + ACTIONS(3127), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -195270,22 +195136,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167375] = 6, + [165644] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3432), 1, + ACTIONS(3568), 1, ts_builtin_sym_end, - STATE(2368), 2, + STATE(2311), 2, sym_comment, sym_include, - ACTIONS(3245), 28, + ACTIONS(3129), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -195311,22 +195178,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167422] = 6, + [165692] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3566), 1, + ACTIONS(3572), 1, ts_builtin_sym_end, - STATE(2369), 2, + STATE(2312), 2, sym_comment, sym_include, - ACTIONS(3171), 28, + ACTIONS(3133), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -195352,22 +195220,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167469] = 6, + [165740] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3568), 1, - ts_builtin_sym_end, - STATE(2370), 2, + STATE(2313), 2, sym_comment, sym_include, - ACTIONS(3173), 28, + ACTIONS(3263), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -195393,22 +195261,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167516] = 6, + [165786] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3434), 1, - ts_builtin_sym_end, - STATE(2371), 2, + STATE(2314), 2, sym_comment, sym_include, - ACTIONS(3243), 28, + ACTIONS(3265), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -195434,22 +195302,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167563] = 6, + [165832] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3436), 1, - ts_builtin_sym_end, - STATE(2372), 2, + STATE(2315), 2, sym_comment, sym_include, - ACTIONS(3241), 28, + ACTIONS(3267), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -195475,22 +195343,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167610] = 6, + [165878] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3175), 1, - ts_builtin_sym_end, - STATE(2373), 2, + STATE(2316), 2, sym_comment, sym_include, - ACTIONS(3177), 28, + ACTIONS(3269), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -195516,22 +195384,108 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167657] = 6, + [165924] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3570), 1, - ts_builtin_sym_end, - STATE(2374), 2, + STATE(2317), 2, + sym_comment, + sym_include, + ACTIONS(100), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(102), 27, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [165972] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2710), 1, + sym__namecolon, + STATE(1928), 1, + aux_sym_object_access_repeat1, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(2318), 2, sym_comment, sym_include, - ACTIONS(3179), 28, + ACTIONS(91), 26, + anon_sym_SLASH, sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [166024] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2319), 2, + sym_comment, + sym_include, + ACTIONS(3271), 30, + sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -195557,22 +195511,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167704] = 6, + [166070] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - ts_builtin_sym_end, - STATE(2375), 2, + STATE(2320), 2, sym_comment, sym_include, - ACTIONS(3181), 28, + ACTIONS(3273), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -195598,22 +195552,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167751] = 6, + [166116] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3454), 1, + ACTIONS(3139), 1, ts_builtin_sym_end, - STATE(2376), 2, + STATE(2321), 2, sym_comment, sym_include, - ACTIONS(3153), 28, + ACTIONS(3141), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -195639,22 +195594,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167798] = 6, + [166164] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3452), 1, + ACTIONS(3111), 1, ts_builtin_sym_end, - STATE(2377), 2, + STATE(2322), 2, sym_comment, sym_include, - ACTIONS(3155), 28, + ACTIONS(3113), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -195680,22 +195636,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167845] = 6, + [166212] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3450), 1, - ts_builtin_sym_end, - STATE(2378), 2, + STATE(2323), 2, sym_comment, sym_include, - ACTIONS(3157), 28, + ACTIONS(3296), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -195721,22 +195677,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167892] = 6, + [166258] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3490), 1, - ts_builtin_sym_end, - STATE(2379), 2, + STATE(2324), 2, sym_comment, sym_include, - ACTIONS(3055), 28, + ACTIONS(3298), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -195762,22 +195718,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167939] = 6, + [166304] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3183), 1, + ACTIONS(3135), 1, ts_builtin_sym_end, - STATE(2380), 2, + STATE(2325), 2, sym_comment, sym_include, - ACTIONS(3185), 28, + ACTIONS(3137), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -195803,22 +195760,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [167986] = 6, + [166352] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3632), 1, + ACTIONS(3115), 1, ts_builtin_sym_end, - STATE(2381), 2, + STATE(2326), 2, sym_comment, sym_include, - ACTIONS(3257), 28, + ACTIONS(3117), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -195844,22 +195802,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168033] = 6, + [166400] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3438), 1, + ACTIONS(3123), 1, ts_builtin_sym_end, - STATE(2382), 2, + STATE(2327), 2, sym_comment, sym_include, - ACTIONS(3235), 28, + ACTIONS(3125), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -195885,22 +195844,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168080] = 6, + [166448] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3574), 1, ts_builtin_sym_end, - STATE(2383), 2, + STATE(2328), 2, sym_comment, sym_include, - ACTIONS(3406), 28, + ACTIONS(3143), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -195926,22 +195886,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168127] = 6, + [166496] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, - ts_builtin_sym_end, - STATE(2384), 2, + STATE(2329), 2, sym_comment, sym_include, - ACTIONS(3233), 28, + ACTIONS(3300), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -195967,86 +195927,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168174] = 29, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(2933), 1, - sym_of, - STATE(3005), 1, - sym__pre_tuning, - STATE(3066), 1, - aux_sym_for_phrase_repeat1, - STATE(3067), 1, - sym_where_clause, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3455), 1, - aux_sym_for_phrase_repeat2, - STATE(4185), 1, - sym_on_error_phrase, - STATE(4207), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4572), 1, - aux_sym_for_statement_repeat1, - STATE(4579), 1, - sym_on_stop_phrase, - STATE(5886), 1, - sym_body, - STATE(2385), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [168267] = 6, + [166542] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3187), 1, - ts_builtin_sym_end, - STATE(2386), 2, + STATE(2330), 2, sym_comment, sym_include, - ACTIONS(3189), 28, + ACTIONS(3302), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -196072,22 +195968,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168314] = 6, + [166588] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3628), 1, - ts_builtin_sym_end, - STATE(2387), 2, + STATE(2331), 2, sym_comment, sym_include, - ACTIONS(3253), 28, + ACTIONS(3304), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -196113,22 +196009,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168361] = 6, + [166634] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3626), 1, + ACTIONS(3408), 1, ts_builtin_sym_end, - STATE(2388), 2, + STATE(2332), 2, sym_comment, sym_include, - ACTIONS(3251), 28, + ACTIONS(3151), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -196154,22 +196051,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168408] = 6, + [166682] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3622), 1, + ACTIONS(3576), 1, ts_builtin_sym_end, - STATE(2389), 2, + STATE(2333), 2, sym_comment, sym_include, - ACTIONS(3249), 28, + ACTIONS(3145), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -196195,22 +196093,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168455] = 6, + [166730] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3766), 1, + ACTIONS(3580), 1, ts_builtin_sym_end, - STATE(2390), 2, + STATE(2334), 2, sym_comment, sym_include, - ACTIONS(3297), 28, + ACTIONS(3149), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -196236,22 +196135,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168502] = 6, + [166778] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3764), 1, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(2839), 1, + aux_sym_input_expression_token2, + STATE(28), 1, + sym_qualified_name, + ACTIONS(1358), 2, + sym__or_operator, + sym__and_operator, + STATE(2335), 2, + sym_comment, + sym_include, + ACTIONS(1354), 25, + anon_sym_SLASH, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, + [166832] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3578), 1, ts_builtin_sym_end, - STATE(2391), 2, + STATE(2336), 2, sym_comment, sym_include, - ACTIONS(3299), 28, + ACTIONS(3147), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -196277,22 +196222,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168549] = 6, + [166880] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3762), 1, - ts_builtin_sym_end, - STATE(2392), 2, + STATE(2337), 2, sym_comment, sym_include, - ACTIONS(3301), 28, + ACTIONS(3354), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -196318,22 +196263,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168596] = 6, + [166926] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3442), 1, - ts_builtin_sym_end, - STATE(2393), 2, + STATE(2338), 2, sym_comment, sym_include, - ACTIONS(3231), 28, + ACTIONS(3287), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -196359,22 +196304,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168643] = 6, + [166972] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3444), 1, - ts_builtin_sym_end, - STATE(2394), 2, + STATE(2339), 2, sym_comment, sym_include, - ACTIONS(3229), 28, + ACTIONS(3746), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -196400,22 +196345,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168690] = 6, + [167018] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3225), 1, - ts_builtin_sym_end, - STATE(2395), 2, + STATE(2340), 2, sym_comment, sym_include, - ACTIONS(3227), 28, + ACTIONS(3356), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -196441,100 +196386,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168737] = 29, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(2942), 1, - sym_of, - STATE(2997), 1, - sym__pre_tuning, - STATE(3023), 1, - aux_sym_for_phrase_repeat1, - STATE(3074), 1, - sym_where_clause, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3487), 1, - aux_sym_for_phrase_repeat2, - STATE(4142), 1, - sym_on_error_phrase, - STATE(4396), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4948), 1, - sym_on_stop_phrase, - STATE(4955), 1, - aux_sym_for_statement_repeat1, - STATE(5787), 1, - sym_body, - STATE(2396), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [168830] = 6, + [167064] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3630), 1, - ts_builtin_sym_end, - STATE(2397), 2, + ACTIONS(3801), 1, + aux_sym_buffer_definition_token2, + ACTIONS(3803), 1, + aux_sym_repeat_statement_token1, + ACTIONS(3805), 1, + aux_sym_do_block_token1, + STATE(2341), 2, sym_comment, sym_include, - ACTIONS(3255), 28, + ACTIONS(3358), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, aux_sym_return_type_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym__function_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, @@ -196546,22 +196430,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168877] = 6, + [167116] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3606), 1, - ts_builtin_sym_end, - STATE(2398), 2, + STATE(2342), 2, sym_comment, sym_include, - ACTIONS(3410), 28, + ACTIONS(3358), 30, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -196587,22 +196471,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168924] = 6, + [167162] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3758), 1, + ACTIONS(3406), 1, ts_builtin_sym_end, - STATE(2399), 2, + STATE(2343), 2, sym_comment, sym_include, - ACTIONS(3313), 28, + ACTIONS(3171), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -196628,22 +196513,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [168971] = 6, + [167210] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3608), 1, + ACTIONS(3404), 1, ts_builtin_sym_end, - STATE(2400), 2, + STATE(2344), 2, sym_comment, sym_include, - ACTIONS(3408), 28, + ACTIONS(3175), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -196669,22 +196555,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [169018] = 6, + [167258] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3756), 1, + ACTIONS(3582), 1, ts_builtin_sym_end, - STATE(2401), 2, + STATE(2345), 2, sym_comment, sym_include, - ACTIONS(3315), 28, + ACTIONS(3153), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -196710,22 +196597,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [169065] = 6, + [167306] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3754), 1, + ACTIONS(3402), 1, ts_builtin_sym_end, - STATE(2402), 2, + STATE(2346), 2, sym_comment, sym_include, - ACTIONS(3317), 28, + ACTIONS(3177), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -196751,22 +196639,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [169112] = 6, + [167354] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3752), 1, + ACTIONS(3366), 1, ts_builtin_sym_end, - STATE(2403), 2, + STATE(2347), 2, sym_comment, sym_include, - ACTIONS(3319), 28, + ACTIONS(3283), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -196792,22 +196681,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [169159] = 6, + [167402] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3750), 1, + ACTIONS(3400), 1, ts_builtin_sym_end, - STATE(2404), 2, + STATE(2348), 2, sym_comment, sym_include, - ACTIONS(3321), 28, + ACTIONS(3179), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -196833,22 +196723,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [169206] = 6, + [167450] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3616), 1, + ACTIONS(3598), 1, ts_builtin_sym_end, - STATE(2405), 2, + STATE(2349), 2, sym_comment, sym_include, - ACTIONS(3239), 28, + ACTIONS(3155), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -196874,22 +196765,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [169253] = 6, + [167498] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3748), 1, + ACTIONS(3368), 1, ts_builtin_sym_end, - STATE(2406), 2, + STATE(2350), 2, sym_comment, sym_include, - ACTIONS(3323), 28, + ACTIONS(3281), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -196915,74 +196807,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [169300] = 17, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(3818), 1, - aux_sym_output_stream_statement_token1, - ACTIONS(3826), 1, - aux_sym_when_expression_token1, - STATE(818), 1, - sym__logical_operator, - STATE(820), 1, - sym__additive_operator, - STATE(825), 1, - sym__multiplicative_operator, - STATE(826), 1, - sym__comparison_operator, - STATE(5905), 1, - sym_when_expression, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2407), 2, - sym_comment, - sym_include, - ACTIONS(2396), 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, - [169369] = 6, + [167546] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3446), 1, + ACTIONS(3370), 1, ts_builtin_sym_end, - STATE(2408), 2, + STATE(2351), 2, sym_comment, sym_include, - ACTIONS(3223), 28, + ACTIONS(3279), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -197008,22 +196849,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [169416] = 6, + [167594] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3614), 1, + ACTIONS(3600), 1, ts_builtin_sym_end, - STATE(2409), 2, + STATE(2352), 2, sym_comment, sym_include, - ACTIONS(3237), 28, + ACTIONS(3157), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -197049,22 +196891,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [169463] = 6, + [167642] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3746), 1, + ACTIONS(3602), 1, ts_builtin_sym_end, - STATE(2410), 2, + STATE(2353), 2, sym_comment, sym_include, - ACTIONS(3325), 28, + ACTIONS(3159), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -197090,74 +196933,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [169510] = 17, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(3805), 1, - aux_sym_output_stream_statement_token1, - ACTIONS(3826), 1, - aux_sym_when_expression_token1, - STATE(818), 1, - sym__logical_operator, - STATE(820), 1, - sym__additive_operator, - STATE(825), 1, - sym__multiplicative_operator, - STATE(826), 1, - sym__comparison_operator, - STATE(5623), 1, - sym_when_expression, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2411), 2, - sym_comment, - sym_include, - ACTIONS(2396), 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, - [169579] = 6, + [167690] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3612), 1, + ACTIONS(3604), 1, ts_builtin_sym_end, - STATE(2412), 2, + STATE(2354), 2, sym_comment, sym_include, - ACTIONS(3221), 28, + ACTIONS(3161), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -197183,22 +196975,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [169626] = 6, + [167738] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, + ACTIONS(3608), 1, ts_builtin_sym_end, - STATE(2413), 2, + STATE(2355), 2, sym_comment, sym_include, - ACTIONS(3209), 28, + ACTIONS(3163), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -197224,22 +197017,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [169673] = 6, + [167786] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3744), 1, + ACTIONS(3610), 1, ts_builtin_sym_end, - STATE(2414), 2, + STATE(2356), 2, sym_comment, sym_include, - ACTIONS(3327), 28, + ACTIONS(3165), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -197265,22 +197059,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [169720] = 6, + [167834] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3742), 1, + ACTIONS(3674), 1, ts_builtin_sym_end, - STATE(2415), 2, + STATE(2357), 2, sym_comment, sym_include, - ACTIONS(3329), 28, + ACTIONS(3207), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -197306,22 +197101,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [169767] = 6, + [167882] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3740), 1, + ACTIONS(3396), 1, ts_builtin_sym_end, - STATE(2416), 2, + STATE(2358), 2, sym_comment, sym_include, - ACTIONS(3331), 28, + ACTIONS(3181), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -197347,22 +197143,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [169814] = 6, + [167930] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3738), 1, + ACTIONS(3612), 1, ts_builtin_sym_end, - STATE(2417), 2, + STATE(2359), 2, sym_comment, sym_include, - ACTIONS(3333), 28, + ACTIONS(3167), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -197388,72 +197185,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [169861] = 15, - ACTIONS(65), 1, + [167978] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(431), 1, - sym__logical_operator, - STATE(433), 1, - sym__additive_operator, - STATE(434), 1, - sym__multiplicative_operator, - STATE(435), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2418), 2, + ACTIONS(3614), 1, + ts_builtin_sym_end, + STATE(2360), 2, sym_comment, sym_include, - ACTIONS(3828), 3, - anon_sym_COMMA, - aux_sym_of_token1, - aux_sym_on_statement_token1, - ACTIONS(2396), 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, - [169926] = 6, + ACTIONS(3169), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [168026] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3372), 1, ts_builtin_sym_end, - STATE(2419), 2, + STATE(2361), 2, sym_comment, sym_include, - ACTIONS(3165), 28, + ACTIONS(3277), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -197479,22 +197269,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [169973] = 6, + [168074] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3604), 1, + ACTIONS(3624), 1, ts_builtin_sym_end, - STATE(2420), 2, + STATE(2362), 2, sym_comment, sym_include, - ACTIONS(3219), 28, + ACTIONS(3300), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -197520,22 +197311,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [170020] = 6, + [168122] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3159), 1, + ACTIONS(3374), 1, ts_builtin_sym_end, - STATE(2421), 2, + STATE(2363), 2, sym_comment, sym_include, - ACTIONS(3161), 28, + ACTIONS(3275), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -197561,22 +197353,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [170067] = 6, + [168170] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3736), 1, + ACTIONS(3616), 1, ts_builtin_sym_end, - STATE(2422), 2, + STATE(2364), 2, sym_comment, sym_include, - ACTIONS(3335), 28, + ACTIONS(3173), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -197602,22 +197395,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [170114] = 6, + [168218] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3734), 1, + ACTIONS(3626), 1, ts_builtin_sym_end, - STATE(2423), 2, + STATE(2365), 2, sym_comment, sym_include, - ACTIONS(3337), 28, + ACTIONS(3183), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -197643,22 +197437,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [170161] = 6, + [168266] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3602), 1, + ACTIONS(3628), 1, ts_builtin_sym_end, - STATE(2424), 2, + STATE(2366), 2, sym_comment, sym_include, - ACTIONS(3217), 28, + ACTIONS(3185), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -197684,22 +197479,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [170208] = 6, + [168314] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3600), 1, + ACTIONS(3630), 1, ts_builtin_sym_end, - STATE(2425), 2, + STATE(2367), 2, sym_comment, sym_include, - ACTIONS(3215), 28, + ACTIONS(3191), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -197725,22 +197521,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [170255] = 6, + [168362] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3732), 1, + ACTIONS(3667), 1, ts_builtin_sym_end, - STATE(2426), 2, + STATE(2368), 2, sym_comment, sym_include, - ACTIONS(3339), 28, + ACTIONS(3193), 29, sym_identifier, aux_sym_input_expression_token1, aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, @@ -197766,35 +197563,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_prompt_for_statement_token1, aux_sym_var_statement_token1, aux_sym_run_statement_token1, - [170302] = 6, - ACTIONS(3), 1, + [168410] = 14, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(2427), 2, - sym_comment, - sym_include, - ACTIONS(124), 3, - sym__namecolon, - sym__or_operator, - sym__and_operator, - ACTIONS(126), 26, + ACTIONS(1086), 1, anon_sym_SLASH, - sym_identifier, + STATE(656), 1, + sym__logical_operator, + STATE(658), 1, + sym__additive_operator, + STATE(659), 1, + sym__multiplicative_operator, + STATE(662), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_LBRACK, - anon_sym_LPAREN, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2369), 2, + sym_comment, + sym_include, + ACTIONS(230), 6, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + ACTIONS(2409), 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, @@ -197805,477 +197613,44 @@ 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_when_expression_token1, - anon_sym_NO_DASHERROR, - [170349] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3596), 1, - ts_builtin_sym_end, - STATE(2428), 2, - sym_comment, - sym_include, - ACTIONS(3213), 28, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [170396] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3594), 1, - ts_builtin_sym_end, - STATE(2429), 2, - sym_comment, - sym_include, - ACTIONS(3211), 28, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [170443] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3730), 1, - ts_builtin_sym_end, - STATE(2430), 2, - sym_comment, - sym_include, - ACTIONS(3341), 28, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [170490] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3592), 1, - ts_builtin_sym_end, - STATE(2431), 2, - sym_comment, - sym_include, - ACTIONS(3207), 28, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [170537] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3722), 1, - ts_builtin_sym_end, - STATE(2432), 2, - sym_comment, - sym_include, - ACTIONS(3345), 28, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [170584] = 29, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [168474] = 15, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(2922), 1, - sym_of, - STATE(3003), 1, - sym__pre_tuning, - STATE(3027), 1, - aux_sym_for_phrase_repeat1, - STATE(3034), 1, - sym_where_clause, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3478), 1, - aux_sym_for_phrase_repeat2, - STATE(4165), 1, - sym_on_error_phrase, - STATE(4234), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4606), 1, - sym_on_stop_phrase, - STATE(4610), 1, - aux_sym_for_statement_repeat1, - STATE(5995), 1, - sym_body, - STATE(2433), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [170677] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3576), 1, - ts_builtin_sym_end, - STATE(2434), 2, - sym_comment, - sym_include, - ACTIONS(3205), 28, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [170724] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3201), 1, - ts_builtin_sym_end, - STATE(2435), 2, - sym_comment, - sym_include, - ACTIONS(3203), 28, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [170771] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3197), 1, - ts_builtin_sym_end, - STATE(2436), 2, - sym_comment, - sym_include, - ACTIONS(3199), 28, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [170818] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3574), 1, - ts_builtin_sym_end, - STATE(2437), 2, - sym_comment, - sym_include, - ACTIONS(3195), 28, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_class_type_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_return_type_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym__function_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, - aux_sym_error_scope_statement_token1, - aux_sym_error_scope_statement_token2, - aux_sym_prompt_for_statement_token1, - aux_sym_var_statement_token1, - aux_sym_run_statement_token1, - [170865] = 15, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(794), 1, + STATE(656), 1, sym__logical_operator, - STATE(795), 1, + STATE(658), 1, sym__additive_operator, - STATE(797), 1, + STATE(659), 1, sym__multiplicative_operator, - STATE(798), 1, + STATE(662), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(1187), 2, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2438), 2, + STATE(2370), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(1125), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -198289,38 +197664,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [170929] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [168540] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(794), 1, + STATE(656), 1, sym__logical_operator, - STATE(795), 1, + STATE(658), 1, sym__additive_operator, - STATE(797), 1, + STATE(659), 1, sym__multiplicative_operator, - STATE(798), 1, + STATE(662), 1, sym__comparison_operator, - ACTIONS(1205), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - STATE(2439), 2, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2371), 2, sym_comment, sym_include, - ACTIONS(1207), 19, - sym__or_operator, - sym__and_operator, + ACTIONS(1192), 4, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -198334,37 +197715,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_on_error_phrase_token1, - [170987] = 7, - ACTIONS(3), 1, + [168606] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3830), 1, - sym__namedot, - ACTIONS(117), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(656), 1, + sym__logical_operator, + STATE(658), 1, + sym__additive_operator, + STATE(659), 1, + sym__multiplicative_operator, + STATE(662), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2440), 3, - sym_comment, - sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(119), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2372), 2, + sym_comment, + sym_include, + ACTIONS(1208), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + ACTIONS(2409), 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, @@ -198375,36 +197766,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_when_expression_token1, - [171035] = 7, - ACTIONS(3), 1, + [168672] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3833), 1, - anon_sym_NO_DASHERROR, - ACTIONS(248), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(656), 1, + sym__logical_operator, + STATE(658), 1, + sym__additive_operator, + STATE(659), 1, + sym__multiplicative_operator, + STATE(662), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2441), 2, - sym_comment, - sym_include, - ACTIONS(250), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2373), 2, + sym_comment, + sym_include, + ACTIONS(1113), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + ACTIONS(2409), 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, @@ -198415,44 +197817,44 @@ 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_do_block_token1, - aux_sym_widget_field_token1, - [171083] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [168738] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(794), 1, + STATE(656), 1, sym__logical_operator, - STATE(795), 1, + STATE(658), 1, sym__additive_operator, - STATE(797), 1, + STATE(659), 1, sym__multiplicative_operator, - STATE(798), 1, + STATE(662), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3835), 2, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - STATE(2442), 2, + STATE(2374), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(1200), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -198466,37 +197868,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [171147] = 8, - ACTIONS(3), 1, + [168804] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2707), 1, - sym__namedot, - STATE(2440), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(98), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(656), 1, + sym__logical_operator, + STATE(658), 1, + sym__additive_operator, + STATE(659), 1, + sym__multiplicative_operator, + STATE(662), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2443), 2, - sym_comment, - sym_include, - ACTIONS(100), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2375), 2, + sym_comment, + sym_include, + ACTIONS(1117), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + ACTIONS(2409), 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, @@ -198507,39 +197919,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_when_expression_token1, - [171197] = 9, - ACTIONS(3), 1, + [168870] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2731), 1, - anon_sym_LBRACK, - ACTIONS(2733), 1, - anon_sym_LPAREN, - STATE(2902), 1, - sym_function_arguments, - ACTIONS(63), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(656), 1, + sym__logical_operator, + STATE(658), 1, + sym__additive_operator, + STATE(659), 1, + sym__multiplicative_operator, + STATE(662), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2444), 2, - sym_comment, - sym_include, - ACTIONS(69), 23, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2376), 2, + sym_comment, + sym_include, + ACTIONS(1196), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + ACTIONS(2409), 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, @@ -198550,34 +197970,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_NO_DASHERROR, - [171249] = 6, - ACTIONS(3), 1, + [168936] = 12, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(146), 2, - sym__or_operator, - sym__and_operator, - STATE(2445), 2, - sym_comment, - sym_include, - ACTIONS(148), 26, + ACTIONS(1086), 1, anon_sym_SLASH, - sym_identifier, + STATE(656), 1, + sym__logical_operator, + STATE(658), 1, + sym__additive_operator, + STATE(659), 1, + sym__multiplicative_operator, + STATE(662), 1, + sym__comparison_operator, + ACTIONS(1119), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + STATE(2377), 2, + sym_comment, + sym_include, + ACTIONS(1121), 21, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, + aux_sym__block_terminator_token1, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_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, @@ -198588,38 +198016,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_NO_DASHERROR, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [171295] = 8, - ACTIONS(3), 1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [168996] = 10, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2458), 1, - sym_identifier, - STATE(32), 1, - sym_qualified_name, - ACTIONS(1366), 2, - sym__or_operator, - sym__and_operator, - STATE(2446), 2, + STATE(656), 1, + sym__logical_operator, + STATE(658), 1, + sym__additive_operator, + STATE(659), 1, + sym__multiplicative_operator, + STATE(662), 1, + sym__comparison_operator, + STATE(2378), 2, sym_comment, sym_include, - ACTIONS(1364), 24, - anon_sym_COLON, + ACTIONS(1214), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1216), 23, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, anon_sym_STAR, + aux_sym__block_terminator_token1, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -198630,36 +198062,48 @@ 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_repeat_tuning_token1, aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - [171345] = 6, - ACTIONS(3), 1, + [169052] = 14, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(150), 2, - sym__or_operator, - sym__and_operator, - STATE(2447), 2, - sym_comment, - sym_include, - ACTIONS(152), 26, + ACTIONS(1086), 1, anon_sym_SLASH, - sym_identifier, + STATE(656), 1, + sym__logical_operator, + STATE(658), 1, + sym__additive_operator, + STATE(659), 1, + sym__multiplicative_operator, + STATE(662), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2379), 2, + sym_comment, + sym_include, + ACTIONS(1212), 6, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + ACTIONS(2409), 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, @@ -198670,38 +198114,47 @@ 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, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [171391] = 6, - ACTIONS(3), 1, + [169116] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(3837), 1, - sym__namedoublecolon, - ACTIONS(110), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(656), 1, + sym__logical_operator, + STATE(658), 1, + sym__additive_operator, + STATE(659), 1, + sym__multiplicative_operator, + STATE(662), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2448), 3, - sym_comment, - sym_include, - aux_sym_member_access_repeat1, - ACTIONS(112), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2380), 2, + sym_comment, + sym_include, + ACTIONS(1204), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + ACTIONS(2409), 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, @@ -198712,36 +198165,88 @@ 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, - [171437] = 7, + [169182] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3840), 1, - sym__namedot, - ACTIONS(132), 2, - sym__or_operator, - sym__and_operator, - STATE(2449), 2, + ACTIONS(3669), 1, + ts_builtin_sym_end, + STATE(2381), 2, sym_comment, sym_include, - ACTIONS(134), 25, - anon_sym_SLASH, + ACTIONS(3195), 29, sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [169230] = 14, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(702), 1, + sym__logical_operator, + STATE(707), 1, + sym__additive_operator, + STATE(709), 1, + sym__multiplicative_operator, + STATE(710), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2382), 2, + sym_comment, + sym_include, + ACTIONS(230), 6, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(2409), 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, @@ -198752,35 +198257,89 @@ 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_do_block_token1, - aux_sym_widget_field_token1, - [171485] = 6, + [169294] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(138), 2, - sym__or_operator, - sym__and_operator, - STATE(2450), 2, + ACTIONS(3376), 1, + ts_builtin_sym_end, + STATE(2383), 2, sym_comment, sym_include, - ACTIONS(140), 26, - anon_sym_SLASH, + ACTIONS(3261), 29, sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [169342] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(702), 1, + sym__logical_operator, + STATE(707), 1, + sym__additive_operator, + STATE(709), 1, + sym__multiplicative_operator, + STATE(710), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2384), 2, + sym_comment, + sym_include, + ACTIONS(1125), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(2409), 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, @@ -198791,39 +198350,47 @@ 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, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [171531] = 7, - ACTIONS(3), 1, + [169408] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(2695), 1, - sym__namedoublecolon, - STATE(2448), 1, - aux_sym_member_access_repeat1, - ACTIONS(128), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(702), 1, + sym__logical_operator, + STATE(707), 1, + sym__additive_operator, + STATE(709), 1, + sym__multiplicative_operator, + STATE(710), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2451), 2, - sym_comment, - sym_include, - ACTIONS(130), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2385), 2, + sym_comment, + sym_include, + ACTIONS(1192), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(2409), 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, @@ -198834,37 +198401,89 @@ 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, - [171579] = 7, + [169474] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2691), 1, - sym__namedot, - STATE(2454), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(106), 2, - sym__or_operator, - sym__and_operator, - STATE(2452), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3378), 1, + ts_builtin_sym_end, + STATE(2386), 2, sym_comment, sym_include, - ACTIONS(108), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3259), 29, sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [169522] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(702), 1, + sym__logical_operator, + STATE(707), 1, + sym__additive_operator, + STATE(709), 1, + sym__multiplicative_operator, + STATE(710), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2387), 2, + sym_comment, + sym_include, + ACTIONS(1208), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(2409), 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, @@ -198875,163 +198494,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_include_argument_token1, - [171627] = 9, - ACTIONS(3), 1, + [169588] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2721), 1, - anon_sym_LBRACK, - ACTIONS(2723), 1, - anon_sym_LPAREN, - STATE(2806), 1, - sym_function_arguments, - ACTIONS(63), 2, - sym__or_operator, - sym__and_operator, - STATE(2453), 2, - sym_comment, - sym_include, - ACTIONS(69), 23, + ACTIONS(1086), 1, anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(702), 1, + sym__logical_operator, + STATE(707), 1, + sym__additive_operator, + STATE(709), 1, + sym__multiplicative_operator, + STATE(710), 1, + sym__comparison_operator, + ACTIONS(1090), 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, - [171679] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(2691), 1, - sym__namedot, - STATE(2464), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(98), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2454), 2, - sym_comment, - sym_include, - ACTIONS(100), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_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_include_argument_token1, - [171727] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2458), 1, - sym_identifier, - STATE(32), 1, - sym_qualified_name, - ACTIONS(1366), 2, - sym__or_operator, - sym__and_operator, - STATE(2455), 2, + STATE(2388), 2, sym_comment, sym_include, - ACTIONS(1364), 24, + ACTIONS(1113), 4, anon_sym_COLON, - anon_sym_SLASH, - anon_sym_STAR, - aux_sym__block_terminator_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_repeat_tuning_token1, aux_sym_on_error_phrase_token1, - [171777] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3842), 1, - sym__namedoublecolon, - ACTIONS(110), 2, - sym__or_operator, - sym__and_operator, - STATE(2456), 3, - sym_comment, - sym_include, - aux_sym_member_access_repeat1, - ACTIONS(112), 24, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(2409), 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, @@ -199042,159 +198545,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_when_expression_token1, - [171825] = 6, - ACTIONS(3), 1, + [169654] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(2457), 2, - sym_comment, - sym_include, - ACTIONS(124), 3, - sym__namecolon, - sym__or_operator, - sym__and_operator, - ACTIONS(126), 25, + ACTIONS(1086), 1, anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(702), 1, + sym__logical_operator, + STATE(707), 1, + sym__additive_operator, + STATE(709), 1, + sym__multiplicative_operator, + STATE(710), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - anon_sym_NO_DASHERROR, - [171871] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(2691), 1, - sym__namedot, - STATE(2454), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(102), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2458), 2, - sym_comment, - sym_include, - ACTIONS(104), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_DQUOTE, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_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_include_argument_token1, - [171919] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(2689), 1, - anon_sym_LPAREN, - STATE(2625), 1, - sym_function_arguments, - ACTIONS(83), 2, - sym__or_operator, - sym__and_operator, - STATE(2459), 2, - sym_comment, - sym_include, - ACTIONS(85), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_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_include_argument_token1, - [171967] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2685), 1, - sym__namedoublecolon, - STATE(2493), 1, - aux_sym_member_access_repeat1, - ACTIONS(128), 2, - sym__or_operator, - sym__and_operator, - STATE(2460), 2, + STATE(2389), 2, sym_comment, sym_include, - ACTIONS(130), 24, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + ACTIONS(1200), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(2409), 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, @@ -199205,162 +198596,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_when_expression_token1, - anon_sym_NO_DASHERROR, - [172017] = 8, - ACTIONS(3), 1, + [169720] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2711), 1, - sym__namedoublecolon, - STATE(2456), 1, - aux_sym_member_access_repeat1, - ACTIONS(128), 2, - sym__or_operator, - sym__and_operator, - STATE(2461), 2, - sym_comment, - sym_include, - ACTIONS(130), 24, + ACTIONS(1086), 1, anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(702), 1, + sym__logical_operator, + STATE(707), 1, + sym__additive_operator, + STATE(709), 1, + sym__multiplicative_operator, + STATE(710), 1, + sym__comparison_operator, + ACTIONS(1090), 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_when_expression_token1, - [172067] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2707), 1, - sym__namedot, - STATE(2443), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(106), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2462), 2, - sym_comment, - sym_include, - ACTIONS(108), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, aux_sym__multiplicative_operator_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_when_expression_token1, - [172117] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3845), 1, - sym__namedot, - ACTIONS(117), 2, - sym__or_operator, - sym__and_operator, - STATE(2463), 3, - sym_comment, - sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(119), 24, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_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_when_expression_token1, - anon_sym_NO_DASHERROR, - [172165] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3848), 1, - sym__namedot, - ACTIONS(117), 2, - sym__or_operator, - sym__and_operator, - STATE(2464), 3, + STATE(2390), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(119), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + ACTIONS(1117), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(2409), 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, @@ -199371,42 +198647,44 @@ 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, - [172211] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [169786] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(556), 1, + STATE(702), 1, sym__logical_operator, - STATE(557), 1, + STATE(707), 1, sym__additive_operator, - STATE(558), 1, + STATE(709), 1, sym__multiplicative_operator, - STATE(559), 1, + STATE(710), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2465), 2, + STATE(2391), 2, sym_comment, sym_include, - ACTIONS(236), 4, - sym__or_operator, - sym__and_operator, - sym__terminator, - aux_sym_when_expression_token1, - ACTIONS(2396), 13, + ACTIONS(1196), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -199420,133 +198698,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [172273] = 8, + [169852] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2707), 1, - sym__namedot, - STATE(2443), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(102), 2, - sym__or_operator, - sym__and_operator, - STATE(2466), 2, + ACTIONS(3255), 1, + ts_builtin_sym_end, + STATE(2392), 2, sym_comment, sym_include, - ACTIONS(104), 24, - anon_sym_SLASH, + ACTIONS(3257), 29, sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_when_expression_token1, - [172323] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [169900] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(556), 1, + STATE(702), 1, sym__logical_operator, - STATE(557), 1, + STATE(707), 1, sym__additive_operator, - STATE(558), 1, + STATE(709), 1, sym__multiplicative_operator, - STATE(559), 1, + STATE(710), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1119), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1183), 2, - sym__terminator, - aux_sym_when_expression_token1, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2467), 2, + STATE(2393), 2, sym_comment, sym_include, - ACTIONS(2396), 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, - [172387] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1121), 21, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + anon_sym_COLON, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3851), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2468), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -199560,127 +198785,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [172451] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + [169960] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(556), 1, + STATE(702), 1, sym__logical_operator, - STATE(557), 1, + STATE(707), 1, sym__additive_operator, - STATE(558), 1, + STATE(709), 1, sym__multiplicative_operator, - STATE(559), 1, + STATE(710), 1, sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1187), 2, - sym__terminator, - aux_sym_when_expression_token1, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2469), 2, - sym_comment, - sym_include, - ACTIONS(2396), 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, - [172515] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2705), 1, - anon_sym_LPAREN, - STATE(2695), 1, - sym_function_arguments, - ACTIONS(83), 2, - sym__or_operator, - sym__and_operator, - STATE(2470), 2, + STATE(2394), 2, sym_comment, sym_include, - ACTIONS(85), 24, + ACTIONS(1214), 3, anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_when_expression_token1, - [172565] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2681), 1, - sym__namedot, - STATE(2463), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(98), 2, + ACTIONS(1216), 23, sym__or_operator, sym__and_operator, - STATE(2471), 2, - sym_comment, - sym_include, - ACTIONS(100), 24, - anon_sym_SLASH, - sym_identifier, + anon_sym_COLON, anon_sym_STAR, - sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -199691,44 +198831,46 @@ 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_when_expression_token1, - anon_sym_NO_DASHERROR, - [172615] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + [170016] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(556), 1, + STATE(702), 1, sym__logical_operator, - STATE(557), 1, + STATE(707), 1, sym__additive_operator, - STATE(558), 1, + STATE(709), 1, sym__multiplicative_operator, - STATE(559), 1, + STATE(710), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1191), 2, - sym__terminator, - aux_sym_when_expression_token1, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2472), 2, + STATE(2395), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(1212), 6, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -199742,42 +198884,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [172679] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [170080] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(556), 1, + STATE(702), 1, sym__logical_operator, - STATE(557), 1, + STATE(707), 1, sym__additive_operator, - STATE(558), 1, + STATE(709), 1, sym__multiplicative_operator, - STATE(559), 1, + STATE(710), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(1106), 2, - sym__terminator, - aux_sym_when_expression_token1, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2473), 2, + STATE(2396), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(1204), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -199791,299 +198935,4364 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [172743] = 6, + [170146] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(146), 2, - sym__or_operator, - sym__and_operator, - STATE(2474), 2, + ACTIONS(3676), 1, + ts_builtin_sym_end, + STATE(2397), 2, sym_comment, sym_include, - ACTIONS(148), 26, - anon_sym_SLASH, + ACTIONS(3237), 29, sym_identifier, - anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_function_call_token1, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, - [172789] = 9, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [170194] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(3853), 1, - aux_sym_input_expression_token2, - STATE(22), 1, - sym_qualified_name, - ACTIONS(1351), 2, - sym__or_operator, - sym__and_operator, - STATE(2475), 2, + ACTIONS(3678), 1, + ts_builtin_sym_end, + STATE(2398), 2, sym_comment, sym_include, - ACTIONS(1347), 23, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_of_token1, - aux_sym_on_statement_token1, - [172841] = 7, + ACTIONS(3213), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [170242] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3855), 1, - aux_sym_function_call_token1, - ACTIONS(230), 2, - sym__or_operator, - sym__and_operator, - STATE(2476), 2, + ACTIONS(3680), 1, + ts_builtin_sym_end, + STATE(2399), 2, sym_comment, sym_include, - ACTIONS(232), 25, - anon_sym_SLASH, + ACTIONS(3215), 29, sym_identifier, - anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, - [172889] = 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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [170290] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(150), 2, - sym__or_operator, - sym__and_operator, - STATE(2477), 2, + ACTIONS(3217), 1, + ts_builtin_sym_end, + STATE(2400), 2, sym_comment, sym_include, - ACTIONS(152), 26, - anon_sym_SLASH, + ACTIONS(3219), 29, sym_identifier, - anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_function_call_token1, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, - [172935] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [170338] = 25, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(556), 1, - sym__logical_operator, - STATE(557), 1, - sym__additive_operator, - STATE(558), 1, - sym__multiplicative_operator, - STATE(559), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1102), 2, - sym__terminator, - aux_sym_when_expression_token1, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2478), 2, + ACTIONS(3306), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(3308), 1, + aux_sym_dataset_expression_token1, + ACTIONS(3312), 1, + aux_sym_variable_definition_token3, + ACTIONS(3314), 1, + aux_sym_variable_definition_token4, + ACTIONS(3316), 1, + aux_sym_buffer_definition_token1, + ACTIONS(3318), 1, + aux_sym_query_definition_token1, + ACTIONS(3807), 1, + aux_sym_argument_mode_token3, + ACTIONS(3811), 1, + aux_sym_property_definition_token1, + ACTIONS(3813), 1, + aux_sym_event_definition_token1, + STATE(3059), 1, + sym_access_tuning, + STATE(3130), 1, + sym_scope_tuning, + STATE(3210), 1, + aux_sym_property_definition_repeat1, + STATE(3217), 1, + aux_sym_variable_definition_repeat1, + STATE(3249), 1, + sym_serialization_tuning, + STATE(3275), 1, + aux_sym_event_definition_repeat1, + STATE(3317), 1, + aux_sym_buffer_definition_repeat1, + STATE(3326), 1, + sym_property_type, + ACTIONS(3077), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(3809), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(2401), 2, sym_comment, sym_include, - ACTIONS(2396), 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, - [172999] = 15, - ACTIONS(65), 1, + ACTIONS(3073), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3075), 5, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + [170424] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(556), 1, - sym__logical_operator, - STATE(557), 1, - sym__additive_operator, - STATE(558), 1, - sym__multiplicative_operator, - STATE(559), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1203), 2, - sym__terminator, - aux_sym_when_expression_token1, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2479), 2, + ACTIONS(3442), 1, + ts_builtin_sym_end, + STATE(2402), 2, sym_comment, sym_include, - ACTIONS(2396), 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, - [173063] = 6, + ACTIONS(3221), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [170472] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2480), 2, + ACTIONS(3730), 1, + ts_builtin_sym_end, + STATE(2403), 2, sym_comment, sym_include, - ACTIONS(142), 3, - sym__namedoublecolon, - sym__or_operator, - sym__and_operator, - ACTIONS(144), 25, - anon_sym_SLASH, + ACTIONS(3229), 29, sym_identifier, - anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [170520] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3732), 1, + ts_builtin_sym_end, + STATE(2404), 2, + sym_comment, + sym_include, + ACTIONS(3227), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [170568] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3728), 1, + ts_builtin_sym_end, + STATE(2405), 2, + sym_comment, + sym_include, + ACTIONS(3231), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [170616] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3726), 1, + ts_builtin_sym_end, + STATE(2406), 2, + sym_comment, + sym_include, + ACTIONS(3233), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [170664] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3724), 1, + ts_builtin_sym_end, + STATE(2407), 2, + sym_comment, + sym_include, + ACTIONS(3235), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [170712] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3722), 1, + ts_builtin_sym_end, + STATE(2408), 2, + sym_comment, + sym_include, + ACTIONS(3239), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [170760] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3720), 1, + ts_builtin_sym_end, + STATE(2409), 2, + sym_comment, + sym_include, + ACTIONS(3241), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [170808] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3718), 1, + ts_builtin_sym_end, + STATE(2410), 2, + sym_comment, + sym_include, + ACTIONS(3243), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [170856] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3716), 1, + ts_builtin_sym_end, + STATE(2411), 2, + sym_comment, + sym_include, + ACTIONS(3247), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [170904] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3714), 1, + ts_builtin_sym_end, + STATE(2412), 2, + sym_comment, + sym_include, + ACTIONS(3263), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [170952] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(656), 1, + sym__logical_operator, + STATE(658), 1, + sym__additive_operator, + STATE(659), 1, + sym__multiplicative_operator, + STATE(662), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2413), 2, + sym_comment, + sym_include, + ACTIONS(3795), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + ACTIONS(2409), 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, + [171018] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3187), 1, + ts_builtin_sym_end, + STATE(2414), 2, + sym_comment, + sym_include, + ACTIONS(3189), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [171066] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3712), 1, + ts_builtin_sym_end, + STATE(2415), 2, + sym_comment, + sym_include, + ACTIONS(3265), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [171114] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3380), 1, + ts_builtin_sym_end, + STATE(2416), 2, + sym_comment, + sym_include, + ACTIONS(3253), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [171162] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3710), 1, + ts_builtin_sym_end, + STATE(2417), 2, + sym_comment, + sym_include, + ACTIONS(3267), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [171210] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3708), 1, + ts_builtin_sym_end, + STATE(2418), 2, + sym_comment, + sym_include, + ACTIONS(3269), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [171258] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3197), 1, + ts_builtin_sym_end, + STATE(2419), 2, + sym_comment, + sym_include, + ACTIONS(3199), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [171306] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3394), 1, + ts_builtin_sym_end, + STATE(2420), 2, + sym_comment, + sym_include, + ACTIONS(3201), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [171354] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3382), 1, + ts_builtin_sym_end, + STATE(2421), 2, + sym_comment, + sym_include, + ACTIONS(2969), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [171402] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2422), 2, + sym_comment, + sym_include, + ACTIONS(100), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(102), 27, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_do_block_token1, + aux_sym_widget_field_token1, + [171450] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2690), 1, + sym__namecolon, + STATE(1739), 1, + aux_sym_object_access_repeat1, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(2423), 2, + sym_comment, + sym_include, + ACTIONS(91), 26, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_do_block_token1, + aux_sym_widget_field_token1, + [171502] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3209), 1, + ts_builtin_sym_end, + STATE(2424), 2, + sym_comment, + sym_include, + ACTIONS(3211), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [171550] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3388), 1, + ts_builtin_sym_end, + STATE(2425), 2, + sym_comment, + sym_include, + ACTIONS(3390), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [171598] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3706), 1, + ts_builtin_sym_end, + STATE(2426), 2, + sym_comment, + sym_include, + ACTIONS(3271), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [171646] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3384), 1, + ts_builtin_sym_end, + STATE(2427), 2, + sym_comment, + sym_include, + ACTIONS(3386), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [171694] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3392), 1, + ts_builtin_sym_end, + STATE(2428), 2, + sym_comment, + sym_include, + ACTIONS(3203), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [171742] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3704), 1, + ts_builtin_sym_end, + STATE(2429), 2, + sym_comment, + sym_include, + ACTIONS(3273), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [171790] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3245), 1, + ts_builtin_sym_end, + STATE(2430), 2, + sym_comment, + sym_include, + ACTIONS(3205), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [171838] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3632), 1, + ts_builtin_sym_end, + STATE(2431), 2, + sym_comment, + sym_include, + ACTIONS(3298), 29, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_class_type_token1, + aux_sym_scope_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_return_type_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym__function_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, + aux_sym_error_scope_statement_token1, + aux_sym_error_scope_statement_token2, + aux_sym_prompt_for_statement_token1, + aux_sym_var_statement_token1, + aux_sym_run_statement_token1, + [171886] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2471), 1, + sym_identifier, + STATE(32), 1, + sym_qualified_name, + ACTIONS(1581), 2, + sym__or_operator, + sym__and_operator, + STATE(2432), 2, + sym_comment, + sym_include, + ACTIONS(1579), 25, + anon_sym_SLASH, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, + [171937] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2720), 1, + anon_sym_LBRACK, + ACTIONS(2722), 1, + anon_sym_LPAREN, + STATE(2560), 1, + sym_function_arguments, + ACTIONS(65), 2, + sym__or_operator, + sym__and_operator, + STATE(2433), 2, + sym_comment, + sym_include, + ACTIONS(71), 25, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_STAR, + anon_sym_DQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_include_argument_token1, + [171988] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2434), 2, + sym_comment, + sym_include, + ACTIONS(138), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(140), 26, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [172035] = 29, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(3029), 1, + sym_of, + STATE(3057), 1, + sym__pre_tuning, + STATE(3122), 1, + aux_sym_for_phrase_repeat1, + STATE(3123), 1, + sym_where_clause, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3513), 1, + aux_sym_for_phrase_repeat2, + STATE(4078), 1, + sym_on_error_phrase, + STATE(4501), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4882), 1, + aux_sym_for_statement_repeat1, + STATE(4890), 1, + sym_on_stop_phrase, + STATE(5977), 1, + sym_body, + STATE(2435), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [172128] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2736), 1, + sym__namecolon, + STATE(1988), 1, + aux_sym_object_access_repeat1, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(2436), 2, + sym_comment, + sym_include, + ACTIONS(91), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, + [172179] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3827), 1, + anon_sym_NO_DASHERROR, + STATE(2437), 2, + sym_comment, + sym_include, + ACTIONS(391), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(393), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + [172228] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2438), 2, + sym_comment, + sym_include, + ACTIONS(142), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(144), 26, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + anon_sym_COMMA, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, + anon_sym_NO_DASHERROR, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [172275] = 29, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(3026), 1, + sym_of, + STATE(3054), 1, + sym__pre_tuning, + STATE(3142), 1, + sym_where_clause, + STATE(3147), 1, + aux_sym_for_phrase_repeat1, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3552), 1, + aux_sym_for_phrase_repeat2, + STATE(4170), 1, + sym_on_error_phrase, + STATE(4345), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(5039), 1, + aux_sym_for_statement_repeat1, + STATE(5045), 1, + sym_on_stop_phrase, + STATE(5845), 1, + sym_body, + STATE(2439), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [172368] = 29, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(3024), 1, + sym_of, + STATE(3040), 1, + sym__pre_tuning, + STATE(3093), 1, + aux_sym_for_phrase_repeat1, + STATE(3132), 1, + sym_where_clause, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3511), 1, + aux_sym_for_phrase_repeat2, + STATE(4237), 1, + sym_on_error_phrase, + STATE(4438), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4802), 1, + sym_on_stop_phrase, + STATE(4831), 1, + aux_sym_for_statement_repeat1, + STATE(5907), 1, + sym_body, + STATE(2440), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [172461] = 29, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(3011), 1, + sym_of, + STATE(3051), 1, + sym__pre_tuning, + STATE(3135), 1, + aux_sym_for_phrase_repeat1, + STATE(3152), 1, + sym_where_clause, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3540), 1, + aux_sym_for_phrase_repeat2, + STATE(4045), 1, + sym_on_error_phrase, + STATE(4365), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(5059), 1, + aux_sym_for_statement_repeat1, + STATE(5067), 1, + sym_on_stop_phrase, + STATE(6092), 1, + sym_body, + STATE(2441), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [172554] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(457), 1, + sym__logical_operator, + STATE(458), 1, + sym__additive_operator, + STATE(465), 1, + sym__multiplicative_operator, + STATE(466), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2442), 2, + sym_comment, + sym_include, + ACTIONS(3829), 3, + anon_sym_COMMA, + aux_sym_of_token1, + aux_sym_on_statement_token1, + ACTIONS(2409), 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, + [172619] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2443), 2, + sym_comment, + sym_include, + ACTIONS(100), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(102), 26, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, + [172666] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2444), 2, + sym_comment, + sym_include, + ACTIONS(142), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(144), 26, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, + anon_sym_NO_DASHERROR, + [172713] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2445), 2, + sym_comment, + sym_include, + ACTIONS(138), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(140), 26, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + anon_sym_COMMA, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, + anon_sym_NO_DASHERROR, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [172760] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2446), 2, + sym_comment, + sym_include, + ACTIONS(142), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(144), 26, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [172807] = 29, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(3012), 1, + sym_of, + STATE(3050), 1, + sym__pre_tuning, + STATE(3076), 1, + aux_sym_for_phrase_repeat1, + STATE(3080), 1, + sym_where_clause, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3526), 1, + aux_sym_for_phrase_repeat2, + STATE(4214), 1, + sym_on_error_phrase, + STATE(4417), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4769), 1, + sym_on_stop_phrase, + STATE(4774), 1, + aux_sym_for_statement_repeat1, + STATE(6037), 1, + sym_body, + STATE(2447), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [172900] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3831), 1, + sym__namedot, + ACTIONS(108), 2, + sym__or_operator, + sym__and_operator, + STATE(2448), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(110), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [172949] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2688), 1, + sym__namedot, + STATE(2517), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(123), 2, + sym__or_operator, + sym__and_operator, + STATE(2449), 2, + sym_comment, + sym_include, + ACTIONS(125), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + anon_sym_COMMA, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_do_block_token1, + aux_sym_widget_field_token1, + [173000] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2450), 2, + sym_comment, + sym_include, + ACTIONS(115), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(117), 26, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [173047] = 29, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(3021), 1, + sym_of, + STATE(3038), 1, + sym__pre_tuning, + STATE(3136), 1, + sym_where_clause, + STATE(3140), 1, + aux_sym_for_phrase_repeat1, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3514), 1, + aux_sym_for_phrase_repeat2, + STATE(4057), 1, + sym_on_error_phrase, + STATE(4522), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(5089), 1, + sym_on_stop_phrase, + STATE(5099), 1, + aux_sym_for_statement_repeat1, + STATE(5607), 1, + sym_body, + STATE(2451), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [173140] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2688), 1, + sym__namedot, + STATE(2517), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(134), 2, + sym__or_operator, + sym__and_operator, + STATE(2452), 2, + sym_comment, + sym_include, + ACTIONS(136), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + anon_sym_COMMA, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_do_block_token1, + aux_sym_widget_field_token1, + [173191] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3834), 1, + sym__namedot, + ACTIONS(108), 2, + sym__or_operator, + sym__and_operator, + STATE(2453), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(110), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + [173240] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2750), 1, + sym__namecolon, + STATE(1997), 1, + aux_sym_object_access_repeat1, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(2454), 2, + sym_comment, + sym_include, + ACTIONS(91), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, + anon_sym_NO_DASHERROR, + [173291] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3837), 1, + sym_identifier, + ACTIONS(3840), 1, + aux_sym_input_expression_token2, + STATE(2841), 1, + sym_qualified_name, + ACTIONS(1358), 2, + sym__or_operator, + sym__and_operator, + STATE(2455), 2, + sym_comment, + sym_include, + ACTIONS(1354), 24, + anon_sym_SLASH, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + [173344] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2456), 2, + sym_comment, + sym_include, + ACTIONS(115), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(117), 26, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + anon_sym_COMMA, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, + anon_sym_NO_DASHERROR, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [173391] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3842), 1, + aux_sym_function_call_token1, + STATE(2457), 2, + sym_comment, + sym_include, + ACTIONS(156), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(158), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + anon_sym_COMMA, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_do_block_token1, + aux_sym_widget_field_token1, + [173440] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2458), 2, + sym_comment, + sym_include, + ACTIONS(138), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(140), 26, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, + anon_sym_NO_DASHERROR, + [173487] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2710), 1, + sym__namecolon, + STATE(1921), 1, + aux_sym_object_access_repeat1, + ACTIONS(65), 2, + sym__or_operator, + sym__and_operator, + STATE(2459), 2, + sym_comment, + sym_include, + ACTIONS(71), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [173538] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(457), 1, + sym__logical_operator, + STATE(458), 1, + sym__additive_operator, + STATE(465), 1, + sym__multiplicative_operator, + STATE(466), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2460), 2, + sym_comment, + sym_include, + ACTIONS(1204), 3, + anon_sym_COMMA, + aux_sym_of_token1, + aux_sym_on_statement_token1, + ACTIONS(2409), 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, + [173603] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2461), 2, + sym_comment, + sym_include, + ACTIONS(100), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(102), 26, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, + anon_sym_NO_DASHERROR, + [173650] = 14, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(457), 1, + sym__logical_operator, + STATE(458), 1, + sym__additive_operator, + STATE(465), 1, + sym__multiplicative_operator, + STATE(466), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2462), 2, + sym_comment, + sym_include, + ACTIONS(1212), 5, + sym__or_operator, + sym__and_operator, + anon_sym_COMMA, + aux_sym_of_token1, + aux_sym_on_statement_token1, + ACTIONS(2409), 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, + [173713] = 10, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(457), 1, + sym__logical_operator, + STATE(458), 1, + sym__additive_operator, + STATE(465), 1, + sym__multiplicative_operator, + STATE(466), 1, + sym__comparison_operator, + STATE(2463), 2, + sym_comment, + sym_include, + ACTIONS(1214), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1216), 22, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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_of_token1, + aux_sym_on_statement_token1, + [173768] = 12, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(457), 1, + sym__logical_operator, + STATE(458), 1, + sym__additive_operator, + STATE(465), 1, + sym__multiplicative_operator, + STATE(466), 1, + sym__comparison_operator, + ACTIONS(1119), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + STATE(2464), 2, + sym_comment, + sym_include, + ACTIONS(1121), 20, + sym__or_operator, + sym__and_operator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_of_token1, + aux_sym_on_statement_token1, + [173827] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(457), 1, + sym__logical_operator, + STATE(458), 1, + sym__additive_operator, + STATE(465), 1, + sym__multiplicative_operator, + STATE(466), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2465), 2, + sym_comment, + sym_include, + ACTIONS(1196), 3, + anon_sym_COMMA, + aux_sym_of_token1, + aux_sym_on_statement_token1, + ACTIONS(2409), 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, + [173892] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(457), 1, + sym__logical_operator, + STATE(458), 1, + sym__additive_operator, + STATE(465), 1, + sym__multiplicative_operator, + STATE(466), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2466), 2, + sym_comment, + sym_include, + ACTIONS(1117), 3, + anon_sym_COMMA, + aux_sym_of_token1, + aux_sym_on_statement_token1, + ACTIONS(2409), 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, + [173957] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2467), 2, + sym_comment, + sym_include, + ACTIONS(115), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(117), 26, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, + anon_sym_NO_DASHERROR, + [174004] = 17, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(3844), 1, + sym__terminator, + ACTIONS(3846), 1, + aux_sym_when_expression_token1, + STATE(589), 1, + sym__logical_operator, + STATE(590), 1, + sym__additive_operator, + STATE(591), 1, + sym__multiplicative_operator, + STATE(592), 1, + sym__comparison_operator, + STATE(5880), 1, + sym_when_expression, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2468), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, + [174073] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(457), 1, + sym__logical_operator, + STATE(458), 1, + sym__additive_operator, + STATE(465), 1, + sym__multiplicative_operator, + STATE(466), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2469), 2, + sym_comment, + sym_include, + ACTIONS(1200), 3, + anon_sym_COMMA, + aux_sym_of_token1, + aux_sym_on_statement_token1, + ACTIONS(2409), 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, + [174138] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(457), 1, + sym__logical_operator, + STATE(458), 1, + sym__additive_operator, + STATE(465), 1, + sym__multiplicative_operator, + STATE(466), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2470), 2, + sym_comment, + sym_include, + ACTIONS(1113), 3, + anon_sym_COMMA, + aux_sym_of_token1, + aux_sym_on_statement_token1, + ACTIONS(2409), 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, + [174203] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2692), 1, + sym__namedoublecolon, + STATE(2513), 1, + aux_sym_member_access_repeat1, + ACTIONS(119), 2, + sym__or_operator, + sym__and_operator, + STATE(2471), 2, + sym_comment, + sym_include, + ACTIONS(121), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + anon_sym_COMMA, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_do_block_token1, + aux_sym_widget_field_token1, + [174254] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2686), 1, + anon_sym_LPAREN, + STATE(2457), 1, + sym_function_arguments, + ACTIONS(85), 2, + sym__or_operator, + sym__and_operator, + STATE(2472), 2, + sym_comment, + sym_include, + ACTIONS(87), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + anon_sym_COMMA, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_do_block_token1, + aux_sym_widget_field_token1, + [174305] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2690), 1, + sym__namecolon, + STATE(1737), 1, + aux_sym_object_access_repeat1, + ACTIONS(85), 2, + sym__or_operator, + sym__and_operator, + STATE(2473), 2, + sym_comment, + sym_include, + ACTIONS(87), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + anon_sym_COMMA, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_do_block_token1, + aux_sym_widget_field_token1, + [174356] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(457), 1, + sym__logical_operator, + STATE(458), 1, + sym__additive_operator, + STATE(465), 1, + sym__multiplicative_operator, + STATE(466), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2474), 2, + sym_comment, + sym_include, + ACTIONS(1208), 3, + anon_sym_COMMA, + aux_sym_of_token1, + aux_sym_on_statement_token1, + ACTIONS(2409), 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, + [174421] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(457), 1, + sym__logical_operator, + STATE(458), 1, + sym__additive_operator, + STATE(465), 1, + sym__multiplicative_operator, + STATE(466), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2475), 2, + sym_comment, + sym_include, + ACTIONS(1192), 3, + anon_sym_COMMA, + aux_sym_of_token1, + aux_sym_on_statement_token1, + ACTIONS(2409), 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, + [174486] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3848), 1, + aux_sym_function_call_token1, + STATE(2476), 2, + sym_comment, + sym_include, + ACTIONS(156), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(158), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [174535] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(457), 1, + sym__logical_operator, + STATE(458), 1, + sym__additive_operator, + STATE(465), 1, + sym__multiplicative_operator, + STATE(466), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2477), 2, + sym_comment, + sym_include, + ACTIONS(1125), 3, + anon_sym_COMMA, + aux_sym_of_token1, + aux_sym_on_statement_token1, + ACTIONS(2409), 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, + [174600] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2708), 1, + sym__namedot, + STATE(2448), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(104), 2, + sym__or_operator, + sym__and_operator, + STATE(2478), 2, + sym_comment, + sym_include, + ACTIONS(106), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [174651] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2712), 1, + sym__namedoublecolon, + STATE(2515), 1, + aux_sym_member_access_repeat1, + ACTIONS(119), 2, + sym__or_operator, + sym__and_operator, + STATE(2479), 2, + sym_comment, + sym_include, + ACTIONS(121), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [174702] = 14, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(457), 1, + sym__logical_operator, + STATE(458), 1, + sym__additive_operator, + STATE(465), 1, + sym__multiplicative_operator, + STATE(466), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2480), 2, + sym_comment, + sym_include, + ACTIONS(230), 5, + sym__or_operator, + sym__and_operator, + anon_sym_COMMA, + aux_sym_of_token1, + aux_sym_on_statement_token1, + ACTIONS(2409), 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, + [174765] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(3850), 1, + aux_sym_input_expression_token2, + STATE(28), 1, + sym_qualified_name, + ACTIONS(1358), 2, + sym__or_operator, + sym__and_operator, + STATE(2481), 2, + sym_comment, + sym_include, + ACTIONS(1354), 24, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + [174818] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2482), 2, + sym_comment, + sym_include, + ACTIONS(142), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(144), 26, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, + [174865] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2483), 2, + sym_comment, + sym_include, + ACTIONS(138), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(140), 26, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + anon_sym_COMMA, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_function_call_token1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [174912] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2484), 2, + sym_comment, + sym_include, + ACTIONS(138), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(140), 26, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, + [174959] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2744), 1, + anon_sym_LBRACK, + ACTIONS(2746), 1, + anon_sym_LPAREN, + STATE(2550), 1, + sym_function_arguments, + ACTIONS(65), 2, + sym__or_operator, + sym__and_operator, + STATE(2485), 2, + sym_comment, + sym_include, + ACTIONS(71), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, + anon_sym_NO_DASHERROR, + [175012] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2726), 1, + sym__namecolon, + STATE(2101), 1, + aux_sym_object_access_repeat1, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(2486), 2, + sym_comment, + sym_include, + ACTIONS(91), 26, + 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, + aux_sym__multiplicative_operator_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_include_argument_token1, + [175061] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2487), 2, + sym_comment, + sym_include, + ACTIONS(100), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(102), 27, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_include_argument_token1, + [175106] = 29, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(3030), 1, + sym_of, + STATE(3044), 1, + sym__pre_tuning, + STATE(3127), 1, + aux_sym_for_phrase_repeat1, + STATE(3133), 1, + sym_where_clause, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3503), 1, + aux_sym_for_phrase_repeat2, + STATE(4100), 1, + sym_on_error_phrase, + STATE(4502), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(5055), 1, + sym_on_stop_phrase, + STATE(5061), 1, + aux_sym_for_statement_repeat1, + STATE(5518), 1, + sym_body, + STATE(2488), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [175199] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3852), 1, + sym_identifier, + ACTIONS(3855), 1, + aux_sym_input_expression_token2, + STATE(2861), 1, + sym_qualified_name, + ACTIONS(1358), 2, + sym__or_operator, + sym__and_operator, + STATE(2489), 2, + sym_comment, + sym_include, + ACTIONS(1354), 24, + anon_sym_SLASH, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [175252] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2730), 1, + anon_sym_LBRACK, + ACTIONS(2732), 1, + anon_sym_LPAREN, + STATE(2611), 1, + sym_function_arguments, + ACTIONS(65), 2, + sym__or_operator, + sym__and_operator, + STATE(2490), 2, + sym_comment, + sym_include, + ACTIONS(71), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, + [175305] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2491), 2, + sym_comment, + sym_include, + ACTIONS(142), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(144), 26, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + anon_sym_COMMA, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_function_call_token1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [175352] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3857), 1, + sym__namedoublecolon, + ACTIONS(127), 2, + sym__or_operator, + sym__and_operator, + STATE(2492), 3, + sym_comment, + sym_include, + aux_sym_member_access_repeat1, + ACTIONS(129), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + [175401] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3860), 1, + sym__namedot, + ACTIONS(108), 2, + sym__or_operator, + sym__and_operator, + STATE(2493), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(110), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + anon_sym_COMMA, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, @@ -200093,28 +203302,114 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [173109] = 6, + [175450] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2481), 2, + ACTIONS(2710), 1, + sym__namecolon, + STATE(1921), 1, + aux_sym_object_access_repeat1, + ACTIONS(85), 2, + sym__or_operator, + sym__and_operator, + STATE(2494), 2, sym_comment, sym_include, - ACTIONS(124), 3, - sym__namecolon, + ACTIONS(87), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [175501] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2708), 1, + sym__namedot, + STATE(2478), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(123), 2, sym__or_operator, sym__and_operator, - ACTIONS(126), 25, + STATE(2495), 2, + sym_comment, + sym_include, + ACTIONS(125), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, - anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [175552] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2706), 1, anon_sym_LPAREN, + STATE(2476), 1, + sym_function_arguments, + ACTIONS(85), 2, + sym__or_operator, + sym__and_operator, + STATE(2496), 2, + sym_comment, + sym_include, + ACTIONS(87), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -200133,20 +203428,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [173155] = 6, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [175603] = 29, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(3027), 1, + sym_of, + STATE(3033), 1, + sym__pre_tuning, + STATE(3086), 1, + aux_sym_for_phrase_repeat1, + STATE(3088), 1, + sym_where_clause, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3535), 1, + aux_sym_for_phrase_repeat2, + STATE(4146), 1, + sym_on_error_phrase, + STATE(4376), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4907), 1, + aux_sym_for_statement_repeat1, + STATE(4912), 1, + sym_on_stop_phrase, + STATE(5498), 1, + sym_body, + STATE(2497), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [175696] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(138), 2, + ACTIONS(2690), 1, + sym__namecolon, + STATE(1737), 1, + aux_sym_object_access_repeat1, + ACTIONS(65), 2, sym__or_operator, sym__and_operator, - STATE(2482), 2, + STATE(2498), 2, sym_comment, sym_include, - ACTIONS(140), 26, + ACTIONS(71), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -200170,27 +203536,632 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_function_call_token1, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [173201] = 8, + [175747] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2659), 1, + sym__namedot, + STATE(2453), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(104), 2, + sym__or_operator, + sym__and_operator, + STATE(2499), 2, + sym_comment, + sym_include, + ACTIONS(106), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + [175798] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2661), 1, + sym__namecolon, + STATE(1926), 1, + aux_sym_object_access_repeat1, + ACTIONS(65), 2, + sym__or_operator, + sym__and_operator, + STATE(2500), 2, + sym_comment, + sym_include, + ACTIONS(71), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + [175849] = 29, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(3009), 1, + sym_of, + STATE(3056), 1, + sym__pre_tuning, + STATE(3074), 1, + sym_where_clause, + STATE(3148), 1, + aux_sym_for_phrase_repeat1, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3508), 1, + aux_sym_for_phrase_repeat2, + STATE(4058), 1, + sym_on_error_phrase, + STATE(4530), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4881), 1, + aux_sym_for_statement_repeat1, + STATE(4888), 1, + sym_on_stop_phrase, + STATE(5618), 1, + sym_body, + STATE(2501), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [175942] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2661), 1, + sym__namecolon, + STATE(1926), 1, + aux_sym_object_access_repeat1, + ACTIONS(85), 2, + sym__or_operator, + sym__and_operator, + STATE(2502), 2, + sym_comment, + sym_include, + ACTIONS(87), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + [175993] = 29, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(3017), 1, + sym_of, + STATE(3046), 1, + sym__pre_tuning, + STATE(3141), 1, + sym_where_clause, + STATE(3149), 1, + aux_sym_for_phrase_repeat1, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3544), 1, + aux_sym_for_phrase_repeat2, + STATE(4178), 1, + sym_on_error_phrase, + STATE(4314), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(5017), 1, + aux_sym_for_statement_repeat1, + STATE(5040), 1, + sym_on_stop_phrase, + STATE(6108), 1, + sym_body, + STATE(2503), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [176086] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2679), 1, + ACTIONS(2657), 1, anon_sym_LPAREN, - STATE(2767), 1, + STATE(2510), 1, sym_function_arguments, - ACTIONS(83), 2, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, - STATE(2483), 2, + STATE(2504), 2, + sym_comment, + sym_include, + ACTIONS(87), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + [176137] = 17, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(3844), 1, + aux_sym_output_stream_statement_token1, + ACTIONS(3863), 1, + aux_sym_when_expression_token1, + STATE(763), 1, + sym__logical_operator, + STATE(764), 1, + sym__additive_operator, + STATE(765), 1, + sym__multiplicative_operator, + STATE(766), 1, + sym__comparison_operator, + STATE(5880), 1, + sym_when_expression, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2505), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, + [176206] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2506), 2, + sym_comment, + sym_include, + ACTIONS(115), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(117), 26, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + anon_sym_COMMA, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_function_call_token1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [176253] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2659), 1, + sym__namedot, + STATE(2499), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(134), 2, + sym__or_operator, + sym__and_operator, + STATE(2507), 2, + sym_comment, + sym_include, + ACTIONS(136), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + [176304] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2508), 2, + sym_comment, + sym_include, + ACTIONS(115), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(117), 26, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, + [176351] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2659), 1, + sym__namedot, + STATE(2499), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(123), 2, + sym__or_operator, + sym__and_operator, + STATE(2509), 2, + sym_comment, + sym_include, + ACTIONS(125), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + [176402] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3865), 1, + aux_sym_function_call_token1, + STATE(2510), 2, + sym_comment, + sym_include, + ACTIONS(156), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(158), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + [176451] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(3867), 1, + aux_sym_input_expression_token2, + STATE(28), 1, + sym_qualified_name, + ACTIONS(1358), 2, + sym__or_operator, + sym__and_operator, + STATE(2511), 2, + sym_comment, + sym_include, + ACTIONS(1354), 24, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_STAR, + aux_sym__block_terminator_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [176504] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2708), 1, + sym__namedot, + STATE(2478), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(134), 2, + sym__or_operator, + sym__and_operator, + STATE(2512), 2, sym_comment, sym_include, - ACTIONS(85), 24, + ACTIONS(136), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -200214,22 +204185,195 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [173251] = 6, + [176555] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2484), 2, + ACTIONS(3869), 1, + sym__namedoublecolon, + ACTIONS(127), 2, + sym__or_operator, + sym__and_operator, + STATE(2513), 3, + sym_comment, + sym_include, + aux_sym_member_access_repeat1, + ACTIONS(129), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + anon_sym_COMMA, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_do_block_token1, + aux_sym_widget_field_token1, + [176604] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2663), 1, + sym__namedoublecolon, + STATE(2492), 1, + aux_sym_member_access_repeat1, + ACTIONS(119), 2, + sym__or_operator, + sym__and_operator, + STATE(2514), 2, + sym_comment, + sym_include, + ACTIONS(121), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + [176655] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3872), 1, + sym__namedoublecolon, + ACTIONS(127), 2, + sym__or_operator, + sym__and_operator, + STATE(2515), 3, + sym_comment, + sym_include, + aux_sym_member_access_repeat1, + ACTIONS(129), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [176704] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3875), 1, + anon_sym_NO_DASHERROR, + STATE(2516), 2, sym_comment, sym_include, - ACTIONS(117), 3, + ACTIONS(391), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(393), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + anon_sym_COMMA, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_do_block_token1, + aux_sym_widget_field_token1, + [176753] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2688), 1, sym__namedot, + STATE(2493), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(104), 2, sym__or_operator, sym__and_operator, - ACTIONS(119), 25, + STATE(2517), 2, + sym_comment, + sym_include, + ACTIONS(106), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -200255,17 +204399,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [173297] = 5, + [176804] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3726), 1, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3877), 1, + sym_identifier, + STATE(2795), 1, + sym_qualified_name, + ACTIONS(1581), 2, + sym__or_operator, + sym__and_operator, + STATE(2518), 2, + sym_comment, + sym_include, + ACTIONS(1579), 24, + anon_sym_SLASH, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [176854] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3775), 1, sym__escaped_string, - STATE(2485), 2, + STATE(2519), 2, sym_comment, sym_include, - ACTIONS(3724), 28, + ACTIONS(3773), 28, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -200294,28 +204480,150 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_available_expression_token2, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [173341] = 8, + [176898] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2520), 2, + sym_comment, + sym_include, + ACTIONS(108), 3, + sym__namedot, + sym__or_operator, + sym__and_operator, + ACTIONS(110), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + anon_sym_COMMA, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_do_block_token1, + aux_sym_widget_field_token1, + [176944] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2746), 1, + anon_sym_LPAREN, + STATE(2550), 1, + sym_function_arguments, + ACTIONS(85), 2, + sym__or_operator, + sym__and_operator, + STATE(2521), 2, + sym_comment, + sym_include, + ACTIONS(87), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, + anon_sym_NO_DASHERROR, + [176994] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3880), 1, + anon_sym_NO_DASHERROR, + STATE(2522), 2, + sym_comment, + sym_include, + ACTIONS(391), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(393), 25, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_STAR, + anon_sym_DQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_include_argument_token1, + [177040] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2681), 1, - sym__namedot, - STATE(2471), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(102), 2, + ACTIONS(3882), 1, + sym__namedoublecolon, + ACTIONS(127), 2, sym__or_operator, sym__and_operator, - STATE(2486), 2, + STATE(2523), 3, sym_comment, sym_include, - ACTIONS(104), 24, + aux_sym_member_access_repeat1, + ACTIONS(129), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -200334,69 +204642,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_when_expression_token1, - anon_sym_NO_DASHERROR, - [173391] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3712), 1, - sym__escaped_string, - STATE(2487), 2, - sym_comment, - sym_include, - ACTIONS(3710), 28, - 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_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, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [173435] = 9, + [177088] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3857), 1, + ACTIONS(3885), 1, sym_identifier, - ACTIONS(3860), 1, + ACTIONS(3888), 1, aux_sym_input_expression_token2, - STATE(2563), 1, + STATE(2981), 1, sym_qualified_name, - ACTIONS(1351), 2, + ACTIONS(1358), 2, sym__or_operator, sym__and_operator, - STATE(2488), 2, + STATE(2524), 2, sym_comment, sym_include, - ACTIONS(1347), 23, + ACTIONS(1354), 23, anon_sym_SLASH, anon_sym_STAR, + sym__terminator, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -200416,47 +204685,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_do_block_token1, - aux_sym_widget_field_token1, - [173487] = 15, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + [177140] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(2726), 1, + sym__namecolon, + STATE(2132), 1, + aux_sym_object_access_repeat1, + ACTIONS(65), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + STATE(2525), 2, + sym_comment, + sym_include, + ACTIONS(71), 25, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3851), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2489), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -200467,42 +204726,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [173551] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_include_argument_token1, + [177188] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(556), 1, + STATE(744), 1, sym__logical_operator, - STATE(557), 1, + STATE(750), 1, sym__additive_operator, - STATE(558), 1, + STATE(751), 1, sym__multiplicative_operator, - STATE(559), 1, + STATE(753), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(1199), 2, - sym__terminator, - aux_sym_when_expression_token1, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2490), 2, + ACTIONS(3890), 2, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + STATE(2526), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -200516,28 +204776,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [173615] = 8, + [177252] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3863), 1, - sym_identifier, - STATE(2530), 1, - sym_qualified_name, - ACTIONS(1366), 2, + ACTIONS(3892), 1, + sym__namedot, + ACTIONS(150), 2, sym__or_operator, sym__and_operator, - STATE(2491), 2, + STATE(2527), 2, sym_comment, sym_include, - ACTIONS(1364), 24, + ACTIONS(152), 25, anon_sym_SLASH, + sym_identifier, anon_sym_STAR, + sym__terminator, anon_sym_COMMA, - aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -200556,68 +204815,72 @@ 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_do_block_token1, - aux_sym_widget_field_token1, - [173665] = 5, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [177300] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3681), 1, - sym__escaped_string, - STATE(2492), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2748), 1, + sym__namedot, + STATE(2553), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(134), 2, + sym__or_operator, + sym__and_operator, + STATE(2528), 2, sym_comment, sym_include, - ACTIONS(3679), 28, - anon_sym_LBRACE, + ACTIONS(136), 24, + anon_sym_SLASH, 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [173709] = 7, + anon_sym_NO_DASHERROR, + [177350] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3866), 1, - sym__namedoublecolon, - ACTIONS(110), 2, + ACTIONS(3894), 1, + sym__namedot, + ACTIONS(108), 2, sym__or_operator, sym__and_operator, - STATE(2493), 3, + STATE(2529), 3, sym_comment, sym_include, - aux_sym_member_access_repeat1, - ACTIONS(112), 24, + aux_sym_qualified_name_repeat1, + ACTIONS(110), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -200636,30 +204899,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_when_expression_token1, - anon_sym_NO_DASHERROR, - [173757] = 8, + aux_sym_scope_tuning_token1, + [177398] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2681), 1, + ACTIONS(2734), 1, sym__namedot, - STATE(2471), 1, + STATE(2529), 1, aux_sym_qualified_name_repeat1, - ACTIONS(106), 2, + ACTIONS(104), 2, sym__or_operator, sym__and_operator, - STATE(2494), 2, + STATE(2530), 2, sym_comment, sym_include, - ACTIONS(108), 24, + ACTIONS(106), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -200678,43 +204941,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_when_expression_token1, - anon_sym_NO_DASHERROR, - [173807] = 12, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + [177448] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(556), 1, - sym__logical_operator, - STATE(557), 1, - sym__additive_operator, - STATE(558), 1, - sym__multiplicative_operator, - STATE(559), 1, - sym__comparison_operator, - ACTIONS(1205), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(2495), 2, + ACTIONS(3897), 1, + anon_sym_NO_DASHERROR, + STATE(2531), 2, sym_comment, sym_include, - ACTIONS(1207), 19, + ACTIONS(391), 3, + sym__namecolon, sym__or_operator, sym__and_operator, + ACTIONS(393), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, sym__terminator, anon_sym_PLUS, anon_sym_DASH, + aux_sym__multiplicative_operator_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, @@ -200726,39 +204982,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - [173865] = 10, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + [177496] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(556), 1, - sym__logical_operator, - STATE(557), 1, - sym__additive_operator, - STATE(558), 1, - sym__multiplicative_operator, - STATE(559), 1, - sym__comparison_operator, - STATE(2496), 2, + STATE(2532), 2, sym_comment, sym_include, - ACTIONS(1193), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1195), 21, + ACTIONS(138), 3, + sym__namecolon, sym__or_operator, sym__and_operator, + ACTIONS(140), 26, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - sym__terminator, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -200769,43 +205020,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_when_expression_token1, - [173919] = 13, - ACTIONS(65), 1, + aux_sym_include_argument_token1, + aux_sym_function_call_token1, + [177540] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(556), 1, - sym__logical_operator, - STATE(557), 1, - sym__additive_operator, - STATE(558), 1, - sym__multiplicative_operator, - STATE(559), 1, - sym__comparison_operator, - ACTIONS(1177), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2497), 2, + STATE(2533), 2, sym_comment, sym_include, - ACTIONS(1179), 17, + ACTIONS(142), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - sym__terminator, + ACTIONS(144), 26, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_STAR, + anon_sym_DQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, @@ -200816,46 +205059,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_when_expression_token1, - [173979] = 15, - ACTIONS(65), 1, + aux_sym_include_argument_token1, + aux_sym_function_call_token1, + [177584] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(556), 1, - sym__logical_operator, - STATE(557), 1, - sym__additive_operator, - STATE(558), 1, - sym__multiplicative_operator, - STATE(559), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + STATE(2534), 2, + sym_comment, + sym_include, + ACTIONS(166), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(1112), 2, - sym__terminator, - aux_sym_when_expression_token1, - ACTIONS(2392), 2, + ACTIONS(168), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2498), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -200866,29 +205099,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [174043] = 9, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [177630] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3869), 1, - sym_identifier, - ACTIONS(3872), 1, - aux_sym_input_expression_token2, - STATE(2834), 1, - sym_qualified_name, - ACTIONS(1351), 2, - sym__or_operator, - sym__and_operator, - STATE(2499), 2, + STATE(2535), 2, sym_comment, sym_include, - ACTIONS(1347), 23, + ACTIONS(162), 3, + sym__namedoublecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(164), 25, anon_sym_SLASH, + sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -200908,46 +205140,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - anon_sym_NO_DASHERROR, - [174095] = 15, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + [177676] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(818), 1, - sym__logical_operator, - STATE(820), 1, - sym__additive_operator, - STATE(825), 1, - sym__multiplicative_operator, - STATE(826), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + STATE(2536), 2, + sym_comment, + sym_include, + ACTIONS(166), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(1112), 2, - aux_sym_when_expression_token1, - aux_sym_output_stream_statement_token1, - ACTIONS(2392), 2, + ACTIONS(168), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(2500), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -200958,41 +205179,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [174159] = 13, - ACTIONS(65), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [177722] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(3899), 1, + sym_identifier, + ACTIONS(3902), 1, + aux_sym_input_expression_token2, + STATE(2908), 1, + sym_qualified_name, + ACTIONS(1358), 2, + sym__or_operator, + sym__and_operator, + STATE(2537), 2, + sym_comment, + sym_include, + ACTIONS(1354), 23, anon_sym_SLASH, - STATE(818), 1, - sym__logical_operator, - STATE(820), 1, - sym__additive_operator, - STATE(825), 1, - sym__multiplicative_operator, - STATE(826), 1, - sym__comparison_operator, - ACTIONS(1177), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2501), 2, - sym_comment, - sym_include, - ACTIONS(1179), 17, - sym__or_operator, - sym__and_operator, + aux_sym__multiplicative_operator_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, @@ -201003,40 +205222,38 @@ 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_when_expression_token1, - aux_sym_output_stream_statement_token1, - [174219] = 10, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [177774] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(818), 1, - sym__logical_operator, - STATE(820), 1, - sym__additive_operator, - STATE(825), 1, - sym__multiplicative_operator, - STATE(826), 1, - sym__comparison_operator, - STATE(2502), 2, + ACTIONS(2726), 1, + sym__namecolon, + STATE(2132), 1, + aux_sym_object_access_repeat1, + ACTIONS(85), 2, + sym__or_operator, + sym__and_operator, + STATE(2538), 2, sym_comment, sym_include, - ACTIONS(1193), 3, + ACTIONS(87), 25, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1195), 21, - sym__or_operator, - sym__and_operator, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -201047,42 +205264,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_when_expression_token1, - aux_sym_output_stream_statement_token1, - [174273] = 12, - ACTIONS(65), 1, + aux_sym_include_argument_token1, + [177822] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(818), 1, - sym__logical_operator, - STATE(820), 1, - sym__additive_operator, - STATE(825), 1, - sym__multiplicative_operator, - STATE(826), 1, - sym__comparison_operator, - ACTIONS(1205), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(2503), 2, - sym_comment, - sym_include, - ACTIONS(1207), 19, + ACTIONS(2722), 1, + anon_sym_LPAREN, + STATE(2560), 1, + sym_function_arguments, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, + STATE(2539), 2, + sym_comment, + sym_include, + ACTIONS(87), 25, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_STAR, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, + aux_sym__multiplicative_operator_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, @@ -201093,46 +205305,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_when_expression_token1, - aux_sym_output_stream_statement_token1, - [174331] = 14, - ACTIONS(65), 1, + aux_sym_include_argument_token1, + [177870] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(3904), 1, + sym_identifier, + STATE(2696), 1, + sym_qualified_name, + ACTIONS(1581), 2, + sym__or_operator, + sym__and_operator, + STATE(2540), 2, + sym_comment, + sym_include, + ACTIONS(1579), 24, anon_sym_SLASH, - STATE(794), 1, - sym__logical_operator, - STATE(795), 1, - sym__additive_operator, - STATE(797), 1, - sym__multiplicative_operator, - STATE(798), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(2504), 2, - sym_comment, - sym_include, - ACTIONS(236), 4, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -201143,45 +205346,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [174393] = 15, - ACTIONS(65), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [177920] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(3799), 1, + sym__escaped_string, + STATE(2541), 2, + sym_comment, + sym_include, + ACTIONS(3797), 28, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(818), 1, - sym__logical_operator, - STATE(820), 1, - sym__additive_operator, - STATE(825), 1, - sym__multiplicative_operator, - STATE(826), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_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, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [177964] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2542), 2, + sym_comment, + sym_include, + ACTIONS(146), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(1203), 2, - aux_sym_when_expression_token1, - aux_sym_output_stream_statement_token1, - ACTIONS(2392), 2, + ACTIONS(148), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(2505), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -201192,45 +205425,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [174457] = 15, - ACTIONS(65), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [178010] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(818), 1, - sym__logical_operator, - STATE(820), 1, - sym__additive_operator, - STATE(825), 1, - sym__multiplicative_operator, - STATE(826), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(2750), 1, + sym__namecolon, + STATE(2008), 1, + aux_sym_object_access_repeat1, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, - ACTIONS(1102), 2, - aux_sym_when_expression_token1, - aux_sym_output_stream_statement_token1, - ACTIONS(2392), 2, + STATE(2543), 2, + sym_comment, + sym_include, + ACTIONS(87), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2506), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -201241,45 +205467,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [174521] = 15, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [178060] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(818), 1, - sym__logical_operator, - STATE(820), 1, - sym__additive_operator, - STATE(825), 1, - sym__multiplicative_operator, - STATE(826), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(3907), 1, + sym__namedot, + ACTIONS(108), 2, sym__or_operator, sym__and_operator, - ACTIONS(1199), 2, - aux_sym_when_expression_token1, - aux_sym_output_stream_statement_token1, - ACTIONS(2392), 2, + STATE(2544), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(110), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2507), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -201290,45 +205508,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [174585] = 15, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [178108] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(794), 1, - sym__logical_operator, - STATE(795), 1, - sym__additive_operator, - STATE(797), 1, - sym__multiplicative_operator, - STATE(798), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(2748), 1, + sym__namedot, + STATE(2553), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(123), 2, sym__or_operator, sym__and_operator, - ACTIONS(1183), 2, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - ACTIONS(2392), 2, + STATE(2545), 2, + sym_comment, + sym_include, + ACTIONS(125), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2508), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -201339,45 +205550,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [174649] = 15, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [178158] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(818), 1, - sym__logical_operator, - STATE(820), 1, - sym__additive_operator, - STATE(825), 1, - sym__multiplicative_operator, - STATE(826), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + STATE(2546), 2, + sym_comment, + sym_include, + ACTIONS(115), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(1106), 2, - aux_sym_when_expression_token1, - aux_sym_output_stream_statement_token1, - ACTIONS(2392), 2, + ACTIONS(117), 26, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - STATE(2509), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -201388,39 +205589,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [174713] = 10, - ACTIONS(65), 1, + aux_sym_include_argument_token1, + aux_sym_function_call_token1, + [178202] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(794), 1, - sym__logical_operator, - STATE(795), 1, - sym__additive_operator, - STATE(797), 1, - sym__multiplicative_operator, - STATE(798), 1, - sym__comparison_operator, - STATE(2510), 2, + ACTIONS(2724), 1, + sym__namedot, + STATE(2580), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(134), 2, + sym__or_operator, + sym__and_operator, + STATE(2547), 2, sym_comment, sym_include, - ACTIONS(1193), 3, + ACTIONS(136), 25, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1195), 21, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -201431,40 +205631,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_on_error_phrase_token1, - [174767] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_include_argument_token1, + [178250] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(794), 1, - sym__logical_operator, - STATE(795), 1, - sym__additive_operator, - STATE(797), 1, - sym__multiplicative_operator, - STATE(798), 1, + STATE(492), 1, sym__comparison_operator, - ACTIONS(1177), 2, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2511), 2, + ACTIONS(3910), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(2548), 2, sym_comment, sym_include, - ACTIONS(1179), 17, - sym__or_operator, - sym__and_operator, - anon_sym_COLON, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -201478,46 +205681,33 @@ 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_on_error_phrase_token1, - [174827] = 15, - ACTIONS(65), 1, + [178314] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(818), 1, - sym__logical_operator, - STATE(820), 1, - sym__additive_operator, - STATE(825), 1, - sym__multiplicative_operator, - STATE(826), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + STATE(2549), 2, + sym_comment, + sym_include, + ACTIONS(166), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(1187), 2, - aux_sym_when_expression_token1, - aux_sym_output_stream_statement_token1, - ACTIONS(2392), 2, + ACTIONS(168), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2512), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -201528,45 +205718,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [174891] = 15, - ACTIONS(65), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [178360] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(794), 1, - sym__logical_operator, - STATE(795), 1, - sym__additive_operator, - STATE(797), 1, - sym__multiplicative_operator, - STATE(798), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(3912), 1, + aux_sym_function_call_token1, + STATE(2550), 2, + sym_comment, + sym_include, + ACTIONS(156), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(1191), 2, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - ACTIONS(2392), 2, + ACTIONS(158), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2513), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -201577,45 +205760,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [174955] = 15, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [178408] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(794), 1, - sym__logical_operator, - STATE(795), 1, - sym__additive_operator, - STATE(797), 1, - sym__multiplicative_operator, - STATE(798), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(2736), 1, + sym__namecolon, + STATE(1976), 1, + aux_sym_object_access_repeat1, + ACTIONS(65), 2, sym__or_operator, sym__and_operator, - ACTIONS(1112), 2, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - ACTIONS(2392), 2, + STATE(2551), 2, + sym_comment, + sym_include, + ACTIONS(71), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2514), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -201626,45 +205803,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [175019] = 15, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + [178458] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(794), 1, - sym__logical_operator, - STATE(795), 1, - sym__additive_operator, - STATE(797), 1, - sym__multiplicative_operator, - STATE(798), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + STATE(2552), 2, + sym_comment, + sym_include, + ACTIONS(146), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(1106), 2, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - ACTIONS(2392), 2, + ACTIONS(148), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2515), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -201675,44 +205842,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [175083] = 14, - ACTIONS(65), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [178504] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(2748), 1, + sym__namedot, + STATE(2544), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(104), 2, + sym__or_operator, + sym__and_operator, + STATE(2553), 2, + sym_comment, + sym_include, + ACTIONS(106), 24, anon_sym_SLASH, - STATE(818), 1, - sym__logical_operator, - STATE(820), 1, - sym__additive_operator, - STATE(825), 1, - sym__multiplicative_operator, - STATE(826), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2516), 2, + aux_sym__multiplicative_operator_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, + anon_sym_NO_DASHERROR, + [178554] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2554), 2, sym_comment, sym_include, - ACTIONS(236), 4, + ACTIONS(162), 3, + sym__namedoublecolon, sym__or_operator, sym__and_operator, - aux_sym_when_expression_token1, - aux_sym_output_stream_statement_token1, - ACTIONS(2396), 13, + ACTIONS(164), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, @@ -201723,30 +205923,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [175145] = 9, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [178600] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3874), 1, + ACTIONS(2471), 1, sym_identifier, - ACTIONS(3877), 1, - aux_sym_input_expression_token2, - STATE(2811), 1, + STATE(32), 1, sym_qualified_name, - ACTIONS(1351), 2, + ACTIONS(1581), 2, sym__or_operator, sym__and_operator, - STATE(2517), 2, + STATE(2555), 2, sym_comment, sym_include, - ACTIONS(1347), 23, + ACTIONS(1579), 24, + anon_sym_COLON, anon_sym_SLASH, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__block_terminator_token1, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -201765,46 +205966,38 @@ 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_when_expression_token1, - [175197] = 15, - ACTIONS(65), 1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [178650] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(794), 1, - sym__logical_operator, - STATE(795), 1, - sym__additive_operator, - STATE(797), 1, - sym__multiplicative_operator, - STATE(798), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(2752), 1, + sym__namedoublecolon, + STATE(2630), 1, + aux_sym_member_access_repeat1, + ACTIONS(119), 2, sym__or_operator, sym__and_operator, - ACTIONS(1199), 2, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - ACTIONS(2392), 2, + STATE(2556), 2, + sym_comment, + sym_include, + ACTIONS(121), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2518), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -201815,45 +206008,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [175261] = 15, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [178700] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(794), 1, - sym__logical_operator, - STATE(795), 1, - sym__additive_operator, - STATE(797), 1, - sym__multiplicative_operator, - STATE(798), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + STATE(2557), 2, + sym_comment, + sym_include, + ACTIONS(162), 3, + sym__namedoublecolon, sym__or_operator, sym__and_operator, - ACTIONS(1102), 2, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - ACTIONS(2392), 2, + ACTIONS(164), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(2519), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -201864,45 +206048,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [175325] = 15, - ACTIONS(65), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [178746] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(794), 1, - sym__logical_operator, - STATE(795), 1, - sym__additive_operator, - STATE(797), 1, - sym__multiplicative_operator, - STATE(798), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(2750), 1, + sym__namecolon, + STATE(2008), 1, + aux_sym_object_access_repeat1, + ACTIONS(65), 2, sym__or_operator, sym__and_operator, - ACTIONS(1203), 2, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - ACTIONS(2392), 2, + STATE(2558), 2, + sym_comment, + sym_include, + ACTIONS(71), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -201913,45 +206090,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [175389] = 15, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [178796] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(818), 1, - sym__logical_operator, - STATE(820), 1, - sym__additive_operator, - STATE(825), 1, - sym__multiplicative_operator, - STATE(826), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(2724), 1, + sym__namedot, + STATE(2580), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(123), 2, sym__or_operator, sym__and_operator, - ACTIONS(1183), 2, - aux_sym_when_expression_token1, - aux_sym_output_stream_statement_token1, - ACTIONS(2392), 2, + STATE(2559), 2, + sym_comment, + sym_include, + ACTIONS(125), 25, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - STATE(2521), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -201962,27 +206132,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [175453] = 8, + aux_sym_include_argument_token1, + [178844] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3879), 1, - sym_identifier, - ACTIONS(3882), 1, - aux_sym_input_expression_token2, - STATE(2879), 1, - sym_qualified_name, - ACTIONS(1351), 2, - sym__or_operator, - sym__and_operator, - STATE(2522), 2, + ACTIONS(3914), 1, + aux_sym_function_call_token1, + STATE(2560), 2, sym_comment, sym_include, - ACTIONS(1347), 24, + ACTIONS(156), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(158), 25, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, anon_sym_DQUOTE, anon_sym_PLUS, @@ -202004,45 +206173,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [175503] = 15, - ACTIONS(65), 1, + [178890] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(818), 1, - sym__logical_operator, - STATE(820), 1, - sym__additive_operator, - STATE(825), 1, - sym__multiplicative_operator, - STATE(826), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + STATE(2561), 2, + sym_comment, + sym_include, + ACTIONS(138), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(1191), 2, - aux_sym_when_expression_token1, - aux_sym_output_stream_statement_token1, - ACTIONS(2392), 2, + ACTIONS(140), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2523), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -202053,35 +206211,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [175567] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, + [178936] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(362), 1, - sym__additive_operator, - STATE(704), 1, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(763), 1, sym__logical_operator, - STATE(739), 1, + STATE(764), 1, + sym__additive_operator, + STATE(765), 1, sym__multiplicative_operator, - STATE(746), 1, + STATE(766), 1, sym__comparison_operator, - STATE(2524), 2, - sym_comment, - sym_include, - ACTIONS(1193), 3, - anon_sym_SLASH, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1195), 20, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, + ACTIONS(1204), 2, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + ACTIONS(2405), 2, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(2562), 2, + sym_comment, + sym_include, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -202095,42 +206262,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_else_statement_token1, - [175620] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [179000] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3884), 1, - aux_sym_else_statement_token1, - STATE(362), 1, - sym__additive_operator, - STATE(704), 1, + STATE(763), 1, sym__logical_operator, - STATE(739), 1, + STATE(764), 1, + sym__additive_operator, + STATE(765), 1, sym__multiplicative_operator, - STATE(746), 1, + STATE(766), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2525), 2, + STATE(2563), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(1212), 4, + sym__or_operator, + sym__and_operator, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -202144,41 +206310,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [175683] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [179062] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(3886), 1, - anon_sym_RBRACK, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, + STATE(763), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(764), 1, + sym__additive_operator, + STATE(765), 1, + sym__multiplicative_operator, + STATE(766), 1, + sym__comparison_operator, + STATE(2564), 2, + sym_comment, + sym_include, + ACTIONS(1214), 3, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1216), 21, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2526), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -202192,33 +206352,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [175746] = 6, - ACTIONS(3), 1, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + [179116] = 12, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(198), 2, - sym__or_operator, - sym__and_operator, - STATE(2527), 2, - sym_comment, - sym_include, - ACTIONS(200), 25, + ACTIONS(1086), 1, anon_sym_SLASH, - sym_identifier, + STATE(763), 1, + sym__logical_operator, + STATE(764), 1, + sym__additive_operator, + STATE(765), 1, + sym__multiplicative_operator, + STATE(766), 1, + sym__comparison_operator, + ACTIONS(1119), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + STATE(2565), 2, + sym_comment, + sym_include, + ACTIONS(1121), 19, + sym__or_operator, + sym__and_operator, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_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, @@ -202229,42 +206398,44 @@ 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_do_block_token1, - aux_sym_widget_field_token1, - [175791] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + [179174] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(373), 1, - sym__comparison_operator, - STATE(374), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__additive_operator, - STATE(376), 1, + STATE(763), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(764), 1, + sym__additive_operator, + STATE(765), 1, + sym__multiplicative_operator, + STATE(766), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1196), 2, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2528), 2, + STATE(2566), 2, sym_comment, sym_include, - ACTIONS(236), 3, - sym__or_operator, - sym__and_operator, - aux_sym_if_statement_token2, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -202278,41 +206449,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [175852] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [179238] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3888), 1, - aux_sym_if_statement_token2, - STATE(373), 1, - sym__comparison_operator, - STATE(374), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__additive_operator, - STATE(376), 1, + STATE(763), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(764), 1, + sym__additive_operator, + STATE(765), 1, + sym__multiplicative_operator, + STATE(766), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(1117), 2, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2529), 2, + STATE(2567), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -202326,33 +206498,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [175915] = 6, - ACTIONS(3), 1, + [179302] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(106), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(763), 1, + sym__logical_operator, + STATE(764), 1, + sym__additive_operator, + STATE(765), 1, + sym__multiplicative_operator, + STATE(766), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2530), 2, - sym_comment, - sym_include, - ACTIONS(108), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(1200), 2, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2568), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -202363,43 +206547,42 @@ 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_do_block_token1, - aux_sym_widget_field_token1, - [175960] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [179366] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1183), 1, - aux_sym_if_statement_token2, - STATE(373), 1, - sym__comparison_operator, - STATE(374), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__additive_operator, - STATE(376), 1, + STATE(763), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(764), 1, + sym__additive_operator, + STATE(765), 1, + sym__multiplicative_operator, + STATE(766), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(1113), 2, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2531), 2, + STATE(2569), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -202413,41 +206596,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [176023] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [179430] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1187), 1, - aux_sym_if_statement_token2, - STATE(373), 1, - sym__comparison_operator, - STATE(374), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__additive_operator, - STATE(376), 1, + STATE(763), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(764), 1, + sym__additive_operator, + STATE(765), 1, + sym__multiplicative_operator, + STATE(766), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(1208), 2, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2532), 2, + STATE(2570), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -202461,41 +206645,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [176086] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [179494] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1191), 1, - aux_sym_if_statement_token2, - STATE(373), 1, - sym__comparison_operator, - STATE(374), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__additive_operator, - STATE(376), 1, + STATE(763), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(764), 1, + sym__additive_operator, + STATE(765), 1, + sym__multiplicative_operator, + STATE(766), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(1192), 2, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2533), 2, + STATE(2571), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -202509,41 +206694,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [176149] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [179558] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1106), 1, - aux_sym_if_statement_token2, - STATE(373), 1, - sym__comparison_operator, - STATE(374), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__additive_operator, - STATE(376), 1, + STATE(763), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(764), 1, + sym__additive_operator, + STATE(765), 1, + sym__multiplicative_operator, + STATE(766), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(1125), 2, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2534), 2, + STATE(2572), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -202557,41 +206743,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [176212] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [179622] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1199), 1, - aux_sym_if_statement_token2, - STATE(373), 1, - sym__comparison_operator, - STATE(374), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__additive_operator, - STATE(376), 1, + STATE(763), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(764), 1, + sym__additive_operator, + STATE(765), 1, + sym__multiplicative_operator, + STATE(766), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2535), 2, + STATE(2573), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(230), 4, + sym__or_operator, + sym__and_operator, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -202605,25 +206791,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [176275] = 7, + [179684] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3890), 1, - sym_identifier, - STATE(2905), 1, - sym_qualified_name, - ACTIONS(1366), 2, + ACTIONS(2728), 1, + sym__namedoublecolon, + STATE(2624), 1, + aux_sym_member_access_repeat1, + ACTIONS(119), 2, sym__or_operator, sym__and_operator, - STATE(2536), 2, + STATE(2574), 2, sym_comment, sym_include, - ACTIONS(1364), 24, + ACTIONS(121), 25, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, anon_sym_DQUOTE, anon_sym_PLUS, @@ -202645,104 +206832,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [176322] = 27, - ACTIONS(65), 1, + [179732] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(2942), 1, - sym_of, - STATE(2997), 1, - sym__pre_tuning, - STATE(3023), 1, - aux_sym_for_phrase_repeat1, - STATE(3074), 1, - sym_where_clause, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3487), 1, - aux_sym_for_phrase_repeat2, - STATE(4142), 1, - sym_on_error_phrase, - STATE(4396), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4948), 1, - sym_on_stop_phrase, - STATE(4955), 1, - aux_sym_for_statement_repeat1, - STATE(5787), 1, - sym_body, - STATE(2537), 2, + STATE(2575), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [176409] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(1102), 1, - aux_sym_if_statement_token2, - STATE(373), 1, - sym__comparison_operator, - STATE(374), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__additive_operator, - STATE(376), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(146), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(148), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2538), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -202753,28 +206869,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [176472] = 8, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [179778] = 6, 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, - STATE(2838), 1, - sym_qualified_name, - ACTIONS(1366), 2, - sym__or_operator, - sym__and_operator, - STATE(2539), 2, + STATE(2576), 2, sym_comment, sym_include, - ACTIONS(1364), 23, + ACTIONS(108), 3, + sym__namedot, + sym__or_operator, + sym__and_operator, + ACTIONS(110), 25, anon_sym_SLASH, + sym_identifier, anon_sym_STAR, sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -202794,41 +206910,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - [176521] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [179824] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3896), 1, - aux_sym_else_statement_token1, - STATE(362), 1, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, sym__additive_operator, - STATE(704), 1, + STATE(510), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2540), 2, + ACTIONS(3910), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(2577), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -202842,28 +206961,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [176584] = 8, + [179888] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2735), 1, - sym__namedot, - STATE(2681), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(102), 2, - sym__or_operator, - sym__and_operator, - STATE(2541), 2, + STATE(2578), 2, sym_comment, sym_include, - ACTIONS(104), 23, + ACTIONS(142), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(144), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -202882,45 +206999,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_NO_DASHERROR, - [176633] = 15, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, + [179934] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(3898), 1, - anon_sym_RPAREN, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + STATE(2579), 2, + sym_comment, + sym_include, + ACTIONS(115), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(117), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2542), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -202931,44 +207039,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [176696] = 15, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, + [179980] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(3900), 1, - anon_sym_RBRACK, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(2724), 1, + sym__namedot, + STATE(2616), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(104), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + STATE(2580), 2, + sym_comment, + sym_include, + ACTIONS(106), 25, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - STATE(2543), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -202979,33 +207081,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [176759] = 6, - ACTIONS(3), 1, + aux_sym_include_argument_token1, + [180028] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(182), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(744), 1, + sym__logical_operator, + STATE(750), 1, + sym__additive_operator, + STATE(751), 1, + sym__multiplicative_operator, + STATE(753), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2544), 2, - sym_comment, - sym_include, - ACTIONS(184), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(1204), 2, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2581), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -203016,35 +207131,44 @@ 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_do_block_token1, - aux_sym_widget_field_token1, - [176804] = 6, - ACTIONS(3), 1, + [180092] = 14, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(178), 2, - sym__or_operator, - sym__and_operator, - STATE(2545), 2, - sym_comment, - sym_include, - ACTIONS(180), 25, + ACTIONS(1086), 1, anon_sym_SLASH, - sym_identifier, + STATE(744), 1, + sym__logical_operator, + STATE(750), 1, + sym__additive_operator, + STATE(751), 1, + sym__multiplicative_operator, + STATE(753), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2582), 2, + sym_comment, + sym_include, + ACTIONS(1212), 4, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + ACTIONS(2409), 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, @@ -203055,97 +207179,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_do_block_token1, - aux_sym_widget_field_token1, - [176849] = 26, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [180154] = 10, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(3012), 1, - sym_of, - STATE(3084), 1, - sym__pre_tuning, - STATE(3102), 1, - sym_where_clause, - STATE(3115), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3784), 1, - aux_sym_for_phrase_repeat2, - STATE(4487), 1, - sym_sort_clause, - STATE(4500), 1, - sym_on_error_phrase, - STATE(5034), 1, - sym_on_quit_phrase, - STATE(5691), 1, - sym_on_stop_phrase, - ACTIONS(3902), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(2546), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [176934] = 8, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2733), 1, - anon_sym_LPAREN, - STATE(2902), 1, - sym_function_arguments, - ACTIONS(83), 2, - sym__or_operator, - sym__and_operator, - STATE(2547), 2, + STATE(744), 1, + sym__logical_operator, + STATE(750), 1, + sym__additive_operator, + STATE(751), 1, + sym__multiplicative_operator, + STATE(753), 1, + sym__comparison_operator, + STATE(2583), 2, sym_comment, sym_include, - ACTIONS(85), 23, + ACTIONS(1214), 3, anon_sym_SLASH, - sym_identifier, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1216), 21, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, anon_sym_STAR, - sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -203156,93 +207222,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_NO_DASHERROR, - [176983] = 26, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_on_error_phrase_token1, + [180208] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(3015), 1, - sym_of, - STATE(3080), 1, - sym__pre_tuning, - STATE(3105), 1, - aux_sym_for_phrase_repeat1, - STATE(3107), 1, - sym_where_clause, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3741), 1, - aux_sym_for_phrase_repeat2, - STATE(4487), 1, - sym_sort_clause, - STATE(4522), 1, - sym_on_error_phrase, - STATE(4881), 1, - sym_on_quit_phrase, - STATE(5575), 1, - sym_on_stop_phrase, - ACTIONS(3904), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(2548), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(744), 1, + sym__logical_operator, + STATE(750), 1, + sym__additive_operator, + STATE(751), 1, + sym__multiplicative_operator, + STATE(753), 1, + sym__comparison_operator, + ACTIONS(1119), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + STATE(2584), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [177068] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(202), 2, + ACTIONS(1121), 19, sym__or_operator, sym__and_operator, - STATE(2549), 2, - sym_comment, - sym_include, - ACTIONS(204), 25, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + anon_sym_COLON, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_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, @@ -203253,43 +207268,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_do_block_token1, - aux_sym_widget_field_token1, - [177113] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_on_error_phrase_token1, + [180266] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1203), 1, - aux_sym_if_statement_token2, - STATE(373), 1, - sym__comparison_operator, - STATE(374), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__additive_operator, - STATE(376), 1, + STATE(744), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(750), 1, + sym__additive_operator, + STATE(751), 1, + sym__multiplicative_operator, + STATE(753), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(1196), 2, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2550), 2, + STATE(2585), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -203303,34 +207318,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [177176] = 6, - ACTIONS(3), 1, + [180330] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(2551), 2, - sym_comment, - sym_include, - ACTIONS(117), 3, - sym__namedot, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(744), 1, + sym__logical_operator, + STATE(750), 1, + sym__additive_operator, + STATE(751), 1, + sym__multiplicative_operator, + STATE(753), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(119), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(1117), 2, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2586), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -203341,42 +207367,42 @@ 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_when_expression_token1, - [177221] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [180394] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3906), 1, - aux_sym_else_statement_token1, - STATE(362), 1, - sym__additive_operator, - STATE(704), 1, + STATE(744), 1, sym__logical_operator, - STATE(739), 1, + STATE(750), 1, + sym__additive_operator, + STATE(751), 1, sym__multiplicative_operator, - STATE(746), 1, + STATE(753), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(1200), 2, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2552), 2, + STATE(2587), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -203390,41 +207416,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [177284] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [180458] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3908), 1, - aux_sym_else_statement_token1, - STATE(362), 1, - sym__additive_operator, - STATE(704), 1, + STATE(744), 1, sym__logical_operator, - STATE(739), 1, + STATE(750), 1, + sym__additive_operator, + STATE(751), 1, sym__multiplicative_operator, - STATE(746), 1, + STATE(753), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(1113), 2, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2553), 2, + STATE(2588), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -203438,41 +207465,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [177347] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [180522] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3910), 1, - aux_sym_else_statement_token1, - STATE(362), 1, - sym__additive_operator, - STATE(704), 1, + STATE(744), 1, sym__logical_operator, - STATE(739), 1, + STATE(750), 1, + sym__additive_operator, + STATE(751), 1, sym__multiplicative_operator, - STATE(746), 1, + STATE(753), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(1208), 2, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2554), 2, + STATE(2589), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -203486,35 +207514,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [177410] = 7, - ACTIONS(3), 1, + [180586] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3912), 1, - anon_sym_NO_DASHERROR, - ACTIONS(248), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(744), 1, + sym__logical_operator, + STATE(750), 1, + sym__additive_operator, + STATE(751), 1, + sym__multiplicative_operator, + STATE(753), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2555), 2, - sym_comment, - sym_include, - ACTIONS(250), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(1192), 2, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2590), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -203525,34 +207563,45 @@ 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_when_expression_token1, - [177457] = 6, - ACTIONS(3), 1, + [180650] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(186), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(744), 1, + sym__logical_operator, + STATE(750), 1, + sym__additive_operator, + STATE(751), 1, + sym__multiplicative_operator, + STATE(753), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2556), 2, - sym_comment, - sym_include, - ACTIONS(188), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(1125), 2, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2591), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -203563,39 +207612,44 @@ 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_do_block_token1, - aux_sym_widget_field_token1, - [177502] = 9, - ACTIONS(3), 1, + [180714] = 14, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(3914), 1, - aux_sym_input_expression_token2, - STATE(22), 1, - sym_qualified_name, - ACTIONS(1351), 2, - sym__or_operator, - sym__and_operator, - STATE(2557), 2, - sym_comment, - sym_include, - ACTIONS(1347), 22, - anon_sym_COLON, + ACTIONS(1086), 1, anon_sym_SLASH, + STATE(744), 1, + sym__logical_operator, + STATE(750), 1, + sym__additive_operator, + STATE(751), 1, + sym__multiplicative_operator, + STATE(753), 1, + sym__comparison_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2592), 2, + sym_comment, + sym_include, + ACTIONS(230), 4, + sym__or_operator, + sym__and_operator, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + ACTIONS(2409), 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, @@ -203606,21 +207660,22 @@ 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_on_error_phrase_token1, - [177553] = 6, + [180776] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(206), 2, + ACTIONS(3916), 1, + sym__namedot, + ACTIONS(150), 2, sym__or_operator, sym__and_operator, - STATE(2558), 2, + STATE(2593), 2, sym_comment, sym_include, - ACTIONS(208), 25, + ACTIONS(152), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -203646,25 +207701,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [177598] = 6, + [180824] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(210), 2, + ACTIONS(3918), 1, + sym_identifier, + ACTIONS(3921), 1, + aux_sym_input_expression_token2, + STATE(2913), 1, + sym_qualified_name, + ACTIONS(1358), 2, sym__or_operator, sym__and_operator, - STATE(2559), 2, + STATE(2594), 2, sym_comment, sym_include, - ACTIONS(212), 25, + ACTIONS(1354), 24, anon_sym_SLASH, - sym_identifier, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -203683,42 +207742,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [177643] = 12, - ACTIONS(65), 1, + aux_sym_include_argument_token1, + [180874] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(373), 1, - sym__comparison_operator, - STATE(374), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__additive_operator, - STATE(376), 1, - sym__logical_operator, - ACTIONS(1205), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(2560), 2, + STATE(2595), 2, sym_comment, sym_include, - ACTIONS(1207), 18, + ACTIONS(138), 3, + sym__namecolon, sym__or_operator, sym__and_operator, + ACTIONS(140), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, + aux_sym__multiplicative_operator_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, @@ -203729,67 +207781,69 @@ 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_if_statement_token2, - [177700] = 8, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [180920] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(3918), 1, - aux_sym_variable_tuning_token2, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(2561), 2, + ACTIONS(3779), 1, + sym__escaped_string, + STATE(2596), 2, sym_comment, sym_include, - ACTIONS(3916), 24, + ACTIONS(3777), 28, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_field_option_token1, - aux_sym_field_option_token2, - aux_sym_field_option_token3, - aux_sym_field_option_token4, - aux_sym_field_option_token5, - aux_sym_field_option_token6, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_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, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [177749] = 6, + [180964] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(218), 2, + ACTIONS(3923), 1, + sym_identifier, + STATE(2869), 1, + sym_qualified_name, + ACTIONS(1581), 2, sym__or_operator, sym__and_operator, - STATE(2562), 2, + STATE(2597), 2, sym_comment, sym_include, - ACTIONS(220), 25, + ACTIONS(1579), 24, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, + sym__terminator, anon_sym_COMMA, - aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -203808,27 +207862,28 @@ 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_do_block_token1, - aux_sym_widget_field_token1, - [177794] = 6, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [181014] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(102), 2, - sym__or_operator, - sym__and_operator, - STATE(2563), 2, + STATE(2598), 2, sym_comment, sym_include, - ACTIONS(104), 25, + ACTIONS(142), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(144), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, + sym__terminator, anon_sym_COMMA, - aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -203847,27 +207902,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_do_block_token1, - aux_sym_widget_field_token1, - [177839] = 6, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [181060] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(236), 2, - sym__or_operator, - sym__and_operator, - STATE(2564), 2, + ACTIONS(3926), 1, + anon_sym_NO_DASHERROR, + STATE(2599), 2, sym_comment, sym_include, - ACTIONS(238), 25, + ACTIONS(391), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(393), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, + sym__terminator, anon_sym_COMMA, - aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -203886,30 +207944,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_do_block_token1, - aux_sym_widget_field_token1, - [177884] = 8, + aux_sym_scope_tuning_token1, + [181108] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2735), 1, - sym__namedot, - STATE(2681), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(106), 2, + ACTIONS(2736), 1, + sym__namecolon, + STATE(1976), 1, + aux_sym_object_access_repeat1, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, - STATE(2565), 2, + STATE(2600), 2, sym_comment, sym_include, - ACTIONS(108), 23, + ACTIONS(87), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -203928,86 +207986,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_NO_DASHERROR, - [177933] = 27, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(2943), 1, - sym_of, - STATE(2990), 1, - sym__pre_tuning, - STATE(3021), 1, - aux_sym_for_phrase_repeat1, - STATE(3065), 1, - sym_where_clause, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3457), 1, - aux_sym_for_phrase_repeat2, - STATE(3992), 1, - sym_on_error_phrase, - STATE(4433), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4732), 1, - aux_sym_for_statement_repeat1, - STATE(4740), 1, - sym_on_stop_phrase, - STATE(5603), 1, - sym_body, - STATE(2566), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [178020] = 6, + aux_sym_scope_tuning_token1, + [181158] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(83), 2, + ACTIONS(2732), 1, + anon_sym_LPAREN, + STATE(2611), 1, + sym_function_arguments, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, - STATE(2567), 2, + STATE(2601), 2, sym_comment, sym_include, - ACTIONS(85), 25, + ACTIONS(87), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, + sym__terminator, anon_sym_COMMA, - aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -204026,46 +208028,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [178065] = 15, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + [181208] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(3920), 1, - anon_sym_RPAREN, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + STATE(2602), 2, + sym_comment, + sym_include, + ACTIONS(115), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(117), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2568), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -204076,44 +208067,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [178128] = 15, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [181254] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(3922), 1, - anon_sym_LPAREN, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(3928), 1, + aux_sym_input_expression_token2, + STATE(28), 1, + sym_qualified_name, + ACTIONS(1358), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + STATE(2603), 2, + sym_comment, + sym_include, + ACTIONS(1354), 23, + anon_sym_SLASH, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2569), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -204124,25 +208110,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [178191] = 6, + aux_sym_of_token1, + aux_sym_on_statement_token1, + [181306] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(244), 2, + ACTIONS(2734), 1, + sym__namedot, + STATE(2530), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(134), 2, sym__or_operator, sym__and_operator, - STATE(2570), 2, + STATE(2604), 2, sym_comment, sym_include, - ACTIONS(246), 25, + ACTIONS(136), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, + sym__terminator, anon_sym_COMMA, - aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -204161,43 +208153,42 @@ 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_do_block_token1, - aux_sym_widget_field_token1, - [178236] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + [181356] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3924), 1, - aux_sym_else_statement_token1, - STATE(362), 1, - sym__additive_operator, - STATE(704), 1, + STATE(589), 1, sym__logical_operator, - STATE(739), 1, + STATE(590), 1, + sym__additive_operator, + STATE(591), 1, sym__multiplicative_operator, - STATE(746), 1, + STATE(592), 1, sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2571), 2, + STATE(2605), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(230), 4, + sym__or_operator, + sym__and_operator, + sym__terminator, + aux_sym_when_expression_token1, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -204211,104 +208202,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [178299] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(3928), 1, - aux_sym_variable_tuning_token2, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(2572), 2, - sym_comment, - sym_include, - ACTIONS(3926), 24, - sym__terminator, - aux_sym_unary_expression_token2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_field_option_token1, - aux_sym_field_option_token2, - aux_sym_field_option_token3, - aux_sym_field_option_token4, - aux_sym_field_option_token5, - aux_sym_field_option_token6, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [178348] = 6, + [181418] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(214), 2, + ACTIONS(2738), 1, + sym__namedoublecolon, + STATE(2523), 1, + aux_sym_member_access_repeat1, + ACTIONS(119), 2, sym__or_operator, sym__and_operator, - STATE(2573), 2, + STATE(2606), 2, sym_comment, sym_include, - ACTIONS(216), 25, + ACTIONS(121), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, + sym__terminator, anon_sym_COMMA, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_do_block_token1, - aux_sym_widget_field_token1, - [178393] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(146), 2, - sym__or_operator, - sym__and_operator, - STATE(2574), 2, - sym_comment, - sym_include, - ACTIONS(148), 26, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -204327,43 +208243,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, - anon_sym_NO_DASHERROR, - [178436] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + [181468] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3930), 1, - anon_sym_RPAREN, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, + STATE(589), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(590), 1, + sym__additive_operator, + STATE(591), 1, + sym__multiplicative_operator, + STATE(592), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(1125), 2, + sym__terminator, + aux_sym_when_expression_token1, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2575), 2, + STATE(2607), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -204377,18 +208293,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [178499] = 5, + [181532] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(150), 2, - sym__or_operator, - sym__and_operator, - STATE(2576), 2, + STATE(2608), 2, sym_comment, sym_include, - ACTIONS(152), 26, + ACTIONS(138), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(140), 26, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -204415,95 +208332,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, anon_sym_NO_DASHERROR, - [178542] = 27, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [181576] = 15, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(2911), 1, - sym_of, - STATE(3007), 1, - sym__pre_tuning, - STATE(3057), 1, - aux_sym_for_phrase_repeat1, - STATE(3071), 1, - sym_where_clause, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3459), 1, - aux_sym_for_phrase_repeat2, - STATE(4196), 1, - sym_on_error_phrase, - STATE(4377), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4971), 1, - aux_sym_for_statement_repeat1, - STATE(4992), 1, - sym_on_stop_phrase, - STATE(5731), 1, - sym_body, - STATE(2577), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [178629] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(373), 1, - sym__comparison_operator, - STATE(374), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__additive_operator, - STATE(376), 1, - sym__logical_operator, - STATE(2578), 2, - sym_comment, - sym_include, - ACTIONS(1193), 3, + ACTIONS(1086), 1, anon_sym_SLASH, + STATE(589), 1, + sym__logical_operator, + STATE(590), 1, + sym__additive_operator, + STATE(591), 1, + sym__multiplicative_operator, + STATE(592), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1195), 20, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, + ACTIONS(1192), 2, + sym__terminator, + aux_sym_when_expression_token1, + ACTIONS(2405), 2, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(2609), 2, + sym_comment, + sym_include, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -204517,99 +208381,42 @@ 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_if_statement_token2, - [178682] = 27, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [181640] = 15, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(2967), 1, - sym_of, - STATE(2985), 1, - sym__pre_tuning, - STATE(3024), 1, - aux_sym_for_phrase_repeat1, - STATE(3026), 1, - sym_where_clause, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3469), 1, - aux_sym_for_phrase_repeat2, - STATE(4037), 1, - sym_on_error_phrase, - STATE(4452), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4770), 1, - aux_sym_for_statement_repeat1, - STATE(4781), 1, - sym_on_stop_phrase, - STATE(5471), 1, - sym_body, - STATE(2579), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [178769] = 13, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(373), 1, - sym__comparison_operator, - STATE(374), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__additive_operator, - STATE(376), 1, + STATE(589), 1, sym__logical_operator, - ACTIONS(1177), 2, + STATE(590), 1, + sym__additive_operator, + STATE(591), 1, + sym__multiplicative_operator, + STATE(592), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1208), 2, + sym__terminator, + aux_sym_when_expression_token1, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2580), 2, + STATE(2610), 2, sym_comment, sym_include, - ACTIONS(1179), 16, - sym__or_operator, - sym__and_operator, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -204623,25 +208430,28 @@ 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_if_statement_token2, - [178828] = 5, + [181704] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(138), 2, - sym__or_operator, - sym__and_operator, - STATE(2581), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3930), 1, + aux_sym_function_call_token1, + STATE(2611), 2, sym_comment, sym_include, - ACTIONS(140), 26, + ACTIONS(156), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(158), 24, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - anon_sym_DQUOTE, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -204660,27 +208470,27 @@ 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, - anon_sym_NO_DASHERROR, - [178871] = 6, + aux_sym_scope_tuning_token1, + [181752] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(132), 2, + ACTIONS(3932), 1, + sym__namedot, + ACTIONS(150), 2, sym__or_operator, sym__and_operator, - STATE(2582), 2, + STATE(2612), 2, sym_comment, sym_include, - ACTIONS(134), 25, + ACTIONS(152), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -204699,103 +208509,45 @@ 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_do_block_token1, - aux_sym_widget_field_token1, - [178916] = 27, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [181800] = 15, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(2933), 1, - sym_of, - STATE(3005), 1, - sym__pre_tuning, - STATE(3066), 1, - aux_sym_for_phrase_repeat1, - STATE(3067), 1, - sym_where_clause, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3455), 1, - aux_sym_for_phrase_repeat2, - STATE(4185), 1, - sym_on_error_phrase, - STATE(4207), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4572), 1, - aux_sym_for_statement_repeat1, - STATE(4579), 1, - sym_on_stop_phrase, - STATE(5886), 1, - sym_body, - STATE(2583), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [179003] = 15, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3932), 1, - sym__terminator, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, + STATE(589), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(590), 1, + sym__additive_operator, + STATE(591), 1, + sym__multiplicative_operator, + STATE(592), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(1113), 2, + sym__terminator, + aux_sym_when_expression_token1, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2584), 2, + STATE(2613), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -204809,41 +208561,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [179066] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [181864] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3934), 1, - aux_sym_if_statement_token2, - STATE(373), 1, - sym__comparison_operator, - STATE(374), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__additive_operator, - STATE(376), 1, + STATE(589), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(590), 1, + sym__additive_operator, + STATE(591), 1, + sym__multiplicative_operator, + STATE(592), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(1200), 2, + sym__terminator, + aux_sym_when_expression_token1, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2585), 2, + STATE(2614), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -204857,41 +208610,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [179129] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [181928] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3936), 1, - aux_sym_if_statement_token2, - STATE(373), 1, - sym__comparison_operator, - STATE(374), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__additive_operator, - STATE(376), 1, + STATE(589), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(590), 1, + sym__additive_operator, + STATE(591), 1, + sym__multiplicative_operator, + STATE(592), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(1117), 2, + sym__terminator, + aux_sym_when_expression_token1, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2586), 2, + STATE(2615), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -204905,44 +208659,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [179192] = 15, - ACTIONS(65), 1, + [181992] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(3938), 1, - aux_sym_if_statement_token2, - STATE(373), 1, - sym__comparison_operator, - STATE(374), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__additive_operator, - STATE(376), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(3934), 1, + sym__namedot, + ACTIONS(108), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + STATE(2616), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(110), 25, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - STATE(2587), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -204953,41 +208698,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [179255] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_include_argument_token1, + [182038] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3940), 1, - anon_sym_RPAREN, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, + STATE(589), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(590), 1, + sym__additive_operator, + STATE(591), 1, + sym__multiplicative_operator, + STATE(592), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(1196), 2, + sym__terminator, + aux_sym_when_expression_token1, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2588), 2, + STATE(2617), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -205001,89 +208748,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [179318] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [182102] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3942), 1, - anon_sym_RBRACK, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, + STATE(589), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(590), 1, + sym__additive_operator, + STATE(591), 1, + sym__multiplicative_operator, + STATE(592), 1, + sym__comparison_operator, + ACTIONS(1119), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2589), 2, + STATE(2618), 2, sym_comment, sym_include, - ACTIONS(2396), 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, - [179381] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(3944), 1, - anon_sym_RPAREN, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1121), 19, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2590), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -205097,44 +208793,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [179444] = 15, - ACTIONS(65), 1, + aux_sym_when_expression_token1, + [182160] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(3946), 1, - anon_sym_RPAREN, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + STATE(2619), 2, + sym_comment, + sym_include, + ACTIONS(142), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(144), 26, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - STATE(2591), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -205145,41 +208831,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [179507] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_include_argument_token1, + anon_sym_NO_DASHERROR, + [182204] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(1112), 1, - aux_sym_if_statement_token2, - STATE(373), 1, - sym__comparison_operator, - STATE(374), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__additive_operator, - STATE(376), 1, + STATE(589), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(590), 1, + sym__additive_operator, + STATE(591), 1, + sym__multiplicative_operator, + STATE(592), 1, + sym__comparison_operator, + STATE(2620), 2, + sym_comment, + sym_include, + ACTIONS(1214), 3, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1216), 21, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2592), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -205193,41 +208876,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [179570] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + [182258] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3948), 1, - sym__terminator, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, + STATE(589), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(590), 1, + sym__additive_operator, + STATE(591), 1, + sym__multiplicative_operator, + STATE(592), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2593), 2, + STATE(2621), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(1212), 4, + sym__or_operator, + sym__and_operator, + sym__terminator, + aux_sym_when_expression_token1, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -205241,41 +208925,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [179633] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [182320] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3950), 1, - anon_sym_RBRACK, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, + STATE(589), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(590), 1, + sym__additive_operator, + STATE(591), 1, + sym__multiplicative_operator, + STATE(592), 1, + sym__comparison_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(1204), 2, + sym__terminator, + aux_sym_when_expression_token1, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2594), 2, + STATE(2622), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -205289,44 +208974,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [179696] = 15, - ACTIONS(65), 1, + [182384] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(3952), 1, - anon_sym_RPAREN, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(2734), 1, + sym__namedot, + STATE(2530), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(123), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + STATE(2623), 2, + sym_comment, + sym_include, + ACTIONS(125), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2595), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -205337,25 +209015,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [179759] = 6, + aux_sym_scope_tuning_token1, + [182434] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(170), 2, + ACTIONS(3937), 1, + sym__namedoublecolon, + ACTIONS(127), 2, sym__or_operator, sym__and_operator, - STATE(2596), 2, + STATE(2624), 3, sym_comment, sym_include, - ACTIONS(172), 25, + aux_sym_member_access_repeat1, + ACTIONS(129), 25, anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -205374,46 +209055,34 @@ 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_do_block_token1, - aux_sym_widget_field_token1, - [179804] = 15, - ACTIONS(65), 1, + aux_sym_include_argument_token1, + [182480] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(3954), 1, - aux_sym_if_statement_token2, - STATE(373), 1, - sym__comparison_operator, - STATE(374), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__additive_operator, - STATE(376), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + STATE(2625), 2, + sym_comment, + sym_include, + ACTIONS(115), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(117), 26, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - STATE(2597), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -205424,44 +209093,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [179867] = 15, - ACTIONS(65), 1, + aux_sym_include_argument_token1, + anon_sym_NO_DASHERROR, + [182524] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(3956), 1, - aux_sym_else_statement_token1, - STATE(362), 1, - sym__additive_operator, - STATE(704), 1, - sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + STATE(2626), 2, + sym_comment, + sym_include, + ACTIONS(138), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(140), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2598), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -205472,43 +209132,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [179930] = 14, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, + anon_sym_NO_DASHERROR, + [182570] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(2471), 1, + sym_identifier, + STATE(32), 1, + sym_qualified_name, + ACTIONS(1581), 2, + sym__or_operator, + sym__and_operator, + STATE(2627), 2, + sym_comment, + sym_include, + ACTIONS(1579), 24, + anon_sym_COLON, anon_sym_SLASH, - STATE(873), 1, - sym__comparison_operator, - STATE(874), 1, - sym__multiplicative_operator, - STATE(875), 1, - sym__additive_operator, - STATE(876), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2599), 2, - sym_comment, - sym_include, - ACTIONS(236), 3, - sym__or_operator, - sym__and_operator, - aux_sym_output_stream_statement_token1, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -205519,25 +209174,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [179991] = 6, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + [182620] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(166), 2, - sym__or_operator, - sym__and_operator, - STATE(2600), 2, + STATE(2628), 2, sym_comment, sym_include, - ACTIONS(168), 25, + ACTIONS(142), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(144), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -205556,27 +209214,28 @@ 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_do_block_token1, - aux_sym_widget_field_token1, - [180036] = 6, + aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, + anon_sym_NO_DASHERROR, + [182666] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(162), 2, - sym__or_operator, - sym__and_operator, - STATE(2601), 2, + STATE(2629), 2, sym_comment, sym_include, - ACTIONS(164), 25, + ACTIONS(115), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(117), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -205595,46 +209254,38 @@ 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_do_block_token1, - aux_sym_widget_field_token1, - [180081] = 15, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, + anon_sym_NO_DASHERROR, + [182712] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(1183), 1, - aux_sym_output_stream_statement_token1, - STATE(873), 1, - sym__comparison_operator, - STATE(874), 1, - sym__multiplicative_operator, - STATE(875), 1, - sym__additive_operator, - STATE(876), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(3940), 1, + sym__namedoublecolon, + ACTIONS(127), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + STATE(2630), 3, + sym_comment, + sym_include, + aux_sym_member_access_repeat1, + ACTIONS(129), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2602), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -205645,44 +209296,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [180144] = 15, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [182760] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(3958), 1, - aux_sym_else_statement_token1, - STATE(362), 1, - sym__additive_operator, - STATE(704), 1, - sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + STATE(2631), 2, + sym_comment, + sym_include, + ACTIONS(108), 3, + sym__namedot, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(110), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2603), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -205693,44 +209336,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [180207] = 15, - ACTIONS(65), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [182806] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(3960), 1, - aux_sym_if_statement_token2, - STATE(373), 1, - sym__comparison_operator, - STATE(374), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__additive_operator, - STATE(376), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(3943), 1, + sym_identifier, + ACTIONS(3946), 1, + aux_sym_input_expression_token2, + STATE(2672), 1, + sym_qualified_name, + ACTIONS(1358), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + STATE(2632), 2, + sym_comment, + sym_include, + ACTIONS(1354), 23, + anon_sym_SLASH, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2604), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -205741,20 +209379,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [180270] = 6, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [182858] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(174), 2, + ACTIONS(198), 2, sym__or_operator, sym__and_operator, - STATE(2605), 2, + STATE(2633), 2, sym_comment, sym_include, - ACTIONS(176), 25, + ACTIONS(200), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -205780,27 +209420,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [180315] = 8, + [182903] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3962), 1, - sym_identifier, - STATE(2877), 1, - sym_qualified_name, - ACTIONS(1366), 2, + ACTIONS(218), 2, sym__or_operator, sym__and_operator, - STATE(2606), 2, + STATE(2634), 2, sym_comment, sym_include, - ACTIONS(1364), 23, + ACTIONS(220), 25, anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - sym__terminator, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -205819,43 +209457,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_when_expression_token1, - anon_sym_NO_DASHERROR, - [180364] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [182948] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3965), 1, - anon_sym_RPAREN, - STATE(458), 1, + ACTIONS(3949), 1, + aux_sym_if_statement_token2, + STATE(393), 1, sym__comparison_operator, - STATE(459), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(468), 1, + STATE(395), 1, sym__additive_operator, - STATE(471), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2607), 2, + STATE(2635), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -205869,41 +209507,101 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [180427] = 15, - ACTIONS(65), 1, + [183011] = 27, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(3024), 1, + sym_of, + STATE(3040), 1, + sym__pre_tuning, + STATE(3093), 1, + aux_sym_for_phrase_repeat1, + STATE(3132), 1, + sym_where_clause, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3511), 1, + aux_sym_for_phrase_repeat2, + STATE(4237), 1, + sym_on_error_phrase, + STATE(4438), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4802), 1, + sym_on_stop_phrase, + STATE(4831), 1, + aux_sym_for_statement_repeat1, + STATE(5907), 1, + sym_body, + STATE(2636), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [183098] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3967), 1, - aux_sym_else_statement_token1, - STATE(362), 1, + ACTIONS(3951), 1, + anon_sym_RPAREN, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, sym__additive_operator, - STATE(704), 1, + STATE(510), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2608), 2, + STATE(2637), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -205917,33 +209615,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [180490] = 6, - ACTIONS(3), 1, + [183161] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(63), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(3953), 1, + sym__terminator, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2609), 2, - sym_comment, - sym_include, - ACTIONS(69), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2638), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -205954,43 +209663,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [180535] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [183224] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3969), 1, - sym__terminator, - STATE(458), 1, + ACTIONS(3955), 1, + aux_sym_if_statement_token2, + STATE(393), 1, sym__comparison_operator, - STATE(459), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(468), 1, + STATE(395), 1, sym__additive_operator, - STATE(471), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2610), 2, + STATE(2639), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -206004,41 +209711,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [180598] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [183287] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3971), 1, - anon_sym_RBRACK, - STATE(458), 1, + ACTIONS(3957), 1, + aux_sym_else_statement_token1, + STATE(960), 1, sym__comparison_operator, - STATE(459), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(468), 1, + STATE(962), 1, sym__additive_operator, - STATE(471), 1, + STATE(963), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2611), 2, + STATE(2640), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -206052,41 +209759,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [180661] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [183350] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3973), 1, - anon_sym_RBRACK, - STATE(458), 1, + ACTIONS(3959), 1, + aux_sym_if_statement_token2, + STATE(393), 1, sym__comparison_operator, - STATE(459), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(468), 1, + STATE(395), 1, sym__additive_operator, - STATE(471), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2612), 2, + STATE(2641), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -206100,41 +209807,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [180724] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [183413] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1187), 1, - aux_sym_output_stream_statement_token1, - STATE(873), 1, + ACTIONS(3961), 1, + anon_sym_RBRACK, + STATE(492), 1, sym__comparison_operator, - STATE(874), 1, + STATE(494), 1, sym__multiplicative_operator, - STATE(875), 1, + STATE(509), 1, sym__additive_operator, - STATE(876), 1, + STATE(510), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2613), 2, + STATE(2642), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -206148,41 +209855,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [180787] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [183476] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3975), 1, - aux_sym_if_statement_token2, - STATE(373), 1, + ACTIONS(3963), 1, + anon_sym_RPAREN, + STATE(492), 1, sym__comparison_operator, - STATE(374), 1, + STATE(494), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(509), 1, sym__additive_operator, - STATE(376), 1, + STATE(510), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2614), 2, + STATE(2643), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -206196,41 +209903,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [180850] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [183539] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3977), 1, - anon_sym_RBRACK, - STATE(458), 1, + ACTIONS(3965), 1, + aux_sym_if_statement_token2, + STATE(393), 1, sym__comparison_operator, - STATE(459), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(468), 1, + STATE(395), 1, sym__additive_operator, - STATE(471), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2615), 2, + STATE(2644), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -206244,33 +209951,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [180913] = 5, - ACTIONS(3), 1, + [183602] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - STATE(2616), 2, - sym_comment, - sym_include, - ACTIONS(142), 3, - sym__namedoublecolon, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(3967), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, + sym__additive_operator, + STATE(396), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(144), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2645), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -206281,42 +209999,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_include_argument_token1, - [180956] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [183665] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3979), 1, + ACTIONS(3969), 1, anon_sym_LPAREN, - STATE(458), 1, + STATE(492), 1, sym__comparison_operator, - STATE(459), 1, + STATE(494), 1, sym__multiplicative_operator, - STATE(468), 1, + STATE(509), 1, sym__additive_operator, - STATE(471), 1, + STATE(510), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2617), 2, + STATE(2646), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -206330,41 +210047,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [181019] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [183728] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1191), 1, - aux_sym_output_stream_statement_token1, - STATE(873), 1, + ACTIONS(3971), 1, + aux_sym_if_statement_token2, + STATE(393), 1, sym__comparison_operator, - STATE(874), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(875), 1, + STATE(395), 1, sym__additive_operator, - STATE(876), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2618), 2, + STATE(2647), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -206378,24 +210095,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [181082] = 5, + [183791] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(146), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(174), 2, sym__or_operator, sym__and_operator, - STATE(2619), 2, + STATE(2648), 2, sym_comment, sym_include, - ACTIONS(148), 26, + ACTIONS(176), 25, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - anon_sym_DQUOTE, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -206414,43 +210132,103 @@ 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, - aux_sym_function_call_token1, - [181125] = 15, - ACTIONS(65), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [183836] = 27, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(3011), 1, + sym_of, + STATE(3051), 1, + sym__pre_tuning, + STATE(3135), 1, + aux_sym_for_phrase_repeat1, + STATE(3152), 1, + sym_where_clause, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3540), 1, + aux_sym_for_phrase_repeat2, + STATE(4045), 1, + sym_on_error_phrase, + STATE(4365), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(5059), 1, + aux_sym_for_statement_repeat1, + STATE(5067), 1, + sym_on_stop_phrase, + STATE(6092), 1, + sym_body, + STATE(2649), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [183923] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3981), 1, + ACTIONS(3973), 1, aux_sym_if_statement_token2, - STATE(373), 1, + STATE(393), 1, sym__comparison_operator, - STATE(374), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(395), 1, sym__additive_operator, - STATE(376), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2620), 2, + STATE(2650), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -206464,41 +210242,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [181188] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [183986] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3983), 1, - sym__terminator, - STATE(458), 1, + ACTIONS(3975), 1, + aux_sym_if_statement_token2, + STATE(393), 1, sym__comparison_operator, - STATE(459), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(468), 1, + STATE(395), 1, sym__additive_operator, - STATE(471), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2621), 2, + STATE(2651), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -206512,41 +210290,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [181251] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [184049] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1106), 1, - aux_sym_output_stream_statement_token1, - STATE(873), 1, + ACTIONS(3977), 1, + aux_sym_if_statement_token2, + STATE(393), 1, sym__comparison_operator, - STATE(874), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(875), 1, + STATE(395), 1, sym__additive_operator, - STATE(876), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2622), 2, + STATE(2652), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -206560,41 +210338,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [181314] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [184112] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1199), 1, - aux_sym_output_stream_statement_token1, - STATE(873), 1, + ACTIONS(3979), 1, + aux_sym_else_statement_token1, + STATE(960), 1, sym__comparison_operator, - STATE(874), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(875), 1, + STATE(962), 1, sym__additive_operator, - STATE(876), 1, + STATE(963), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2623), 2, + STATE(2653), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -206608,64 +210386,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [181377] = 5, + [184175] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(150), 2, - sym__or_operator, - sym__and_operator, - STATE(2624), 2, - sym_comment, - sym_include, - ACTIONS(152), 26, - anon_sym_SLASH, + ACTIONS(7), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_include_argument_token1, - aux_sym_function_call_token1, - [181420] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3985), 1, - aux_sym_function_call_token1, - ACTIONS(230), 2, + ACTIONS(214), 2, sym__or_operator, sym__and_operator, - STATE(2625), 2, + STATE(2654), 2, sym_comment, sym_include, - ACTIONS(232), 25, + ACTIONS(216), 25, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - anon_sym_DQUOTE, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -206684,42 +210423,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, - [181465] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [184220] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3987), 1, - anon_sym_LPAREN, - STATE(458), 1, + ACTIONS(3981), 1, + anon_sym_RBRACK, + STATE(492), 1, sym__comparison_operator, - STATE(459), 1, + STATE(494), 1, sym__multiplicative_operator, - STATE(468), 1, + STATE(509), 1, sym__additive_operator, - STATE(471), 1, + STATE(510), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2626), 2, + STATE(2655), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -206733,28 +210473,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [181528] = 7, + [184283] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3989), 1, - sym__namedot, - ACTIONS(117), 2, + ACTIONS(186), 2, sym__or_operator, sym__and_operator, - STATE(2627), 3, + STATE(2656), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(119), 23, + ACTIONS(188), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - sym__terminator, anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -206773,26 +210510,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [181575] = 6, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [184328] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(3983), 1, + anon_sym_RPAREN, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2657), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, + [184391] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3992), 1, - sym__namedot, - ACTIONS(132), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(238), 2, sym__or_operator, sym__and_operator, - STATE(2628), 2, + STATE(2658), 2, sym_comment, sym_include, - ACTIONS(134), 25, + ACTIONS(240), 25, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - anon_sym_DQUOTE, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -206811,42 +210597,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, - [181620] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [184436] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(3994), 1, - anon_sym_RPAREN, - STATE(458), 1, + ACTIONS(3985), 1, + anon_sym_LPAREN, + STATE(492), 1, sym__comparison_operator, - STATE(459), 1, + STATE(494), 1, sym__multiplicative_operator, - STATE(468), 1, + STATE(509), 1, sym__additive_operator, - STATE(471), 1, + STATE(510), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2629), 2, + STATE(2659), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -206860,24 +210647,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [181683] = 5, + [184499] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(138), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(226), 2, sym__or_operator, sym__and_operator, - STATE(2630), 2, + STATE(2660), 2, sym_comment, sym_include, - ACTIONS(140), 26, + ACTIONS(228), 25, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - anon_sym_DQUOTE, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -206896,46 +210683,95 @@ 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, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [184544] = 27, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(3026), 1, + sym_of, + STATE(3054), 1, + sym__pre_tuning, + STATE(3142), 1, + sym_where_clause, + STATE(3147), 1, + aux_sym_for_phrase_repeat1, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3552), 1, + aux_sym_for_phrase_repeat2, + STATE(4170), 1, + sym_on_error_phrase, + STATE(4345), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(5039), 1, + aux_sym_for_statement_repeat1, + STATE(5045), 1, + sym_on_stop_phrase, + STATE(5845), 1, + sym_body, + STATE(2661), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, aux_sym_function_call_token1, - [181726] = 15, - ACTIONS(65), 1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [184631] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(3996), 1, - anon_sym_RBRACK, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(222), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + STATE(2662), 2, + sym_comment, + sym_include, + ACTIONS(224), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2631), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -206946,104 +210782,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [181789] = 27, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [184676] = 27, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(2930), 1, + STATE(3012), 1, sym_of, - STATE(3008), 1, + STATE(3050), 1, sym__pre_tuning, - STATE(3046), 1, - sym_where_clause, - STATE(3048), 1, + STATE(3076), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3080), 1, + sym_where_clause, + STATE(3271), 1, sym_using, - STATE(3321), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3460), 1, + STATE(3526), 1, aux_sym_for_phrase_repeat2, - STATE(4179), 1, + STATE(4214), 1, sym_on_error_phrase, - STATE(4398), 1, + STATE(4417), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4926), 1, - aux_sym_for_statement_repeat1, - STATE(4937), 1, + STATE(4769), 1, sym_on_stop_phrase, - STATE(5458), 1, + STATE(4774), 1, + aux_sym_for_statement_repeat1, + STATE(6037), 1, sym_body, - STATE(2632), 2, + STATE(2663), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [181876] = 15, - ACTIONS(65), 1, + [184763] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(1102), 1, - aux_sym_output_stream_statement_token1, - STATE(873), 1, - sym__comparison_operator, - STATE(874), 1, - sym__multiplicative_operator, - STATE(875), 1, - sym__additive_operator, - STATE(876), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(178), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + STATE(2664), 2, + sym_comment, + sym_include, + ACTIONS(180), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2633), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -207054,44 +210882,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [181939] = 15, - ACTIONS(65), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [184808] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(1203), 1, - aux_sym_output_stream_statement_token1, - STATE(873), 1, - sym__comparison_operator, - STATE(874), 1, - sym__multiplicative_operator, - STATE(875), 1, - sym__additive_operator, - STATE(876), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(190), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + STATE(2665), 2, + sym_comment, + sym_include, + ACTIONS(192), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(2634), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -207102,40 +210921,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [182002] = 12, - ACTIONS(65), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [184853] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(218), 2, + sym__or_operator, + sym__and_operator, + STATE(2666), 2, + sym_comment, + sym_include, + ACTIONS(220), 25, anon_sym_SLASH, - STATE(873), 1, - sym__comparison_operator, - STATE(874), 1, - sym__multiplicative_operator, - STATE(875), 1, - sym__additive_operator, - STATE(876), 1, - sym__logical_operator, - ACTIONS(1205), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, + sym_identifier, anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, aux_sym__multiplicative_operator_token1, - STATE(2635), 2, - sym_comment, - sym_include, - ACTIONS(1207), 18, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [184898] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(210), 2, sym__or_operator, sym__and_operator, + STATE(2667), 2, + sym_comment, + sym_include, + ACTIONS(212), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, + aux_sym__multiplicative_operator_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, @@ -207146,29 +210999,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_output_stream_statement_token1, - [182059] = 9, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [184943] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(3998), 1, - aux_sym_input_expression_token2, - STATE(22), 1, - sym_qualified_name, - ACTIONS(1351), 2, + ACTIONS(190), 2, sym__or_operator, sym__and_operator, - STATE(2636), 2, + STATE(2668), 2, sym_comment, sym_include, - ACTIONS(1347), 22, + ACTIONS(192), 25, anon_sym_SLASH, + sym_identifier, anon_sym_STAR, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -207188,30 +211038,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - aux_sym_output_stream_statement_token1, - [182110] = 8, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [184988] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2725), 1, - sym__namedot, - STATE(2627), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(98), 2, + ACTIONS(206), 2, sym__or_operator, sym__and_operator, - STATE(2637), 2, + STATE(2669), 2, sym_comment, sym_include, - ACTIONS(100), 23, + ACTIONS(208), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -207230,41 +211076,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [182159] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [185033] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4000), 1, + ACTIONS(3987), 1, aux_sym_else_statement_token1, - STATE(362), 1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, sym__additive_operator, - STATE(704), 1, + STATE(963), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2670), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, + [185096] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(3989), 1, + aux_sym_if_statement_token2, + STATE(393), 1, sym__comparison_operator, - ACTIONS(1079), 2, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, + sym__additive_operator, + STATE(396), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2638), 2, + STATE(2671), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -207278,29 +211175,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [182222] = 9, + [185159] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(4002), 1, - aux_sym_input_expression_token2, - STATE(22), 1, - sym_qualified_name, - ACTIONS(1351), 2, + ACTIONS(134), 2, sym__or_operator, sym__and_operator, - STATE(2639), 2, + STATE(2672), 2, sym_comment, sym_include, - ACTIONS(1347), 22, + ACTIONS(136), 25, anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - sym__terminator, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -207319,42 +211212,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_when_expression_token1, - [182273] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [185204] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4004), 1, - anon_sym_LPAREN, - STATE(458), 1, + ACTIONS(3991), 1, + aux_sym_else_statement_token1, + STATE(960), 1, sym__comparison_operator, - STATE(459), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(468), 1, + STATE(962), 1, sym__additive_operator, - STATE(471), 1, + STATE(963), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2640), 2, + STATE(2673), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -207368,38 +211262,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [182336] = 10, - ACTIONS(65), 1, + [185267] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(873), 1, - sym__comparison_operator, - STATE(874), 1, - sym__multiplicative_operator, - STATE(875), 1, - sym__additive_operator, - STATE(876), 1, - sym__logical_operator, - STATE(2641), 2, + STATE(2674), 2, sym_comment, sym_include, - ACTIONS(1193), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1195), 20, + ACTIONS(146), 3, + sym__namecolon, sym__or_operator, sym__and_operator, + ACTIONS(148), 25, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -207410,42 +211299,102 @@ 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_output_stream_statement_token1, - [182389] = 15, - ACTIONS(65), 1, + aux_sym_include_argument_token1, + [185310] = 27, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(3029), 1, + sym_of, + STATE(3057), 1, + sym__pre_tuning, + STATE(3122), 1, + aux_sym_for_phrase_repeat1, + STATE(3123), 1, + sym_where_clause, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3513), 1, + aux_sym_for_phrase_repeat2, + STATE(4078), 1, + sym_on_error_phrase, + STATE(4501), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4882), 1, + aux_sym_for_statement_repeat1, + STATE(4890), 1, + sym_on_stop_phrase, + STATE(5977), 1, + sym_body, + STATE(2675), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [185397] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4006), 1, - aux_sym_if_statement_token2, - STATE(373), 1, + ACTIONS(3993), 1, + anon_sym_RBRACK, + STATE(492), 1, sym__comparison_operator, - STATE(374), 1, + STATE(494), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(509), 1, sym__additive_operator, - STATE(376), 1, + STATE(510), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2642), 2, + STATE(2676), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -207459,41 +211408,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [182452] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [185460] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4008), 1, + ACTIONS(3995), 1, aux_sym_if_statement_token2, - STATE(373), 1, + STATE(393), 1, sym__comparison_operator, - STATE(374), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(395), 1, sym__additive_operator, - STATE(376), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2643), 2, + STATE(2677), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -207507,38 +211456,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [182515] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [185523] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(873), 1, + ACTIONS(3997), 1, + anon_sym_RPAREN, + STATE(492), 1, sym__comparison_operator, - STATE(874), 1, + STATE(494), 1, sym__multiplicative_operator, - STATE(875), 1, + STATE(509), 1, sym__additive_operator, - STATE(876), 1, + STATE(510), 1, sym__logical_operator, - ACTIONS(1177), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2644), 2, + STATE(2678), 2, sym_comment, sym_include, - ACTIONS(1179), 16, - sym__or_operator, - sym__and_operator, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -207552,42 +211504,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_output_stream_statement_token1, - [182574] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [185586] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1112), 1, - aux_sym_output_stream_statement_token1, - STATE(873), 1, + ACTIONS(3999), 1, + aux_sym_else_statement_token1, + STATE(960), 1, sym__comparison_operator, - STATE(874), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(875), 1, + STATE(962), 1, sym__additive_operator, - STATE(876), 1, + STATE(963), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2645), 2, + STATE(2679), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -207601,33 +211552,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [182637] = 6, - ACTIONS(3), 1, + [185649] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(146), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4001), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, + sym__additive_operator, + STATE(396), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2646), 2, - sym_comment, - sym_include, - ACTIONS(148), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2680), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -207638,43 +211600,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_when_expression_token1, - aux_sym_function_call_token1, - [182682] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [185712] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4010), 1, - aux_sym_else_statement_token1, - STATE(362), 1, + ACTIONS(4003), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, sym__additive_operator, - STATE(704), 1, + STATE(396), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2647), 2, + STATE(2681), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -207688,41 +211648,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [182745] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [185775] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4012), 1, + ACTIONS(4005), 1, aux_sym_if_statement_token2, - STATE(373), 1, + STATE(393), 1, sym__comparison_operator, - STATE(374), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(395), 1, sym__additive_operator, - STATE(376), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2648), 2, + STATE(2682), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -207736,101 +211696,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [182808] = 27, - ACTIONS(65), 1, + [185838] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(2908), 1, - sym_of, - STATE(2989), 1, - sym__pre_tuning, - STATE(3025), 1, - aux_sym_for_phrase_repeat1, - STATE(3078), 1, - sym_where_clause, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3443), 1, - aux_sym_for_phrase_repeat2, - STATE(4192), 1, - sym_on_error_phrase, - STATE(4387), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4966), 1, - aux_sym_for_statement_repeat1, - STATE(4975), 1, - sym_on_stop_phrase, - STATE(5765), 1, - sym_body, - STATE(2649), 2, + ACTIONS(186), 2, + sym__or_operator, + sym__and_operator, + STATE(2683), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [182895] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(188), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [185883] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4014), 1, - aux_sym_if_statement_token2, - STATE(373), 1, + ACTIONS(4007), 1, + sym__terminator, + STATE(492), 1, sym__comparison_operator, - STATE(374), 1, + STATE(494), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(509), 1, sym__additive_operator, - STATE(376), 1, + STATE(510), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2650), 2, + STATE(2684), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -207844,41 +211783,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [182958] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [185946] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4016), 1, - aux_sym_if_statement_token2, - STATE(373), 1, + ACTIONS(4009), 1, + sym__terminator, + STATE(492), 1, sym__comparison_operator, - STATE(374), 1, + STATE(494), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(509), 1, sym__additive_operator, - STATE(376), 1, + STATE(510), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2651), 2, + STATE(2685), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -207892,41 +211831,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183021] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [186009] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4018), 1, + ACTIONS(4011), 1, aux_sym_if_statement_token2, - STATE(373), 1, + STATE(393), 1, sym__comparison_operator, - STATE(374), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(395), 1, sym__additive_operator, - STATE(376), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2652), 2, + STATE(2686), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -207940,41 +211879,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183084] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [186072] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4020), 1, - anon_sym_RBRACK, - STATE(458), 1, + ACTIONS(4013), 1, + aux_sym_else_statement_token1, + STATE(960), 1, sym__comparison_operator, - STATE(459), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(468), 1, + STATE(962), 1, sym__additive_operator, - STATE(471), 1, + STATE(963), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2653), 2, + STATE(2687), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -207988,41 +211927,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183147] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [186135] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4022), 1, - sym__terminator, - STATE(458), 1, + ACTIONS(4015), 1, + aux_sym_else_statement_token1, + STATE(960), 1, sym__comparison_operator, - STATE(459), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(468), 1, + STATE(962), 1, sym__additive_operator, - STATE(471), 1, + STATE(963), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2654), 2, + STATE(2688), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -208036,44 +211975,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183210] = 15, - ACTIONS(65), 1, + [186198] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(4024), 1, - aux_sym_else_statement_token1, - STATE(362), 1, - sym__additive_operator, - STATE(704), 1, - sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(214), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + STATE(2689), 2, + sym_comment, + sym_include, + ACTIONS(216), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2655), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -208084,41 +212011,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183273] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [186243] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4026), 1, - aux_sym_if_statement_token2, - STATE(373), 1, + ACTIONS(4017), 1, + anon_sym_RBRACK, + STATE(492), 1, sym__comparison_operator, - STATE(374), 1, + STATE(494), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(509), 1, sym__additive_operator, - STATE(376), 1, + STATE(510), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2656), 2, + STATE(2690), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -208132,7 +212062,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183336] = 6, + [186306] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -208142,7 +212072,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(150), 2, sym__or_operator, sym__and_operator, - STATE(2657), 2, + STATE(2691), 2, sym_comment, sym_include, ACTIONS(152), 25, @@ -208150,7 +212080,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_STAR, sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -208170,42 +212099,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - aux_sym_function_call_token1, - [183381] = 15, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [186351] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(170), 2, + sym__or_operator, + sym__and_operator, + STATE(2692), 2, + sym_comment, + sym_include, + ACTIONS(172), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [186396] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4028), 1, - aux_sym_if_statement_token2, - STATE(373), 1, + ACTIONS(4019), 1, + aux_sym_else_statement_token1, + STATE(960), 1, sym__comparison_operator, - STATE(374), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(962), 1, sym__additive_operator, - STATE(376), 1, + STATE(963), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2658), 2, + STATE(2693), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -208219,44 +212188,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183444] = 15, - ACTIONS(65), 1, + [186459] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(4030), 1, - aux_sym_else_statement_token1, - STATE(362), 1, - sym__additive_operator, - STATE(704), 1, - sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(4021), 1, + anon_sym_NO_DASHERROR, + STATE(2694), 2, + sym_comment, + sym_include, + ACTIONS(391), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(393), 23, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2659), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -208267,28 +212227,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183507] = 8, + aux_sym_scope_tuning_token1, + [186506] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2739), 1, - sym__namedoublecolon, - STATE(2736), 1, - aux_sym_member_access_repeat1, - ACTIONS(128), 2, + ACTIONS(4023), 1, + sym__namedot, + ACTIONS(150), 2, sym__or_operator, sym__and_operator, - STATE(2660), 2, + STATE(2695), 2, sym_comment, sym_include, - ACTIONS(130), 23, + ACTIONS(152), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -208307,28 +212267,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_NO_DASHERROR, - [183556] = 7, + aux_sym_scope_tuning_token1, + [186553] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4032), 1, - sym__namedot, - ACTIONS(117), 2, + ACTIONS(123), 2, sym__or_operator, sym__and_operator, - STATE(2661), 3, + STATE(2696), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(119), 23, + ACTIONS(125), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - sym__terminator, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -208347,42 +212305,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_NO_DASHERROR, - [183603] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [186598] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4035), 1, - aux_sym_if_statement_token2, - STATE(373), 1, + ACTIONS(4025), 1, + aux_sym_else_statement_token1, + STATE(960), 1, sym__comparison_operator, - STATE(374), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(962), 1, sym__additive_operator, - STATE(376), 1, + STATE(963), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2662), 2, + STATE(2697), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -208396,41 +212355,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183666] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [186661] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4037), 1, + ACTIONS(4027), 1, aux_sym_if_statement_token2, - STATE(373), 1, + STATE(393), 1, sym__comparison_operator, - STATE(374), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(395), 1, sym__additive_operator, - STATE(376), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2663), 2, + STATE(2698), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -208444,44 +212403,111 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183729] = 15, - ACTIONS(65), 1, + [186724] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(182), 2, + sym__or_operator, + sym__and_operator, + STATE(2699), 2, + sym_comment, + sym_include, + ACTIONS(184), 25, anon_sym_SLASH, - ACTIONS(4039), 1, - anon_sym_RPAREN, - STATE(458), 1, - sym__comparison_operator, - STATE(459), 1, - sym__multiplicative_operator, - STATE(468), 1, - sym__additive_operator, - STATE(471), 1, - sym__logical_operator, - ACTIONS(1079), 2, + sym_identifier, + anon_sym_STAR, + anon_sym_COMMA, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_token1, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, anon_sym_GT, - ACTIONS(1083), 2, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [186769] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(65), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + STATE(2700), 2, + sym_comment, + sym_include, + ACTIONS(71), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(2664), 2, + aux_sym__multiplicative_operator_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_do_block_token1, + aux_sym_widget_field_token1, + [186814] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2701), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(146), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(148), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, @@ -208492,41 +212518,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183792] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [186859] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4041), 1, - anon_sym_RBRACK, - STATE(458), 1, + ACTIONS(4029), 1, + aux_sym_else_statement_token1, + STATE(960), 1, sym__comparison_operator, - STATE(459), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(468), 1, + STATE(962), 1, sym__additive_operator, - STATE(471), 1, + STATE(963), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2665), 2, + STATE(2702), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -208540,41 +212568,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183855] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [186922] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4043), 1, + ACTIONS(4031), 1, aux_sym_if_statement_token2, - STATE(373), 1, + STATE(393), 1, sym__comparison_operator, - STATE(374), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(395), 1, sym__additive_operator, - STATE(376), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2666), 2, + STATE(2703), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -208588,41 +212616,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183918] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [186985] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4045), 1, - anon_sym_RPAREN, - STATE(458), 1, + ACTIONS(4033), 1, + aux_sym_else_statement_token1, + STATE(960), 1, sym__comparison_operator, - STATE(459), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(468), 1, + STATE(962), 1, sym__additive_operator, - STATE(471), 1, + STATE(963), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2667), 2, + STATE(2704), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -208636,35 +212664,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [183981] = 8, - ACTIONS(3), 1, + [187048] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2458), 1, - sym_identifier, - STATE(32), 1, - sym_qualified_name, - ACTIONS(1366), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4035), 1, + aux_sym_else_statement_token1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, + sym__additive_operator, + STATE(963), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2668), 2, - sym_comment, - sym_include, - ACTIONS(1364), 23, - anon_sym_SLASH, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2705), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -208675,69 +212712,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_of_token1, - aux_sym_on_statement_token1, - [184030] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4049), 1, - aux_sym_using_statement_token2, - ACTIONS(4053), 1, - aux_sym_image_phrase_token4, - ACTIONS(4051), 2, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - ACTIONS(4055), 2, - aux_sym_image_phrase_token5, - aux_sym_image_phrase_token6, - STATE(2669), 2, - sym_comment, - sym_include, - ACTIONS(4047), 21, - sym__terminator, - aux_sym_type_tuning_token2, - aux_sym_variable_tuning_token4, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [184081] = 5, + [187111] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2670), 2, - sym_comment, - sym_include, - ACTIONS(117), 3, - sym__namedot, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(206), 2, sym__or_operator, sym__and_operator, - ACTIONS(119), 25, + STATE(2706), 2, + sym_comment, + sym_include, + ACTIONS(208), 25, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - anon_sym_DQUOTE, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -208756,21 +212749,22 @@ 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, - [184124] = 6, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [187156] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(154), 2, + ACTIONS(202), 2, sym__or_operator, sym__and_operator, - STATE(2671), 2, + STATE(2707), 2, sym_comment, sym_include, - ACTIONS(156), 25, + ACTIONS(204), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -208796,33 +212790,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [184169] = 6, - ACTIONS(3), 1, + [187201] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(222), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4037), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, + sym__additive_operator, + STATE(396), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2672), 2, - sym_comment, - sym_include, - ACTIONS(224), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2708), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -208833,43 +212838,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [184214] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [187264] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4057), 1, + ACTIONS(4039), 1, aux_sym_else_statement_token1, - STATE(362), 1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, sym__additive_operator, - STATE(704), 1, + STATE(963), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2673), 2, + STATE(2709), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -208883,41 +212886,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [184277] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [187327] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4059), 1, - aux_sym_else_statement_token1, - STATE(362), 1, + ACTIONS(4041), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, sym__additive_operator, - STATE(704), 1, + STATE(396), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2674), 2, + STATE(2710), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -208931,41 +212934,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [184340] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [187390] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4061), 1, + ACTIONS(4043), 1, aux_sym_if_statement_token2, - STATE(373), 1, + STATE(393), 1, sym__comparison_operator, - STATE(374), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(395), 1, sym__additive_operator, - STATE(376), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2675), 2, + STATE(2711), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -208979,41 +212982,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [184403] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [187453] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4063), 1, - aux_sym_if_statement_token2, - STATE(373), 1, + ACTIONS(4045), 1, + aux_sym_else_statement_token1, + STATE(960), 1, sym__comparison_operator, - STATE(374), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(962), 1, sym__additive_operator, - STATE(376), 1, + STATE(963), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2676), 2, + STATE(2712), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -209027,33 +213030,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [184466] = 6, - ACTIONS(3), 1, + [187516] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(138), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4047), 1, + aux_sym_else_statement_token1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, + sym__additive_operator, + STATE(963), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2677), 2, - sym_comment, - sym_include, - ACTIONS(140), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2713), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -209064,39 +213078,92 @@ 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_when_expression_token1, - aux_sym_function_call_token1, - [184511] = 8, - ACTIONS(3), 1, + [187579] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2723), 1, - anon_sym_LPAREN, - STATE(2806), 1, - sym_function_arguments, - ACTIONS(83), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4049), 1, + anon_sym_RBRACK, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2678), 2, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2714), 2, sym_comment, sym_include, - ACTIONS(85), 23, + ACTIONS(2409), 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, + [187642] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, anon_sym_SLASH, - sym_identifier, + ACTIONS(4051), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, + sym__additive_operator, + STATE(396), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2715), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -209107,41 +213174,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [184560] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [187705] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4065), 1, + ACTIONS(4053), 1, aux_sym_if_statement_token2, - STATE(373), 1, + STATE(393), 1, sym__comparison_operator, - STATE(374), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(395), 1, sym__additive_operator, - STATE(376), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2679), 2, + STATE(2716), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -209155,41 +213222,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [184623] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [187768] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4067), 1, + ACTIONS(4055), 1, anon_sym_RPAREN, - STATE(458), 1, + STATE(492), 1, sym__comparison_operator, - STATE(459), 1, + STATE(494), 1, sym__multiplicative_operator, - STATE(468), 1, + STATE(509), 1, sym__additive_operator, - STATE(471), 1, + STATE(510), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2680), 2, + STATE(2717), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -209203,28 +213270,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [184686] = 8, + [187831] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2735), 1, - sym__namedot, - STATE(2661), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(98), 2, + ACTIONS(246), 2, sym__or_operator, sym__and_operator, - STATE(2681), 2, + STATE(2718), 2, sym_comment, sym_include, - ACTIONS(100), 23, + ACTIONS(248), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - sym__terminator, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -209243,102 +213307,142 @@ 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, - [184735] = 27, - ACTIONS(65), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [187876] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(242), 2, + sym__or_operator, + sym__and_operator, + STATE(2719), 2, + sym_comment, + sym_include, + ACTIONS(244), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_when_expression_token1, + aux_sym_scope_tuning_token1, + [187921] = 27, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(2922), 1, + STATE(3021), 1, sym_of, - STATE(3003), 1, + STATE(3038), 1, sym__pre_tuning, - STATE(3027), 1, - aux_sym_for_phrase_repeat1, - STATE(3034), 1, + STATE(3136), 1, sym_where_clause, - STATE(3217), 1, + STATE(3140), 1, + aux_sym_for_phrase_repeat1, + STATE(3271), 1, sym_using, - STATE(3321), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3478), 1, + STATE(3514), 1, aux_sym_for_phrase_repeat2, - STATE(4165), 1, + STATE(4057), 1, sym_on_error_phrase, - STATE(4234), 1, + STATE(4522), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4606), 1, + STATE(5089), 1, sym_on_stop_phrase, - STATE(4610), 1, + STATE(5099), 1, aux_sym_for_statement_repeat1, - STATE(5995), 1, + STATE(5607), 1, sym_body, - STATE(2682), 2, + STATE(2720), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [184822] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [188008] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4069), 1, - aux_sym_if_statement_token2, - STATE(373), 1, + ACTIONS(4057), 1, + anon_sym_RPAREN, + STATE(492), 1, sym__comparison_operator, - STATE(374), 1, + STATE(494), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(509), 1, sym__additive_operator, - STATE(376), 1, + STATE(510), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2683), 2, + STATE(2721), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -209352,41 +213456,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [184885] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [188071] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4071), 1, - anon_sym_RBRACK, - STATE(458), 1, + ACTIONS(4059), 1, + aux_sym_else_statement_token1, + STATE(960), 1, sym__comparison_operator, - STATE(459), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(468), 1, + STATE(962), 1, sym__additive_operator, - STATE(471), 1, + STATE(963), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2684), 2, + STATE(2722), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -209400,34 +213504,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [184948] = 6, - ACTIONS(3), 1, + [188134] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(2685), 2, - sym_comment, - sym_include, - ACTIONS(142), 3, - sym__namedoublecolon, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4061), 1, + aux_sym_else_statement_token1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, + sym__additive_operator, + STATE(963), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(144), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2723), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -209438,42 +213552,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_when_expression_token1, - [184993] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [188197] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4073), 1, - aux_sym_if_statement_token2, - STATE(373), 1, + ACTIONS(4063), 1, + sym__terminator, + STATE(492), 1, sym__comparison_operator, - STATE(374), 1, + STATE(494), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(509), 1, sym__additive_operator, - STATE(376), 1, + STATE(510), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2686), 2, + STATE(2724), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -209487,41 +213600,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [185056] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [188260] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4075), 1, - aux_sym_if_statement_token2, - STATE(373), 1, + ACTIONS(4065), 1, + anon_sym_RBRACK, + STATE(492), 1, sym__comparison_operator, - STATE(374), 1, + STATE(494), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(509), 1, sym__additive_operator, - STATE(376), 1, + STATE(510), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2687), 2, + STATE(2725), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -209535,41 +213648,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [185119] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [188323] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4077), 1, + ACTIONS(4067), 1, aux_sym_else_statement_token1, - STATE(362), 1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, sym__additive_operator, - STATE(704), 1, + STATE(963), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2688), 2, + STATE(2726), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -209583,25 +213696,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [185182] = 6, + [188386] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(190), 2, + ACTIONS(246), 2, sym__or_operator, sym__and_operator, - STATE(2689), 2, + STATE(2727), 2, sym_comment, sym_include, - ACTIONS(192), 25, + ACTIONS(248), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -209620,35 +213732,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [185227] = 6, - ACTIONS(3), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [188431] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(146), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4069), 1, + aux_sym_else_statement_token1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, + sym__additive_operator, + STATE(963), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2690), 2, - sym_comment, - sym_include, - ACTIONS(148), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2728), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -209659,43 +213783,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_when_expression_token1, - anon_sym_NO_DASHERROR, - [185272] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [188494] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4079), 1, - anon_sym_LPAREN, - STATE(458), 1, + ACTIONS(4071), 1, + aux_sym_else_statement_token1, + STATE(960), 1, sym__comparison_operator, - STATE(459), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(468), 1, + STATE(962), 1, sym__additive_operator, - STATE(471), 1, + STATE(963), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2691), 2, + STATE(2729), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -209709,25 +213831,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [185335] = 6, + [188557] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(240), 2, - sym__or_operator, - sym__and_operator, - STATE(2692), 2, + STATE(2730), 2, sym_comment, sym_include, - ACTIONS(242), 25, + ACTIONS(162), 3, + sym__namedoublecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(164), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, + sym__terminator, anon_sym_COMMA, - aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -209746,43 +213869,80 @@ 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_do_block_token1, - aux_sym_widget_field_token1, - [185380] = 15, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + [188602] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2731), 2, + sym_comment, + sym_include, + ACTIONS(108), 3, + sym__namedot, + sym__or_operator, + sym__and_operator, + ACTIONS(110), 25, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_STAR, + anon_sym_DQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_include_argument_token1, + [188645] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4081), 1, - aux_sym_if_statement_token2, - STATE(373), 1, + ACTIONS(4073), 1, + aux_sym_else_statement_token1, + STATE(960), 1, sym__comparison_operator, - STATE(374), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(962), 1, sym__additive_operator, - STATE(376), 1, + STATE(963), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2693), 2, + STATE(2732), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -209796,33 +213956,188 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [185443] = 6, - ACTIONS(3), 1, + [188708] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(194), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4075), 1, + anon_sym_RPAREN, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2694), 2, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2733), 2, sym_comment, sym_include, - ACTIONS(196), 25, + ACTIONS(2409), 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, + [188771] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, anon_sym_SLASH, - sym_identifier, + ACTIONS(4077), 1, + anon_sym_RBRACK, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, + STATE(2734), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, + [188834] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4079), 1, + aux_sym_else_statement_token1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, + sym__additive_operator, + STATE(963), 1, + sym__logical_operator, + ACTIONS(1090), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2735), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, + [188897] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4081), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, + sym__additive_operator, + STATE(396), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2736), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -209833,29 +214148,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [185488] = 7, + [188960] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4083), 1, - aux_sym_function_call_token1, - ACTIONS(230), 2, + ACTIONS(242), 2, sym__or_operator, sym__and_operator, - STATE(2695), 2, + STATE(2737), 2, sym_comment, sym_include, - ACTIONS(232), 24, + ACTIONS(244), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - sym__terminator, anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -209874,42 +214185,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_when_expression_token1, - [185535] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [189005] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4085), 1, - aux_sym_else_statement_token1, - STATE(362), 1, + ACTIONS(4083), 1, + anon_sym_RBRACK, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, sym__additive_operator, - STATE(704), 1, + STATE(510), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2696), 2, + STATE(2738), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -209923,27 +214235,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [185598] = 7, + [189068] = 8, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(4087), 1, + aux_sym_variable_tuning_token2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(2739), 2, + sym_comment, + sym_include, + ACTIONS(4085), 24, + sym__terminator, + aux_sym_unary_expression_token2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_field_option_token1, + aux_sym_field_option_token2, + aux_sym_field_option_token3, + aux_sym_field_option_token4, + aux_sym_field_option_token5, + aux_sym_field_option_token6, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [189117] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4087), 1, - sym__namedot, - ACTIONS(132), 2, - sym__or_operator, - sym__and_operator, - STATE(2697), 2, + STATE(2740), 2, sym_comment, sym_include, - ACTIONS(134), 24, + ACTIONS(162), 3, + sym__namedoublecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(164), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -209962,42 +214313,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_when_expression_token1, - [185645] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [189162] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, ACTIONS(4089), 1, - anon_sym_RBRACK, - STATE(458), 1, + anon_sym_RPAREN, + STATE(492), 1, sym__comparison_operator, - STATE(459), 1, + STATE(494), 1, sym__multiplicative_operator, - STATE(468), 1, + STATE(509), 1, sym__additive_operator, - STATE(471), 1, + STATE(510), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2698), 2, + STATE(2741), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -210011,33 +214363,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [185708] = 6, - ACTIONS(3), 1, + [189225] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(158), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4091), 1, + anon_sym_RBRACK, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2699), 2, - sym_comment, - sym_include, - ACTIONS(160), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2742), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -210048,27 +214411,27 @@ 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_do_block_token1, - aux_sym_widget_field_token1, - [185753] = 6, + [189288] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(150), 2, + ACTIONS(4093), 1, + sym_identifier, + STATE(2941), 1, + sym_qualified_name, + ACTIONS(1581), 2, sym__or_operator, sym__and_operator, - STATE(2700), 2, + STATE(2743), 2, sym_comment, sym_include, - ACTIONS(152), 25, + ACTIONS(1579), 24, anon_sym_SLASH, - sym_identifier, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -210087,42 +214450,42 @@ 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_when_expression_token1, - anon_sym_NO_DASHERROR, - [185798] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_include_argument_token1, + [189335] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - STATE(362), 1, + ACTIONS(4096), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, sym__additive_operator, - STATE(704), 1, + STATE(396), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2392), 2, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2701), 2, + STATE(2744), 2, sym_comment, sym_include, - ACTIONS(236), 3, - sym__or_operator, - sym__and_operator, - aux_sym_else_statement_token1, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -210136,41 +214499,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [185859] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [189398] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4091), 1, - aux_sym_if_statement_token2, - STATE(373), 1, + ACTIONS(4098), 1, + aux_sym_else_statement_token1, + STATE(960), 1, sym__comparison_operator, - STATE(374), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(962), 1, sym__additive_operator, - STATE(376), 1, + STATE(963), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2702), 2, + STATE(2745), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -210184,41 +214547,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [185922] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [189461] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4093), 1, + ACTIONS(4100), 1, aux_sym_if_statement_token2, - STATE(373), 1, + STATE(393), 1, sym__comparison_operator, - STATE(374), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(395), 1, sym__additive_operator, - STATE(376), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2703), 2, + STATE(2746), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -210232,28 +214595,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [185985] = 7, + [189524] = 27, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(3030), 1, + sym_of, + STATE(3044), 1, + sym__pre_tuning, + STATE(3127), 1, + aux_sym_for_phrase_repeat1, + STATE(3133), 1, + sym_where_clause, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3503), 1, + aux_sym_for_phrase_repeat2, + STATE(4100), 1, + sym_on_error_phrase, + STATE(4502), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(5055), 1, + sym_on_stop_phrase, + STATE(5061), 1, + aux_sym_for_statement_repeat1, + STATE(5518), 1, + sym_body, + STATE(2747), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [189611] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4095), 1, - sym__namedoublecolon, - ACTIONS(110), 2, + ACTIONS(150), 2, sym__or_operator, sym__and_operator, - STATE(2704), 3, + STATE(2748), 2, sym_comment, sym_include, - aux_sym_member_access_repeat1, - ACTIONS(112), 23, + ACTIONS(152), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - sym__terminator, anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -210272,24 +214692,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [186032] = 6, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [189656] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(146), 2, + ACTIONS(170), 2, sym__or_operator, sym__and_operator, - STATE(2705), 2, + STATE(2749), 2, sym_comment, sym_include, - ACTIONS(148), 25, + ACTIONS(172), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - sym__terminator, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -210308,104 +214731,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_when_expression_token1, - aux_sym_function_call_token1, - anon_sym_NO_DASHERROR, - [186077] = 27, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [189701] = 15, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(2941), 1, - sym_of, - STATE(3000), 1, - sym__pre_tuning, - STATE(3085), 1, - sym_where_clause, - STATE(3087), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3438), 1, - aux_sym_for_phrase_repeat2, - STATE(4126), 1, - sym_on_error_phrase, - STATE(4297), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4930), 1, - sym_on_stop_phrase, - STATE(4954), 1, - aux_sym_for_statement_repeat1, - STATE(6020), 1, - sym_body, - STATE(2706), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [186164] = 15, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4098), 1, - aux_sym_if_statement_token2, - STATE(373), 1, + ACTIONS(4102), 1, + anon_sym_RPAREN, + STATE(492), 1, sym__comparison_operator, - STATE(374), 1, + STATE(494), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(509), 1, sym__additive_operator, - STATE(376), 1, + STATE(510), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2707), 2, + STATE(2750), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -210419,41 +214781,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [186227] = 15, - ACTIONS(65), 1, + [189764] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2751), 2, + sym_comment, + sym_include, + ACTIONS(162), 3, + sym__namedoublecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(164), 25, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_STAR, + anon_sym_DQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_include_argument_token1, + [189807] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4100), 1, - aux_sym_if_statement_token2, - STATE(373), 1, + STATE(960), 1, sym__comparison_operator, - STATE(374), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(962), 1, sym__additive_operator, - STATE(376), 1, + STATE(963), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2708), 2, + STATE(2752), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(1212), 3, + sym__or_operator, + sym__and_operator, + aux_sym_else_statement_token1, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -210467,41 +214866,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [186290] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [189868] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1183), 1, + ACTIONS(4104), 1, aux_sym_else_statement_token1, - STATE(362), 1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, sym__additive_operator, - STATE(704), 1, + STATE(963), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2709), 2, + STATE(2753), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -210515,41 +214914,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [186353] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [189931] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1187), 1, + ACTIONS(4106), 1, aux_sym_else_statement_token1, - STATE(362), 1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, sym__additive_operator, - STATE(704), 1, + STATE(963), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2710), 2, + STATE(2754), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -210563,41 +214962,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [186416] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [189994] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4102), 1, + ACTIONS(4108), 1, aux_sym_if_statement_token2, - STATE(373), 1, + STATE(393), 1, sym__comparison_operator, - STATE(374), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(395), 1, sym__additive_operator, - STATE(376), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2711), 2, + STATE(2755), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -210611,41 +215010,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [186479] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [190057] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4104), 1, - aux_sym_else_statement_token1, - STATE(362), 1, + ACTIONS(4110), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, sym__additive_operator, - STATE(704), 1, + STATE(396), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2712), 2, + STATE(2756), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -210659,29 +215058,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [186542] = 8, + [190120] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2725), 1, - sym__namedot, - STATE(2637), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(102), 2, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(4112), 1, + aux_sym_input_expression_token2, + STATE(28), 1, + sym_qualified_name, + ACTIONS(1358), 2, sym__or_operator, sym__and_operator, - STATE(2713), 2, + STATE(2757), 2, sym_comment, sym_include, - ACTIONS(104), 23, + ACTIONS(1354), 22, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -210700,41 +215099,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [186591] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + [190171] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1191), 1, - aux_sym_else_statement_token1, - STATE(362), 1, + ACTIONS(4114), 1, + anon_sym_RBRACK, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, sym__additive_operator, - STATE(704), 1, + STATE(510), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2714), 2, + STATE(2758), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -210748,92 +215148,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [186654] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [190234] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(1106), 1, - aux_sym_else_statement_token1, - STATE(362), 1, - sym__additive_operator, - STATE(704), 1, - sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2715), 2, + ACTIONS(4118), 1, + aux_sym_using_statement_token2, + ACTIONS(4122), 1, + aux_sym_image_phrase_token4, + ACTIONS(4120), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + ACTIONS(4124), 2, + aux_sym_image_phrase_token5, + aux_sym_image_phrase_token6, + STATE(2759), 2, sym_comment, sym_include, - ACTIONS(2396), 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, - [186717] = 15, - ACTIONS(65), 1, + ACTIONS(4116), 21, + sym__terminator, + aux_sym_type_tuning_token2, + aux_sym_variable_tuning_token4, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [190285] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(1199), 1, - aux_sym_else_statement_token1, - STATE(362), 1, - sym__additive_operator, - STATE(704), 1, - sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + STATE(2760), 2, + sym_comment, + sym_include, + ACTIONS(166), 3, + sym__namecolon, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(168), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2716), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -210844,24 +215227,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [186780] = 6, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [190330] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(150), 2, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(4126), 1, + aux_sym_input_expression_token2, + STATE(28), 1, + sym_qualified_name, + ACTIONS(1358), 2, sym__or_operator, sym__and_operator, - STATE(2717), 2, + STATE(2761), 2, sym_comment, sym_include, - ACTIONS(152), 25, + ACTIONS(1354), 22, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, - sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -210881,43 +215270,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - aux_sym_function_call_token1, - anon_sym_NO_DASHERROR, - [186825] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_output_stream_statement_token1, + [190381] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(1102), 1, - aux_sym_else_statement_token1, - STATE(362), 1, + ACTIONS(4128), 1, + anon_sym_RPAREN, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, sym__additive_operator, - STATE(704), 1, + STATE(510), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2718), 2, + STATE(2762), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -210931,44 +215319,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [186888] = 15, - ACTIONS(65), 1, + [190444] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(1203), 1, - aux_sym_else_statement_token1, - STATE(362), 1, - sym__additive_operator, - STATE(704), 1, - sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(230), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + STATE(2763), 2, + sym_comment, + sym_include, + ACTIONS(232), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - STATE(2719), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -210979,44 +215356,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [186951] = 15, - ACTIONS(65), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [190489] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(4106), 1, - aux_sym_if_statement_token2, - STATE(373), 1, - sym__comparison_operator, - STATE(374), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__additive_operator, - STATE(376), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(4130), 1, + sym__namedot, + ACTIONS(150), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + STATE(2764), 2, + sym_comment, + sym_include, + ACTIONS(152), 24, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2720), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -211027,44 +215396,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [187014] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [190536] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(4108), 1, - aux_sym_if_statement_token2, - STATE(373), 1, - sym__comparison_operator, - STATE(374), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__additive_operator, - STATE(376), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(2847), 1, + aux_sym_variable_definition_token4, + STATE(2765), 2, + sym_comment, + sym_include, + ACTIONS(4132), 26, + aux_sym_temp_table_expression_token1, + aux_sym_dataset_expression_token1, + 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_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_variable_definition_token3, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + aux_sym_argument_mode_token3, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_property_definition_token1, + aux_sym_event_definition_token1, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + aux_sym_button_definition_token1, + [190581] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(246), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + STATE(2766), 2, + sym_comment, + sym_include, + ACTIONS(248), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2721), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -211075,41 +215474,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [187077] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [190626] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4110), 1, - aux_sym_if_statement_token2, - STATE(373), 1, + ACTIONS(4134), 1, + aux_sym_else_statement_token1, + STATE(960), 1, sym__comparison_operator, - STATE(374), 1, + STATE(961), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(962), 1, sym__additive_operator, - STATE(376), 1, + STATE(963), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2722), 2, + STATE(2767), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -211123,40 +215524,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [187140] = 12, - ACTIONS(65), 1, + [190689] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(362), 1, - sym__additive_operator, - STATE(704), 1, - sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1205), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - STATE(2723), 2, + STATE(2768), 2, sym_comment, sym_include, - ACTIONS(1207), 18, + ACTIONS(108), 3, + sym__namedot, sym__or_operator, sym__and_operator, + ACTIONS(110), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, + aux_sym__multiplicative_operator_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, @@ -211167,42 +215561,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_else_statement_token1, - [187197] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [190734] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4112), 1, - anon_sym_RPAREN, - STATE(458), 1, + ACTIONS(4136), 1, + sym__terminator, + STATE(492), 1, sym__comparison_operator, - STATE(459), 1, + STATE(494), 1, sym__multiplicative_operator, - STATE(468), 1, + STATE(509), 1, sym__additive_operator, - STATE(471), 1, + STATE(510), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2724), 2, + STATE(2769), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -211216,37 +215611,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [187260] = 9, - ACTIONS(3), 1, + [190797] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4114), 1, - sym_identifier, - ACTIONS(4117), 1, - aux_sym_input_expression_token2, - STATE(2920), 1, - sym_qualified_name, - ACTIONS(1351), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(1204), 1, + aux_sym_output_stream_statement_token1, + STATE(827), 1, + sym__comparison_operator, + STATE(828), 1, + sym__multiplicative_operator, + STATE(829), 1, + sym__additive_operator, + STATE(830), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2725), 2, - sym_comment, - sym_include, - ACTIONS(1347), 22, - anon_sym_SLASH, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2770), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -211257,45 +215659,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_NO_DASHERROR, - [187311] = 15, - ACTIONS(65), 1, + [190860] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(4119), 1, - aux_sym_if_statement_token2, - STATE(373), 1, - sym__comparison_operator, - STATE(374), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__additive_operator, - STATE(376), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(4138), 1, + sym__namedot, + ACTIONS(150), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + STATE(2771), 2, + sym_comment, + sym_include, + ACTIONS(152), 25, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - STATE(2726), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -211306,101 +215697,101 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [187374] = 27, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_include_argument_token1, + [190905] = 26, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(2952), 1, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(3060), 1, sym_of, - STATE(2993), 1, + STATE(3091), 1, sym__pre_tuning, - STATE(3044), 1, + STATE(3180), 1, sym_where_clause, - STATE(3063), 1, + STATE(3184), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3321), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3483), 1, + STATE(3887), 1, aux_sym_for_phrase_repeat2, - STATE(4069), 1, + STATE(4598), 1, sym_on_error_phrase, - STATE(4275), 1, - sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4822), 1, + STATE(4792), 1, + sym_on_quit_phrase, + STATE(5720), 1, sym_on_stop_phrase, - STATE(4864), 1, - aux_sym_for_statement_repeat1, - STATE(5881), 1, - sym_body, - STATE(2727), 2, + ACTIONS(4140), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(2772), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [187461] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [190990] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4121), 1, + ACTIONS(4142), 1, aux_sym_if_statement_token2, - STATE(373), 1, + STATE(393), 1, sym__comparison_operator, - STATE(374), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(395), 1, sym__additive_operator, - STATE(376), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2728), 2, + STATE(2773), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -211414,25 +215805,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [187524] = 6, + [191053] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(226), 2, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(4144), 1, + aux_sym_input_expression_token2, + STATE(28), 1, + sym_qualified_name, + ACTIONS(1358), 2, sym__or_operator, sym__and_operator, - STATE(2729), 2, + STATE(2774), 2, sym_comment, sym_include, - ACTIONS(228), 25, + ACTIONS(1354), 22, + anon_sym_COLON, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, - anon_sym_COMMA, - aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -211451,160 +215846,84 @@ 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_do_block_token1, - aux_sym_widget_field_token1, - [187569] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - STATE(362), 1, - sym__additive_operator, - STATE(704), 1, - sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1177), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2730), 2, - sym_comment, - sym_include, - ACTIONS(1179), 16, - sym__or_operator, - sym__and_operator, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_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_else_statement_token1, - [187628] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_on_error_phrase_token1, + [191104] = 26, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(1112), 1, - aux_sym_else_statement_token1, - STATE(362), 1, - sym__additive_operator, - STATE(704), 1, - sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2731), 2, - sym_comment, - sym_include, - ACTIONS(2396), 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, - [187691] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2780), 1, - aux_sym_variable_definition_token4, - STATE(2732), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(3064), 1, + sym_of, + STATE(3125), 1, + sym__pre_tuning, + STATE(3185), 1, + aux_sym_for_phrase_repeat1, + STATE(3190), 1, + sym_where_clause, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3841), 1, + aux_sym_for_phrase_repeat2, + STATE(4580), 1, + sym_on_error_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4735), 1, + sym_on_quit_phrase, + STATE(5583), 1, + sym_on_stop_phrase, + ACTIONS(4146), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(2775), 2, sym_comment, sym_include, - ACTIONS(4123), 26, - aux_sym_temp_table_expression_token1, - aux_sym_dataset_expression_token1, - 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_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - aux_sym_variable_definition_token3, - aux_sym_buffer_definition_token1, - aux_sym_query_definition_token1, - aux_sym_argument_mode_token3, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_property_definition_token1, - aux_sym_event_definition_token1, - aux_sym_workfile_definition_token1, - aux_sym_workfile_definition_token2, - aux_sym_button_definition_token1, - [187736] = 6, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [191189] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(138), 2, + ACTIONS(174), 2, sym__or_operator, sym__and_operator, - STATE(2733), 2, + STATE(2776), 2, sym_comment, sym_include, - ACTIONS(140), 25, + ACTIONS(176), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -211624,90 +215943,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [187781] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [191234] = 15, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(4125), 1, - aux_sym_else_statement_token1, - STATE(362), 1, - sym__additive_operator, - STATE(704), 1, - sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2734), 2, - sym_comment, - sym_include, - ACTIONS(2396), 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, - [187844] = 15, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4127), 1, - sym__terminator, - STATE(458), 1, + ACTIONS(4148), 1, + aux_sym_if_statement_token2, + STATE(393), 1, sym__comparison_operator, - STATE(459), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(468), 1, + STATE(395), 1, sym__additive_operator, - STATE(471), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2735), 2, + STATE(2777), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -211721,23 +215993,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [187907] = 7, + [191297] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4129), 1, - sym__namedoublecolon, - ACTIONS(110), 2, + ACTIONS(178), 2, sym__or_operator, sym__and_operator, - STATE(2736), 3, + STATE(2778), 2, sym_comment, sym_include, - aux_sym_member_access_repeat1, - ACTIONS(112), 23, + ACTIONS(180), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -211760,124 +216029,87 @@ 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_when_expression_token1, + aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [187954] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [191342] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(4132), 1, - aux_sym_if_statement_token2, - STATE(373), 1, - sym__comparison_operator, - STATE(374), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__additive_operator, - STATE(376), 1, - sym__logical_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, - anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2737), 2, - sym_comment, - sym_include, - ACTIONS(2396), 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, - [188017] = 5, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(4136), 1, - sym__escaped_string, - STATE(2738), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(4152), 1, + aux_sym_variable_tuning_token2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(2779), 2, sym_comment, sym_include, - ACTIONS(4134), 27, - 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, + ACTIONS(4150), 24, + sym__terminator, aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_expression_token1, - aux_sym_input_expression_token1, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_case_conditon_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [188060] = 8, - ACTIONS(3), 1, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_field_option_token1, + aux_sym_field_option_token2, + aux_sym_field_option_token3, + aux_sym_field_option_token4, + aux_sym_field_option_token5, + aux_sym_field_option_token6, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [191391] = 14, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2729), 1, - sym__namedoublecolon, - STATE(2704), 1, - aux_sym_member_access_repeat1, - ACTIONS(128), 2, - sym__or_operator, - sym__and_operator, - STATE(2739), 2, - sym_comment, - sym_include, - ACTIONS(130), 23, + ACTIONS(1086), 1, anon_sym_SLASH, - sym_identifier, + STATE(827), 1, + sym__comparison_operator, + STATE(828), 1, + sym__multiplicative_operator, + STATE(829), 1, + sym__additive_operator, + STATE(830), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2780), 2, + sym_comment, + sym_include, + ACTIONS(1212), 3, + sym__or_operator, + sym__and_operator, + aux_sym_output_stream_statement_token1, + ACTIONS(2409), 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, @@ -211888,41 +216120,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188109] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [191452] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4138), 1, + ACTIONS(1204), 1, aux_sym_if_statement_token2, - STATE(373), 1, + STATE(393), 1, sym__comparison_operator, - STATE(374), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(395), 1, sym__additive_operator, - STATE(376), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2740), 2, + STATE(2781), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -211936,41 +216168,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188172] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [191515] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4140), 1, - aux_sym_if_statement_token2, - STATE(373), 1, + STATE(393), 1, sym__comparison_operator, - STATE(374), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(395), 1, sym__additive_operator, - STATE(376), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2741), 2, + STATE(2782), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(1212), 3, + sym__or_operator, + sym__and_operator, + aux_sym_if_statement_token2, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -211984,33 +216215,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188235] = 6, - ACTIONS(3), 1, + [191576] = 10, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(2742), 2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, + sym__additive_operator, + STATE(396), 1, + sym__logical_operator, + STATE(2783), 2, sym_comment, sym_include, - ACTIONS(142), 3, - sym__namedoublecolon, + ACTIONS(1214), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1216), 20, sym__or_operator, sym__and_operator, - ACTIONS(144), 24, - anon_sym_SLASH, - sym_identifier, anon_sym_STAR, - sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -212021,40 +216257,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_when_expression_token1, - anon_sym_NO_DASHERROR, - [188280] = 9, - ACTIONS(3), 1, + aux_sym_if_statement_token2, + [191629] = 12, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4142), 1, - sym_identifier, - ACTIONS(4145), 1, - aux_sym_input_expression_token2, - STATE(2957), 1, - sym_qualified_name, - ACTIONS(1351), 2, - sym__or_operator, - sym__and_operator, - STATE(2743), 2, - sym_comment, - sym_include, - ACTIONS(1347), 22, + ACTIONS(1086), 1, anon_sym_SLASH, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, + sym__additive_operator, + STATE(396), 1, + sym__logical_operator, + ACTIONS(1119), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + STATE(2784), 2, + sym_comment, + sym_include, + ACTIONS(1121), 18, + sym__or_operator, + sym__and_operator, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_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, @@ -212065,41 +216302,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188331] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_if_statement_token2, + [191686] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4147), 1, - aux_sym_else_statement_token1, - STATE(362), 1, + ACTIONS(1196), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, sym__additive_operator, - STATE(704), 1, + STATE(396), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2744), 2, + STATE(2785), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -212113,41 +216351,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188394] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [191749] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4149), 1, - anon_sym_RBRACK, - STATE(458), 1, + ACTIONS(1117), 1, + aux_sym_if_statement_token2, + STATE(393), 1, sym__comparison_operator, - STATE(459), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(468), 1, + STATE(395), 1, sym__additive_operator, - STATE(471), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2745), 2, + STATE(2786), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -212161,32 +216399,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188457] = 6, - ACTIONS(3), 1, + [191812] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(138), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(1200), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, + sym__additive_operator, + STATE(396), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2746), 2, - sym_comment, - sym_include, - ACTIONS(140), 25, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2787), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -212197,44 +216447,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_when_expression_token1, - aux_sym_function_call_token1, - anon_sym_NO_DASHERROR, - [188502] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [191875] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4127), 1, - aux_sym_output_stream_statement_token1, - STATE(873), 1, + ACTIONS(1113), 1, + aux_sym_if_statement_token2, + STATE(393), 1, sym__comparison_operator, - STATE(874), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(875), 1, + STATE(395), 1, sym__additive_operator, - STATE(876), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2747), 2, + STATE(2788), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -212248,41 +216495,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188565] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [191938] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(4151), 1, - aux_sym_if_statement_token2, - STATE(373), 1, + STATE(827), 1, sym__comparison_operator, - STATE(374), 1, + STATE(828), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(829), 1, sym__additive_operator, - STATE(376), 1, + STATE(830), 1, sym__logical_operator, - ACTIONS(1079), 2, + STATE(2789), 2, + sym_comment, + sym_include, + ACTIONS(1214), 3, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1216), 20, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2748), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -212296,41 +216537,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188628] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_output_stream_statement_token1, + [191991] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4153), 1, - aux_sym_else_statement_token1, - STATE(362), 1, + ACTIONS(1208), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, sym__additive_operator, - STATE(704), 1, + STATE(396), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2749), 2, + STATE(2790), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -212344,41 +216586,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188691] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [192054] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4155), 1, + ACTIONS(1192), 1, aux_sym_if_statement_token2, - STATE(373), 1, + STATE(393), 1, sym__comparison_operator, - STATE(374), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(395), 1, sym__additive_operator, - STATE(376), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2750), 2, + STATE(2791), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -212392,21 +216634,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188754] = 6, + [192117] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2751), 2, - sym_comment, - sym_include, - ACTIONS(117), 3, - sym__namedot, + ACTIONS(242), 2, sym__or_operator, sym__and_operator, - ACTIONS(119), 24, + STATE(2792), 2, + sym_comment, + sym_include, + ACTIONS(244), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -212430,27 +216671,121 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [188799] = 6, + [192162] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(1125), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, + sym__additive_operator, + STATE(396), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2793), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, + [192225] = 14, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, + sym__additive_operator, + STATE(396), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2794), 2, + sym_comment, + sym_include, + ACTIONS(230), 3, + sym__or_operator, + sym__and_operator, + aux_sym_if_statement_token2, + ACTIONS(2409), 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, + [192286] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4157), 1, - anon_sym_NO_DASHERROR, - ACTIONS(248), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(123), 2, sym__or_operator, sym__and_operator, - STATE(2752), 2, + STATE(2795), 2, sym_comment, sym_include, - ACTIONS(250), 25, + ACTIONS(125), 25, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - anon_sym_DQUOTE, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -212469,42 +216804,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_include_argument_token1, - [188844] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [192331] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4159), 1, - aux_sym_else_statement_token1, - STATE(362), 1, + STATE(827), 1, + sym__comparison_operator, + STATE(828), 1, + sym__multiplicative_operator, + STATE(829), 1, sym__additive_operator, - STATE(704), 1, + STATE(830), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1119), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2753), 2, + STATE(2796), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(1121), 18, + sym__or_operator, + sym__and_operator, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -212518,41 +216851,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188907] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_output_stream_statement_token1, + [192388] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4161), 1, - aux_sym_if_statement_token2, - STATE(373), 1, + ACTIONS(4154), 1, + anon_sym_RBRACK, + STATE(492), 1, sym__comparison_operator, - STATE(374), 1, + STATE(494), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(509), 1, sym__additive_operator, - STATE(376), 1, + STATE(510), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2754), 2, + STATE(2797), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -212566,44 +216900,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [188970] = 15, - ACTIONS(65), 1, + [192451] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(4163), 1, - aux_sym_else_statement_token1, - STATE(362), 1, - sym__additive_operator, - STATE(704), 1, - sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(182), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + STATE(2798), 2, + sym_comment, + sym_include, + ACTIONS(184), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - STATE(2755), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -212614,41 +216936,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [189033] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [192496] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4165), 1, - aux_sym_else_statement_token1, - STATE(362), 1, + ACTIONS(1196), 1, + aux_sym_output_stream_statement_token1, + STATE(827), 1, + sym__comparison_operator, + STATE(828), 1, + sym__multiplicative_operator, + STATE(829), 1, sym__additive_operator, - STATE(704), 1, + STATE(830), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2756), 2, + STATE(2799), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -212662,41 +216987,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [189096] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [192559] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4167), 1, - aux_sym_else_statement_token1, - STATE(362), 1, + ACTIONS(4156), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, sym__additive_operator, - STATE(704), 1, + STATE(396), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2757), 2, + STATE(2800), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -212710,34 +217035,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [189159] = 7, - ACTIONS(3), 1, + [192622] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4169), 1, - sym__namedot, - ACTIONS(132), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4158), 1, + anon_sym_LPAREN, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2758), 2, - sym_comment, - sym_include, - ACTIONS(134), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2801), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -212748,43 +217083,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_when_expression_token1, - anon_sym_NO_DASHERROR, - [189206] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [192685] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4171), 1, - aux_sym_else_statement_token1, - STATE(362), 1, + ACTIONS(4160), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, sym__additive_operator, - STATE(704), 1, + STATE(396), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2759), 2, + STATE(2802), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -212798,41 +217131,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [189269] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [192748] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4173), 1, - aux_sym_else_statement_token1, - STATE(362), 1, + ACTIONS(4162), 1, + anon_sym_RPAREN, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, sym__additive_operator, - STATE(704), 1, + STATE(510), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2760), 2, + STATE(2803), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -212846,41 +217179,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [189332] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [192811] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4175), 1, - aux_sym_else_statement_token1, - STATE(362), 1, + ACTIONS(1117), 1, + aux_sym_output_stream_statement_token1, + STATE(827), 1, + sym__comparison_operator, + STATE(828), 1, + sym__multiplicative_operator, + STATE(829), 1, sym__additive_operator, - STATE(704), 1, + STATE(830), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2761), 2, + STATE(2804), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -212894,41 +217227,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [189395] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [192874] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4177), 1, - aux_sym_else_statement_token1, - STATE(362), 1, + ACTIONS(4164), 1, + anon_sym_RBRACK, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, sym__additive_operator, - STATE(704), 1, + STATE(510), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2762), 2, + STATE(2805), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -212942,29 +217275,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [189458] = 8, + [192937] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2725), 1, - sym__namedot, - STATE(2637), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(106), 2, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, - STATE(2763), 2, + STATE(2806), 2, sym_comment, sym_include, - ACTIONS(108), 23, + ACTIONS(87), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - sym__terminator, anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -212983,41 +217312,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [189507] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [192982] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4179), 1, - aux_sym_else_statement_token1, - STATE(362), 1, + ACTIONS(1200), 1, + aux_sym_output_stream_statement_token1, + STATE(827), 1, + sym__comparison_operator, + STATE(828), 1, + sym__multiplicative_operator, + STATE(829), 1, sym__additive_operator, - STATE(704), 1, + STATE(830), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2764), 2, + STATE(2807), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -213031,41 +217362,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [189570] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [193045] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4181), 1, + ACTIONS(4166), 1, aux_sym_else_statement_token1, - STATE(362), 1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, sym__additive_operator, - STATE(704), 1, + STATE(963), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2765), 2, + STATE(2808), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -213079,41 +217410,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [189633] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [193108] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4183), 1, + ACTIONS(4168), 1, aux_sym_if_statement_token2, - STATE(373), 1, + STATE(393), 1, sym__comparison_operator, - STATE(374), 1, + STATE(394), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(395), 1, sym__additive_operator, - STATE(376), 1, + STATE(396), 1, sym__logical_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2766), 2, + STATE(2809), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -213127,26 +217458,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [189696] = 7, + [193171] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4185), 1, - aux_sym_function_call_token1, - ACTIONS(230), 2, + ACTIONS(65), 2, sym__or_operator, sym__and_operator, - STATE(2767), 2, + STATE(2810), 2, sym_comment, sym_include, - ACTIONS(232), 24, + ACTIONS(71), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -213166,45 +217496,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - anon_sym_NO_DASHERROR, - [189743] = 15, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + [193216] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, - anon_sym_SLASH, - ACTIONS(4187), 1, - aux_sym_else_statement_token1, - STATE(362), 1, - sym__additive_operator, - STATE(704), 1, - sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(206), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + STATE(2811), 2, + sym_comment, + sym_include, + ACTIONS(208), 25, + anon_sym_SLASH, + sym_identifier, anon_sym_STAR, - aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - STATE(2768), 2, - sym_comment, - sym_include, - ACTIONS(2396), 13, + aux_sym__multiplicative_operator_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, @@ -213215,41 +217534,103 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [189806] = 15, - ACTIONS(65), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [193261] = 27, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(3027), 1, + sym_of, + STATE(3033), 1, + sym__pre_tuning, + STATE(3086), 1, + aux_sym_for_phrase_repeat1, + STATE(3088), 1, + sym_where_clause, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3535), 1, + aux_sym_for_phrase_repeat2, + STATE(4146), 1, + sym_on_error_phrase, + STATE(4376), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4907), 1, + aux_sym_for_statement_repeat1, + STATE(4912), 1, + sym_on_stop_phrase, + STATE(5498), 1, + sym_body, + STATE(2812), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [193348] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4189), 1, - aux_sym_else_statement_token1, - STATE(362), 1, + ACTIONS(1113), 1, + aux_sym_output_stream_statement_token1, + STATE(827), 1, + sym__comparison_operator, + STATE(828), 1, + sym__multiplicative_operator, + STATE(829), 1, sym__additive_operator, - STATE(704), 1, + STATE(830), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2769), 2, + STATE(2813), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -213263,41 +217644,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [189869] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [193411] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1086), 1, anon_sym_SLASH, - ACTIONS(4191), 1, + ACTIONS(4170), 1, aux_sym_else_statement_token1, - STATE(362), 1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, sym__additive_operator, - STATE(704), 1, + STATE(963), 1, sym__logical_operator, - STATE(739), 1, - sym__multiplicative_operator, - STATE(746), 1, - sym__comparison_operator, - ACTIONS(1079), 2, + ACTIONS(1090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 2, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - ACTIONS(2392), 2, + ACTIONS(2405), 2, anon_sym_STAR, aux_sym__multiplicative_operator_token1, - ACTIONS(2394), 2, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2770), 2, + STATE(2814), 2, sym_comment, sym_include, - ACTIONS(2396), 13, + ACTIONS(2409), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -213311,20 +217692,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [189932] = 6, + [193474] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(198), 2, + ACTIONS(170), 2, sym__or_operator, sym__and_operator, - STATE(2771), 2, + STATE(2815), 2, sym_comment, sym_include, - ACTIONS(200), 24, + ACTIONS(172), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -213349,32 +217730,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - [189976] = 5, - ACTIONS(3), 1, + aux_sym_scope_tuning_token1, + [193519] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(210), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4009), 1, + aux_sym_output_stream_statement_token1, + STATE(827), 1, + sym__comparison_operator, + STATE(828), 1, + sym__multiplicative_operator, + STATE(829), 1, + sym__additive_operator, + STATE(830), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2772), 2, - sym_comment, - sym_include, - ACTIONS(212), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2816), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -213385,28 +217779,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_include_argument_token1, - [190018] = 8, + [193582] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2458), 1, - sym_identifier, - STATE(32), 1, - sym_qualified_name, - ACTIONS(1366), 2, - sym__or_operator, - sym__and_operator, - STATE(2773), 2, + STATE(2817), 2, sym_comment, sym_include, - ACTIONS(1364), 22, + ACTIONS(146), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(148), 24, anon_sym_SLASH, + sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -213425,19 +217817,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_when_expression_token1, - [190066] = 5, + aux_sym_scope_tuning_token1, + [193627] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(198), 2, - sym__or_operator, - sym__and_operator, - STATE(2774), 2, + STATE(2818), 2, sym_comment, sym_include, - ACTIONS(200), 25, + ACTIONS(166), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(168), 25, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -213463,75 +217856,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [190108] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [193670] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4193), 1, - sym__terminator, - ACTIONS(4199), 1, - aux_sym_image_phrase_token1, - ACTIONS(4203), 1, - aux_sym_size_phrase_token1, - ACTIONS(4207), 1, - aux_sym_button_tuning_token1, - ACTIONS(4213), 1, - aux_sym_button_tuning_token9, - ACTIONS(4215), 1, - aux_sym_button_tuning_token14, - STATE(2863), 1, - aux_sym_button_definition_repeat1, - STATE(3014), 1, - sym_button_tuning, - STATE(3019), 1, - sym_size_phrase, - ACTIONS(4195), 2, - aux_sym_type_tuning_token2, - aux_sym_button_tuning_token12, - ACTIONS(4197), 2, - aux_sym_variable_tuning_token4, - aux_sym_button_tuning_token17, - ACTIONS(4205), 2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - STATE(2775), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4172), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, + sym__additive_operator, + STATE(396), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2819), 2, sym_comment, sym_include, - ACTIONS(4201), 3, - aux_sym_image_phrase_token2, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - ACTIONS(4209), 3, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token16, - ACTIONS(4211), 5, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token13, - [190178] = 6, + ACTIONS(2409), 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, + [193733] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(186), 2, + ACTIONS(202), 2, sym__or_operator, sym__and_operator, - STATE(2776), 2, + STATE(2820), 2, sym_comment, sym_include, - ACTIONS(188), 24, + ACTIONS(204), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -213551,77 +217942,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - anon_sym_NO_DASHERROR, - [190222] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4199), 1, - aux_sym_image_phrase_token1, - ACTIONS(4203), 1, - aux_sym_size_phrase_token1, - ACTIONS(4207), 1, - aux_sym_button_tuning_token1, - ACTIONS(4213), 1, - aux_sym_button_tuning_token9, - ACTIONS(4215), 1, - aux_sym_button_tuning_token14, - ACTIONS(4217), 1, - sym__terminator, - STATE(2872), 1, - aux_sym_button_definition_repeat1, - STATE(3014), 1, - sym_button_tuning, - STATE(3019), 1, - sym_size_phrase, - ACTIONS(4195), 2, - aux_sym_type_tuning_token2, - aux_sym_button_tuning_token12, - ACTIONS(4197), 2, - aux_sym_variable_tuning_token4, - aux_sym_button_tuning_token17, - ACTIONS(4205), 2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - STATE(2777), 2, - sym_comment, - sym_include, - ACTIONS(4201), 3, - aux_sym_image_phrase_token2, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - ACTIONS(4209), 3, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token16, - ACTIONS(4211), 5, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token13, - [190292] = 6, + aux_sym_scope_tuning_token1, + [193778] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(146), 2, + ACTIONS(238), 2, sym__or_operator, sym__and_operator, - STATE(2778), 2, + STATE(2821), 2, sym_comment, sym_include, - ACTIONS(148), 24, + ACTIONS(240), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -213640,25 +217979,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_function_call_token1, - [190336] = 6, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [193823] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(132), 2, + ACTIONS(222), 2, sym__or_operator, sym__and_operator, - STATE(2779), 2, + STATE(2822), 2, sym_comment, sym_include, - ACTIONS(134), 24, + ACTIONS(224), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - sym__terminator, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -213677,69 +218019,74 @@ 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_when_expression_token1, - anon_sym_NO_DASHERROR, - [190380] = 10, - ACTIONS(3), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [193868] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2532), 1, - sym_identifier, - ACTIONS(2536), 1, - aux_sym_class_type_token1, - ACTIONS(2550), 1, - sym__escaped_string, - STATE(2780), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(1208), 1, + aux_sym_output_stream_statement_token1, + STATE(827), 1, + sym__comparison_operator, + STATE(828), 1, + sym__multiplicative_operator, + STATE(829), 1, + sym__additive_operator, + STATE(830), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2823), 2, sym_comment, sym_include, - STATE(3794), 2, - sym_string_literal, - sym__type, - STATE(5223), 3, - sym_qualified_name, - sym_primitive_type, - sym_class_type, - ACTIONS(2534), 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, - [190432] = 6, + ACTIONS(2409), 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, + [193931] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(150), 2, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, - STATE(2781), 2, + STATE(2824), 2, sym_comment, sym_include, - ACTIONS(152), 24, + ACTIONS(87), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -213758,25 +218105,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_function_call_token1, - [190476] = 6, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [193976] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(174), 2, + ACTIONS(226), 2, sym__or_operator, sym__and_operator, - STATE(2782), 2, + STATE(2825), 2, sym_comment, sym_include, - ACTIONS(176), 24, + ACTIONS(228), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - sym__terminator, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -213795,34 +218145,46 @@ 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_when_expression_token1, - anon_sym_NO_DASHERROR, - [190520] = 6, - ACTIONS(3), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [194021] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(63), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4174), 1, + anon_sym_RBRACK, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2783), 2, - sym_comment, - sym_include, - ACTIONS(69), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2826), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -213833,22 +218195,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_when_expression_token1, - anon_sym_NO_DASHERROR, - [190564] = 6, + [194084] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(63), 2, + ACTIONS(238), 2, sym__or_operator, sym__and_operator, - STATE(2784), 2, + STATE(2827), 2, sym_comment, sym_include, - ACTIONS(69), 24, + ACTIONS(240), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -213873,33 +218233,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - [190608] = 6, - ACTIONS(3), 1, + aux_sym_scope_tuning_token1, + [194129] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(174), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4176), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, + sym__additive_operator, + STATE(396), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2785), 2, - sym_comment, - sym_include, - ACTIONS(176), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2828), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -213910,27 +218282,85 @@ 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_when_expression_token1, - [190652] = 7, + [194192] = 27, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(3009), 1, + sym_of, + STATE(3056), 1, + sym__pre_tuning, + STATE(3074), 1, + sym_where_clause, + STATE(3148), 1, + aux_sym_for_phrase_repeat1, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3508), 1, + aux_sym_for_phrase_repeat2, + STATE(4058), 1, + sym_on_error_phrase, + STATE(4530), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4881), 1, + aux_sym_for_statement_repeat1, + STATE(4888), 1, + sym_on_stop_phrase, + STATE(5618), 1, + sym_body, + STATE(2829), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [194279] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4219), 1, - anon_sym_NO_DASHERROR, - ACTIONS(248), 2, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, - STATE(2786), 2, + STATE(2830), 2, sym_comment, sym_include, - ACTIONS(250), 23, + ACTIONS(87), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -213950,24 +218380,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - [190698] = 6, + aux_sym_scope_tuning_token1, + [194324] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(214), 2, + ACTIONS(230), 2, sym__or_operator, sym__and_operator, - STATE(2787), 2, + STATE(2831), 2, sym_comment, sym_include, - ACTIONS(216), 24, + ACTIONS(232), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -213987,77 +218419,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - anon_sym_NO_DASHERROR, - [190742] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + [194369] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4199), 1, - aux_sym_image_phrase_token1, - ACTIONS(4203), 1, - aux_sym_size_phrase_token1, - ACTIONS(4207), 1, - aux_sym_button_tuning_token1, - ACTIONS(4213), 1, - aux_sym_button_tuning_token9, - ACTIONS(4215), 1, - aux_sym_button_tuning_token14, - ACTIONS(4221), 1, - sym__terminator, - STATE(2872), 1, - aux_sym_button_definition_repeat1, - STATE(3014), 1, - sym_button_tuning, - STATE(3019), 1, - sym_size_phrase, - ACTIONS(4195), 2, - aux_sym_type_tuning_token2, - aux_sym_button_tuning_token12, - ACTIONS(4197), 2, - aux_sym_variable_tuning_token4, - aux_sym_button_tuning_token17, - ACTIONS(4205), 2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - STATE(2788), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4178), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, + sym__additive_operator, + STATE(396), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2832), 2, sym_comment, sym_include, - ACTIONS(4201), 3, - aux_sym_image_phrase_token2, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - ACTIONS(4209), 3, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token16, - ACTIONS(4211), 5, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token13, - [190812] = 6, + ACTIONS(2409), 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, + [194432] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(214), 2, + ACTIONS(230), 2, sym__or_operator, sym__and_operator, - STATE(2789), 2, + STATE(2833), 2, sym_comment, sym_include, - ACTIONS(216), 24, + ACTIONS(232), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -214077,36 +218505,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - [190856] = 8, - ACTIONS(3), 1, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [194477] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4223), 1, - sym_identifier, - STATE(2916), 1, - sym_qualified_name, - ACTIONS(1366), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4180), 1, + aux_sym_else_statement_token1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, + sym__additive_operator, + STATE(963), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2790), 2, - sym_comment, - sym_include, - ACTIONS(1364), 22, - anon_sym_SLASH, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2834), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -214117,35 +218555,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [190904] = 8, - ACTIONS(3), 1, + [194540] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2458), 1, - sym_identifier, - STATE(32), 1, - sym_qualified_name, - ACTIONS(1366), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4182), 1, + anon_sym_RPAREN, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2791), 2, - sym_comment, - sym_include, - ACTIONS(1364), 22, - anon_sym_COLON, - anon_sym_SLASH, + ACTIONS(2405), 2, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2835), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -214156,34 +218603,44 @@ 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_on_error_phrase_token1, - [190952] = 6, - ACTIONS(3), 1, + [194603] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(138), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4184), 1, + anon_sym_LPAREN, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2792), 2, - sym_comment, - sym_include, - ACTIONS(140), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2836), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -214194,34 +218651,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_function_call_token1, - [190996] = 6, - ACTIONS(3), 1, + [194666] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(146), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(1192), 1, + aux_sym_output_stream_statement_token1, + STATE(827), 1, + sym__comparison_operator, + STATE(828), 1, + sym__multiplicative_operator, + STATE(829), 1, + sym__additive_operator, + STATE(830), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2793), 2, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2837), 2, sym_comment, sym_include, - ACTIONS(148), 24, + ACTIONS(2409), 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, + [194729] = 14, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, anon_sym_SLASH, - sym_identifier, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, + sym__additive_operator, + STATE(963), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2838), 2, + sym_comment, + sym_include, + ACTIONS(230), 3, + sym__or_operator, + sym__and_operator, + aux_sym_else_statement_token1, + ACTIONS(2409), 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, @@ -214232,34 +218746,44 @@ 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, - [191040] = 6, - ACTIONS(3), 1, + [194790] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(150), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(1125), 1, + aux_sym_output_stream_statement_token1, + STATE(827), 1, + sym__comparison_operator, + STATE(828), 1, + sym__multiplicative_operator, + STATE(829), 1, + sym__additive_operator, + STATE(830), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2794), 2, - sym_comment, - sym_include, - ACTIONS(152), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2839), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -214270,25 +218794,25 @@ 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, - [191084] = 6, + [194853] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(198), 2, + ACTIONS(178), 2, sym__or_operator, sym__and_operator, - STATE(2795), 2, + STATE(2840), 2, sym_comment, sym_include, - ACTIONS(200), 24, + ACTIONS(180), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - sym__terminator, + anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -214307,22 +218831,22 @@ 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_when_expression_token1, - anon_sym_NO_DASHERROR, - [191128] = 6, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [194898] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(226), 2, + ACTIONS(134), 2, sym__or_operator, sym__and_operator, - STATE(2796), 2, + STATE(2841), 2, sym_comment, sym_include, - ACTIONS(228), 24, + ACTIONS(136), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -214347,34 +218871,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - [191172] = 8, - ACTIONS(3), 1, + aux_sym_scope_tuning_token1, + [194943] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2458), 1, - sym_identifier, - STATE(32), 1, - sym_qualified_name, - ACTIONS(1366), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(1125), 1, + aux_sym_else_statement_token1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, + sym__additive_operator, + STATE(963), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2797), 2, - sym_comment, - sym_include, - ACTIONS(1364), 22, - anon_sym_SLASH, + ACTIONS(2405), 2, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2842), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -214385,22 +218920,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_when_expression_token1, - aux_sym_output_stream_statement_token1, - [191220] = 6, + [195006] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(244), 2, + ACTIONS(210), 2, sym__or_operator, sym__and_operator, - STATE(2798), 2, + STATE(2843), 2, sym_comment, sym_include, - ACTIONS(246), 24, + ACTIONS(212), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -214425,35 +218958,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - [191264] = 7, - ACTIONS(3), 1, + aux_sym_scope_tuning_token1, + [195051] = 14, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4226), 1, - sym__namedot, - ACTIONS(132), 2, - sym__or_operator, - sym__and_operator, - STATE(2799), 2, - sym_comment, - sym_include, - ACTIONS(134), 23, + ACTIONS(1086), 1, anon_sym_SLASH, - sym_identifier, + STATE(827), 1, + sym__comparison_operator, + STATE(828), 1, + sym__multiplicative_operator, + STATE(829), 1, + sym__additive_operator, + STATE(830), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2844), 2, + sym_comment, + sym_include, + ACTIONS(230), 3, + sym__or_operator, + sym__and_operator, + aux_sym_output_stream_statement_token1, + ACTIONS(2409), 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, @@ -214464,32 +219006,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [191310] = 6, - ACTIONS(3), 1, + [195112] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(182), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4186), 1, + sym__terminator, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2800), 2, - sym_comment, - sym_include, - ACTIONS(184), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2845), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -214500,35 +219054,44 @@ 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_when_expression_token1, - anon_sym_NO_DASHERROR, - [191354] = 6, - ACTIONS(3), 1, + [195175] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(83), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(1192), 1, + aux_sym_else_statement_token1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, + sym__additive_operator, + STATE(963), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2801), 2, - sym_comment, - sym_include, - ACTIONS(85), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2846), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -214539,34 +219102,44 @@ 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_when_expression_token1, - [191398] = 6, - ACTIONS(3), 1, + [195238] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(236), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4188), 1, + aux_sym_else_statement_token1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, + sym__additive_operator, + STATE(963), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2802), 2, - sym_comment, - sym_include, - ACTIONS(238), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2847), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -214577,34 +219150,44 @@ 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_when_expression_token1, - [191442] = 6, - ACTIONS(3), 1, + [195301] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(138), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(1208), 1, + aux_sym_else_statement_token1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, + sym__additive_operator, + STATE(963), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2803), 2, - sym_comment, - sym_include, - ACTIONS(140), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2848), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -214615,25 +219198,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_NO_DASHERROR, - [191486] = 5, + [195364] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(186), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2471), 1, + sym_identifier, + STATE(32), 1, + sym_qualified_name, + ACTIONS(1581), 2, sym__or_operator, sym__and_operator, - STATE(2804), 2, + STATE(2849), 2, sym_comment, sym_include, - ACTIONS(188), 25, + ACTIONS(1579), 23, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, anon_sym_STAR, - anon_sym_DQUOTE, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -214652,21 +219237,22 @@ 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, - [191528] = 6, + aux_sym_of_token1, + aux_sym_on_statement_token1, + [195413] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(222), 2, + ACTIONS(65), 2, sym__or_operator, sym__and_operator, - STATE(2805), 2, + STATE(2850), 2, sym_comment, sym_include, - ACTIONS(224), 24, + ACTIONS(71), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -214690,36 +219276,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [191572] = 7, - ACTIONS(3), 1, + [195458] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4228), 1, - aux_sym_function_call_token1, - ACTIONS(230), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4190), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, + sym__additive_operator, + STATE(396), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2806), 2, - sym_comment, - sym_include, - ACTIONS(232), 23, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2851), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -214730,74 +219326,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [191618] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2532), 1, - sym_identifier, - ACTIONS(2536), 1, - aux_sym_class_type_token1, - ACTIONS(2550), 1, - sym__escaped_string, - STATE(2807), 2, - sym_comment, - sym_include, - STATE(3808), 2, - sym_string_literal, - sym__type, - STATE(5223), 3, - sym_qualified_name, - sym_primitive_type, - sym_class_type, - ACTIONS(2534), 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, - [191670] = 6, - ACTIONS(3), 1, + [195521] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(154), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(1113), 1, + aux_sym_else_statement_token1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, + sym__additive_operator, + STATE(963), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2808), 2, - sym_comment, - sym_include, - ACTIONS(156), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2852), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -214808,27 +219374,22 @@ 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_when_expression_token1, - anon_sym_NO_DASHERROR, - [191714] = 8, + [195584] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4230), 1, - sym_identifier, - STATE(2976), 1, - sym_qualified_name, - ACTIONS(1366), 2, + ACTIONS(194), 2, sym__or_operator, sym__and_operator, - STATE(2809), 2, + STATE(2853), 2, sym_comment, sym_include, - ACTIONS(1364), 22, + ACTIONS(196), 25, anon_sym_SLASH, + sym_identifier, anon_sym_STAR, sym__terminator, anon_sym_PLUS, @@ -214849,33 +219410,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [191762] = 5, - ACTIONS(3), 1, + [195629] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(182), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(1200), 1, + aux_sym_else_statement_token1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, + sym__additive_operator, + STATE(963), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2810), 2, - sym_comment, - sym_include, - ACTIONS(184), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2854), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -214886,21 +219461,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_include_argument_token1, - [191804] = 6, + [195692] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(102), 2, + ACTIONS(198), 2, sym__or_operator, sym__and_operator, - STATE(2811), 2, + STATE(2855), 2, sym_comment, sym_include, - ACTIONS(104), 24, + ACTIONS(200), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -214925,76 +219499,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - [191848] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4199), 1, - aux_sym_image_phrase_token1, - ACTIONS(4203), 1, - aux_sym_size_phrase_token1, - ACTIONS(4207), 1, - aux_sym_button_tuning_token1, - ACTIONS(4213), 1, - aux_sym_button_tuning_token9, - ACTIONS(4215), 1, - aux_sym_button_tuning_token14, - ACTIONS(4233), 1, - sym__terminator, - STATE(2819), 1, - aux_sym_button_definition_repeat1, - STATE(3014), 1, - sym_button_tuning, - STATE(3019), 1, - sym_size_phrase, - ACTIONS(4195), 2, - aux_sym_type_tuning_token2, - aux_sym_button_tuning_token12, - ACTIONS(4197), 2, - aux_sym_variable_tuning_token4, - aux_sym_button_tuning_token17, - ACTIONS(4205), 2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - STATE(2812), 2, - sym_comment, - sym_include, - ACTIONS(4201), 3, - aux_sym_image_phrase_token2, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - ACTIONS(4209), 3, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token16, - ACTIONS(4211), 5, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token13, - [191918] = 6, + aux_sym_scope_tuning_token1, + [195737] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(218), 2, + ACTIONS(198), 2, sym__or_operator, sym__and_operator, - STATE(2813), 2, + STATE(2856), 2, sym_comment, sym_include, - ACTIONS(220), 24, + ACTIONS(200), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -215014,66 +219537,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - [191962] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2532), 1, - sym_identifier, - ACTIONS(2536), 1, - aux_sym_class_type_token1, - ACTIONS(2550), 1, - sym__escaped_string, - STATE(2814), 2, - sym_comment, - sym_include, - STATE(3843), 2, - sym_string_literal, - sym__type, - STATE(5223), 3, - sym_qualified_name, - sym_primitive_type, - sym_class_type, - ACTIONS(2534), 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, - [192014] = 6, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [195782] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(244), 2, + ACTIONS(194), 2, sym__or_operator, sym__and_operator, - STATE(2815), 2, + STATE(2857), 2, sym_comment, sym_include, - ACTIONS(246), 24, + ACTIONS(196), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -215093,21 +219577,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - anon_sym_NO_DASHERROR, - [192058] = 6, + aux_sym_scope_tuning_token1, + [195827] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(83), 2, + ACTIONS(202), 2, sym__or_operator, sym__and_operator, - STATE(2816), 2, + STATE(2858), 2, sym_comment, sym_include, - ACTIONS(85), 24, + ACTIONS(204), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -215131,174 +219615,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [192102] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4199), 1, - aux_sym_image_phrase_token1, - ACTIONS(4203), 1, - aux_sym_size_phrase_token1, - ACTIONS(4207), 1, - aux_sym_button_tuning_token1, - ACTIONS(4213), 1, - aux_sym_button_tuning_token9, - ACTIONS(4215), 1, - aux_sym_button_tuning_token14, - ACTIONS(4235), 1, - sym__terminator, - STATE(2872), 1, - aux_sym_button_definition_repeat1, - STATE(3014), 1, - sym_button_tuning, - STATE(3019), 1, - sym_size_phrase, - ACTIONS(4195), 2, - aux_sym_type_tuning_token2, - aux_sym_button_tuning_token12, - ACTIONS(4197), 2, - aux_sym_variable_tuning_token4, - aux_sym_button_tuning_token17, - ACTIONS(4205), 2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - STATE(2817), 2, - sym_comment, - sym_include, - ACTIONS(4201), 3, - aux_sym_image_phrase_token2, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - ACTIONS(4209), 3, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token16, - ACTIONS(4211), 5, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token13, - [192172] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4199), 1, - aux_sym_image_phrase_token1, - ACTIONS(4203), 1, - aux_sym_size_phrase_token1, - ACTIONS(4207), 1, - aux_sym_button_tuning_token1, - ACTIONS(4213), 1, - aux_sym_button_tuning_token9, - ACTIONS(4215), 1, - aux_sym_button_tuning_token14, - ACTIONS(4237), 1, - sym__terminator, - STATE(2872), 1, - aux_sym_button_definition_repeat1, - STATE(3014), 1, - sym_button_tuning, - STATE(3019), 1, - sym_size_phrase, - ACTIONS(4195), 2, - aux_sym_type_tuning_token2, - aux_sym_button_tuning_token12, - ACTIONS(4197), 2, - aux_sym_variable_tuning_token4, - aux_sym_button_tuning_token17, - ACTIONS(4205), 2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - STATE(2818), 2, - sym_comment, - sym_include, - ACTIONS(4201), 3, - aux_sym_image_phrase_token2, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - ACTIONS(4209), 3, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token16, - ACTIONS(4211), 5, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token13, - [192242] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4199), 1, - aux_sym_image_phrase_token1, - ACTIONS(4203), 1, - aux_sym_size_phrase_token1, - ACTIONS(4207), 1, - aux_sym_button_tuning_token1, - ACTIONS(4213), 1, - aux_sym_button_tuning_token9, - ACTIONS(4215), 1, - aux_sym_button_tuning_token14, - ACTIONS(4239), 1, - sym__terminator, - STATE(2872), 1, - aux_sym_button_definition_repeat1, - STATE(3014), 1, - sym_button_tuning, - STATE(3019), 1, - sym_size_phrase, - ACTIONS(4195), 2, - aux_sym_type_tuning_token2, - aux_sym_button_tuning_token12, - ACTIONS(4197), 2, - aux_sym_variable_tuning_token4, - aux_sym_button_tuning_token17, - ACTIONS(4205), 2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - STATE(2819), 2, - sym_comment, - sym_include, - ACTIONS(4201), 3, - aux_sym_image_phrase_token2, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - ACTIONS(4209), 3, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token16, - ACTIONS(4211), 5, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token13, - [192312] = 6, + [195872] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(186), 2, - sym__or_operator, - sym__and_operator, - STATE(2820), 2, + STATE(2859), 2, sym_comment, sym_include, - ACTIONS(188), 24, + ACTIONS(108), 3, + sym__namedot, + sym__or_operator, + sym__and_operator, + ACTIONS(110), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -215322,72 +219655,69 @@ 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_when_expression_token1, - [192356] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + [195917] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4199), 1, - aux_sym_image_phrase_token1, - ACTIONS(4203), 1, - aux_sym_size_phrase_token1, - ACTIONS(4207), 1, - aux_sym_button_tuning_token1, - ACTIONS(4213), 1, - aux_sym_button_tuning_token9, - ACTIONS(4215), 1, - aux_sym_button_tuning_token14, - ACTIONS(4241), 1, - sym__terminator, - STATE(2872), 1, - aux_sym_button_definition_repeat1, - STATE(3014), 1, - sym_button_tuning, - STATE(3019), 1, - sym_size_phrase, - ACTIONS(4195), 2, - aux_sym_type_tuning_token2, - aux_sym_button_tuning_token12, - ACTIONS(4197), 2, - aux_sym_variable_tuning_token4, - aux_sym_button_tuning_token17, - ACTIONS(4205), 2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - STATE(2821), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4192), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, + sym__additive_operator, + STATE(396), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2860), 2, sym_comment, sym_include, - ACTIONS(4201), 3, - aux_sym_image_phrase_token2, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - ACTIONS(4209), 3, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token16, - ACTIONS(4211), 5, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token13, - [192426] = 6, + ACTIONS(2409), 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, + [195980] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(158), 2, + ACTIONS(134), 2, sym__or_operator, sym__and_operator, - STATE(2822), 2, + STATE(2861), 2, sym_comment, sym_include, - ACTIONS(160), 24, + ACTIONS(136), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -215411,33 +219741,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [192470] = 6, - ACTIONS(3), 1, + [196025] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(236), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(1117), 1, + aux_sym_else_statement_token1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, + sym__additive_operator, + STATE(963), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2823), 2, - sym_comment, - sym_include, - ACTIONS(238), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2862), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -215448,24 +219791,63 @@ 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_when_expression_token1, - anon_sym_NO_DASHERROR, - [192514] = 6, + [196088] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4196), 1, + sym__escaped_string, + STATE(2863), 2, + sym_comment, + sym_include, + ACTIONS(4194), 27, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_expression_token1, + aux_sym_input_expression_token1, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_case_conditon_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [196131] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(206), 2, + ACTIONS(4198), 1, + sym_identifier, + STATE(3006), 1, + sym_qualified_name, + ACTIONS(1581), 2, sym__or_operator, sym__and_operator, - STATE(2824), 2, + STATE(2864), 2, sym_comment, sym_include, - ACTIONS(208), 24, + ACTIONS(1579), 23, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, sym__terminator, anon_sym_COMMA, @@ -215487,77 +219869,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_when_expression_token1, - [192558] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4199), 1, - aux_sym_image_phrase_token1, - ACTIONS(4203), 1, - aux_sym_size_phrase_token1, - ACTIONS(4207), 1, - aux_sym_button_tuning_token1, - ACTIONS(4213), 1, - aux_sym_button_tuning_token9, - ACTIONS(4215), 1, - aux_sym_button_tuning_token14, - ACTIONS(4243), 1, - sym__terminator, - STATE(2818), 1, - aux_sym_button_definition_repeat1, - STATE(3014), 1, - sym_button_tuning, - STATE(3019), 1, - sym_size_phrase, - ACTIONS(4195), 2, - aux_sym_type_tuning_token2, - aux_sym_button_tuning_token12, - ACTIONS(4197), 2, - aux_sym_variable_tuning_token4, - aux_sym_button_tuning_token17, - ACTIONS(4205), 2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - STATE(2825), 2, - sym_comment, - sym_include, - ACTIONS(4201), 3, - aux_sym_image_phrase_token2, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - ACTIONS(4209), 3, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token16, - ACTIONS(4211), 5, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token13, - [192628] = 6, + aux_sym_scope_tuning_token1, + [196180] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(202), 2, + ACTIONS(210), 2, sym__or_operator, sym__and_operator, - STATE(2826), 2, + STATE(2865), 2, sym_comment, sym_include, - ACTIONS(204), 24, + ACTIONS(212), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -215577,66 +219907,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - [192672] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2532), 1, - sym_identifier, - ACTIONS(2536), 1, - aux_sym_class_type_token1, - ACTIONS(2550), 1, - sym__escaped_string, - STATE(2827), 2, - sym_comment, - sym_include, - STATE(3829), 2, - sym_string_literal, - sym__type, - STATE(5223), 3, - sym_qualified_name, - sym_primitive_type, - sym_class_type, - ACTIONS(2534), 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, - [192724] = 6, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [196225] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(146), 2, + ACTIONS(182), 2, sym__or_operator, sym__and_operator, - STATE(2828), 2, + STATE(2866), 2, sym_comment, sym_include, - ACTIONS(148), 24, + ACTIONS(184), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -215655,34 +219946,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_function_call_token1, - anon_sym_NO_DASHERROR, - [192768] = 6, - ACTIONS(3), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [196270] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(150), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(1196), 1, + aux_sym_else_statement_token1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, + sym__additive_operator, + STATE(963), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2829), 2, - sym_comment, - sym_include, - ACTIONS(152), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2867), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -215693,38 +219996,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_function_call_token1, - anon_sym_NO_DASHERROR, - [192812] = 9, - ACTIONS(3), 1, + [196333] = 12, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(4245), 1, - aux_sym_input_expression_token2, - STATE(22), 1, - sym_qualified_name, - ACTIONS(1351), 2, - sym__or_operator, - sym__and_operator, - STATE(2830), 2, - sym_comment, - sym_include, - ACTIONS(1347), 21, + ACTIONS(1086), 1, anon_sym_SLASH, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, + sym__additive_operator, + STATE(963), 1, + sym__logical_operator, + ACTIONS(1119), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2405), 2, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + STATE(2868), 2, + sym_comment, + sym_include, + ACTIONS(1121), 18, + sym__or_operator, + sym__and_operator, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_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, @@ -215735,25 +220040,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_if_statement_token2, - [192862] = 6, + aux_sym_else_statement_token1, + [196390] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(240), 2, + ACTIONS(123), 2, sym__or_operator, sym__and_operator, - STATE(2831), 2, + STATE(2869), 2, sym_comment, sym_include, - ACTIONS(242), 24, + ACTIONS(125), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -215773,25 +220079,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - anon_sym_NO_DASHERROR, - [192906] = 6, + aux_sym_scope_tuning_token1, + [196435] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(138), 2, + ACTIONS(174), 2, sym__or_operator, sym__and_operator, - STATE(2832), 2, + STATE(2870), 2, sym_comment, sym_include, - ACTIONS(140), 24, + ACTIONS(176), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -215810,34 +220117,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_function_call_token1, - anon_sym_NO_DASHERROR, - [192950] = 5, - ACTIONS(3), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [196480] = 10, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(240), 2, - sym__or_operator, - sym__and_operator, - STATE(2833), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, + sym__additive_operator, + STATE(963), 1, + sym__logical_operator, + STATE(2871), 2, sym_comment, sym_include, - ACTIONS(242), 25, + ACTIONS(1214), 3, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1216), 20, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_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, @@ -215848,25 +220161,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_include_argument_token1, - [192992] = 6, + aux_sym_else_statement_token1, + [196533] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(102), 2, + ACTIONS(214), 2, sym__or_operator, sym__and_operator, - STATE(2834), 2, + STATE(2872), 2, sym_comment, sym_include, - ACTIONS(104), 24, + ACTIONS(216), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -215886,21 +220200,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - anon_sym_NO_DASHERROR, - [193036] = 6, + aux_sym_scope_tuning_token1, + [196578] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(190), 2, + ACTIONS(186), 2, sym__or_operator, sym__and_operator, - STATE(2835), 2, + STATE(2873), 2, sym_comment, sym_include, - ACTIONS(192), 24, + ACTIONS(188), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -215925,24 +220239,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - [193080] = 6, + aux_sym_scope_tuning_token1, + [196623] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(226), 2, + ACTIONS(190), 2, sym__or_operator, sym__and_operator, - STATE(2836), 2, + STATE(2874), 2, sym_comment, sym_include, - ACTIONS(228), 24, + ACTIONS(192), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -215962,85 +220278,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - anon_sym_NO_DASHERROR, - [193124] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + [196668] = 15, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4199), 1, - aux_sym_image_phrase_token1, - ACTIONS(4203), 1, - aux_sym_size_phrase_token1, - ACTIONS(4207), 1, - aux_sym_button_tuning_token1, - ACTIONS(4213), 1, - aux_sym_button_tuning_token9, - ACTIONS(4215), 1, - aux_sym_button_tuning_token14, - ACTIONS(4247), 1, - sym__terminator, - STATE(2788), 1, - aux_sym_button_definition_repeat1, - STATE(3014), 1, - sym_button_tuning, - STATE(3019), 1, - sym_size_phrase, - ACTIONS(4195), 2, - aux_sym_type_tuning_token2, - aux_sym_button_tuning_token12, - ACTIONS(4197), 2, - aux_sym_variable_tuning_token4, - aux_sym_button_tuning_token17, - ACTIONS(4205), 2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - STATE(2837), 2, - sym_comment, - sym_include, - ACTIONS(4201), 3, - aux_sym_image_phrase_token2, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - ACTIONS(4209), 3, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token16, - ACTIONS(4211), 5, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token13, - [193194] = 6, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(106), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4201), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, + sym__additive_operator, + STATE(396), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2838), 2, - sym_comment, - sym_include, - ACTIONS(108), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2875), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -216051,72 +220327,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_when_expression_token1, - [193238] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4199), 1, - aux_sym_image_phrase_token1, - ACTIONS(4203), 1, - aux_sym_size_phrase_token1, - ACTIONS(4207), 1, - aux_sym_button_tuning_token1, - ACTIONS(4213), 1, - aux_sym_button_tuning_token9, - ACTIONS(4215), 1, - aux_sym_button_tuning_token14, - ACTIONS(4249), 1, - sym__terminator, - STATE(2821), 1, - aux_sym_button_definition_repeat1, - STATE(3014), 1, - sym_button_tuning, - STATE(3019), 1, - sym_size_phrase, - ACTIONS(4195), 2, - aux_sym_type_tuning_token2, - aux_sym_button_tuning_token12, - ACTIONS(4197), 2, - aux_sym_variable_tuning_token4, - aux_sym_button_tuning_token17, - ACTIONS(4205), 2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - STATE(2839), 2, - sym_comment, - sym_include, - ACTIONS(4201), 3, - aux_sym_image_phrase_token2, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - ACTIONS(4209), 3, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token16, - ACTIONS(4211), 5, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token13, - [193308] = 6, + [196731] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(178), 2, + ACTIONS(218), 2, sym__or_operator, sym__and_operator, - STATE(2840), 2, + STATE(2876), 2, sym_comment, sym_include, - ACTIONS(180), 24, + ACTIONS(220), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -216141,71 +220365,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - [193352] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4199), 1, - aux_sym_image_phrase_token1, - ACTIONS(4203), 1, - aux_sym_size_phrase_token1, - ACTIONS(4207), 1, - aux_sym_button_tuning_token1, - ACTIONS(4213), 1, - aux_sym_button_tuning_token9, - ACTIONS(4215), 1, - aux_sym_button_tuning_token14, - ACTIONS(4251), 1, - sym__terminator, - STATE(2777), 1, - aux_sym_button_definition_repeat1, - STATE(3014), 1, - sym_button_tuning, - STATE(3019), 1, - sym_size_phrase, - ACTIONS(4195), 2, - aux_sym_type_tuning_token2, - aux_sym_button_tuning_token12, - ACTIONS(4197), 2, - aux_sym_variable_tuning_token4, - aux_sym_button_tuning_token17, - ACTIONS(4205), 2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - STATE(2841), 2, - sym_comment, - sym_include, - ACTIONS(4201), 3, - aux_sym_image_phrase_token2, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - ACTIONS(4209), 3, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token16, - ACTIONS(4211), 5, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token13, - [193422] = 6, + aux_sym_scope_tuning_token1, + [196776] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(170), 2, + ACTIONS(222), 2, sym__or_operator, sym__and_operator, - STATE(2842), 2, + STATE(2877), 2, sym_comment, sym_include, - ACTIONS(172), 24, + ACTIONS(224), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -216230,20 +220404,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - [193466] = 6, + aux_sym_scope_tuning_token1, + [196821] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(166), 2, + ACTIONS(226), 2, sym__or_operator, sym__and_operator, - STATE(2843), 2, + STATE(2878), 2, sym_comment, sym_include, - ACTIONS(168), 24, + ACTIONS(228), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -216268,20 +220443,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - [193510] = 6, + aux_sym_scope_tuning_token1, + [196866] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(162), 2, + ACTIONS(234), 2, sym__or_operator, sym__and_operator, - STATE(2844), 2, + STATE(2879), 2, sym_comment, sym_include, - ACTIONS(164), 24, + ACTIONS(236), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -216306,76 +220482,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, - [193554] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4199), 1, - aux_sym_image_phrase_token1, - ACTIONS(4203), 1, - aux_sym_size_phrase_token1, - ACTIONS(4207), 1, - aux_sym_button_tuning_token1, - ACTIONS(4213), 1, - aux_sym_button_tuning_token9, - ACTIONS(4215), 1, - aux_sym_button_tuning_token14, - ACTIONS(4253), 1, - sym__terminator, - STATE(2851), 1, - aux_sym_button_definition_repeat1, - STATE(3014), 1, - sym_button_tuning, - STATE(3019), 1, - sym_size_phrase, - ACTIONS(4195), 2, - aux_sym_type_tuning_token2, - aux_sym_button_tuning_token12, - ACTIONS(4197), 2, - aux_sym_variable_tuning_token4, - aux_sym_button_tuning_token17, - ACTIONS(4205), 2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - STATE(2845), 2, - sym_comment, - sym_include, - ACTIONS(4201), 3, - aux_sym_image_phrase_token2, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - ACTIONS(4209), 3, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token16, - ACTIONS(4211), 5, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token13, - [193624] = 6, + aux_sym_scope_tuning_token1, + [196911] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(158), 2, + ACTIONS(234), 2, sym__or_operator, sym__and_operator, - STATE(2846), 2, + STATE(2880), 2, sym_comment, sym_include, - ACTIONS(160), 24, + ACTIONS(236), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - sym__terminator, anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -216394,26 +220520,27 @@ 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_when_expression_token1, - [193668] = 6, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [196956] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(154), 2, + ACTIONS(194), 2, sym__or_operator, sym__and_operator, - STATE(2847), 2, + STATE(2881), 2, sym_comment, sym_include, - ACTIONS(156), 24, + ACTIONS(196), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - sym__terminator, anon_sym_COMMA, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -216432,34 +220559,46 @@ 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_when_expression_token1, - [193712] = 6, - ACTIONS(3), 1, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [197001] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(222), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4203), 1, + aux_sym_else_statement_token1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, + sym__additive_operator, + STATE(963), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2848), 2, - sym_comment, - sym_include, - ACTIONS(224), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2882), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -216470,34 +220609,44 @@ 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_when_expression_token1, - [193756] = 6, - ACTIONS(3), 1, + [197064] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(194), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4205), 1, + anon_sym_LPAREN, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2849), 2, - sym_comment, - sym_include, - ACTIONS(196), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2883), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -216508,33 +220657,44 @@ 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_when_expression_token1, - [193800] = 5, - ACTIONS(3), 1, + [197127] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(226), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(1204), 1, + aux_sym_else_statement_token1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, + sym__additive_operator, + STATE(963), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2850), 2, - sym_comment, - sym_include, - ACTIONS(228), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2884), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -216545,76 +220705,73 @@ 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, - [193842] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [197190] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4199), 1, - aux_sym_image_phrase_token1, - ACTIONS(4203), 1, - aux_sym_size_phrase_token1, + ACTIONS(1086), 1, + anon_sym_SLASH, ACTIONS(4207), 1, - aux_sym_button_tuning_token1, - ACTIONS(4213), 1, - aux_sym_button_tuning_token9, - ACTIONS(4215), 1, - aux_sym_button_tuning_token14, - ACTIONS(4255), 1, - sym__terminator, - STATE(2872), 1, - aux_sym_button_definition_repeat1, - STATE(3014), 1, - sym_button_tuning, - STATE(3019), 1, - sym_size_phrase, - ACTIONS(4195), 2, - aux_sym_type_tuning_token2, - aux_sym_button_tuning_token12, - ACTIONS(4197), 2, - aux_sym_variable_tuning_token4, - aux_sym_button_tuning_token17, - ACTIONS(4205), 2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - STATE(2851), 2, + aux_sym_else_statement_token1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, + sym__additive_operator, + STATE(963), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2885), 2, sym_comment, sym_include, - ACTIONS(4201), 3, - aux_sym_image_phrase_token2, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - ACTIONS(4209), 3, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token16, - ACTIONS(4211), 5, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token13, - [193912] = 5, + ACTIONS(2409), 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, + [197253] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(63), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(150), 2, sym__or_operator, sym__and_operator, - STATE(2852), 2, + STATE(2886), 2, sym_comment, sym_include, - ACTIONS(69), 25, + ACTIONS(152), 25, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - anon_sym_DQUOTE, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -216633,33 +220790,106 @@ 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, - [193954] = 5, - ACTIONS(3), 1, + aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, + [197298] = 27, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(174), 2, - sym__or_operator, - sym__and_operator, - STATE(2853), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(3017), 1, + sym_of, + STATE(3046), 1, + sym__pre_tuning, + STATE(3141), 1, + sym_where_clause, + STATE(3149), 1, + aux_sym_for_phrase_repeat1, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3544), 1, + aux_sym_for_phrase_repeat2, + STATE(4178), 1, + sym_on_error_phrase, + STATE(4314), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(5017), 1, + aux_sym_for_statement_repeat1, + STATE(5040), 1, + sym_on_stop_phrase, + STATE(6108), 1, + sym_body, + STATE(2887), 2, sym_comment, sym_include, - ACTIONS(176), 25, - anon_sym_SLASH, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [197385] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4209), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, + sym__additive_operator, + STATE(396), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2888), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -216670,21 +220900,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_include_argument_token1, - [193996] = 6, + [197448] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(218), 2, + ACTIONS(234), 2, sym__or_operator, sym__and_operator, - STATE(2854), 2, + STATE(2889), 2, sym_comment, sym_include, - ACTIONS(220), 24, + ACTIONS(236), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -216708,33 +220937,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [194040] = 6, - ACTIONS(3), 1, + [197493] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(162), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4211), 1, + aux_sym_else_statement_token1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, + sym__additive_operator, + STATE(963), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2855), 2, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2890), 2, sym_comment, sym_include, - ACTIONS(164), 24, + ACTIONS(2409), 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, + [197556] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, anon_sym_SLASH, - sym_identifier, + ACTIONS(4213), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, + sym__additive_operator, + STATE(396), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2891), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -216745,22 +221035,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_when_expression_token1, - anon_sym_NO_DASHERROR, - [194084] = 6, + [197619] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(132), 2, - sym__or_operator, - sym__and_operator, - STATE(2856), 2, + STATE(2892), 2, sym_comment, sym_include, - ACTIONS(134), 24, + ACTIONS(166), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(168), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -216784,33 +221073,45 @@ 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_when_expression_token1, - [194128] = 5, - ACTIONS(3), 1, + aux_sym_scope_tuning_token1, + [197664] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(214), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4215), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, + sym__additive_operator, + STATE(396), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2857), 2, - sym_comment, - sym_include, - ACTIONS(216), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2893), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -216821,33 +221122,44 @@ 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, - [194170] = 6, - ACTIONS(3), 1, + [197727] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(166), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4217), 1, + aux_sym_else_statement_token1, + STATE(960), 1, + sym__comparison_operator, + STATE(961), 1, + sym__multiplicative_operator, + STATE(962), 1, + sym__additive_operator, + STATE(963), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2858), 2, - sym_comment, - sym_include, - ACTIONS(168), 24, - anon_sym_SLASH, - sym_identifier, + ACTIONS(2405), 2, anon_sym_STAR, - sym__terminator, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2894), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -216858,89 +221170,92 @@ 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_when_expression_token1, - anon_sym_NO_DASHERROR, - [194214] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [197790] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4199), 1, - aux_sym_image_phrase_token1, - ACTIONS(4203), 1, - aux_sym_size_phrase_token1, - ACTIONS(4207), 1, - aux_sym_button_tuning_token1, - ACTIONS(4213), 1, - aux_sym_button_tuning_token9, - ACTIONS(4215), 1, - aux_sym_button_tuning_token14, - ACTIONS(4257), 1, - sym__terminator, - STATE(2872), 1, - aux_sym_button_definition_repeat1, - STATE(3014), 1, - sym_button_tuning, - STATE(3019), 1, - sym_size_phrase, - ACTIONS(4195), 2, - aux_sym_type_tuning_token2, - aux_sym_button_tuning_token12, - ACTIONS(4197), 2, - aux_sym_variable_tuning_token4, - aux_sym_button_tuning_token17, - ACTIONS(4205), 2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - STATE(2859), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4219), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, + sym__additive_operator, + STATE(396), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2895), 2, sym_comment, sym_include, - ACTIONS(4201), 3, - aux_sym_image_phrase_token2, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - ACTIONS(4209), 3, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token16, - ACTIONS(4211), 5, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token13, - [194284] = 9, - ACTIONS(3), 1, + ACTIONS(2409), 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, + [197853] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(4259), 1, - aux_sym_input_expression_token2, - STATE(22), 1, - sym_qualified_name, - ACTIONS(1351), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4221), 1, + anon_sym_RPAREN, + STATE(492), 1, + sym__comparison_operator, + STATE(494), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__additive_operator, + STATE(510), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, sym__or_operator, sym__and_operator, - STATE(2860), 2, - sym_comment, - sym_include, - ACTIONS(1347), 21, - anon_sym_SLASH, + ACTIONS(2405), 2, anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym__multiplicative_operator_token1, - anon_sym_LT, + STATE(2896), 2, + sym_comment, + sym_include, + ACTIONS(2409), 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, @@ -216951,23 +221266,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_else_statement_token1, - [194334] = 6, + [197916] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(170), 2, + ACTIONS(4223), 1, + sym_identifier, + STATE(2953), 1, + sym_qualified_name, + ACTIONS(1581), 2, sym__or_operator, sym__and_operator, - STATE(2861), 2, + STATE(2897), 2, sym_comment, sym_include, - ACTIONS(172), 24, + ACTIONS(1579), 23, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, sym__terminator, anon_sym_PLUS, @@ -216988,230 +221305,74 @@ 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_when_expression_token1, + aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [194378] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4199), 1, - aux_sym_image_phrase_token1, - ACTIONS(4203), 1, - aux_sym_size_phrase_token1, - ACTIONS(4207), 1, - aux_sym_button_tuning_token1, - ACTIONS(4213), 1, - aux_sym_button_tuning_token9, - ACTIONS(4215), 1, - aux_sym_button_tuning_token14, - ACTIONS(4261), 1, - sym__terminator, - STATE(2817), 1, - aux_sym_button_definition_repeat1, - STATE(3014), 1, - sym_button_tuning, - STATE(3019), 1, - sym_size_phrase, - ACTIONS(4195), 2, - aux_sym_type_tuning_token2, - aux_sym_button_tuning_token12, - ACTIONS(4197), 2, - aux_sym_variable_tuning_token4, - aux_sym_button_tuning_token17, - ACTIONS(4205), 2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - STATE(2862), 2, - sym_comment, - sym_include, - ACTIONS(4201), 3, - aux_sym_image_phrase_token2, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - ACTIONS(4209), 3, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token16, - ACTIONS(4211), 5, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token13, - [194448] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4199), 1, - aux_sym_image_phrase_token1, - ACTIONS(4203), 1, - aux_sym_size_phrase_token1, - ACTIONS(4207), 1, - aux_sym_button_tuning_token1, - ACTIONS(4213), 1, - aux_sym_button_tuning_token9, - ACTIONS(4215), 1, - aux_sym_button_tuning_token14, - ACTIONS(4263), 1, - sym__terminator, - STATE(2872), 1, - aux_sym_button_definition_repeat1, - STATE(3014), 1, - sym_button_tuning, - STATE(3019), 1, - sym_size_phrase, - ACTIONS(4195), 2, - aux_sym_type_tuning_token2, - aux_sym_button_tuning_token12, - ACTIONS(4197), 2, - aux_sym_variable_tuning_token4, - aux_sym_button_tuning_token17, - ACTIONS(4205), 2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - STATE(2863), 2, - sym_comment, - sym_include, - ACTIONS(4201), 3, - aux_sym_image_phrase_token2, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - ACTIONS(4209), 3, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token16, - ACTIONS(4211), 5, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token13, - [194518] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [197965] = 15, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4199), 1, - aux_sym_image_phrase_token1, - ACTIONS(4203), 1, - aux_sym_size_phrase_token1, - ACTIONS(4207), 1, - aux_sym_button_tuning_token1, - ACTIONS(4213), 1, - aux_sym_button_tuning_token9, - ACTIONS(4215), 1, - aux_sym_button_tuning_token14, - ACTIONS(4265), 1, - sym__terminator, - STATE(2859), 1, - aux_sym_button_definition_repeat1, - STATE(3014), 1, - sym_button_tuning, - STATE(3019), 1, - sym_size_phrase, - ACTIONS(4195), 2, - aux_sym_type_tuning_token2, - aux_sym_button_tuning_token12, - ACTIONS(4197), 2, - aux_sym_variable_tuning_token4, - aux_sym_button_tuning_token17, - ACTIONS(4205), 2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - STATE(2864), 2, - sym_comment, - sym_include, - ACTIONS(4201), 3, - aux_sym_image_phrase_token2, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - ACTIONS(4209), 3, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token16, - ACTIONS(4211), 5, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token13, - [194588] = 19, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4199), 1, - aux_sym_image_phrase_token1, - ACTIONS(4203), 1, - aux_sym_size_phrase_token1, - ACTIONS(4207), 1, - aux_sym_button_tuning_token1, - ACTIONS(4213), 1, - aux_sym_button_tuning_token9, - ACTIONS(4215), 1, - aux_sym_button_tuning_token14, - ACTIONS(4267), 1, - sym__terminator, - STATE(2867), 1, - aux_sym_button_definition_repeat1, - STATE(3014), 1, - sym_button_tuning, - STATE(3019), 1, - sym_size_phrase, - ACTIONS(4195), 2, - aux_sym_type_tuning_token2, - aux_sym_button_tuning_token12, - ACTIONS(4197), 2, - aux_sym_variable_tuning_token4, - aux_sym_button_tuning_token17, - ACTIONS(4205), 2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - STATE(2865), 2, + ACTIONS(1086), 1, + anon_sym_SLASH, + ACTIONS(4226), 1, + aux_sym_if_statement_token2, + STATE(393), 1, + sym__comparison_operator, + STATE(394), 1, + sym__multiplicative_operator, + STATE(395), 1, + sym__additive_operator, + STATE(396), 1, + sym__logical_operator, + ACTIONS(1090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1094), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(2405), 2, + anon_sym_STAR, + aux_sym__multiplicative_operator_token1, + ACTIONS(2407), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2898), 2, sym_comment, sym_include, - ACTIONS(4201), 3, - aux_sym_image_phrase_token2, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - ACTIONS(4209), 3, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token16, - ACTIONS(4211), 5, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token13, - [194658] = 5, + ACTIONS(2409), 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, + [198028] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(244), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(222), 2, sym__or_operator, sym__and_operator, - STATE(2866), 2, + STATE(2899), 2, sym_comment, sym_include, - ACTIONS(246), 25, + ACTIONS(224), 24, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - anon_sym_DQUOTE, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -217230,59 +221391,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_include_argument_token1, - [194700] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [198072] = 19, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4199), 1, + ACTIONS(4228), 1, + sym__terminator, + ACTIONS(4234), 1, aux_sym_image_phrase_token1, - ACTIONS(4203), 1, + ACTIONS(4238), 1, aux_sym_size_phrase_token1, - ACTIONS(4207), 1, + ACTIONS(4242), 1, aux_sym_button_tuning_token1, - ACTIONS(4213), 1, + ACTIONS(4248), 1, aux_sym_button_tuning_token9, - ACTIONS(4215), 1, + ACTIONS(4250), 1, aux_sym_button_tuning_token14, - ACTIONS(4269), 1, - sym__terminator, - STATE(2872), 1, + STATE(2964), 1, aux_sym_button_definition_repeat1, - STATE(3014), 1, + STATE(3063), 1, sym_button_tuning, - STATE(3019), 1, + STATE(3066), 1, sym_size_phrase, - ACTIONS(4195), 2, + ACTIONS(4230), 2, aux_sym_type_tuning_token2, aux_sym_button_tuning_token12, - ACTIONS(4197), 2, + ACTIONS(4232), 2, aux_sym_variable_tuning_token4, aux_sym_button_tuning_token17, - ACTIONS(4205), 2, + ACTIONS(4240), 2, aux_sym_size_phrase_token2, aux_sym_size_phrase_token3, - STATE(2867), 2, + STATE(2900), 2, sym_comment, sym_include, - ACTIONS(4201), 3, + ACTIONS(4236), 3, aux_sym_image_phrase_token2, aux_sym_button_tuning_token10, aux_sym_button_tuning_token11, - ACTIONS(4209), 3, + ACTIONS(4244), 3, aux_sym_button_tuning_token3, aux_sym_button_tuning_token7, aux_sym_button_tuning_token16, - ACTIONS(4211), 5, + ACTIONS(4246), 5, aux_sym_button_tuning_token4, aux_sym_button_tuning_token5, aux_sym_button_tuning_token6, aux_sym_button_tuning_token8, aux_sym_button_tuning_token13, - [194770] = 6, + [198142] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -217292,7 +221454,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(178), 2, sym__or_operator, sym__and_operator, - STATE(2868), 2, + STATE(2901), 2, sym_comment, sym_include, ACTIONS(180), 24, @@ -217318,20 +221480,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [194814] = 5, + [198186] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(83), 2, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, - STATE(2869), 2, + STATE(2902), 2, sym_comment, sym_include, - ACTIONS(85), 25, + ACTIONS(87), 25, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -217357,18 +221519,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [194856] = 5, + [198228] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(236), 2, + ACTIONS(230), 2, sym__or_operator, sym__and_operator, - STATE(2870), 2, + STATE(2903), 2, sym_comment, sym_include, - ACTIONS(238), 25, + ACTIONS(232), 25, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -217394,27 +221556,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [194898] = 7, + [198270] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4271), 1, - anon_sym_NO_DASHERROR, - ACTIONS(248), 2, + ACTIONS(170), 2, sym__or_operator, sym__and_operator, - STATE(2871), 2, + STATE(2904), 2, sym_comment, sym_include, - ACTIONS(250), 23, + ACTIONS(172), 25, anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -217433,117 +221592,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [194944] = 18, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4273), 1, - sym__terminator, - ACTIONS(4281), 1, - aux_sym_image_phrase_token1, - ACTIONS(4287), 1, - aux_sym_size_phrase_token1, - ACTIONS(4293), 1, - aux_sym_button_tuning_token1, - ACTIONS(4302), 1, - aux_sym_button_tuning_token9, - ACTIONS(4305), 1, - aux_sym_button_tuning_token14, - STATE(3014), 1, - sym_button_tuning, - STATE(3019), 1, - sym_size_phrase, - ACTIONS(4275), 2, - aux_sym_type_tuning_token2, - aux_sym_button_tuning_token12, - ACTIONS(4278), 2, - aux_sym_variable_tuning_token4, - aux_sym_button_tuning_token17, - ACTIONS(4290), 2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - ACTIONS(4284), 3, - aux_sym_image_phrase_token2, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - ACTIONS(4296), 3, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token16, - STATE(2872), 3, - sym_comment, - sym_include, - aux_sym_button_definition_repeat1, - ACTIONS(4299), 5, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token13, - [195012] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2532), 1, - sym_identifier, - ACTIONS(2536), 1, - aux_sym_class_type_token1, - ACTIONS(2550), 1, - sym__escaped_string, - STATE(2873), 2, - sym_comment, - sym_include, - STATE(3838), 2, - sym_string_literal, - sym__type, - STATE(5223), 3, - sym_qualified_name, - sym_primitive_type, - sym_class_type, - ACTIONS(2534), 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, - [195064] = 6, + aux_sym_include_argument_token1, + [198312] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2874), 2, - sym_comment, - sym_include, - ACTIONS(117), 3, - sym__namedot, + ACTIONS(206), 2, sym__or_operator, sym__and_operator, - ACTIONS(119), 23, + STATE(2905), 2, + sym_comment, + sym_include, + ACTIONS(208), 25, anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - sym__terminator, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -217562,19 +221629,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_NO_DASHERROR, - [195108] = 5, + aux_sym_include_argument_token1, + [198354] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(132), 2, + ACTIONS(65), 2, sym__or_operator, sym__and_operator, - STATE(2875), 2, + STATE(2906), 2, sym_comment, sym_include, - ACTIONS(134), 25, + ACTIONS(71), 25, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -217600,22 +221667,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [195150] = 7, + [198396] = 19, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + aux_sym_image_phrase_token1, + ACTIONS(4238), 1, + aux_sym_size_phrase_token1, + ACTIONS(4242), 1, + aux_sym_button_tuning_token1, + ACTIONS(4248), 1, + aux_sym_button_tuning_token9, + ACTIONS(4250), 1, + aux_sym_button_tuning_token14, + ACTIONS(4252), 1, + sym__terminator, + STATE(2974), 1, + aux_sym_button_definition_repeat1, + STATE(3063), 1, + sym_button_tuning, + STATE(3066), 1, + sym_size_phrase, + ACTIONS(4230), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4232), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4240), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2907), 2, + sym_comment, + sym_include, + ACTIONS(4236), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4244), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4246), 5, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token13, + [198466] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4308), 1, - sym__namedot, - ACTIONS(132), 2, + ACTIONS(134), 2, sym__or_operator, sym__and_operator, - STATE(2876), 2, + STATE(2908), 2, sym_comment, sym_include, - ACTIONS(134), 23, + ACTIONS(136), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -217638,21 +221754,22 @@ 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, anon_sym_NO_DASHERROR, - [195196] = 6, + [198510] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(106), 2, + ACTIONS(210), 2, sym__or_operator, sym__and_operator, - STATE(2877), 2, + STATE(2909), 2, sym_comment, sym_include, - ACTIONS(108), 24, + ACTIONS(212), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -217675,26 +221792,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_when_expression_token1, + aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [195240] = 6, + [198554] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(210), 2, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(4254), 1, + aux_sym_input_expression_token2, + STATE(28), 1, + sym_qualified_name, + ACTIONS(1358), 2, sym__or_operator, sym__and_operator, - STATE(2878), 2, + STATE(2910), 2, sym_comment, sym_include, - ACTIONS(212), 24, + ACTIONS(1354), 21, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, - sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -217713,20 +221834,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_when_expression_token1, - anon_sym_NO_DASHERROR, - [195284] = 5, + aux_sym_else_statement_token1, + [198604] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(102), 2, + ACTIONS(178), 2, sym__or_operator, sym__and_operator, - STATE(2879), 2, + STATE(2911), 2, sym_comment, sym_include, - ACTIONS(104), 25, + ACTIONS(180), 25, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -217752,20 +221872,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [195326] = 6, + [198646] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(206), 2, + ACTIONS(198), 2, sym__or_operator, sym__and_operator, - STATE(2880), 2, + STATE(2912), 2, sym_comment, sym_include, - ACTIONS(208), 24, + ACTIONS(200), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -217788,20 +221908,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_when_expression_token1, + aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [195370] = 5, + [198690] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(218), 2, + ACTIONS(134), 2, sym__or_operator, sym__and_operator, - STATE(2881), 2, + STATE(2913), 2, sym_comment, sym_include, - ACTIONS(220), 25, + ACTIONS(136), 25, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -217827,25 +221947,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [195412] = 6, + [198732] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(240), 2, + ACTIONS(194), 2, sym__or_operator, sym__and_operator, - STATE(2882), 2, + STATE(2914), 2, sym_comment, sym_include, - ACTIONS(242), 24, + ACTIONS(196), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -217864,25 +221983,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_when_expression_token1, - [195456] = 6, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [198776] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(202), 2, + ACTIONS(210), 2, sym__or_operator, sym__and_operator, - STATE(2883), 2, + STATE(2915), 2, sym_comment, sym_include, - ACTIONS(204), 24, + ACTIONS(212), 25, anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - sym__terminator, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -217901,28 +222021,28 @@ 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_when_expression_token1, - anon_sym_NO_DASHERROR, - [195500] = 6, + aux_sym_include_argument_token1, + [198818] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2884), 2, - sym_comment, - sym_include, - ACTIONS(117), 3, - sym__namedot, + ACTIONS(2471), 1, + sym_identifier, + STATE(32), 1, + sym_qualified_name, + ACTIONS(1581), 2, sym__or_operator, sym__and_operator, - ACTIONS(119), 23, + STATE(2916), 2, + sym_comment, + sym_include, + ACTIONS(1579), 22, + anon_sym_COLON, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -217941,21 +222061,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [195544] = 6, + aux_sym_on_error_phrase_token1, + [198866] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2885), 2, - sym_comment, - sym_include, - ACTIONS(142), 3, - sym__namedoublecolon, + ACTIONS(230), 2, sym__or_operator, sym__and_operator, - ACTIONS(144), 23, + STATE(2917), 2, + sym_comment, + sym_include, + ACTIONS(232), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -217978,25 +222098,78 @@ 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, anon_sym_NO_DASHERROR, - [195588] = 6, + [198910] = 19, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + aux_sym_image_phrase_token1, + ACTIONS(4238), 1, + aux_sym_size_phrase_token1, + ACTIONS(4242), 1, + aux_sym_button_tuning_token1, + ACTIONS(4248), 1, + aux_sym_button_tuning_token9, + ACTIONS(4250), 1, + aux_sym_button_tuning_token14, + ACTIONS(4256), 1, + sym__terminator, + STATE(2922), 1, + aux_sym_button_definition_repeat1, + STATE(3063), 1, + sym_button_tuning, + STATE(3066), 1, + sym_size_phrase, + ACTIONS(4230), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4232), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4240), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2918), 2, + sym_comment, + sym_include, + ACTIONS(4236), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4244), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4246), 5, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token13, + [198980] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(194), 2, + ACTIONS(242), 2, sym__or_operator, sym__and_operator, - STATE(2886), 2, + STATE(2919), 2, sym_comment, sym_include, - ACTIONS(196), 24, + ACTIONS(244), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -218015,26 +222188,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_when_expression_token1, - anon_sym_NO_DASHERROR, - [195632] = 5, + aux_sym_scope_tuning_token1, + [199024] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(194), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(4258), 1, + aux_sym_input_expression_token2, + STATE(28), 1, + sym_qualified_name, + ACTIONS(1358), 2, sym__or_operator, sym__and_operator, - STATE(2887), 2, + STATE(2920), 2, sym_comment, sym_include, - ACTIONS(196), 25, + ACTIONS(1354), 21, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, anon_sym_STAR, - anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -218053,29 +222229,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_include_argument_token1, - [195674] = 9, + aux_sym_output_stream_statement_token1, + [199074] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(4310), 1, - aux_sym_input_expression_token2, - STATE(22), 1, - sym_qualified_name, - ACTIONS(1351), 2, + ACTIONS(178), 2, sym__or_operator, sym__and_operator, - STATE(2888), 2, + STATE(2921), 2, sym_comment, sym_include, - ACTIONS(1347), 21, + ACTIONS(180), 24, anon_sym_SLASH, + sym_identifier, anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -218094,25 +222267,127 @@ 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_output_stream_statement_token1, - [195724] = 5, + aux_sym_scope_tuning_token1, + [199118] = 19, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + aux_sym_image_phrase_token1, + ACTIONS(4238), 1, + aux_sym_size_phrase_token1, + ACTIONS(4242), 1, + aux_sym_button_tuning_token1, + ACTIONS(4248), 1, + aux_sym_button_tuning_token9, + ACTIONS(4250), 1, + aux_sym_button_tuning_token14, + ACTIONS(4260), 1, + sym__terminator, + STATE(2964), 1, + aux_sym_button_definition_repeat1, + STATE(3063), 1, + sym_button_tuning, + STATE(3066), 1, + sym_size_phrase, + ACTIONS(4230), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4232), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4240), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2922), 2, + sym_comment, + sym_include, + ACTIONS(4236), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4244), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4246), 5, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token13, + [199188] = 19, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + aux_sym_image_phrase_token1, + ACTIONS(4238), 1, + aux_sym_size_phrase_token1, + ACTIONS(4242), 1, + aux_sym_button_tuning_token1, + ACTIONS(4248), 1, + aux_sym_button_tuning_token9, + ACTIONS(4250), 1, + aux_sym_button_tuning_token14, + ACTIONS(4262), 1, + sym__terminator, + STATE(2931), 1, + aux_sym_button_definition_repeat1, + STATE(3063), 1, + sym_button_tuning, + STATE(3066), 1, + sym_size_phrase, + ACTIONS(4230), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4232), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4240), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2923), 2, + sym_comment, + sym_include, + ACTIONS(4236), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4244), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4246), 5, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token13, + [199258] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(222), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, - STATE(2889), 2, + STATE(2924), 2, sym_comment, sym_include, - ACTIONS(224), 25, + ACTIONS(87), 24, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - anon_sym_DQUOTE, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -218131,25 +222406,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_include_argument_token1, - [195766] = 5, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [199302] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(154), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2471), 1, + sym_identifier, + STATE(32), 1, + sym_qualified_name, + ACTIONS(1581), 2, sym__or_operator, sym__and_operator, - STATE(2890), 2, + STATE(2925), 2, sym_comment, sym_include, - ACTIONS(156), 25, + ACTIONS(1579), 22, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, anon_sym_STAR, - anon_sym_DQUOTE, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -218168,21 +222447,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_include_argument_token1, - [195808] = 6, + aux_sym_when_expression_token1, + [199350] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(210), 2, + ACTIONS(174), 2, sym__or_operator, sym__and_operator, - STATE(2891), 2, + STATE(2926), 2, sym_comment, sym_include, - ACTIONS(212), 24, + ACTIONS(176), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -218206,19 +222485,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_when_expression_token1, - [195852] = 5, + aux_sym_scope_tuning_token1, + [199394] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(206), 2, + ACTIONS(198), 2, sym__or_operator, sym__and_operator, - STATE(2892), 2, + STATE(2927), 2, sym_comment, sym_include, - ACTIONS(208), 25, + ACTIONS(200), 25, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -218244,18 +222523,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [195894] = 5, + [199436] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(158), 2, + ACTIONS(242), 2, sym__or_operator, sym__and_operator, - STATE(2893), 2, + STATE(2928), 2, sym_comment, sym_include, - ACTIONS(160), 25, + ACTIONS(244), 25, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -218281,18 +222560,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [195936] = 5, + [199478] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(202), 2, + ACTIONS(194), 2, sym__or_operator, sym__and_operator, - STATE(2894), 2, + STATE(2929), 2, sym_comment, sym_include, - ACTIONS(204), 25, + ACTIONS(196), 25, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -218318,26 +222597,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [195978] = 6, + [199520] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2895), 2, - sym_comment, - sym_include, - ACTIONS(142), 3, - sym__namedoublecolon, + ACTIONS(182), 2, sym__or_operator, sym__and_operator, - ACTIONS(144), 23, + STATE(2930), 2, + sym_comment, + sym_include, + ACTIONS(184), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -218356,20 +222633,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [196022] = 6, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [199564] = 19, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + aux_sym_image_phrase_token1, + ACTIONS(4238), 1, + aux_sym_size_phrase_token1, + ACTIONS(4242), 1, + aux_sym_button_tuning_token1, + ACTIONS(4248), 1, + aux_sym_button_tuning_token9, + ACTIONS(4250), 1, + aux_sym_button_tuning_token14, + ACTIONS(4264), 1, + sym__terminator, + STATE(2964), 1, + aux_sym_button_definition_repeat1, + STATE(3063), 1, + sym_button_tuning, + STATE(3066), 1, + sym_size_phrase, + ACTIONS(4230), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4232), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4240), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2931), 2, + sym_comment, + sym_include, + ACTIONS(4236), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4244), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4246), 5, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token13, + [199634] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(190), 2, + ACTIONS(238), 2, sym__or_operator, sym__and_operator, - STATE(2896), 2, + STATE(2932), 2, sym_comment, sym_include, - ACTIONS(192), 24, + ACTIONS(240), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -218392,94 +222722,62 @@ 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_when_expression_token1, + aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [196066] = 5, + [199678] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(162), 2, - sym__or_operator, - sym__and_operator, - STATE(2897), 2, - sym_comment, - sym_include, - ACTIONS(164), 25, - anon_sym_SLASH, + ACTIONS(7), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(2557), 1, sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_include_argument_token1, - [196108] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4312), 1, + ACTIONS(2561), 1, + aux_sym_class_type_token1, + ACTIONS(2569), 1, sym__escaped_string, - STATE(2898), 2, + STATE(2933), 2, sym_comment, sym_include, - ACTIONS(1471), 26, - 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_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, - [196150] = 5, + STATE(3564), 2, + sym_string_literal, + sym__type, + STATE(5020), 3, + sym_qualified_name, + sym_primitive_type, + sym_class_type, + ACTIONS(2559), 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, + [199730] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(166), 2, + ACTIONS(238), 2, sym__or_operator, sym__and_operator, - STATE(2899), 2, + STATE(2934), 2, sym_comment, sym_include, - ACTIONS(168), 25, + ACTIONS(240), 25, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -218505,24 +222803,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [196192] = 5, + [199772] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(170), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(174), 2, sym__or_operator, sym__and_operator, - STATE(2900), 2, + STATE(2935), 2, sym_comment, sym_include, - ACTIONS(172), 25, + ACTIONS(176), 24, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - anon_sym_DQUOTE, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -218541,60 +222839,64 @@ 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, - [196234] = 5, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [199816] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(178), 2, - sym__or_operator, - sym__and_operator, - STATE(2901), 2, - sym_comment, - sym_include, - ACTIONS(180), 25, - anon_sym_SLASH, + ACTIONS(7), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(2557), 1, sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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_include_argument_token1, - [196276] = 7, + ACTIONS(2561), 1, + aux_sym_class_type_token1, + ACTIONS(2569), 1, + sym__escaped_string, + STATE(2936), 2, + sym_comment, + sym_include, + STATE(3533), 2, + sym_string_literal, + sym__type, + STATE(5020), 3, + sym_qualified_name, + sym_primitive_type, + sym_class_type, + ACTIONS(2559), 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, + [199868] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4314), 1, - aux_sym_function_call_token1, - ACTIONS(230), 2, + ACTIONS(214), 2, sym__or_operator, sym__and_operator, - STATE(2902), 2, + STATE(2937), 2, sym_comment, sym_include, - ACTIONS(232), 23, + ACTIONS(216), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -218617,19 +222919,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [196322] = 5, + [199912] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(190), 2, + ACTIONS(182), 2, sym__or_operator, sym__and_operator, - STATE(2903), 2, + STATE(2938), 2, sym_comment, sym_include, - ACTIONS(192), 25, + ACTIONS(184), 25, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -218655,25 +222958,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [196364] = 6, + [199954] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4266), 1, + sym__escaped_string, + STATE(2939), 2, + sym_comment, + sym_include, + ACTIONS(1388), 26, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_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, + [199996] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(182), 2, + ACTIONS(186), 2, sym__or_operator, sym__and_operator, - STATE(2904), 2, + STATE(2940), 2, sym_comment, sym_include, - ACTIONS(184), 24, + ACTIONS(188), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -218692,19 +223031,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_when_expression_token1, - [196408] = 5, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [200040] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(106), 2, + ACTIONS(123), 2, sym__or_operator, sym__and_operator, - STATE(2905), 2, + STATE(2941), 2, sym_comment, sym_include, - ACTIONS(108), 25, + ACTIONS(125), 25, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -218730,62 +223070,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [196450] = 6, + [200082] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(154), 2, + ACTIONS(174), 2, sym__or_operator, sym__and_operator, - STATE(2906), 2, + STATE(2942), 2, sym_comment, sym_include, - ACTIONS(156), 23, + ACTIONS(176), 25, anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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, - [196493] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(210), 2, - sym__or_operator, - sym__and_operator, - STATE(2907), 2, - sym_comment, - sym_include, - ACTIONS(212), 23, - anon_sym_SLASH, + anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -218804,76 +223106,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [196536] = 25, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(3011), 1, - sym__pre_tuning, - STATE(3029), 1, - aux_sym_for_phrase_repeat1, - STATE(3041), 1, - sym_where_clause, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3434), 1, - aux_sym_for_phrase_repeat2, - STATE(4158), 1, - sym_on_error_phrase, - STATE(4394), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4949), 1, - aux_sym_for_statement_repeat1, - STATE(4953), 1, - sym_on_stop_phrase, - STATE(5632), 1, - sym_body, - STATE(2908), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [196617] = 6, + aux_sym_include_argument_token1, + [200124] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(132), 2, + ACTIONS(190), 2, sym__or_operator, sym__and_operator, - STATE(2909), 2, + STATE(2943), 2, sym_comment, sym_include, - ACTIONS(134), 23, + ACTIONS(192), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -218896,25 +223143,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [196660] = 6, + [200168] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(182), 2, + ACTIONS(214), 2, sym__or_operator, sym__and_operator, - STATE(2910), 2, + STATE(2944), 2, sym_comment, sym_include, - ACTIONS(184), 23, + ACTIONS(216), 25, anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - sym__terminator, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -218933,82 +223181,25 @@ 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, - [196703] = 25, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(2998), 1, - sym__pre_tuning, - STATE(3073), 1, - sym_where_clause, - STATE(3093), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3461), 1, - aux_sym_for_phrase_repeat2, - STATE(4155), 1, - sym_on_error_phrase, - STATE(4233), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4656), 1, - sym_on_stop_phrase, - STATE(4664), 1, - aux_sym_for_statement_repeat1, - STATE(5408), 1, - sym_body, - STATE(2911), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [196784] = 6, + aux_sym_include_argument_token1, + [200210] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(166), 2, + ACTIONS(186), 2, sym__or_operator, sym__and_operator, - STATE(2912), 2, + STATE(2945), 2, sym_comment, sym_include, - ACTIONS(168), 23, + ACTIONS(188), 25, anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -219027,25 +223218,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [196827] = 6, + aux_sym_include_argument_token1, + [200252] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, ACTIONS(190), 2, sym__or_operator, sym__and_operator, - STATE(2913), 2, + STATE(2946), 2, sym_comment, sym_include, - ACTIONS(192), 23, + ACTIONS(192), 25, anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -219064,22 +223255,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [196870] = 7, + aux_sym_include_argument_token1, + [200294] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4316), 1, - anon_sym_NO_DASHERROR, - ACTIONS(248), 2, + ACTIONS(170), 2, sym__or_operator, sym__and_operator, - STATE(2914), 2, + STATE(2947), 2, sym_comment, sym_include, - ACTIONS(250), 22, + ACTIONS(172), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -219102,25 +223292,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [196915] = 6, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [200338] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, ACTIONS(218), 2, sym__or_operator, sym__and_operator, - STATE(2915), 2, + STATE(2948), 2, sym_comment, sym_include, - ACTIONS(220), 23, + ACTIONS(220), 25, anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -219139,25 +223330,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [196958] = 6, + aux_sym_include_argument_token1, + [200380] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(106), 2, + ACTIONS(222), 2, sym__or_operator, sym__and_operator, - STATE(2916), 2, + STATE(2949), 2, sym_comment, sym_include, - ACTIONS(108), 23, + ACTIONS(224), 25, anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -219176,24 +223367,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [197001] = 6, + aux_sym_include_argument_token1, + [200422] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(218), 2, + ACTIONS(226), 2, sym__or_operator, sym__and_operator, - STATE(2917), 2, + STATE(2950), 2, sym_comment, sym_include, - ACTIONS(220), 23, + ACTIONS(228), 25, anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - sym__terminator, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -219212,21 +223404,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_NO_DASHERROR, - [197044] = 6, + aux_sym_include_argument_token1, + [200464] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(162), 2, + ACTIONS(198), 2, sym__or_operator, sym__and_operator, - STATE(2918), 2, + STATE(2951), 2, sym_comment, sym_include, - ACTIONS(164), 23, + ACTIONS(200), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -219250,20 +223442,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [197087] = 6, + aux_sym_scope_tuning_token1, + [200508] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(244), 2, + ACTIONS(202), 2, sym__or_operator, sym__and_operator, - STATE(2919), 2, + STATE(2952), 2, sym_comment, sym_include, - ACTIONS(246), 23, + ACTIONS(204), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -219287,20 +223480,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [197130] = 6, + aux_sym_scope_tuning_token1, + [200552] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(102), 2, + ACTIONS(123), 2, sym__or_operator, sym__and_operator, - STATE(2920), 2, + STATE(2953), 2, sym_comment, sym_include, - ACTIONS(104), 23, + ACTIONS(125), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -219323,26 +223517,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + aux_sym_scope_tuning_token1, anon_sym_NO_DASHERROR, - [197173] = 6, + [200596] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(83), 2, + ACTIONS(226), 2, sym__or_operator, sym__and_operator, - STATE(2921), 2, + STATE(2954), 2, sym_comment, sym_include, - ACTIONS(85), 23, + ACTIONS(228), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -219351,146 +223545,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [197216] = 25, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(3001), 1, - sym__pre_tuning, - STATE(3032), 1, - aux_sym_for_phrase_repeat1, - STATE(3070), 1, - sym_where_clause, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3439), 1, - aux_sym_for_phrase_repeat2, - STATE(4117), 1, - sym_on_error_phrase, - STATE(4280), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4633), 1, - sym_on_stop_phrase, - STATE(4641), 1, - aux_sym_for_statement_repeat1, - STATE(6019), 1, - sym_body, - STATE(2922), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [197297] = 24, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(3012), 1, - sym_of, - STATE(3084), 1, - sym__pre_tuning, - STATE(3102), 1, - sym_where_clause, - STATE(3115), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3784), 1, - aux_sym_for_phrase_repeat2, - STATE(4487), 1, - sym_sort_clause, - STATE(4500), 1, - sym_on_error_phrase, - STATE(5034), 1, - sym_on_quit_phrase, - STATE(5691), 1, - sym_on_stop_phrase, - ACTIONS(3902), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(2923), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [197376] = 6, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_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, + anon_sym_NO_DASHERROR, + [200640] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(236), 2, + ACTIONS(206), 2, sym__or_operator, sym__and_operator, - STATE(2924), 2, + STATE(2955), 2, sym_comment, sym_include, - ACTIONS(238), 23, + ACTIONS(208), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -219509,25 +223593,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [197419] = 6, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [200684] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(174), 2, + ACTIONS(234), 2, sym__or_operator, sym__and_operator, - STATE(2925), 2, + STATE(2956), 2, sym_comment, sym_include, - ACTIONS(176), 23, + ACTIONS(236), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -219546,24 +223631,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [197462] = 6, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [200728] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(240), 2, + ACTIONS(246), 2, sym__or_operator, sym__and_operator, - STATE(2926), 2, + STATE(2957), 2, sym_comment, sym_include, - ACTIONS(242), 23, + ACTIONS(248), 25, anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - sym__terminator, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -219582,26 +223669,25 @@ 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, - [197505] = 6, + aux_sym_include_argument_token1, + [200770] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(63), 2, + ACTIONS(150), 2, sym__or_operator, sym__and_operator, - STATE(2927), 2, + STATE(2958), 2, sym_comment, sym_include, - ACTIONS(69), 23, + ACTIONS(152), 25, anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -219620,75 +223706,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [197548] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2927), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(2929), 1, - aux_sym_dataset_expression_token1, - ACTIONS(3416), 1, - aux_sym_property_definition_token1, - ACTIONS(3418), 1, - aux_sym_event_definition_token1, - STATE(3147), 1, - aux_sym_property_definition_repeat1, - STATE(3216), 1, - sym_serialization_tuning, - STATE(3236), 1, - aux_sym_variable_definition_repeat1, - STATE(3242), 1, - aux_sym_event_definition_repeat1, - STATE(3269), 1, - sym_property_type, - STATE(3341), 1, - aux_sym_buffer_definition_repeat1, - ACTIONS(2836), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(3414), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - STATE(2928), 2, - sym_comment, - sym_include, - STATE(3212), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(2832), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - [197617] = 6, + aux_sym_include_argument_token1, + [200812] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(158), 2, + ACTIONS(65), 2, sym__or_operator, sym__and_operator, - STATE(2929), 2, + STATE(2959), 2, sym_comment, sym_include, - ACTIONS(160), 23, + ACTIONS(71), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -219707,80 +223743,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [197660] = 25, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(2986), 1, - sym__pre_tuning, - STATE(3054), 1, - aux_sym_for_phrase_repeat1, - STATE(3083), 1, - sym_where_clause, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3441), 1, - aux_sym_for_phrase_repeat2, - STATE(4061), 1, - sym_on_error_phrase, - STATE(4405), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4909), 1, - aux_sym_for_statement_repeat1, - STATE(4912), 1, - sym_on_stop_phrase, - STATE(5523), 1, - sym_body, - STATE(2930), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [197741] = 6, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [200856] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(226), 2, + ACTIONS(65), 2, sym__or_operator, sym__and_operator, - STATE(2931), 2, + STATE(2960), 2, sym_comment, sym_include, - ACTIONS(228), 23, + ACTIONS(71), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -219799,25 +223782,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_NO_DASHERROR, - [197784] = 6, + aux_sym_scope_tuning_token1, + [200900] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(236), 2, + ACTIONS(206), 2, sym__or_operator, sym__and_operator, - STATE(2932), 2, + STATE(2961), 2, sym_comment, sym_include, - ACTIONS(238), 23, + ACTIONS(208), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -219836,77 +223820,173 @@ 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, - [197827] = 25, - ACTIONS(65), 1, + aux_sym_scope_tuning_token1, + [200944] = 19, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + aux_sym_image_phrase_token1, + ACTIONS(4238), 1, + aux_sym_size_phrase_token1, + ACTIONS(4242), 1, + aux_sym_button_tuning_token1, + ACTIONS(4248), 1, + aux_sym_button_tuning_token9, + ACTIONS(4250), 1, + aux_sym_button_tuning_token14, + ACTIONS(4268), 1, + sym__terminator, + STATE(2964), 1, + aux_sym_button_definition_repeat1, + STATE(3063), 1, + sym_button_tuning, + STATE(3066), 1, + sym_size_phrase, + ACTIONS(4230), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4232), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4240), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2962), 2, + sym_comment, + sym_include, + ACTIONS(4236), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4244), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4246), 5, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token13, + [201014] = 19, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(2987), 1, - sym__pre_tuning, - STATE(3043), 1, - sym_where_clause, - STATE(3047), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3471), 1, - aux_sym_for_phrase_repeat2, - STATE(4175), 1, - sym_on_error_phrase, - STATE(4213), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4592), 1, - sym_on_stop_phrase, - STATE(4597), 1, - aux_sym_for_statement_repeat1, - STATE(5961), 1, - sym_body, - STATE(2933), 2, + ACTIONS(4234), 1, + aux_sym_image_phrase_token1, + ACTIONS(4238), 1, + aux_sym_size_phrase_token1, + ACTIONS(4242), 1, + aux_sym_button_tuning_token1, + ACTIONS(4248), 1, + aux_sym_button_tuning_token9, + ACTIONS(4250), 1, + aux_sym_button_tuning_token14, + ACTIONS(4270), 1, + sym__terminator, + STATE(2968), 1, + aux_sym_button_definition_repeat1, + STATE(3063), 1, + sym_button_tuning, + STATE(3066), 1, + sym_size_phrase, + ACTIONS(4230), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4232), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4240), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2963), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [197908] = 6, + ACTIONS(4236), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4244), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4246), 5, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token13, + [201084] = 18, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4272), 1, + sym__terminator, + ACTIONS(4280), 1, + aux_sym_image_phrase_token1, + ACTIONS(4286), 1, + aux_sym_size_phrase_token1, + ACTIONS(4292), 1, + aux_sym_button_tuning_token1, + ACTIONS(4301), 1, + aux_sym_button_tuning_token9, + ACTIONS(4304), 1, + aux_sym_button_tuning_token14, + STATE(3063), 1, + sym_button_tuning, + STATE(3066), 1, + sym_size_phrase, + ACTIONS(4274), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4277), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4289), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + ACTIONS(4283), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4295), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + STATE(2964), 3, + sym_comment, + sym_include, + aux_sym_button_definition_repeat1, + ACTIONS(4298), 5, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token13, + [201152] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(83), 2, + ACTIONS(242), 2, sym__or_operator, sym__and_operator, - STATE(2934), 2, + STATE(2965), 2, sym_comment, sym_include, - ACTIONS(85), 23, + ACTIONS(244), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -219929,21 +224009,22 @@ 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, anon_sym_NO_DASHERROR, - [197951] = 6, + [201196] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(206), 2, + ACTIONS(150), 2, sym__or_operator, sym__and_operator, - STATE(2935), 2, + STATE(2966), 2, sym_comment, sym_include, - ACTIONS(208), 23, + ACTIONS(152), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -219966,21 +224047,22 @@ 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, anon_sym_NO_DASHERROR, - [197994] = 6, + [201240] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(182), 2, + ACTIONS(170), 2, sym__or_operator, sym__and_operator, - STATE(2936), 2, + STATE(2967), 2, sym_comment, sym_include, - ACTIONS(184), 23, + ACTIONS(172), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -220004,20 +224086,123 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [198037] = 6, + aux_sym_scope_tuning_token1, + [201284] = 19, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + aux_sym_image_phrase_token1, + ACTIONS(4238), 1, + aux_sym_size_phrase_token1, + ACTIONS(4242), 1, + aux_sym_button_tuning_token1, + ACTIONS(4248), 1, + aux_sym_button_tuning_token9, + ACTIONS(4250), 1, + aux_sym_button_tuning_token14, + ACTIONS(4307), 1, + sym__terminator, + STATE(2964), 1, + aux_sym_button_definition_repeat1, + STATE(3063), 1, + sym_button_tuning, + STATE(3066), 1, + sym_size_phrase, + ACTIONS(4230), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4232), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4240), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2968), 2, + sym_comment, + sym_include, + ACTIONS(4236), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4244), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4246), 5, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token13, + [201354] = 19, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + aux_sym_image_phrase_token1, + ACTIONS(4238), 1, + aux_sym_size_phrase_token1, + ACTIONS(4242), 1, + aux_sym_button_tuning_token1, + ACTIONS(4248), 1, + aux_sym_button_tuning_token9, + ACTIONS(4250), 1, + aux_sym_button_tuning_token14, + ACTIONS(4309), 1, + sym__terminator, + STATE(2900), 1, + aux_sym_button_definition_repeat1, + STATE(3063), 1, + sym_button_tuning, + STATE(3066), 1, + sym_size_phrase, + ACTIONS(4230), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4232), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4240), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2969), 2, + sym_comment, + sym_include, + ACTIONS(4236), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4244), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4246), 5, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token13, + [201424] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(244), 2, + ACTIONS(218), 2, sym__or_operator, sym__and_operator, - STATE(2937), 2, + STATE(2970), 2, sym_comment, sym_include, - ACTIONS(246), 23, + ACTIONS(220), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -220040,25 +224225,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_scope_tuning_token1, anon_sym_NO_DASHERROR, - [198080] = 6, + [201468] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(202), 2, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(4311), 1, + aux_sym_input_expression_token2, + STATE(28), 1, + sym_qualified_name, + ACTIONS(1358), 2, sym__or_operator, sym__and_operator, - STATE(2938), 2, + STATE(2971), 2, sym_comment, sym_include, - ACTIONS(204), 23, + ACTIONS(1354), 21, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, - sym__terminator, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -220077,80 +224267,64 @@ 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, - [198123] = 24, - ACTIONS(65), 1, + aux_sym_if_statement_token2, + [201518] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(3015), 1, - sym_of, - STATE(3080), 1, - sym__pre_tuning, - STATE(3105), 1, - aux_sym_for_phrase_repeat1, - STATE(3107), 1, - sym_where_clause, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3741), 1, - aux_sym_for_phrase_repeat2, - STATE(4487), 1, - sym_sort_clause, - STATE(4522), 1, - sym_on_error_phrase, - STATE(4881), 1, - sym_on_quit_phrase, - STATE(5575), 1, - sym_on_stop_phrase, - ACTIONS(3904), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(2939), 2, + ACTIONS(246), 2, + sym__or_operator, + sym__and_operator, + STATE(2972), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [198202] = 6, + ACTIONS(248), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, + [201562] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(186), 2, + ACTIONS(238), 2, sym__or_operator, sym__and_operator, - STATE(2940), 2, + STATE(2973), 2, sym_comment, sym_include, - ACTIONS(188), 23, + ACTIONS(240), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -220169,193 +224343,166 @@ 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, - [198245] = 25, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + [201606] = 19, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(3010), 1, - sym__pre_tuning, - STATE(3056), 1, - sym_where_clause, - STATE(3064), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3429), 1, - aux_sym_for_phrase_repeat2, - STATE(4086), 1, - sym_on_error_phrase, - STATE(4309), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4976), 1, - sym_on_stop_phrase, - STATE(4977), 1, - aux_sym_for_statement_repeat1, - STATE(5987), 1, - sym_body, - STATE(2941), 2, + ACTIONS(4234), 1, + aux_sym_image_phrase_token1, + ACTIONS(4238), 1, + aux_sym_size_phrase_token1, + ACTIONS(4242), 1, + aux_sym_button_tuning_token1, + ACTIONS(4248), 1, + aux_sym_button_tuning_token9, + ACTIONS(4250), 1, + aux_sym_button_tuning_token14, + ACTIONS(4313), 1, + sym__terminator, + STATE(2964), 1, + aux_sym_button_definition_repeat1, + STATE(3063), 1, + sym_button_tuning, + STATE(3066), 1, + sym_size_phrase, + ACTIONS(4230), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4232), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4240), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2974), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [198326] = 25, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4236), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4244), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4246), 5, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token13, + [201676] = 19, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(3006), 1, - sym__pre_tuning, - STATE(3031), 1, - sym_where_clause, - STATE(3037), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3431), 1, - aux_sym_for_phrase_repeat2, - STATE(4159), 1, - sym_on_error_phrase, - STATE(4319), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(5015), 1, - aux_sym_for_statement_repeat1, - STATE(5035), 1, - sym_on_stop_phrase, - STATE(5645), 1, - sym_body, - STATE(2942), 2, + ACTIONS(4234), 1, + aux_sym_image_phrase_token1, + ACTIONS(4238), 1, + aux_sym_size_phrase_token1, + ACTIONS(4242), 1, + aux_sym_button_tuning_token1, + ACTIONS(4248), 1, + aux_sym_button_tuning_token9, + ACTIONS(4250), 1, + aux_sym_button_tuning_token14, + ACTIONS(4315), 1, + sym__terminator, + STATE(2962), 1, + aux_sym_button_definition_repeat1, + STATE(3063), 1, + sym_button_tuning, + STATE(3066), 1, + sym_size_phrase, + ACTIONS(4230), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4232), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4240), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2975), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [198407] = 25, - ACTIONS(65), 1, + ACTIONS(4236), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4244), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4246), 5, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token13, + [201746] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(3009), 1, - sym__pre_tuning, - STATE(3082), 1, - aux_sym_for_phrase_repeat1, - STATE(3086), 1, - sym_where_clause, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3448), 1, - aux_sym_for_phrase_repeat2, - STATE(4004), 1, - sym_on_error_phrase, - STATE(4402), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4715), 1, - aux_sym_for_statement_repeat1, - STATE(4717), 1, - sym_on_stop_phrase, - STATE(5663), 1, - sym_body, - STATE(2943), 2, + ACTIONS(85), 2, + sym__or_operator, + sym__and_operator, + STATE(2976), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [198488] = 6, + ACTIONS(87), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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, + [201790] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(214), 2, + ACTIONS(230), 2, sym__or_operator, sym__and_operator, - STATE(2944), 2, + STATE(2977), 2, sym_comment, sym_include, - ACTIONS(216), 23, + ACTIONS(232), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -220374,25 +224521,179 @@ 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, - [198531] = 6, + aux_sym_scope_tuning_token1, + [201834] = 19, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + aux_sym_image_phrase_token1, + ACTIONS(4238), 1, + aux_sym_size_phrase_token1, + ACTIONS(4242), 1, + aux_sym_button_tuning_token1, + ACTIONS(4248), 1, + aux_sym_button_tuning_token9, + ACTIONS(4250), 1, + aux_sym_button_tuning_token14, + ACTIONS(4317), 1, + sym__terminator, + STATE(2979), 1, + aux_sym_button_definition_repeat1, + STATE(3063), 1, + sym_button_tuning, + STATE(3066), 1, + sym_size_phrase, + ACTIONS(4230), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4232), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4240), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2978), 2, + sym_comment, + sym_include, + ACTIONS(4236), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4244), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4246), 5, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token13, + [201904] = 19, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + aux_sym_image_phrase_token1, + ACTIONS(4238), 1, + aux_sym_size_phrase_token1, + ACTIONS(4242), 1, + aux_sym_button_tuning_token1, + ACTIONS(4248), 1, + aux_sym_button_tuning_token9, + ACTIONS(4250), 1, + aux_sym_button_tuning_token14, + ACTIONS(4319), 1, + sym__terminator, + STATE(2964), 1, + aux_sym_button_definition_repeat1, + STATE(3063), 1, + sym_button_tuning, + STATE(3066), 1, + sym_size_phrase, + ACTIONS(4230), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4232), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4240), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2979), 2, + sym_comment, + sym_include, + ACTIONS(4236), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4244), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4246), 5, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token13, + [201974] = 19, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + aux_sym_image_phrase_token1, + ACTIONS(4238), 1, + aux_sym_size_phrase_token1, + ACTIONS(4242), 1, + aux_sym_button_tuning_token1, + ACTIONS(4248), 1, + aux_sym_button_tuning_token9, + ACTIONS(4250), 1, + aux_sym_button_tuning_token14, + ACTIONS(4321), 1, + sym__terminator, + STATE(2982), 1, + aux_sym_button_definition_repeat1, + STATE(3063), 1, + sym_button_tuning, + STATE(3066), 1, + sym_size_phrase, + ACTIONS(4230), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4232), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4240), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2980), 2, + sym_comment, + sym_include, + ACTIONS(4236), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4244), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4246), 5, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token13, + [202044] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(63), 2, + ACTIONS(134), 2, sym__or_operator, sym__and_operator, - STATE(2945), 2, + STATE(2981), 2, sym_comment, sym_include, - ACTIONS(69), 23, + ACTIONS(136), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -220411,25 +224712,77 @@ 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, - [198574] = 6, + aux_sym_scope_tuning_token1, + [202088] = 19, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + aux_sym_image_phrase_token1, + ACTIONS(4238), 1, + aux_sym_size_phrase_token1, + ACTIONS(4242), 1, + aux_sym_button_tuning_token1, + ACTIONS(4248), 1, + aux_sym_button_tuning_token9, + ACTIONS(4250), 1, + aux_sym_button_tuning_token14, + ACTIONS(4323), 1, + sym__terminator, + STATE(2964), 1, + aux_sym_button_definition_repeat1, + STATE(3063), 1, + sym_button_tuning, + STATE(3066), 1, + sym_size_phrase, + ACTIONS(4230), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4232), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4240), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2982), 2, + sym_comment, + sym_include, + ACTIONS(4236), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4244), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4246), 5, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token13, + [202158] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(198), 2, + ACTIONS(210), 2, sym__or_operator, sym__and_operator, - STATE(2946), 2, + STATE(2983), 2, sym_comment, sym_include, - ACTIONS(200), 23, + ACTIONS(212), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -220448,27 +224801,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_NO_DASHERROR, - [198617] = 8, + aux_sym_scope_tuning_token1, + [202202] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2458), 1, - sym_identifier, - STATE(32), 1, - sym_qualified_name, - ACTIONS(1366), 2, + ACTIONS(150), 2, sym__or_operator, sym__and_operator, - STATE(2947), 2, + STATE(2984), 2, sym_comment, sym_include, - ACTIONS(1364), 21, + ACTIONS(152), 24, anon_sym_SLASH, + sym_identifier, anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -220487,25 +224839,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_else_statement_token1, - [198664] = 6, + aux_sym_scope_tuning_token1, + [202246] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(194), 2, + ACTIONS(234), 2, sym__or_operator, sym__and_operator, - STATE(2948), 2, + STATE(2985), 2, sym_comment, sym_include, - ACTIONS(196), 23, + ACTIONS(236), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -220524,25 +224877,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_NO_DASHERROR, - [198707] = 6, + aux_sym_scope_tuning_token1, + [202290] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(222), 2, + ACTIONS(226), 2, sym__or_operator, sym__and_operator, - STATE(2949), 2, + STATE(2986), 2, sym_comment, sym_include, - ACTIONS(224), 23, + ACTIONS(228), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -220561,27 +224915,179 @@ 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, - [198750] = 8, + aux_sym_scope_tuning_token1, + [202334] = 19, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + aux_sym_image_phrase_token1, + ACTIONS(4238), 1, + aux_sym_size_phrase_token1, + ACTIONS(4242), 1, + aux_sym_button_tuning_token1, + ACTIONS(4248), 1, + aux_sym_button_tuning_token9, + ACTIONS(4250), 1, + aux_sym_button_tuning_token14, + ACTIONS(4325), 1, + sym__terminator, + STATE(2988), 1, + aux_sym_button_definition_repeat1, + STATE(3063), 1, + sym_button_tuning, + STATE(3066), 1, + sym_size_phrase, + ACTIONS(4230), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4232), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4240), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2987), 2, + sym_comment, + sym_include, + ACTIONS(4236), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4244), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4246), 5, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token13, + [202404] = 19, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + aux_sym_image_phrase_token1, + ACTIONS(4238), 1, + aux_sym_size_phrase_token1, + ACTIONS(4242), 1, + aux_sym_button_tuning_token1, + ACTIONS(4248), 1, + aux_sym_button_tuning_token9, + ACTIONS(4250), 1, + aux_sym_button_tuning_token14, + ACTIONS(4327), 1, + sym__terminator, + STATE(2964), 1, + aux_sym_button_definition_repeat1, + STATE(3063), 1, + sym_button_tuning, + STATE(3066), 1, + sym_size_phrase, + ACTIONS(4230), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4232), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4240), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2988), 2, + sym_comment, + sym_include, + ACTIONS(4236), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4244), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4246), 5, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token13, + [202474] = 19, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + aux_sym_image_phrase_token1, + ACTIONS(4238), 1, + aux_sym_size_phrase_token1, + ACTIONS(4242), 1, + aux_sym_button_tuning_token1, + ACTIONS(4248), 1, + aux_sym_button_tuning_token9, + ACTIONS(4250), 1, + aux_sym_button_tuning_token14, + ACTIONS(4329), 1, + sym__terminator, + STATE(2992), 1, + aux_sym_button_definition_repeat1, + STATE(3063), 1, + sym_button_tuning, + STATE(3066), 1, + sym_size_phrase, + ACTIONS(4230), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4232), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4240), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2989), 2, + sym_comment, + sym_include, + ACTIONS(4236), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4244), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4246), 5, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token13, + [202544] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2458), 1, - sym_identifier, - STATE(32), 1, - sym_qualified_name, - ACTIONS(1366), 2, + ACTIONS(214), 2, sym__or_operator, sym__and_operator, - STATE(2950), 2, + STATE(2990), 2, sym_comment, sym_include, - ACTIONS(1364), 21, + ACTIONS(216), 24, anon_sym_SLASH, + sym_identifier, anon_sym_STAR, + sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -220600,25 +225106,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_output_stream_statement_token1, - [198797] = 6, + aux_sym_scope_tuning_token1, + [202588] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(154), 2, + ACTIONS(186), 2, sym__or_operator, sym__and_operator, - STATE(2951), 2, + STATE(2991), 2, sym_comment, sym_include, - ACTIONS(156), 23, + ACTIONS(188), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -220637,81 +225144,119 @@ 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, - [198840] = 25, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + [202632] = 19, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(2994), 1, - sym__pre_tuning, - STATE(3022), 1, - sym_where_clause, - STATE(3072), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3484), 1, - aux_sym_for_phrase_repeat2, - STATE(4033), 1, - sym_on_error_phrase, - STATE(4287), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4886), 1, - sym_on_stop_phrase, - STATE(4891), 1, - aux_sym_for_statement_repeat1, - STATE(5981), 1, - sym_body, - STATE(2952), 2, + ACTIONS(4234), 1, + aux_sym_image_phrase_token1, + ACTIONS(4238), 1, + aux_sym_size_phrase_token1, + ACTIONS(4242), 1, + aux_sym_button_tuning_token1, + ACTIONS(4248), 1, + aux_sym_button_tuning_token9, + ACTIONS(4250), 1, + aux_sym_button_tuning_token14, + ACTIONS(4331), 1, + sym__terminator, + STATE(2964), 1, + aux_sym_button_definition_repeat1, + STATE(3063), 1, + sym_button_tuning, + STATE(3066), 1, + sym_size_phrase, + ACTIONS(4230), 2, + aux_sym_type_tuning_token2, + aux_sym_button_tuning_token12, + ACTIONS(4232), 2, + aux_sym_variable_tuning_token4, + aux_sym_button_tuning_token17, + ACTIONS(4240), 2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + STATE(2992), 2, + sym_comment, + sym_include, + ACTIONS(4236), 3, + aux_sym_image_phrase_token2, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + ACTIONS(4244), 3, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token16, + ACTIONS(4246), 5, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token13, + [202702] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2557), 1, + sym_identifier, + ACTIONS(2561), 1, + aux_sym_class_type_token1, + ACTIONS(2569), 1, + sym__escaped_string, + STATE(2993), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [198921] = 6, + STATE(3546), 2, + sym_string_literal, + sym__type, + STATE(5020), 3, + sym_qualified_name, + sym_primitive_type, + sym_class_type, + ACTIONS(2559), 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, + [202754] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(158), 2, + ACTIONS(190), 2, sym__or_operator, sym__and_operator, - STATE(2953), 2, + STATE(2994), 2, sym_comment, sym_include, - ACTIONS(160), 23, + ACTIONS(192), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -220730,26 +225275,25 @@ 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, - [198964] = 6, + aux_sym_scope_tuning_token1, + [202798] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(226), 2, + ACTIONS(202), 2, sym__or_operator, sym__and_operator, - STATE(2954), 2, + STATE(2995), 2, sym_comment, sym_include, - ACTIONS(228), 23, + ACTIONS(204), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -220768,24 +225312,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [199007] = 6, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [202842] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(162), 2, + ACTIONS(202), 2, sym__or_operator, sym__and_operator, - STATE(2955), 2, + STATE(2996), 2, sym_comment, sym_include, - ACTIONS(164), 23, + ACTIONS(204), 25, anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - sym__terminator, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -220804,25 +225350,25 @@ 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, - [199050] = 6, + aux_sym_include_argument_token1, + [202884] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(166), 2, + ACTIONS(234), 2, sym__or_operator, sym__and_operator, - STATE(2956), 2, + STATE(2997), 2, sym_comment, sym_include, - ACTIONS(168), 23, + ACTIONS(236), 25, anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - sym__terminator, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -220841,21 +225387,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_NO_DASHERROR, - [199093] = 6, + aux_sym_include_argument_token1, + [202926] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(102), 2, + ACTIONS(194), 2, sym__or_operator, sym__and_operator, - STATE(2957), 2, + STATE(2998), 2, sym_comment, sym_include, - ACTIONS(104), 23, + ACTIONS(196), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -220879,25 +225425,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [199136] = 6, + aux_sym_scope_tuning_token1, + [202970] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(178), 2, + ACTIONS(2471), 1, + sym_identifier, + STATE(32), 1, + sym_qualified_name, + ACTIONS(1581), 2, sym__or_operator, sym__and_operator, - STATE(2958), 2, + STATE(2999), 2, sym_comment, sym_include, - ACTIONS(180), 23, + ACTIONS(1579), 22, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -220916,20 +225464,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [199179] = 6, + aux_sym_when_expression_token1, + aux_sym_output_stream_statement_token1, + [203018] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(170), 2, + ACTIONS(218), 2, sym__or_operator, sym__and_operator, - STATE(2959), 2, + STATE(3000), 2, sym_comment, sym_include, - ACTIONS(172), 23, + ACTIONS(220), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -220953,24 +225503,110 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [199222] = 6, + aux_sym_scope_tuning_token1, + [203062] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(170), 2, + ACTIONS(2557), 1, + sym_identifier, + ACTIONS(2561), 1, + aux_sym_class_type_token1, + ACTIONS(2569), 1, + sym__escaped_string, + STATE(3001), 2, + sym_comment, + sym_include, + STATE(3557), 2, + sym_string_literal, + sym__type, + STATE(5020), 3, + sym_qualified_name, + sym_primitive_type, + sym_class_type, + ACTIONS(2559), 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, + [203114] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2557), 1, + sym_identifier, + ACTIONS(2561), 1, + aux_sym_class_type_token1, + ACTIONS(2569), 1, + sym__escaped_string, + STATE(3002), 2, + sym_comment, + sym_include, + STATE(3547), 2, + sym_string_literal, + sym__type, + STATE(5020), 3, + sym_qualified_name, + sym_primitive_type, + sym_class_type, + ACTIONS(2559), 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, + [203166] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(182), 2, sym__or_operator, sym__and_operator, - STATE(2960), 2, + STATE(3003), 2, sym_comment, sym_include, - ACTIONS(172), 23, + ACTIONS(184), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -220989,26 +225625,25 @@ 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, - [199265] = 6, + aux_sym_scope_tuning_token1, + [203210] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(240), 2, + ACTIONS(246), 2, sym__or_operator, sym__and_operator, - STATE(2961), 2, + STATE(3004), 2, sym_comment, sym_include, - ACTIONS(242), 23, + ACTIONS(248), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -221027,20 +225662,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [199308] = 6, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [203254] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(214), 2, + ACTIONS(222), 2, sym__or_operator, sym__and_operator, - STATE(2962), 2, + STATE(3005), 2, sym_comment, sym_include, - ACTIONS(216), 23, + ACTIONS(224), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -221064,24 +225701,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [199351] = 6, + aux_sym_scope_tuning_token1, + [203298] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(174), 2, + ACTIONS(123), 2, sym__or_operator, sym__and_operator, - STATE(2963), 2, + STATE(3006), 2, sym_comment, sym_include, - ACTIONS(176), 23, + ACTIONS(125), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, sym__terminator, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -221100,26 +225739,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_NO_DASHERROR, - [199394] = 6, + aux_sym_scope_tuning_token1, + [203342] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(198), 2, + ACTIONS(2471), 1, + sym_identifier, + STATE(32), 1, + sym_qualified_name, + ACTIONS(1581), 2, sym__or_operator, sym__and_operator, - STATE(2964), 2, + STATE(3007), 2, sym_comment, sym_include, - ACTIONS(200), 23, + ACTIONS(1579), 21, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, aux_sym__multiplicative_operator_token1, @@ -221138,60 +225778,136 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [199437] = 5, - ACTIONS(3), 1, + aux_sym_else_statement_token1, + [203389] = 24, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(4320), 1, - sym__escaped_string, - STATE(2965), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(3064), 1, + sym_of, + STATE(3125), 1, + sym__pre_tuning, + STATE(3185), 1, + aux_sym_for_phrase_repeat1, + STATE(3190), 1, + sym_where_clause, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3841), 1, + aux_sym_for_phrase_repeat2, + STATE(4580), 1, + sym_on_error_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4735), 1, + sym_on_quit_phrase, + STATE(5583), 1, + sym_on_stop_phrase, + ACTIONS(4146), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3008), 2, sym_comment, sym_include, - ACTIONS(4318), 25, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [203468] = 25, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, 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, - sym_date_literal, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_temp_table_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_dataset_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, - [199478] = 8, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(3031), 1, + sym__pre_tuning, + STATE(3139), 1, + sym_where_clause, + STATE(3143), 1, + aux_sym_for_phrase_repeat1, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3493), 1, + aux_sym_for_phrase_repeat2, + STATE(4151), 1, + sym_on_error_phrase, + STATE(4523), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4869), 1, + aux_sym_for_statement_repeat1, + STATE(4870), 1, + sym_on_stop_phrase, + STATE(5764), 1, + sym_body, + STATE(3009), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [203549] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2458), 1, + ACTIONS(2471), 1, sym_identifier, STATE(32), 1, sym_qualified_name, - ACTIONS(1366), 2, + ACTIONS(1581), 2, sym__or_operator, sym__and_operator, - STATE(2966), 2, + STATE(3010), 2, sym_comment, sym_include, - ACTIONS(1364), 21, + ACTIONS(1579), 21, anon_sym_SLASH, anon_sym_STAR, anon_sym_PLUS, @@ -221213,110 +225929,218 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_if_statement_token2, - [199525] = 25, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [203596] = 25, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3002), 1, + STATE(3053), 1, sym__pre_tuning, - STATE(3039), 1, - aux_sym_for_phrase_repeat1, - STATE(3058), 1, + STATE(3144), 1, sym_where_clause, - STATE(3217), 1, + STATE(3145), 1, + aux_sym_for_phrase_repeat1, + STATE(3271), 1, sym_using, - STATE(3321), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3467), 1, + STATE(3550), 1, aux_sym_for_phrase_repeat2, - STATE(3990), 1, + STATE(4154), 1, sym_on_error_phrase, - STATE(4451), 1, + STATE(4353), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4753), 1, + STATE(5053), 1, aux_sym_for_statement_repeat1, - STATE(4755), 1, + STATE(5054), 1, sym_on_stop_phrase, - STATE(5566), 1, + STATE(5939), 1, sym_body, - STATE(2967), 2, + STATE(3011), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [199606] = 6, - ACTIONS(65), 1, + [203677] = 25, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(3055), 1, + sym__pre_tuning, + STATE(3071), 1, + sym_where_clause, + STATE(3075), 1, + aux_sym_for_phrase_repeat1, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3520), 1, + aux_sym_for_phrase_repeat2, + STATE(4224), 1, + sym_on_error_phrase, + STATE(4421), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4785), 1, + sym_on_stop_phrase, + STATE(4789), 1, + aux_sym_for_statement_repeat1, + STATE(5947), 1, + sym_body, + STATE(3012), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [203758] = 19, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4324), 1, - aux_sym_variable_tuning_token2, - STATE(2968), 2, + ACTIONS(3306), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(3308), 1, + aux_sym_dataset_expression_token1, + ACTIONS(3811), 1, + aux_sym_property_definition_token1, + ACTIONS(3813), 1, + aux_sym_event_definition_token1, + STATE(3210), 1, + aux_sym_property_definition_repeat1, + STATE(3249), 1, + sym_serialization_tuning, + STATE(3275), 1, + aux_sym_event_definition_repeat1, + STATE(3280), 1, + aux_sym_variable_definition_repeat1, + STATE(3326), 1, + sym_property_type, + STATE(3407), 1, + aux_sym_buffer_definition_repeat1, + ACTIONS(3077), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(3809), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(3013), 2, sym_comment, sym_include, - ACTIONS(4322), 24, - sym__terminator, - aux_sym_unary_expression_token2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, + STATE(3257), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(3073), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3075), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_field_option_token1, - aux_sym_field_option_token2, - aux_sym_field_option_token3, - aux_sym_field_option_token4, - aux_sym_field_option_token5, - aux_sym_field_option_token6, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [199649] = 5, + [203827] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2471), 1, + sym_identifier, + STATE(32), 1, + sym_qualified_name, + ACTIONS(1581), 2, + sym__or_operator, + sym__and_operator, + STATE(3014), 2, + sym_comment, + sym_include, + ACTIONS(1579), 21, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym__multiplicative_operator_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_output_stream_statement_token1, + [203874] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4328), 1, + ACTIONS(4335), 1, sym__escaped_string, - STATE(2969), 2, + STATE(3015), 2, sym_comment, sym_include, - ACTIONS(4326), 25, + ACTIONS(4333), 25, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -221342,17 +226166,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [199690] = 5, + [203915] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4332), 1, + ACTIONS(4339), 1, sym__escaped_string, - STATE(2970), 2, + STATE(3016), 2, sym_comment, sym_include, - ACTIONS(4330), 25, + ACTIONS(4337), 25, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -221378,54 +226202,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [199731] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [203956] = 25, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3928), 1, - aux_sym_variable_tuning_token2, - STATE(2971), 2, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(3043), 1, + sym__pre_tuning, + STATE(3096), 1, + sym_where_clause, + STATE(3097), 1, + aux_sym_for_phrase_repeat1, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3517), 1, + aux_sym_for_phrase_repeat2, + STATE(4238), 1, + sym_on_error_phrase, + STATE(4436), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4804), 1, + sym_on_stop_phrase, + STATE(4827), 1, + aux_sym_for_statement_repeat1, + STATE(5697), 1, + sym_body, + STATE(3017), 2, sym_comment, sym_include, - ACTIONS(3926), 24, - sym__terminator, - aux_sym_unary_expression_token2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_field_option_token1, - aux_sym_field_option_token2, - aux_sym_field_option_token3, - aux_sym_field_option_token4, - aux_sym_field_option_token5, - aux_sym_field_option_token6, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [199774] = 5, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [204037] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4336), 1, + ACTIONS(4343), 1, sym__escaped_string, - STATE(2972), 2, + STATE(3018), 2, sym_comment, sym_include, - ACTIONS(4334), 25, + ACTIONS(4341), 25, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -221451,54 +226294,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [199815] = 6, + [204078] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(178), 2, - sym__or_operator, - sym__and_operator, - STATE(2973), 2, + ACTIONS(4347), 1, + sym__escaped_string, + STATE(3019), 2, sym_comment, sym_include, - ACTIONS(180), 23, - anon_sym_SLASH, + ACTIONS(4345), 25, + anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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, - anon_sym_NO_DASHERROR, - [199858] = 5, + 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, + sym_date_literal, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_temp_table_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_dataset_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, + [204119] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4340), 1, + ACTIONS(4351), 1, sym__escaped_string, - STATE(2974), 2, + STATE(3020), 2, sym_comment, sym_include, - ACTIONS(4338), 25, + ACTIONS(4349), 25, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -221524,278 +226366,372 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [199899] = 6, - ACTIONS(3), 1, + [204160] = 25, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(186), 2, - sym__or_operator, - sym__and_operator, - STATE(2975), 2, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(3049), 1, + sym__pre_tuning, + STATE(3160), 1, + aux_sym_for_phrase_repeat1, + STATE(3161), 1, + sym_where_clause, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3527), 1, + aux_sym_for_phrase_repeat2, + STATE(4064), 1, + sym_on_error_phrase, + STATE(4508), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(5111), 1, + sym_on_stop_phrase, + STATE(5112), 1, + aux_sym_for_statement_repeat1, + STATE(5760), 1, + sym_body, + STATE(3021), 2, sym_comment, sym_include, - ACTIONS(188), 23, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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, - [199942] = 6, - ACTIONS(3), 1, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [204241] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(106), 2, - sym__or_operator, - sym__and_operator, - STATE(2976), 2, + ACTIONS(4152), 1, + aux_sym_variable_tuning_token2, + STATE(3022), 2, sym_comment, sym_include, - ACTIONS(108), 23, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, + ACTIONS(4150), 24, sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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, - anon_sym_NO_DASHERROR, - [199985] = 6, - ACTIONS(3), 1, + aux_sym_unary_expression_token2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_field_option_token1, + aux_sym_field_option_token2, + aux_sym_field_option_token3, + aux_sym_field_option_token4, + aux_sym_field_option_token5, + aux_sym_field_option_token6, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [204284] = 24, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(210), 2, - sym__or_operator, - sym__and_operator, - STATE(2977), 2, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(3060), 1, + sym_of, + STATE(3091), 1, + sym__pre_tuning, + STATE(3180), 1, + sym_where_clause, + STATE(3184), 1, + aux_sym_for_phrase_repeat1, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3887), 1, + aux_sym_for_phrase_repeat2, + STATE(4598), 1, + sym_on_error_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4792), 1, + sym_on_quit_phrase, + STATE(5720), 1, + sym_on_stop_phrase, + ACTIONS(4140), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3023), 2, sym_comment, sym_include, - ACTIONS(212), 23, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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, - anon_sym_NO_DASHERROR, - [200028] = 6, - ACTIONS(3), 1, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [204363] = 25, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(190), 2, - sym__or_operator, - sym__and_operator, - STATE(2978), 2, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(3039), 1, + sym__pre_tuning, + STATE(3102), 1, + aux_sym_for_phrase_repeat1, + STATE(3103), 1, + sym_where_clause, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3499), 1, + aux_sym_for_phrase_repeat2, + STATE(4252), 1, + sym_on_error_phrase, + STATE(4449), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4857), 1, + sym_on_stop_phrase, + STATE(4862), 1, + aux_sym_for_statement_repeat1, + STATE(5831), 1, + sym_body, + STATE(3024), 2, sym_comment, sym_include, - ACTIONS(192), 23, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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, - anon_sym_NO_DASHERROR, - [200071] = 6, - ACTIONS(3), 1, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [204444] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(206), 2, - sym__or_operator, - sym__and_operator, - STATE(2979), 2, + ACTIONS(4355), 1, + aux_sym_variable_tuning_token2, + STATE(3025), 2, sym_comment, sym_include, - ACTIONS(208), 23, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, + ACTIONS(4353), 24, sym__terminator, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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, - [200114] = 6, - ACTIONS(3), 1, + aux_sym_unary_expression_token2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_field_option_token1, + aux_sym_field_option_token2, + aux_sym_field_option_token3, + aux_sym_field_option_token4, + aux_sym_field_option_token5, + aux_sym_field_option_token6, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [204487] = 25, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(132), 2, - sym__or_operator, - sym__and_operator, - STATE(2980), 2, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(3035), 1, + sym__pre_tuning, + STATE(3112), 1, + sym_where_clause, + STATE(3114), 1, + aux_sym_for_phrase_repeat1, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3551), 1, + aux_sym_for_phrase_repeat2, + STATE(4184), 1, + sym_on_error_phrase, + STATE(4335), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(5018), 1, + aux_sym_for_statement_repeat1, + STATE(5019), 1, + sym_on_stop_phrase, + STATE(5747), 1, + sym_body, + STATE(3026), 2, sym_comment, sym_include, - ACTIONS(134), 23, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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, - [200157] = 6, - ACTIONS(3), 1, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [204568] = 25, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(202), 2, - sym__or_operator, - sym__and_operator, - STATE(2981), 2, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(3041), 1, + sym__pre_tuning, + STATE(3079), 1, + sym_where_clause, + STATE(3083), 1, + aux_sym_for_phrase_repeat1, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3521), 1, + aux_sym_for_phrase_repeat2, + STATE(4080), 1, + sym_on_error_phrase, + STATE(4439), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4893), 1, + aux_sym_for_statement_repeat1, + STATE(4896), 1, + sym_on_stop_phrase, + STATE(5569), 1, + sym_body, + STATE(3027), 2, sym_comment, sym_include, - ACTIONS(204), 23, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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, - [200200] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [204649] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3918), 1, + ACTIONS(4087), 1, aux_sym_variable_tuning_token2, - STATE(2982), 2, + STATE(3028), 2, sym_comment, sym_include, - ACTIONS(3916), 24, + ACTIONS(4085), 24, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -221820,263 +226756,193 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [200243] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(194), 2, - sym__or_operator, - sym__and_operator, - STATE(2983), 2, - sym_comment, - sym_include, - ACTIONS(196), 23, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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, - [200286] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(222), 2, - sym__or_operator, - sym__and_operator, - STATE(2984), 2, - sym_comment, - sym_include, - ACTIONS(224), 23, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym__multiplicative_operator_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, - [200329] = 24, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [204692] = 25, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3039), 1, - aux_sym_for_phrase_repeat1, - STATE(3058), 1, + STATE(3048), 1, + sym__pre_tuning, + STATE(3087), 1, sym_where_clause, - STATE(3217), 1, + STATE(3092), 1, + aux_sym_for_phrase_repeat1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3467), 1, + STATE(3500), 1, aux_sym_for_phrase_repeat2, - STATE(3990), 1, + STATE(4063), 1, sym_on_error_phrase, - STATE(4451), 1, + STATE(4529), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4753), 1, - aux_sym_for_statement_repeat1, - STATE(4755), 1, + STATE(4704), 1, sym_on_stop_phrase, - STATE(5566), 1, + STATE(4757), 1, + aux_sym_for_statement_repeat1, + STATE(5544), 1, sym_body, - STATE(2985), 2, + STATE(3029), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [200407] = 24, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [204773] = 25, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3062), 1, - sym_where_clause, - STATE(3068), 1, + STATE(3042), 1, + sym__pre_tuning, + STATE(3128), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3131), 1, + sym_where_clause, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3485), 1, + STATE(3507), 1, aux_sym_for_phrase_repeat2, - STATE(4120), 1, + STATE(4066), 1, sym_on_error_phrase, - STATE(4412), 1, + STATE(4514), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4887), 1, + STATE(5074), 1, sym_on_stop_phrase, - STATE(4890), 1, + STATE(5079), 1, aux_sym_for_statement_repeat1, STATE(5464), 1, sym_body, - STATE(2986), 2, + STATE(3030), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [200485] = 24, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [204854] = 24, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3036), 1, - sym_where_clause, - STATE(3061), 1, + STATE(3072), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3108), 1, + sym_where_clause, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3453), 1, + STATE(3505), 1, aux_sym_for_phrase_repeat2, - STATE(4127), 1, + STATE(4245), 1, sym_on_error_phrase, - STATE(4265), 1, + STATE(4453), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4622), 1, - aux_sym_for_statement_repeat1, - STATE(4626), 1, + STATE(4860), 1, sym_on_stop_phrase, - STATE(6013), 1, + STATE(4861), 1, + aux_sym_for_statement_repeat1, + STATE(5815), 1, sym_body, - STATE(2987), 2, + STATE(3031), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [200563] = 9, + [204932] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4342), 1, + ACTIONS(4357), 1, sym_identifier, - ACTIONS(4346), 1, + ACTIONS(4361), 1, aux_sym_class_type_token1, - STATE(1534), 1, + STATE(4960), 1, sym__type, - STATE(2988), 2, + STATE(3032), 2, sym_comment, sym_include, - STATE(3642), 3, + STATE(3626), 3, sym_qualified_name, sym_primitive_type, sym_class_type, - ACTIONS(4344), 18, + ACTIONS(4359), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -222095,171 +226961,209 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [200611] = 24, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [204980] = 24, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3029), 1, - aux_sym_for_phrase_repeat1, - STATE(3041), 1, + STATE(3079), 1, sym_where_clause, - STATE(3217), 1, + STATE(3083), 1, + aux_sym_for_phrase_repeat1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3434), 1, + STATE(3521), 1, aux_sym_for_phrase_repeat2, - STATE(4158), 1, + STATE(4080), 1, sym_on_error_phrase, - STATE(4394), 1, + STATE(4439), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4949), 1, + STATE(4893), 1, aux_sym_for_statement_repeat1, - STATE(4953), 1, + STATE(4896), 1, sym_on_stop_phrase, - STATE(5632), 1, + STATE(5569), 1, sym_body, - STATE(2989), 2, + STATE(3033), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [200689] = 24, - ACTIONS(65), 1, + [205058] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4367), 1, + aux_sym_button_tuning_token2, + ACTIONS(4365), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + STATE(3034), 2, + sym_comment, + sym_include, + ACTIONS(4363), 21, + sym__terminator, + aux_sym_type_tuning_token2, + aux_sym_variable_tuning_token4, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [205102] = 24, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3082), 1, - aux_sym_for_phrase_repeat1, - STATE(3086), 1, + STATE(3106), 1, sym_where_clause, - STATE(3217), 1, + STATE(3109), 1, + aux_sym_for_phrase_repeat1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3448), 1, + STATE(3559), 1, aux_sym_for_phrase_repeat2, - STATE(4004), 1, + STATE(4212), 1, sym_on_error_phrase, - STATE(4402), 1, + STATE(4321), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4715), 1, - aux_sym_for_statement_repeat1, - STATE(4717), 1, + STATE(5002), 1, sym_on_stop_phrase, - STATE(5663), 1, + STATE(5004), 1, + aux_sym_for_statement_repeat1, + STATE(5678), 1, sym_body, - STATE(2990), 2, + STATE(3035), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [200767] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [205180] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2787), 1, - aux_sym_variable_definition_token4, - STATE(2991), 2, + ACTIONS(4367), 1, + aux_sym_button_tuning_token15, + ACTIONS(4365), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + STATE(3036), 2, sym_comment, sym_include, - ACTIONS(4348), 23, - aux_sym_temp_table_expression_token1, - aux_sym_dataset_expression_token1, - 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_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - aux_sym_variable_definition_token3, - aux_sym_buffer_definition_token1, - aux_sym_query_definition_token1, - aux_sym_argument_mode_token3, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_property_definition_token1, - aux_sym_event_definition_token1, - aux_sym_workfile_definition_token1, - aux_sym_workfile_definition_token2, - [200809] = 9, + ACTIONS(4363), 21, + sym__terminator, + aux_sym_type_tuning_token2, + aux_sym_variable_tuning_token4, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [205224] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4350), 1, + ACTIONS(4369), 1, sym_identifier, - ACTIONS(4352), 1, + ACTIONS(4373), 1, aux_sym_class_type_token1, - STATE(4941), 1, + STATE(1923), 1, sym__type, - STATE(2992), 2, + STATE(3037), 2, sym_comment, sym_include, - STATE(3642), 3, + STATE(3022), 3, sym_qualified_name, sym_primitive_type, sym_class_type, - ACTIONS(4344), 18, + ACTIONS(4371), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -222278,570 +227182,405 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [200857] = 24, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [205272] = 24, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3022), 1, - sym_where_clause, - STATE(3072), 1, + STATE(3160), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3161), 1, + sym_where_clause, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3484), 1, + STATE(3527), 1, aux_sym_for_phrase_repeat2, - STATE(4033), 1, + STATE(4064), 1, sym_on_error_phrase, - STATE(4287), 1, + STATE(4508), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4886), 1, + STATE(5111), 1, sym_on_stop_phrase, - STATE(4891), 1, + STATE(5112), 1, aux_sym_for_statement_repeat1, - STATE(5981), 1, + STATE(5760), 1, sym_body, - STATE(2993), 2, + STATE(3038), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [200935] = 24, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [205350] = 24, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3076), 1, - sym_where_clause, - STATE(3081), 1, + STATE(3111), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3113), 1, + sym_where_clause, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3440), 1, + STATE(3528), 1, aux_sym_for_phrase_repeat2, - STATE(4093), 1, + STATE(4199), 1, sym_on_error_phrase, - STATE(4306), 1, + STATE(4462), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4965), 1, + STATE(4892), 1, aux_sym_for_statement_repeat1, - STATE(4967), 1, + STATE(4894), 1, sym_on_stop_phrase, - STATE(6005), 1, + STATE(5770), 1, sym_body, - STATE(2994), 2, + STATE(3039), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [201013] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, - aux_sym_using_statement_token2, - ACTIONS(4358), 2, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - STATE(2995), 2, - sym_comment, - sym_include, - ACTIONS(4354), 21, - sym__terminator, - aux_sym_type_tuning_token2, - aux_sym_variable_tuning_token4, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [201057] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [205428] = 24, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4364), 1, - aux_sym_button_tuning_token2, - ACTIONS(4362), 2, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - STATE(2996), 2, - sym_comment, - sym_include, - ACTIONS(4360), 21, - sym__terminator, - aux_sym_type_tuning_token2, - aux_sym_variable_tuning_token4, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [201101] = 24, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3031), 1, - sym_where_clause, - STATE(3037), 1, + STATE(3102), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, - sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3431), 1, - aux_sym_for_phrase_repeat2, - STATE(4159), 1, - sym_on_error_phrase, - STATE(4319), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(5015), 1, - aux_sym_for_statement_repeat1, - STATE(5035), 1, - sym_on_stop_phrase, - STATE(5645), 1, - sym_body, - STATE(2997), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [201179] = 24, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(3059), 1, + STATE(3103), 1, sym_where_clause, - STATE(3060), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3465), 1, + STATE(3499), 1, aux_sym_for_phrase_repeat2, - STATE(3993), 1, + STATE(4252), 1, sym_on_error_phrase, - STATE(4364), 1, + STATE(4449), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(5037), 1, - aux_sym_for_statement_repeat1, - STATE(5038), 1, + STATE(4857), 1, sym_on_stop_phrase, - STATE(5689), 1, + STATE(4862), 1, + aux_sym_for_statement_repeat1, + STATE(5831), 1, sym_body, - STATE(2998), 2, + STATE(3040), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [201257] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [205506] = 24, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4364), 1, - aux_sym_button_tuning_token15, - ACTIONS(4362), 2, - aux_sym_image_phrase_token1, - aux_sym_size_phrase_token1, - STATE(2999), 2, - sym_comment, - sym_include, - ACTIONS(4360), 21, - sym__terminator, - aux_sym_type_tuning_token2, - aux_sym_variable_tuning_token4, - aux_sym_image_phrase_token2, - aux_sym_size_phrase_token2, - aux_sym_size_phrase_token3, - aux_sym_button_tuning_token1, - aux_sym_button_tuning_token3, - aux_sym_button_tuning_token4, - aux_sym_button_tuning_token5, - aux_sym_button_tuning_token6, - aux_sym_button_tuning_token7, - aux_sym_button_tuning_token8, - aux_sym_button_tuning_token9, - aux_sym_button_tuning_token10, - aux_sym_button_tuning_token11, - aux_sym_button_tuning_token12, - aux_sym_button_tuning_token13, - aux_sym_button_tuning_token14, - aux_sym_button_tuning_token16, - aux_sym_button_tuning_token17, - [201301] = 24, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3056), 1, + STATE(3146), 1, sym_where_clause, - STATE(3064), 1, + STATE(3154), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3429), 1, + STATE(3498), 1, aux_sym_for_phrase_repeat2, - STATE(4086), 1, + STATE(4133), 1, sym_on_error_phrase, - STATE(4309), 1, + STATE(4255), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4976), 1, + STATE(4879), 1, sym_on_stop_phrase, - STATE(4977), 1, + STATE(4880), 1, aux_sym_for_statement_repeat1, - STATE(5987), 1, + STATE(5683), 1, sym_body, - STATE(3000), 2, + STATE(3041), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [201379] = 24, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [205584] = 24, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3051), 1, - sym_where_clause, - STATE(3055), 1, + STATE(3151), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3158), 1, + sym_where_clause, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3450), 1, + STATE(3515), 1, aux_sym_for_phrase_repeat2, - STATE(4102), 1, + STATE(4059), 1, sym_on_error_phrase, - STATE(4354), 1, + STATE(4509), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4683), 1, + STATE(5102), 1, aux_sym_for_statement_repeat1, - STATE(4687), 1, + STATE(5105), 1, sym_on_stop_phrase, - STATE(5996), 1, + STATE(5712), 1, sym_body, - STATE(3001), 2, + STATE(3042), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [201457] = 24, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [205662] = 24, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3075), 1, - aux_sym_for_phrase_repeat1, - STATE(3077), 1, + STATE(3069), 1, sym_where_clause, - STATE(3217), 1, + STATE(3138), 1, + aux_sym_for_phrase_repeat1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3456), 1, + STATE(3563), 1, aux_sym_for_phrase_repeat2, - STATE(4000), 1, + STATE(4192), 1, sym_on_error_phrase, - STATE(4404), 1, + STATE(4307), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4725), 1, + STATE(4784), 1, sym_on_stop_phrase, - STATE(4728), 1, + STATE(4788), 1, aux_sym_for_statement_repeat1, - STATE(5631), 1, + STATE(5713), 1, sym_body, - STATE(3002), 2, + STATE(3043), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [201535] = 24, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [205740] = 24, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3032), 1, + STATE(3128), 1, aux_sym_for_phrase_repeat1, - STATE(3070), 1, + STATE(3131), 1, sym_where_clause, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3439), 1, + STATE(3507), 1, aux_sym_for_phrase_repeat2, - STATE(4117), 1, + STATE(4066), 1, sym_on_error_phrase, - STATE(4280), 1, + STATE(4514), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4633), 1, + STATE(5074), 1, sym_on_stop_phrase, - STATE(4641), 1, + STATE(5079), 1, aux_sym_for_statement_repeat1, - STATE(6019), 1, + STATE(5464), 1, sym_body, - STATE(3003), 2, + STATE(3044), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [201613] = 9, + [205818] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4366), 1, + ACTIONS(4375), 1, sym_identifier, - ACTIONS(4370), 1, + ACTIONS(4377), 1, aux_sym_class_type_token1, - STATE(1534), 1, + STATE(1923), 1, sym__type, - STATE(3004), 2, + STATE(3045), 2, sym_comment, sym_include, - STATE(2971), 3, + STATE(3626), 3, sym_qualified_name, sym_primitive_type, sym_class_type, - ACTIONS(4368), 18, + ACTIONS(4359), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -222860,493 +227599,633 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [201661] = 24, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [205866] = 24, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3043), 1, + STATE(3096), 1, sym_where_clause, - STATE(3047), 1, + STATE(3097), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3471), 1, + STATE(3517), 1, aux_sym_for_phrase_repeat2, - STATE(4175), 1, + STATE(4238), 1, sym_on_error_phrase, - STATE(4213), 1, + STATE(4436), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4592), 1, + STATE(4804), 1, sym_on_stop_phrase, - STATE(4597), 1, + STATE(4827), 1, aux_sym_for_statement_repeat1, - STATE(5961), 1, + STATE(5697), 1, sym_body, - STATE(3005), 2, + STATE(3046), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [201739] = 24, - ACTIONS(65), 1, + [205944] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2845), 1, + aux_sym_variable_definition_token4, + STATE(3047), 2, + sym_comment, + sym_include, + ACTIONS(4379), 23, + aux_sym_temp_table_expression_token1, + aux_sym_dataset_expression_token1, + 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_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_variable_definition_token3, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + aux_sym_argument_mode_token3, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_property_definition_token1, + aux_sym_event_definition_token1, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + [205986] = 24, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3028), 1, + STATE(3077), 1, aux_sym_for_phrase_repeat1, - STATE(3030), 1, + STATE(3129), 1, sym_where_clause, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3470), 1, + STATE(3554), 1, aux_sym_for_phrase_repeat2, - STATE(4071), 1, + STATE(4124), 1, sym_on_error_phrase, - STATE(4242), 1, + STATE(4382), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4692), 1, - sym_on_stop_phrase, - STATE(4695), 1, + STATE(4825), 1, aux_sym_for_statement_repeat1, - STATE(5489), 1, + STATE(4829), 1, + sym_on_stop_phrase, + STATE(5801), 1, sym_body, - STATE(3006), 2, + STATE(3048), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [201817] = 24, - ACTIONS(65), 1, + [206064] = 24, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(3068), 1, + aux_sym_for_phrase_repeat1, + STATE(3157), 1, + sym_where_clause, + STATE(3271), 1, + sym_using, + STATE(3454), 1, + sym_query_tuning, + STATE(3523), 1, + aux_sym_for_phrase_repeat2, + STATE(4079), 1, + sym_on_error_phrase, + STATE(4468), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(5164), 1, + aux_sym_for_statement_repeat1, + STATE(5169), 1, + sym_on_stop_phrase, + STATE(5808), 1, + sym_body, + STATE(3049), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [206142] = 24, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3073), 1, + STATE(3071), 1, sym_where_clause, - STATE(3093), 1, + STATE(3075), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3461), 1, + STATE(3520), 1, aux_sym_for_phrase_repeat2, - STATE(4155), 1, + STATE(4224), 1, sym_on_error_phrase, - STATE(4233), 1, + STATE(4421), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4656), 1, + STATE(4785), 1, sym_on_stop_phrase, - STATE(4664), 1, + STATE(4789), 1, aux_sym_for_statement_repeat1, - STATE(5408), 1, + STATE(5947), 1, sym_body, - STATE(3007), 2, + STATE(3050), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [201895] = 24, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [206220] = 24, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3054), 1, - aux_sym_for_phrase_repeat1, - STATE(3083), 1, + STATE(3144), 1, sym_where_clause, - STATE(3217), 1, + STATE(3145), 1, + aux_sym_for_phrase_repeat1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3441), 1, + STATE(3550), 1, aux_sym_for_phrase_repeat2, - STATE(4061), 1, + STATE(4154), 1, sym_on_error_phrase, - STATE(4405), 1, + STATE(4353), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4909), 1, + STATE(5053), 1, aux_sym_for_statement_repeat1, - STATE(4912), 1, + STATE(5054), 1, sym_on_stop_phrase, - STATE(5523), 1, + STATE(5939), 1, sym_body, - STATE(3008), 2, + STATE(3051), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [201973] = 24, - ACTIONS(65), 1, + [206298] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4383), 1, + aux_sym_using_statement_token2, + ACTIONS(4385), 2, + aux_sym_image_phrase_token1, + aux_sym_size_phrase_token1, + STATE(3052), 2, + sym_comment, + sym_include, + ACTIONS(4381), 21, + sym__terminator, + aux_sym_type_tuning_token2, + aux_sym_variable_tuning_token4, + aux_sym_image_phrase_token2, + aux_sym_size_phrase_token2, + aux_sym_size_phrase_token3, + aux_sym_button_tuning_token1, + aux_sym_button_tuning_token3, + aux_sym_button_tuning_token4, + aux_sym_button_tuning_token5, + aux_sym_button_tuning_token6, + aux_sym_button_tuning_token7, + aux_sym_button_tuning_token8, + aux_sym_button_tuning_token9, + aux_sym_button_tuning_token10, + aux_sym_button_tuning_token11, + aux_sym_button_tuning_token12, + aux_sym_button_tuning_token13, + aux_sym_button_tuning_token14, + aux_sym_button_tuning_token16, + aux_sym_button_tuning_token17, + [206342] = 24, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3092), 1, + STATE(3116), 1, sym_where_clause, - STATE(3094), 1, + STATE(3117), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3444), 1, + STATE(3558), 1, aux_sym_for_phrase_repeat2, - STATE(4024), 1, + STATE(4176), 1, sym_on_error_phrase, - STATE(4353), 1, + STATE(4342), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4686), 1, + STATE(5024), 1, sym_on_stop_phrase, - STATE(4691), 1, + STATE(5038), 1, aux_sym_for_statement_repeat1, - STATE(5711), 1, + STATE(5798), 1, sym_body, - STATE(3009), 2, + STATE(3053), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [202051] = 24, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [206420] = 24, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3042), 1, + STATE(3112), 1, sym_where_clause, - STATE(3045), 1, + STATE(3114), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3447), 1, + STATE(3551), 1, aux_sym_for_phrase_repeat2, - STATE(4067), 1, + STATE(4184), 1, sym_on_error_phrase, - STATE(4315), 1, + STATE(4335), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4999), 1, + STATE(5018), 1, aux_sym_for_statement_repeat1, - STATE(5000), 1, + STATE(5019), 1, sym_on_stop_phrase, - STATE(5956), 1, + STATE(5747), 1, sym_body, - STATE(3010), 2, + STATE(3054), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [202129] = 24, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [206498] = 24, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3050), 1, + STATE(3094), 1, aux_sym_for_phrase_repeat1, - STATE(3052), 1, + STATE(3099), 1, sym_where_clause, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3472), 1, + STATE(3504), 1, aux_sym_for_phrase_repeat2, - STATE(3991), 1, + STATE(4243), 1, sym_on_error_phrase, - STATE(4400), 1, + STATE(4256), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4922), 1, - sym_on_stop_phrase, - STATE(4923), 1, + STATE(4841), 1, aux_sym_for_statement_repeat1, - STATE(5558), 1, + STATE(4851), 1, + sym_on_stop_phrase, + STATE(5865), 1, sym_body, - STATE(3011), 2, + STATE(3055), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [202207] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [206576] = 24, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3790), 1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3069), 1, - sym__pre_tuning, - STATE(3099), 1, - aux_sym_for_phrase_repeat1, - STATE(3112), 1, + STATE(3139), 1, sym_where_clause, - STATE(3217), 1, + STATE(3143), 1, + aux_sym_for_phrase_repeat1, + STATE(3271), 1, sym_using, - STATE(3321), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3747), 1, + STATE(3493), 1, aux_sym_for_phrase_repeat2, - STATE(4487), 1, - sym_sort_clause, - STATE(4521), 1, + STATE(4151), 1, sym_on_error_phrase, - STATE(4898), 1, + STATE(4523), 1, sym_on_quit_phrase, - STATE(5581), 1, + STATE(4603), 1, + sym_sort_clause, + STATE(4869), 1, + aux_sym_for_statement_repeat1, + STATE(4870), 1, sym_on_stop_phrase, - ACTIONS(4372), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(3012), 2, + STATE(5764), 1, + sym_body, + STATE(3056), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [202280] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [206654] = 24, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, - aux_sym_variable_definition_token4, - ACTIONS(4394), 1, - aux_sym_argument_mode_token3, - ACTIONS(4399), 1, - aux_sym_property_definition_token1, - ACTIONS(4401), 1, - aux_sym_event_definition_token1, - STATE(6191), 1, - sym_scope_tuning, - ACTIONS(4374), 2, - aux_sym_temp_table_expression_token1, - aux_sym_variable_definition_token3, - ACTIONS(4389), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(4396), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - STATE(3013), 2, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(3087), 1, + sym_where_clause, + STATE(3092), 1, + aux_sym_for_phrase_repeat1, + STATE(3271), 1, + sym_using, + STATE(3454), 1, + sym_query_tuning, + STATE(3500), 1, + aux_sym_for_phrase_repeat2, + STATE(4063), 1, + sym_on_error_phrase, + STATE(4529), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4704), 1, + sym_on_stop_phrase, + STATE(4757), 1, + aux_sym_for_statement_repeat1, + STATE(5544), 1, + sym_body, + STATE(3057), 2, sym_comment, sym_include, - ACTIONS(4376), 3, - aux_sym_dataset_expression_token1, - aux_sym_buffer_definition_token1, - aux_sym_query_definition_token1, - ACTIONS(4378), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - ACTIONS(4384), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - [202339] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [206732] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4405), 2, + ACTIONS(4389), 2, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - STATE(3014), 2, + STATE(3058), 2, sym_comment, sym_include, - ACTIONS(4403), 21, + ACTIONS(4387), 21, sym__terminator, aux_sym_type_tuning_token2, aux_sym_variable_tuning_token4, @@ -223368,71 +228247,115 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [202380] = 22, - ACTIONS(65), 1, + [206773] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4409), 1, + aux_sym_variable_definition_token4, + ACTIONS(4411), 1, + aux_sym_argument_mode_token3, + ACTIONS(4416), 1, + aux_sym_property_definition_token1, + ACTIONS(4418), 1, + aux_sym_event_definition_token1, + STATE(6329), 1, + sym_scope_tuning, + ACTIONS(4391), 2, + aux_sym_temp_table_expression_token1, + aux_sym_variable_definition_token3, + ACTIONS(4406), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(4413), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(3059), 2, + sym_comment, + sym_include, + ACTIONS(4393), 3, + aux_sym_dataset_expression_token1, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + ACTIONS(4395), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(4401), 5, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + [206832] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, + ACTIONS(3821), 1, aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3033), 1, + STATE(3124), 1, sym__pre_tuning, - STATE(3106), 1, + STATE(3195), 1, sym_where_clause, - STATE(3128), 1, + STATE(3197), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3321), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3758), 1, + STATE(3842), 1, aux_sym_for_phrase_repeat2, - STATE(4487), 1, - sym_sort_clause, - STATE(4558), 1, + STATE(4578), 1, sym_on_error_phrase, - STATE(4589), 1, + STATE(4603), 1, + sym_sort_clause, + STATE(4727), 1, sym_on_quit_phrase, - STATE(5388), 1, + STATE(5574), 1, sym_on_stop_phrase, - ACTIONS(4407), 2, + ACTIONS(4420), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(3015), 2, + STATE(3060), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [202453] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [206905] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2400), 2, + ACTIONS(2413), 2, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - STATE(3016), 2, + STATE(3061), 2, sym_comment, sym_include, - ACTIONS(2398), 21, + ACTIONS(2411), 21, sym__terminator, aux_sym_type_tuning_token2, aux_sym_variable_tuning_token4, @@ -223454,20 +228377,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [202494] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [206946] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4411), 2, + ACTIONS(4424), 2, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - STATE(3017), 2, + STATE(3062), 2, sym_comment, sym_include, - ACTIONS(4409), 21, + ACTIONS(4422), 21, sym__terminator, aux_sym_type_tuning_token2, aux_sym_variable_tuning_token4, @@ -223489,20 +228412,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [202535] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [206987] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4415), 2, + ACTIONS(4428), 2, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - STATE(3018), 2, + STATE(3063), 2, sym_comment, sym_include, - ACTIONS(4413), 21, + ACTIONS(4426), 21, sym__terminator, aux_sym_type_tuning_token2, aux_sym_variable_tuning_token4, @@ -223524,20 +228447,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [202576] = 6, - ACTIONS(65), 1, + [207028] = 22, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(3067), 1, + sym__pre_tuning, + STATE(3174), 1, + aux_sym_for_phrase_repeat1, + STATE(3175), 1, + sym_where_clause, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3911), 1, + aux_sym_for_phrase_repeat2, + STATE(4603), 1, + sym_sort_clause, + STATE(4622), 1, + sym_on_error_phrase, + STATE(4935), 1, + sym_on_quit_phrase, + STATE(6073), 1, + sym_on_stop_phrase, + ACTIONS(4430), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3064), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [207101] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4362), 2, + ACTIONS(4434), 2, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - STATE(3019), 2, + STATE(3065), 2, sym_comment, sym_include, - ACTIONS(4360), 21, + ACTIONS(4432), 21, sym__terminator, aux_sym_type_tuning_token2, aux_sym_variable_tuning_token4, @@ -223559,20 +228533,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [202617] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [207142] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4419), 2, + ACTIONS(4365), 2, aux_sym_image_phrase_token1, aux_sym_size_phrase_token1, - STATE(3020), 2, + STATE(3066), 2, sym_comment, sym_include, - ACTIONS(4417), 21, + ACTIONS(4363), 21, sym__terminator, aux_sym_type_tuning_token2, aux_sym_variable_tuning_token4, @@ -223594,3756 +228568,4776 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_button_tuning_token14, aux_sym_button_tuning_token16, aux_sym_button_tuning_token17, - [202658] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [207183] = 21, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, - sym_using, - STATE(3220), 1, + STATE(3172), 1, + sym_where_clause, + STATE(3196), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3271), 1, + sym_using, + STATE(3454), 1, sym_query_tuning, - STATE(3448), 1, + STATE(3920), 1, aux_sym_for_phrase_repeat2, - STATE(4004), 1, + STATE(4603), 1, + sym_sort_clause, + STATE(4627), 1, sym_on_error_phrase, - STATE(4402), 1, + STATE(5154), 1, sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4715), 1, - aux_sym_for_statement_repeat1, - STATE(4717), 1, + STATE(5942), 1, sym_on_stop_phrase, - STATE(5663), 1, - sym_body, - STATE(3021), 2, + ACTIONS(4436), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3067), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [202730] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [207253] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3081), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, sym_query_tuning, - STATE(3440), 1, + STATE(3516), 1, aux_sym_for_phrase_repeat2, - STATE(4093), 1, + STATE(4096), 1, sym_on_error_phrase, - STATE(4306), 1, + STATE(4434), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4965), 1, - aux_sym_for_statement_repeat1, - STATE(4967), 1, + STATE(5162), 1, sym_on_stop_phrase, - STATE(6005), 1, + STATE(5163), 1, + aux_sym_for_statement_repeat1, + STATE(5857), 1, sym_body, - STATE(3022), 2, + STATE(3068), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [202802] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [207325] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, - sym_using, - STATE(3220), 1, + STATE(3150), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3271), 1, + sym_using, + STATE(3454), 1, sym_query_tuning, - STATE(3431), 1, + STATE(3545), 1, aux_sym_for_phrase_repeat2, - STATE(4159), 1, + STATE(4127), 1, sym_on_error_phrase, - STATE(4319), 1, + STATE(4339), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(5015), 1, + STATE(4748), 1, aux_sym_for_statement_repeat1, - STATE(5035), 1, + STATE(4749), 1, sym_on_stop_phrase, - STATE(5645), 1, + STATE(5602), 1, sym_body, - STATE(3023), 2, + STATE(3069), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [202874] = 22, - ACTIONS(65), 1, + [207397] = 24, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(4438), 1, + sym_identifier, + ACTIONS(4440), 1, + anon_sym_COLON, + ACTIONS(4442), 1, + aux_sym__block_terminator_token1, + ACTIONS(4444), 1, + aux_sym_while_phrase_token1, + ACTIONS(4446), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4448), 1, + aux_sym_on_error_phrase_token1, + STATE(2179), 1, + sym__block_terminator, + STATE(3431), 1, + sym_to_phrase, + STATE(3736), 1, + sym_while_phrase, + STATE(3843), 1, + sym_on_error_phrase, + STATE(3939), 1, + sym_on_quit_phrase, + STATE(4050), 1, + aux_sym_repeat_statement_repeat1, + STATE(4090), 1, + sym_on_stop_phrase, + STATE(4716), 1, + sym_object_access, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5780), 1, + sym_body, + STATE(6433), 1, + sym_assignment, + STATE(3070), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5582), 2, + sym_qualified_name, + sym_member_access, + [207473] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, - sym_using, - STATE(3220), 1, + STATE(3094), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3271), 1, + sym_using, + STATE(3454), 1, sym_query_tuning, - STATE(3467), 1, + STATE(3504), 1, aux_sym_for_phrase_repeat2, - STATE(3990), 1, + STATE(4243), 1, sym_on_error_phrase, - STATE(4451), 1, + STATE(4256), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4753), 1, + STATE(4841), 1, aux_sym_for_statement_repeat1, - STATE(4755), 1, + STATE(4851), 1, sym_on_stop_phrase, - STATE(5566), 1, + STATE(5865), 1, sym_body, - STATE(3024), 2, + STATE(3071), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [202946] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [207545] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3434), 1, + STATE(3525), 1, aux_sym_for_phrase_repeat2, - STATE(4158), 1, + STATE(4216), 1, sym_on_error_phrase, - STATE(4394), 1, + STATE(4425), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4949), 1, - aux_sym_for_statement_repeat1, - STATE(4953), 1, + STATE(4853), 1, sym_on_stop_phrase, - STATE(5632), 1, + STATE(4854), 1, + aux_sym_for_statement_repeat1, + STATE(5856), 1, sym_body, - STATE(3025), 2, + STATE(3072), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [203018] = 22, - ACTIONS(65), 1, + [207617] = 22, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(4438), 1, + sym_identifier, + ACTIONS(4440), 1, + anon_sym_COLON, + ACTIONS(4450), 1, + aux_sym_while_phrase_token1, + ACTIONS(4452), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4454), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(4456), 1, + aux_sym_do_tuning_token1, + STATE(3396), 1, + sym_to_phrase, + STATE(3587), 1, + aux_sym_do_block_repeat1, + STATE(3669), 1, + sym_while_phrase, + STATE(4257), 1, + sym_stop_after_phrase, + STATE(4716), 1, + sym_object_access, + STATE(4926), 1, + sym_do_tuning, + STATE(6007), 1, + sym_body, + STATE(6598), 1, + sym_assignment, + STATE(3073), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5582), 2, + sym_qualified_name, + sym_member_access, + STATE(6022), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [207689] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3039), 1, + STATE(3143), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3467), 1, + STATE(3493), 1, aux_sym_for_phrase_repeat2, - STATE(3990), 1, + STATE(4151), 1, sym_on_error_phrase, - STATE(4451), 1, + STATE(4523), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4753), 1, + STATE(4869), 1, aux_sym_for_statement_repeat1, - STATE(4755), 1, + STATE(4870), 1, sym_on_stop_phrase, - STATE(5566), 1, + STATE(5764), 1, sym_body, - STATE(3026), 2, + STATE(3074), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [203090] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [207761] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3439), 1, + STATE(3504), 1, aux_sym_for_phrase_repeat2, - STATE(4117), 1, + STATE(4243), 1, sym_on_error_phrase, - STATE(4280), 1, + STATE(4256), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4633), 1, - sym_on_stop_phrase, - STATE(4641), 1, + STATE(4841), 1, aux_sym_for_statement_repeat1, - STATE(6019), 1, + STATE(4851), 1, + sym_on_stop_phrase, + STATE(5865), 1, sym_body, - STATE(3027), 2, + STATE(3075), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [203162] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [207833] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3437), 1, + STATE(3520), 1, aux_sym_for_phrase_repeat2, - STATE(4045), 1, + STATE(4224), 1, sym_on_error_phrase, - STATE(4212), 1, + STATE(4421), 1, sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4602), 1, - aux_sym_for_statement_repeat1, STATE(4603), 1, + sym_sort_clause, + STATE(4785), 1, sym_on_stop_phrase, - STATE(5392), 1, + STATE(4789), 1, + aux_sym_for_statement_repeat1, + STATE(5947), 1, sym_body, - STATE(3028), 2, + STATE(3076), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [203234] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [207905] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3472), 1, + STATE(3501), 1, aux_sym_for_phrase_repeat2, - STATE(3991), 1, + STATE(4250), 1, sym_on_error_phrase, - STATE(4400), 1, + STATE(4455), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4922), 1, + STATE(4909), 1, sym_on_stop_phrase, - STATE(4923), 1, + STATE(5157), 1, aux_sym_for_statement_repeat1, - STATE(5558), 1, + STATE(5812), 1, sym_body, - STATE(3029), 2, + STATE(3077), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [203306] = 22, - ACTIONS(65), 1, + [207977] = 24, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(4438), 1, + sym_identifier, + ACTIONS(4440), 1, + anon_sym_COLON, + ACTIONS(4444), 1, + aux_sym_while_phrase_token1, + ACTIONS(4446), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4448), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4458), 1, + aux_sym__block_terminator_token1, + STATE(2330), 1, + sym__block_terminator, + STATE(3429), 1, + sym_to_phrase, + STATE(3615), 1, + sym_while_phrase, + STATE(3897), 1, + sym_on_error_phrase, + STATE(3966), 1, + sym_on_quit_phrase, + STATE(4195), 1, + aux_sym_repeat_statement_repeat1, + STATE(4200), 1, + sym_on_stop_phrase, + STATE(4716), 1, + sym_object_access, + STATE(5323), 1, + sym_repeat_tuning, + STATE(6130), 1, + sym_body, + STATE(6433), 1, + sym_assignment, + STATE(3078), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5582), 2, + sym_qualified_name, + sym_member_access, + [208053] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3088), 1, + STATE(3154), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3437), 1, + STATE(3498), 1, aux_sym_for_phrase_repeat2, - STATE(4045), 1, + STATE(4133), 1, sym_on_error_phrase, - STATE(4212), 1, + STATE(4255), 1, sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4602), 1, - aux_sym_for_statement_repeat1, STATE(4603), 1, + sym_sort_clause, + STATE(4879), 1, sym_on_stop_phrase, - STATE(5392), 1, + STATE(4880), 1, + aux_sym_for_statement_repeat1, + STATE(5683), 1, sym_body, - STATE(3030), 2, + STATE(3079), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [203378] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [208125] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3028), 1, + STATE(3075), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3470), 1, + STATE(3520), 1, aux_sym_for_phrase_repeat2, - STATE(4071), 1, + STATE(4224), 1, sym_on_error_phrase, - STATE(4242), 1, + STATE(4421), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4692), 1, + STATE(4785), 1, sym_on_stop_phrase, - STATE(4695), 1, + STATE(4789), 1, aux_sym_for_statement_repeat1, - STATE(5489), 1, + STATE(5947), 1, sym_body, - STATE(3031), 2, + STATE(3080), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [203450] = 22, - ACTIONS(65), 1, + [208197] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(4438), 1, + sym_identifier, + ACTIONS(4440), 1, + anon_sym_COLON, + ACTIONS(4450), 1, + aux_sym_while_phrase_token1, + ACTIONS(4452), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4454), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(4456), 1, + aux_sym_do_tuning_token1, + STATE(3459), 1, + sym_to_phrase, + STATE(3581), 1, + aux_sym_do_block_repeat1, + STATE(3593), 1, + sym_while_phrase, + STATE(4414), 1, + sym_stop_after_phrase, + STATE(4716), 1, + sym_object_access, + STATE(4926), 1, + sym_do_tuning, + STATE(6096), 1, + sym_body, + STATE(6598), 1, + sym_assignment, + STATE(3081), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5582), 2, + sym_qualified_name, + sym_member_access, + STATE(5631), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [208269] = 24, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(4438), 1, + sym_identifier, + ACTIONS(4440), 1, + anon_sym_COLON, + ACTIONS(4444), 1, + aux_sym_while_phrase_token1, + ACTIONS(4446), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4448), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4458), 1, + aux_sym__block_terminator_token1, + STATE(2313), 1, + sym__block_terminator, + STATE(3433), 1, + sym_to_phrase, + STATE(3648), 1, + sym_while_phrase, + STATE(3889), 1, + sym_on_error_phrase, + STATE(3985), 1, + sym_on_quit_phrase, + STATE(4158), 1, + aux_sym_repeat_statement_repeat1, + STATE(4164), 1, + sym_on_stop_phrase, + STATE(4716), 1, + sym_object_access, + STATE(5323), 1, + sym_repeat_tuning, + STATE(6104), 1, + sym_body, + STATE(6433), 1, + sym_assignment, + STATE(3082), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5582), 2, + sym_qualified_name, + sym_member_access, + [208345] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3450), 1, + STATE(3498), 1, aux_sym_for_phrase_repeat2, - STATE(4102), 1, + STATE(4133), 1, sym_on_error_phrase, - STATE(4354), 1, + STATE(4255), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4683), 1, - aux_sym_for_statement_repeat1, - STATE(4687), 1, + STATE(4879), 1, sym_on_stop_phrase, - STATE(5996), 1, + STATE(4880), 1, + aux_sym_for_statement_repeat1, + STATE(5683), 1, sym_body, - STATE(3032), 2, + STATE(3083), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [203522] = 21, - ACTIONS(65), 1, + [208417] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(4438), 1, + sym_identifier, + ACTIONS(4440), 1, + anon_sym_COLON, + ACTIONS(4442), 1, + aux_sym__block_terminator_token1, + ACTIONS(4444), 1, + aux_sym_while_phrase_token1, + ACTIONS(4446), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4448), 1, + aux_sym_on_error_phrase_token1, + STATE(2412), 1, + sym__block_terminator, + STATE(3393), 1, + sym_to_phrase, + STATE(3717), 1, + sym_while_phrase, + STATE(3874), 1, + sym_on_error_phrase, + STATE(3953), 1, + sym_on_quit_phrase, + STATE(4107), 1, + sym_on_stop_phrase, + STATE(4113), 1, + aux_sym_repeat_statement_repeat1, + STATE(4716), 1, + sym_object_access, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5549), 1, + sym_body, + STATE(6433), 1, + sym_assignment, + STATE(3084), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5582), 2, + sym_qualified_name, + sym_member_access, + [208493] = 22, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(4438), 1, + sym_identifier, + ACTIONS(4440), 1, + anon_sym_COLON, + ACTIONS(4450), 1, + aux_sym_while_phrase_token1, + ACTIONS(4452), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4454), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(4456), 1, + aux_sym_do_tuning_token1, + STATE(3480), 1, + sym_to_phrase, + STATE(3682), 1, + sym_while_phrase, + STATE(3684), 1, + aux_sym_do_block_repeat1, + STATE(4330), 1, + sym_stop_after_phrase, + STATE(4716), 1, + sym_object_access, + STATE(4926), 1, + sym_do_tuning, + STATE(5670), 1, + sym_body, + STATE(6598), 1, + sym_assignment, + STATE(3085), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5582), 2, + sym_qualified_name, + sym_member_access, + STATE(5671), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [208565] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3790), 1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3104), 1, - sym_where_clause, - STATE(3131), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, sym_query_tuning, - STATE(3726), 1, + STATE(3521), 1, aux_sym_for_phrase_repeat2, - STATE(4487), 1, - sym_sort_clause, - STATE(4537), 1, + STATE(4080), 1, sym_on_error_phrase, - STATE(4754), 1, + STATE(4439), 1, sym_on_quit_phrase, - STATE(5498), 1, + STATE(4603), 1, + sym_sort_clause, + STATE(4893), 1, + aux_sym_for_statement_repeat1, + STATE(4896), 1, sym_on_stop_phrase, - ACTIONS(4421), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(3033), 2, + STATE(5569), 1, + sym_body, + STATE(3086), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [203592] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [208637] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3032), 1, + STATE(3077), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3439), 1, + STATE(3554), 1, aux_sym_for_phrase_repeat2, - STATE(4117), 1, + STATE(4124), 1, sym_on_error_phrase, - STATE(4280), 1, + STATE(4382), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4633), 1, - sym_on_stop_phrase, - STATE(4641), 1, + STATE(4825), 1, aux_sym_for_statement_repeat1, - STATE(6019), 1, + STATE(4829), 1, + sym_on_stop_phrase, + STATE(5801), 1, sym_body, - STATE(3034), 2, + STATE(3087), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [203664] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [208709] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, - sym_using, - STATE(3220), 1, + STATE(3083), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3271), 1, + sym_using, + STATE(3454), 1, sym_query_tuning, - STATE(3433), 1, + STATE(3521), 1, aux_sym_for_phrase_repeat2, - STATE(4077), 1, + STATE(4080), 1, sym_on_error_phrase, - STATE(4368), 1, + STATE(4439), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4700), 1, + STATE(4893), 1, aux_sym_for_statement_repeat1, - STATE(4701), 1, + STATE(4896), 1, sym_on_stop_phrase, - STATE(5990), 1, + STATE(5569), 1, sym_body, - STATE(3035), 2, + STATE(3088), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [203736] = 22, - ACTIONS(65), 1, + [208781] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(4438), 1, + sym_identifier, + ACTIONS(4440), 1, + anon_sym_COLON, + ACTIONS(4450), 1, + aux_sym_while_phrase_token1, + ACTIONS(4452), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4454), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(4456), 1, + aux_sym_do_tuning_token1, + STATE(3456), 1, + sym_to_phrase, + STATE(3690), 1, + aux_sym_do_block_repeat1, + STATE(3701), 1, + sym_while_phrase, + STATE(4403), 1, + sym_stop_after_phrase, + STATE(4716), 1, + sym_object_access, + STATE(4926), 1, + sym_do_tuning, + STATE(6127), 1, + sym_body, + STATE(6598), 1, + sym_assignment, + STATE(3089), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5582), 2, + sym_qualified_name, + sym_member_access, + STATE(5598), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [208853] = 22, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(4438), 1, + sym_identifier, + ACTIONS(4440), 1, + anon_sym_COLON, + ACTIONS(4450), 1, + aux_sym_while_phrase_token1, + ACTIONS(4452), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4454), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(4456), 1, + aux_sym_do_tuning_token1, + STATE(3428), 1, + sym_to_phrase, + STATE(3666), 1, + aux_sym_do_block_repeat1, + STATE(3668), 1, + sym_while_phrase, + STATE(4356), 1, + sym_stop_after_phrase, + STATE(4716), 1, + sym_object_access, + STATE(4926), 1, + sym_do_tuning, + STATE(5463), 1, + sym_body, + STATE(6598), 1, + sym_assignment, + STATE(3090), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5582), 2, + sym_qualified_name, + sym_member_access, + STATE(6032), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [208925] = 21, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3035), 1, + STATE(3195), 1, + sym_where_clause, + STATE(3197), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3464), 1, + STATE(3842), 1, aux_sym_for_phrase_repeat2, - STATE(4105), 1, + STATE(4578), 1, sym_on_error_phrase, - STATE(4350), 1, - sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4666), 1, - aux_sym_for_statement_repeat1, - STATE(4669), 1, + STATE(4727), 1, + sym_on_quit_phrase, + STATE(5574), 1, sym_on_stop_phrase, - STATE(6012), 1, - sym_body, - STATE(3036), 2, + ACTIONS(4420), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3091), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [203808] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [208995] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3470), 1, + STATE(3554), 1, aux_sym_for_phrase_repeat2, - STATE(4071), 1, + STATE(4124), 1, sym_on_error_phrase, - STATE(4242), 1, + STATE(4382), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4692), 1, - sym_on_stop_phrase, - STATE(4695), 1, + STATE(4825), 1, aux_sym_for_statement_repeat1, - STATE(5489), 1, + STATE(4829), 1, + sym_on_stop_phrase, + STATE(5801), 1, sym_body, - STATE(3037), 2, + STATE(3092), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [203880] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [209067] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3435), 1, + STATE(3499), 1, aux_sym_for_phrase_repeat2, - STATE(4164), 1, + STATE(4252), 1, sym_on_error_phrase, - STATE(4332), 1, + STATE(4449), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(5082), 1, - aux_sym_for_statement_repeat1, - STATE(5088), 1, + STATE(4857), 1, sym_on_stop_phrase, - STATE(5926), 1, + STATE(4862), 1, + aux_sym_for_statement_repeat1, + STATE(5831), 1, sym_body, - STATE(3038), 2, + STATE(3093), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [203952] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [209139] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3456), 1, + STATE(3491), 1, aux_sym_for_phrase_repeat2, - STATE(4000), 1, + STATE(4131), 1, sym_on_error_phrase, - STATE(4404), 1, + STATE(4459), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4725), 1, - sym_on_stop_phrase, - STATE(4728), 1, + STATE(4885), 1, aux_sym_for_statement_repeat1, - STATE(5631), 1, + STATE(4887), 1, + sym_on_stop_phrase, + STATE(5794), 1, sym_body, - STATE(3039), 2, + STATE(3094), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [204024] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [209211] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3475), 1, + STATE(3530), 1, aux_sym_for_phrase_repeat2, - STATE(4182), 1, + STATE(4166), 1, sym_on_error_phrase, - STATE(4424), 1, + STATE(4394), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4860), 1, - sym_on_stop_phrase, - STATE(4861), 1, + STATE(4868), 1, aux_sym_for_statement_repeat1, - STATE(5436), 1, + STATE(4874), 1, + sym_on_stop_phrase, + STATE(5904), 1, sym_body, - STATE(3040), 2, + STATE(3095), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [204096] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [209283] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3050), 1, + STATE(3138), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3472), 1, + STATE(3563), 1, aux_sym_for_phrase_repeat2, - STATE(3991), 1, + STATE(4192), 1, sym_on_error_phrase, - STATE(4400), 1, + STATE(4307), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4922), 1, + STATE(4784), 1, sym_on_stop_phrase, - STATE(4923), 1, + STATE(4788), 1, aux_sym_for_statement_repeat1, - STATE(5558), 1, + STATE(5713), 1, sym_body, - STATE(3041), 2, + STATE(3096), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [204168] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [209355] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3038), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, sym_query_tuning, - STATE(3425), 1, + STATE(3563), 1, aux_sym_for_phrase_repeat2, - STATE(4048), 1, + STATE(4192), 1, sym_on_error_phrase, - STATE(4326), 1, + STATE(4307), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(5050), 1, - aux_sym_for_statement_repeat1, - STATE(5054), 1, + STATE(4784), 1, sym_on_stop_phrase, - STATE(5930), 1, + STATE(4788), 1, + aux_sym_for_statement_repeat1, + STATE(5713), 1, sym_body, - STATE(3042), 2, + STATE(3097), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [204240] = 22, - ACTIONS(65), 1, + [209427] = 22, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(4438), 1, + sym_identifier, + ACTIONS(4440), 1, + anon_sym_COLON, + ACTIONS(4450), 1, + aux_sym_while_phrase_token1, + ACTIONS(4452), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4454), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(4456), 1, + aux_sym_do_tuning_token1, + STATE(3399), 1, + sym_to_phrase, + STATE(3580), 1, + aux_sym_do_block_repeat1, + STATE(3583), 1, + sym_while_phrase, + STATE(4264), 1, + sym_stop_after_phrase, + STATE(4716), 1, + sym_object_access, + STATE(4926), 1, + sym_do_tuning, + STATE(5506), 1, + sym_body, + STATE(6598), 1, + sym_assignment, + STATE(3098), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5582), 2, + sym_qualified_name, + sym_member_access, + STATE(6071), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [209499] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3061), 1, + STATE(3107), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3453), 1, + STATE(3491), 1, aux_sym_for_phrase_repeat2, - STATE(4127), 1, + STATE(4131), 1, sym_on_error_phrase, - STATE(4265), 1, + STATE(4459), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4622), 1, + STATE(4885), 1, aux_sym_for_statement_repeat1, - STATE(4626), 1, + STATE(4887), 1, sym_on_stop_phrase, - STATE(6013), 1, + STATE(5794), 1, sym_body, - STATE(3043), 2, + STATE(3099), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [204312] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [209571] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3072), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, sym_query_tuning, - STATE(3484), 1, + STATE(3562), 1, aux_sym_for_phrase_repeat2, - STATE(4033), 1, + STATE(4229), 1, sym_on_error_phrase, - STATE(4287), 1, + STATE(4290), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4886), 1, + STATE(4983), 1, sym_on_stop_phrase, - STATE(4891), 1, + STATE(4984), 1, aux_sym_for_statement_repeat1, - STATE(5981), 1, + STATE(5652), 1, sym_body, - STATE(3044), 2, + STATE(3100), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [204384] = 22, - ACTIONS(65), 1, + [209643] = 24, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(4438), 1, + sym_identifier, + ACTIONS(4440), 1, + anon_sym_COLON, + ACTIONS(4444), 1, + aux_sym_while_phrase_token1, + ACTIONS(4446), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4448), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4460), 1, + aux_sym__block_terminator_token1, + STATE(1911), 1, + sym__block_terminator, + STATE(3458), 1, + sym_to_phrase, + STATE(3603), 1, + sym_while_phrase, + STATE(3907), 1, + sym_on_error_phrase, + STATE(3958), 1, + sym_on_quit_phrase, + STATE(4204), 1, + aux_sym_repeat_statement_repeat1, + STATE(4211), 1, + sym_on_stop_phrase, + STATE(4716), 1, + sym_object_access, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5628), 1, + sym_body, + STATE(6433), 1, + sym_assignment, + STATE(3101), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5582), 2, + sym_qualified_name, + sym_member_access, + [209719] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3425), 1, + STATE(3528), 1, aux_sym_for_phrase_repeat2, - STATE(4048), 1, + STATE(4199), 1, sym_on_error_phrase, - STATE(4326), 1, + STATE(4462), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(5050), 1, + STATE(4892), 1, aux_sym_for_statement_repeat1, - STATE(5054), 1, + STATE(4894), 1, sym_on_stop_phrase, - STATE(5930), 1, + STATE(5770), 1, sym_body, - STATE(3045), 2, + STATE(3102), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [204456] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [209791] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3054), 1, + STATE(3111), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3441), 1, + STATE(3528), 1, aux_sym_for_phrase_repeat2, - STATE(4061), 1, + STATE(4199), 1, sym_on_error_phrase, - STATE(4405), 1, + STATE(4462), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4909), 1, + STATE(4892), 1, aux_sym_for_statement_repeat1, - STATE(4912), 1, + STATE(4894), 1, sym_on_stop_phrase, - STATE(5523), 1, + STATE(5770), 1, sym_body, - STATE(3046), 2, + STATE(3103), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [204528] = 22, - ACTIONS(65), 1, + [209863] = 24, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(4438), 1, + sym_identifier, + ACTIONS(4440), 1, + anon_sym_COLON, + ACTIONS(4444), 1, + aux_sym_while_phrase_token1, + ACTIONS(4446), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4448), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4460), 1, + aux_sym__block_terminator_token1, + STATE(1955), 1, + sym__block_terminator, + STATE(3442), 1, + sym_to_phrase, + STATE(3752), 1, + sym_while_phrase, + STATE(3864), 1, + sym_on_error_phrase, + STATE(3987), 1, + sym_on_quit_phrase, + STATE(4143), 1, + aux_sym_repeat_statement_repeat1, + STATE(4145), 1, + sym_on_stop_phrase, + STATE(4716), 1, + sym_object_access, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5565), 1, + sym_body, + STATE(6433), 1, + sym_assignment, + STATE(3104), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5582), 2, + sym_qualified_name, + sym_member_access, + [209939] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3453), 1, + STATE(3532), 1, aux_sym_for_phrase_repeat2, - STATE(4127), 1, + STATE(4148), 1, sym_on_error_phrase, - STATE(4265), 1, + STATE(4481), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4622), 1, - aux_sym_for_statement_repeat1, - STATE(4626), 1, + STATE(4847), 1, sym_on_stop_phrase, - STATE(6013), 1, + STATE(4848), 1, + aux_sym_for_statement_repeat1, + STATE(5866), 1, sym_body, - STATE(3047), 2, + STATE(3105), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [204600] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [210011] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, - sym_using, - STATE(3220), 1, + STATE(3100), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3271), 1, + sym_using, + STATE(3454), 1, sym_query_tuning, - STATE(3441), 1, + STATE(3569), 1, aux_sym_for_phrase_repeat2, - STATE(4061), 1, + STATE(4223), 1, sym_on_error_phrase, - STATE(4405), 1, + STATE(4301), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4909), 1, - aux_sym_for_statement_repeat1, - STATE(4912), 1, + STATE(4992), 1, sym_on_stop_phrase, - STATE(5523), 1, + STATE(4993), 1, + aux_sym_for_statement_repeat1, + STATE(5655), 1, sym_body, - STATE(3048), 2, + STATE(3106), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [204672] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [210083] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3442), 1, + STATE(3489), 1, aux_sym_for_phrase_repeat2, - STATE(4049), 1, + STATE(4168), 1, sym_on_error_phrase, - STATE(4320), 1, + STATE(4473), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(5031), 1, + STATE(4898), 1, aux_sym_for_statement_repeat1, - STATE(5040), 1, + STATE(4901), 1, sym_on_stop_phrase, - STATE(5950), 1, + STATE(5762), 1, sym_body, - STATE(3049), 2, + STATE(3107), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [204744] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [210155] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, - sym_using, - STATE(3220), 1, + STATE(3105), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3271), 1, + sym_using, + STATE(3454), 1, sym_query_tuning, - STATE(3486), 1, + STATE(3525), 1, aux_sym_for_phrase_repeat2, - STATE(4194), 1, + STATE(4216), 1, sym_on_error_phrase, - STATE(4408), 1, + STATE(4425), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4899), 1, + STATE(4853), 1, sym_on_stop_phrase, - STATE(4900), 1, + STATE(4854), 1, aux_sym_for_statement_repeat1, - STATE(5486), 1, + STATE(5856), 1, sym_body, - STATE(3050), 2, + STATE(3108), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [204816] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [210227] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3095), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, sym_query_tuning, - STATE(3424), 1, + STATE(3569), 1, aux_sym_for_phrase_repeat2, - STATE(4043), 1, + STATE(4223), 1, sym_on_error_phrase, - STATE(4385), 1, + STATE(4301), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4564), 1, - aux_sym_for_statement_repeat1, - STATE(4709), 1, + STATE(4992), 1, sym_on_stop_phrase, - STATE(5986), 1, + STATE(4993), 1, + aux_sym_for_statement_repeat1, + STATE(5655), 1, sym_body, - STATE(3051), 2, + STATE(3109), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [204888] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [210299] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3079), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, sym_query_tuning, - STATE(3486), 1, + STATE(3553), 1, aux_sym_for_phrase_repeat2, - STATE(4194), 1, + STATE(4213), 1, sym_on_error_phrase, - STATE(4408), 1, + STATE(4319), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4899), 1, + STATE(4998), 1, sym_on_stop_phrase, - STATE(4900), 1, + STATE(4999), 1, aux_sym_for_statement_repeat1, - STATE(5486), 1, + STATE(5669), 1, sym_body, - STATE(3052), 2, + STATE(3110), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [204960] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [210371] = 22, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4392), 1, - aux_sym_variable_definition_token4, - ACTIONS(4394), 1, - aux_sym_argument_mode_token3, - ACTIONS(4399), 1, - aux_sym_property_definition_token1, - ACTIONS(4401), 1, - aux_sym_event_definition_token1, - ACTIONS(4374), 2, - aux_sym_temp_table_expression_token1, - aux_sym_variable_definition_token3, - ACTIONS(4389), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(4396), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - STATE(3053), 2, - sym_comment, - sym_include, - ACTIONS(4376), 3, - aux_sym_dataset_expression_token1, - aux_sym_buffer_definition_token1, - aux_sym_query_definition_token1, - ACTIONS(4384), 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_access_tuning_token4, - aux_sym_access_tuning_token5, - [205014] = 22, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3485), 1, + STATE(3490), 1, aux_sym_for_phrase_repeat2, - STATE(4120), 1, + STATE(4155), 1, sym_on_error_phrase, - STATE(4412), 1, + STATE(4476), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4887), 1, - sym_on_stop_phrase, - STATE(4890), 1, + STATE(4902), 1, aux_sym_for_statement_repeat1, - STATE(5464), 1, + STATE(4904), 1, + sym_on_stop_phrase, + STATE(5754), 1, sym_body, - STATE(3054), 2, + STATE(3111), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [205086] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [210443] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, - sym_using, - STATE(3220), 1, + STATE(3109), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3271), 1, + sym_using, + STATE(3454), 1, sym_query_tuning, - STATE(3424), 1, + STATE(3559), 1, aux_sym_for_phrase_repeat2, - STATE(4043), 1, + STATE(4212), 1, sym_on_error_phrase, - STATE(4385), 1, + STATE(4321), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4564), 1, - aux_sym_for_statement_repeat1, - STATE(4709), 1, + STATE(5002), 1, sym_on_stop_phrase, - STATE(5986), 1, + STATE(5004), 1, + aux_sym_for_statement_repeat1, + STATE(5678), 1, sym_body, - STATE(3055), 2, + STATE(3112), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [205158] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [210515] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3045), 1, + STATE(3115), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3447), 1, + STATE(3490), 1, aux_sym_for_phrase_repeat2, - STATE(4067), 1, + STATE(4155), 1, sym_on_error_phrase, - STATE(4315), 1, + STATE(4476), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4999), 1, + STATE(4902), 1, aux_sym_for_statement_repeat1, - STATE(5000), 1, + STATE(4904), 1, sym_on_stop_phrase, - STATE(5956), 1, + STATE(5754), 1, sym_body, - STATE(3056), 2, + STATE(3113), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [205230] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [210587] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3461), 1, + STATE(3559), 1, aux_sym_for_phrase_repeat2, - STATE(4155), 1, + STATE(4212), 1, sym_on_error_phrase, - STATE(4233), 1, + STATE(4321), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4656), 1, + STATE(5002), 1, sym_on_stop_phrase, - STATE(4664), 1, + STATE(5004), 1, aux_sym_for_statement_repeat1, - STATE(5408), 1, + STATE(5678), 1, sym_body, - STATE(3057), 2, + STATE(3114), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [205302] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [210659] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3075), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, sym_query_tuning, - STATE(3456), 1, + STATE(3494), 1, aux_sym_for_phrase_repeat2, - STATE(4000), 1, + STATE(4208), 1, sym_on_error_phrase, - STATE(4404), 1, + STATE(4480), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4725), 1, - sym_on_stop_phrase, - STATE(4728), 1, + STATE(4911), 1, aux_sym_for_statement_repeat1, - STATE(5631), 1, + STATE(4913), 1, + sym_on_stop_phrase, + STATE(5749), 1, sym_body, - STATE(3058), 2, + STATE(3115), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [205374] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [210731] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3091), 1, + STATE(3110), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3488), 1, + STATE(3555), 1, aux_sym_for_phrase_repeat2, - STATE(4146), 1, + STATE(4193), 1, sym_on_error_phrase, - STATE(4197), 1, + STATE(4322), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4849), 1, + STATE(5006), 1, sym_on_stop_phrase, - STATE(4872), 1, + STATE(5012), 1, aux_sym_for_statement_repeat1, - STATE(5574), 1, + STATE(5698), 1, sym_body, - STATE(3059), 2, + STATE(3116), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [205446] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [210803] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3488), 1, + STATE(3555), 1, aux_sym_for_phrase_repeat2, - STATE(4146), 1, + STATE(4193), 1, sym_on_error_phrase, - STATE(4197), 1, + STATE(4322), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4849), 1, + STATE(5006), 1, sym_on_stop_phrase, - STATE(4872), 1, + STATE(5012), 1, aux_sym_for_statement_repeat1, - STATE(5574), 1, + STATE(5698), 1, sym_body, - STATE(3060), 2, + STATE(3117), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [205518] = 22, - ACTIONS(65), 1, + [210875] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(4438), 1, + sym_identifier, + ACTIONS(4440), 1, + anon_sym_COLON, + ACTIONS(4450), 1, + aux_sym_while_phrase_token1, + ACTIONS(4452), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4454), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(4456), 1, + aux_sym_do_tuning_token1, + STATE(3483), 1, + sym_to_phrase, + STATE(3819), 1, + sym_while_phrase, + STATE(3836), 1, + aux_sym_do_block_repeat1, + STATE(4411), 1, + sym_stop_after_phrase, + STATE(4716), 1, + sym_object_access, + STATE(4926), 1, + sym_do_tuning, + STATE(5610), 1, + sym_body, + STATE(6598), 1, + sym_assignment, + STATE(3118), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5582), 2, + sym_qualified_name, + sym_member_access, + STATE(5809), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [210947] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(4438), 1, + sym_identifier, + ACTIONS(4440), 1, + anon_sym_COLON, + ACTIONS(4444), 1, + aux_sym_while_phrase_token1, + ACTIONS(4446), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4448), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4462), 1, + aux_sym__block_terminator_token1, + STATE(1743), 1, + sym__block_terminator, + STATE(3405), 1, + sym_to_phrase, + STATE(3602), 1, + sym_while_phrase, + STATE(3908), 1, + sym_on_error_phrase, + STATE(3947), 1, + sym_on_quit_phrase, + STATE(4220), 1, + aux_sym_repeat_statement_repeat1, + STATE(4225), 1, + sym_on_stop_phrase, + STATE(4716), 1, + sym_object_access, + STATE(5323), 1, + sym_repeat_tuning, + STATE(6117), 1, + sym_body, + STATE(6433), 1, + sym_assignment, + STATE(3119), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5582), 2, + sym_qualified_name, + sym_member_access, + [211023] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(4438), 1, + sym_identifier, + ACTIONS(4440), 1, + anon_sym_COLON, + ACTIONS(4450), 1, + aux_sym_while_phrase_token1, + ACTIONS(4452), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4454), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(4456), 1, + aux_sym_do_tuning_token1, + STATE(3482), 1, + sym_to_phrase, + STATE(3818), 1, + sym_while_phrase, + STATE(3822), 1, + aux_sym_do_block_repeat1, + STATE(4499), 1, + sym_stop_after_phrase, + STATE(4716), 1, + sym_object_access, + STATE(4926), 1, + sym_do_tuning, + STATE(5562), 1, + sym_body, + STATE(6598), 1, + sym_assignment, + STATE(3120), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5582), 2, + sym_qualified_name, + sym_member_access, + STATE(5841), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [211095] = 24, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(4438), 1, + sym_identifier, + ACTIONS(4440), 1, + anon_sym_COLON, + ACTIONS(4444), 1, + aux_sym_while_phrase_token1, + ACTIONS(4446), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4448), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4462), 1, + aux_sym__block_terminator_token1, + STATE(1715), 1, + sym__block_terminator, + STATE(3421), 1, + sym_to_phrase, + STATE(3671), 1, + sym_while_phrase, + STATE(3892), 1, + sym_on_error_phrase, + STATE(3983), 1, + sym_on_quit_phrase, + STATE(4153), 1, + aux_sym_repeat_statement_repeat1, + STATE(4173), 1, + sym_on_stop_phrase, + STATE(4716), 1, + sym_object_access, + STATE(5323), 1, + sym_repeat_tuning, + STATE(6110), 1, + sym_body, + STATE(6433), 1, + sym_assignment, + STATE(3121), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5582), 2, + sym_qualified_name, + sym_member_access, + [211171] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3464), 1, + STATE(3500), 1, aux_sym_for_phrase_repeat2, - STATE(4105), 1, + STATE(4063), 1, sym_on_error_phrase, - STATE(4350), 1, + STATE(4529), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4666), 1, - aux_sym_for_statement_repeat1, - STATE(4669), 1, + STATE(4704), 1, sym_on_stop_phrase, - STATE(6012), 1, + STATE(4757), 1, + aux_sym_for_statement_repeat1, + STATE(5544), 1, sym_body, - STATE(3061), 2, + STATE(3122), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [205590] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [211243] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3040), 1, + STATE(3092), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3477), 1, + STATE(3500), 1, aux_sym_for_phrase_repeat2, - STATE(4195), 1, + STATE(4063), 1, sym_on_error_phrase, - STATE(4419), 1, + STATE(4529), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4873), 1, + STATE(4704), 1, sym_on_stop_phrase, - STATE(4874), 1, + STATE(4757), 1, aux_sym_for_statement_repeat1, - STATE(5449), 1, + STATE(5544), 1, sym_body, - STATE(3062), 2, + STATE(3123), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [205662] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [211315] = 21, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, - sym_using, - STATE(3220), 1, + STATE(3168), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3171), 1, + sym_where_clause, + STATE(3271), 1, + sym_using, + STATE(3454), 1, sym_query_tuning, - STATE(3484), 1, + STATE(3918), 1, aux_sym_for_phrase_repeat2, - STATE(4033), 1, + STATE(4603), 1, + sym_sort_clause, + STATE(4625), 1, sym_on_error_phrase, - STATE(4287), 1, + STATE(4931), 1, sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4886), 1, + STATE(6035), 1, sym_on_stop_phrase, - STATE(4891), 1, - aux_sym_for_statement_repeat1, - STATE(5981), 1, - sym_body, - STATE(3063), 2, + ACTIONS(4464), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3124), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [205734] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [211385] = 21, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3821), 1, + aux_sym_where_clause_token1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, - sym_using, - STATE(3220), 1, + STATE(3174), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3175), 1, + sym_where_clause, + STATE(3271), 1, + sym_using, + STATE(3454), 1, sym_query_tuning, - STATE(3447), 1, + STATE(3911), 1, aux_sym_for_phrase_repeat2, - STATE(4067), 1, + STATE(4603), 1, + sym_sort_clause, + STATE(4622), 1, sym_on_error_phrase, - STATE(4315), 1, + STATE(4935), 1, sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4999), 1, - aux_sym_for_statement_repeat1, - STATE(5000), 1, + STATE(6073), 1, sym_on_stop_phrase, - STATE(5956), 1, - sym_body, - STATE(3064), 2, + ACTIONS(4430), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3125), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [205806] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [211455] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3082), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, sym_query_tuning, - STATE(3448), 1, + STATE(3519), 1, aux_sym_for_phrase_repeat2, - STATE(4004), 1, + STATE(4228), 1, sym_on_error_phrase, - STATE(4402), 1, + STATE(4440), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4715), 1, - aux_sym_for_statement_repeat1, - STATE(4717), 1, + STATE(4856), 1, sym_on_stop_phrase, - STATE(5663), 1, + STATE(4858), 1, + aux_sym_for_statement_repeat1, + STATE(5828), 1, sym_body, - STATE(3065), 2, + STATE(3126), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [205878] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [211527] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3471), 1, + STATE(3507), 1, aux_sym_for_phrase_repeat2, - STATE(4175), 1, + STATE(4066), 1, sym_on_error_phrase, - STATE(4213), 1, + STATE(4514), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4592), 1, + STATE(5074), 1, sym_on_stop_phrase, - STATE(4597), 1, + STATE(5079), 1, aux_sym_for_statement_repeat1, - STATE(5961), 1, + STATE(5464), 1, sym_body, - STATE(3066), 2, + STATE(3127), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [205950] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [211599] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3047), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, sym_query_tuning, - STATE(3471), 1, + STATE(3515), 1, aux_sym_for_phrase_repeat2, - STATE(4175), 1, + STATE(4059), 1, sym_on_error_phrase, - STATE(4213), 1, + STATE(4509), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4592), 1, - sym_on_stop_phrase, - STATE(4597), 1, + STATE(5102), 1, aux_sym_for_statement_repeat1, - STATE(5961), 1, + STATE(5105), 1, + sym_on_stop_phrase, + STATE(5712), 1, sym_body, - STATE(3067), 2, + STATE(3128), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [206022] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [211671] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, - sym_using, - STATE(3220), 1, + STATE(3095), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3271), 1, + sym_using, + STATE(3454), 1, sym_query_tuning, - STATE(3477), 1, + STATE(3501), 1, aux_sym_for_phrase_repeat2, - STATE(4195), 1, + STATE(4250), 1, sym_on_error_phrase, - STATE(4419), 1, + STATE(4455), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4873), 1, + STATE(4909), 1, sym_on_stop_phrase, - STATE(4874), 1, + STATE(5157), 1, aux_sym_for_statement_repeat1, - STATE(5449), 1, + STATE(5812), 1, sym_body, - STATE(3068), 2, + STATE(3129), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [206094] = 21, - ACTIONS(65), 1, + [211743] = 13, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4409), 1, + aux_sym_variable_definition_token4, + ACTIONS(4411), 1, + aux_sym_argument_mode_token3, + ACTIONS(4416), 1, + aux_sym_property_definition_token1, + ACTIONS(4418), 1, + aux_sym_event_definition_token1, + ACTIONS(4391), 2, + aux_sym_temp_table_expression_token1, + aux_sym_variable_definition_token3, + ACTIONS(4406), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(4413), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(3130), 2, + sym_comment, + sym_include, + ACTIONS(4393), 3, + aux_sym_dataset_expression_token1, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + ACTIONS(4401), 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_access_tuning_token4, + aux_sym_access_tuning_token5, + [211797] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3790), 1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3118), 1, + STATE(3151), 1, aux_sym_for_phrase_repeat1, - STATE(3125), 1, - sym_where_clause, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3755), 1, + STATE(3515), 1, aux_sym_for_phrase_repeat2, - STATE(4487), 1, - sym_sort_clause, - STATE(4557), 1, + STATE(4059), 1, sym_on_error_phrase, - STATE(4595), 1, + STATE(4509), 1, sym_on_quit_phrase, - STATE(5382), 1, + STATE(4603), 1, + sym_sort_clause, + STATE(5102), 1, + aux_sym_for_statement_repeat1, + STATE(5105), 1, sym_on_stop_phrase, - ACTIONS(4423), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(3069), 2, + STATE(5712), 1, + sym_body, + STATE(3131), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [206164] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [211869] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3055), 1, + STATE(3102), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3450), 1, + STATE(3499), 1, aux_sym_for_phrase_repeat2, - STATE(4102), 1, + STATE(4252), 1, sym_on_error_phrase, - STATE(4354), 1, + STATE(4449), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4683), 1, - aux_sym_for_statement_repeat1, - STATE(4687), 1, + STATE(4857), 1, sym_on_stop_phrase, - STATE(5996), 1, + STATE(4862), 1, + aux_sym_for_statement_repeat1, + STATE(5831), 1, sym_body, - STATE(3070), 2, + STATE(3132), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [206236] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [211941] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3093), 1, + STATE(3128), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3461), 1, + STATE(3507), 1, aux_sym_for_phrase_repeat2, - STATE(4155), 1, + STATE(4066), 1, sym_on_error_phrase, - STATE(4233), 1, + STATE(4514), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4656), 1, + STATE(5074), 1, sym_on_stop_phrase, - STATE(4664), 1, + STATE(5079), 1, aux_sym_for_statement_repeat1, - STATE(5408), 1, + STATE(5464), 1, sym_body, - STATE(3071), 2, + STATE(3133), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [206308] = 22, - ACTIONS(65), 1, + [212013] = 24, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(4438), 1, + sym_identifier, + ACTIONS(4440), 1, + anon_sym_COLON, + ACTIONS(4444), 1, + aux_sym_while_phrase_token1, + ACTIONS(4446), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4448), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4466), 1, + aux_sym__block_terminator_token1, + STATE(3461), 1, + sym_to_phrase, + STATE(3653), 1, + sym_while_phrase, + STATE(3885), 1, + sym_on_error_phrase, + STATE(3979), 1, + sym_on_quit_phrase, + STATE(4165), 1, + sym_on_stop_phrase, + STATE(4171), 1, + aux_sym_repeat_statement_repeat1, + STATE(4684), 1, + sym__block_terminator, + STATE(4716), 1, + sym_object_access, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5526), 1, + sym_body, + STATE(6433), 1, + sym_assignment, + STATE(3134), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5582), 2, + sym_qualified_name, + sym_member_access, + [212089] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3440), 1, + STATE(3550), 1, aux_sym_for_phrase_repeat2, - STATE(4093), 1, + STATE(4154), 1, sym_on_error_phrase, - STATE(4306), 1, + STATE(4353), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4965), 1, + STATE(5053), 1, aux_sym_for_statement_repeat1, - STATE(4967), 1, + STATE(5054), 1, sym_on_stop_phrase, - STATE(6005), 1, + STATE(5939), 1, sym_body, - STATE(3072), 2, + STATE(3135), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [206380] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [212161] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3060), 1, + STATE(3160), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3465), 1, + STATE(3527), 1, aux_sym_for_phrase_repeat2, - STATE(3993), 1, + STATE(4064), 1, sym_on_error_phrase, - STATE(4364), 1, + STATE(4508), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(5037), 1, - aux_sym_for_statement_repeat1, - STATE(5038), 1, + STATE(5111), 1, sym_on_stop_phrase, - STATE(5689), 1, + STATE(5112), 1, + aux_sym_for_statement_repeat1, + STATE(5760), 1, sym_body, - STATE(3073), 2, + STATE(3136), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [206452] = 22, - ACTIONS(65), 1, + [212233] = 24, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(4438), 1, + sym_identifier, + ACTIONS(4440), 1, + anon_sym_COLON, + ACTIONS(4444), 1, + aux_sym_while_phrase_token1, + ACTIONS(4446), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4448), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4466), 1, + aux_sym__block_terminator_token1, + STATE(3398), 1, + sym_to_phrase, + STATE(3574), 1, + sym_while_phrase, + STATE(3919), 1, + sym_on_error_phrase, + STATE(3924), 1, + sym_on_quit_phrase, + STATE(4249), 1, + sym_on_stop_phrase, + STATE(4253), 1, + aux_sym_repeat_statement_repeat1, + STATE(4716), 1, + sym_object_access, + STATE(4780), 1, + sym__block_terminator, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5726), 1, + sym_body, + STATE(6433), 1, + sym_assignment, + STATE(3137), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5582), 2, + sym_qualified_name, + sym_member_access, + [212309] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3037), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, sym_query_tuning, - STATE(3431), 1, + STATE(3545), 1, aux_sym_for_phrase_repeat2, - STATE(4159), 1, + STATE(4127), 1, sym_on_error_phrase, - STATE(4319), 1, + STATE(4339), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(5015), 1, + STATE(4748), 1, aux_sym_for_statement_repeat1, - STATE(5035), 1, + STATE(4749), 1, sym_on_stop_phrase, - STATE(5645), 1, + STATE(5602), 1, sym_body, - STATE(3074), 2, + STATE(3138), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [206524] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [212381] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, - sym_using, - STATE(3220), 1, + STATE(3072), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3271), 1, + sym_using, + STATE(3454), 1, sym_query_tuning, - STATE(3446), 1, + STATE(3505), 1, aux_sym_for_phrase_repeat2, - STATE(4005), 1, + STATE(4245), 1, sym_on_error_phrase, - STATE(4374), 1, + STATE(4453), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4705), 1, + STATE(4860), 1, sym_on_stop_phrase, - STATE(4708), 1, + STATE(4861), 1, aux_sym_for_statement_repeat1, - STATE(5680), 1, + STATE(5815), 1, sym_body, - STATE(3075), 2, + STATE(3139), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [206596] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [212453] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3049), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, sym_query_tuning, - STATE(3466), 1, + STATE(3527), 1, aux_sym_for_phrase_repeat2, - STATE(4076), 1, + STATE(4064), 1, sym_on_error_phrase, - STATE(4312), 1, + STATE(4508), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4988), 1, - aux_sym_for_statement_repeat1, - STATE(4989), 1, + STATE(5111), 1, sym_on_stop_phrase, - STATE(5960), 1, + STATE(5112), 1, + aux_sym_for_statement_repeat1, + STATE(5760), 1, sym_body, - STATE(3076), 2, + STATE(3140), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [206668] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [212525] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3090), 1, + STATE(3097), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3446), 1, + STATE(3517), 1, aux_sym_for_phrase_repeat2, - STATE(4005), 1, + STATE(4238), 1, sym_on_error_phrase, - STATE(4374), 1, + STATE(4436), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4705), 1, + STATE(4804), 1, sym_on_stop_phrase, - STATE(4708), 1, + STATE(4827), 1, aux_sym_for_statement_repeat1, - STATE(5680), 1, + STATE(5697), 1, sym_body, - STATE(3077), 2, + STATE(3141), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [206740] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [212597] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3029), 1, + STATE(3114), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3434), 1, + STATE(3551), 1, aux_sym_for_phrase_repeat2, - STATE(4158), 1, + STATE(4184), 1, sym_on_error_phrase, - STATE(4394), 1, + STATE(4335), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4949), 1, + STATE(5018), 1, aux_sym_for_statement_repeat1, - STATE(4953), 1, + STATE(5019), 1, sym_on_stop_phrase, - STATE(5632), 1, + STATE(5747), 1, sym_body, - STATE(3078), 2, + STATE(3142), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [206812] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [212669] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3479), 1, + STATE(3505), 1, aux_sym_for_phrase_repeat2, - STATE(4133), 1, + STATE(4245), 1, sym_on_error_phrase, - STATE(4417), 1, + STATE(4453), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4878), 1, + STATE(4860), 1, sym_on_stop_phrase, - STATE(4880), 1, + STATE(4861), 1, aux_sym_for_statement_repeat1, - STATE(5398), 1, + STATE(5815), 1, sym_body, - STATE(3079), 2, + STATE(3143), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [206884] = 21, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [212741] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3790), 1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3106), 1, - sym_where_clause, - STATE(3128), 1, + STATE(3117), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3758), 1, + STATE(3558), 1, aux_sym_for_phrase_repeat2, - STATE(4487), 1, - sym_sort_clause, - STATE(4558), 1, + STATE(4176), 1, sym_on_error_phrase, - STATE(4589), 1, + STATE(4342), 1, sym_on_quit_phrase, - STATE(5388), 1, + STATE(4603), 1, + sym_sort_clause, + STATE(5024), 1, sym_on_stop_phrase, - ACTIONS(4407), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(3080), 2, + STATE(5038), 1, + aux_sym_for_statement_repeat1, + STATE(5798), 1, + sym_body, + STATE(3144), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [206954] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [212813] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3466), 1, + STATE(3558), 1, aux_sym_for_phrase_repeat2, - STATE(4076), 1, + STATE(4176), 1, sym_on_error_phrase, - STATE(4312), 1, + STATE(4342), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4988), 1, - aux_sym_for_statement_repeat1, - STATE(4989), 1, + STATE(5024), 1, sym_on_stop_phrase, - STATE(5960), 1, + STATE(5038), 1, + aux_sym_for_statement_repeat1, + STATE(5798), 1, sym_body, - STATE(3081), 2, + STATE(3145), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [207026] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [212885] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, - sym_using, - STATE(3220), 1, + STATE(3126), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3271), 1, + sym_using, + STATE(3454), 1, sym_query_tuning, - STATE(3444), 1, + STATE(3497), 1, aux_sym_for_phrase_repeat2, - STATE(4024), 1, + STATE(4087), 1, sym_on_error_phrase, - STATE(4353), 1, + STATE(4464), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4686), 1, + STATE(4865), 1, sym_on_stop_phrase, - STATE(4691), 1, + STATE(4866), 1, aux_sym_for_statement_repeat1, - STATE(5711), 1, + STATE(5970), 1, sym_body, - STATE(3082), 2, + STATE(3146), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [207098] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [212957] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3068), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, sym_query_tuning, - STATE(3485), 1, + STATE(3551), 1, aux_sym_for_phrase_repeat2, - STATE(4120), 1, + STATE(4184), 1, sym_on_error_phrase, - STATE(4412), 1, + STATE(4335), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4887), 1, - sym_on_stop_phrase, - STATE(4890), 1, + STATE(5018), 1, aux_sym_for_statement_repeat1, - STATE(5464), 1, + STATE(5019), 1, + sym_on_stop_phrase, + STATE(5747), 1, sym_body, - STATE(3083), 2, + STATE(3147), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [207170] = 21, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [213029] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3790), 1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3792), 1, - aux_sym_where_clause_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3099), 1, - aux_sym_for_phrase_repeat1, - STATE(3112), 1, - sym_where_clause, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, sym_query_tuning, - STATE(3747), 1, + STATE(3493), 1, aux_sym_for_phrase_repeat2, - STATE(4487), 1, - sym_sort_clause, - STATE(4521), 1, + STATE(4151), 1, sym_on_error_phrase, - STATE(4898), 1, + STATE(4523), 1, sym_on_quit_phrase, - STATE(5581), 1, + STATE(4603), 1, + sym_sort_clause, + STATE(4869), 1, + aux_sym_for_statement_repeat1, + STATE(4870), 1, sym_on_stop_phrase, - ACTIONS(4372), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(3084), 2, + STATE(5764), 1, + sym_body, + STATE(3148), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [207240] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [213101] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3064), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, sym_query_tuning, - STATE(3429), 1, + STATE(3517), 1, aux_sym_for_phrase_repeat2, - STATE(4086), 1, + STATE(4238), 1, sym_on_error_phrase, - STATE(4309), 1, + STATE(4436), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4976), 1, + STATE(4804), 1, sym_on_stop_phrase, - STATE(4977), 1, + STATE(4827), 1, aux_sym_for_statement_repeat1, - STATE(5987), 1, + STATE(5697), 1, sym_body, - STATE(3085), 2, + STATE(3149), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [207312] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [213173] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3094), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, sym_query_tuning, - STATE(3444), 1, + STATE(3566), 1, aux_sym_for_phrase_repeat2, - STATE(4024), 1, + STATE(4179), 1, sym_on_error_phrase, - STATE(4353), 1, + STATE(4402), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4686), 1, - sym_on_stop_phrase, - STATE(4691), 1, + STATE(4990), 1, aux_sym_for_statement_repeat1, - STATE(5711), 1, + STATE(5000), 1, + sym_on_stop_phrase, + STATE(6093), 1, sym_body, - STATE(3086), 2, + STATE(3150), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [207384] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [213245] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3429), 1, + STATE(3518), 1, aux_sym_for_phrase_repeat2, - STATE(4086), 1, + STATE(4069), 1, sym_on_error_phrase, - STATE(4309), 1, + STATE(4495), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4976), 1, - sym_on_stop_phrase, - STATE(4977), 1, + STATE(5124), 1, aux_sym_for_statement_repeat1, - STATE(5987), 1, + STATE(5126), 1, + sym_on_stop_phrase, + STATE(5772), 1, sym_body, - STATE(3087), 2, + STATE(3151), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [207456] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [213317] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, - sym_using, - STATE(3220), 1, + STATE(3145), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3271), 1, + sym_using, + STATE(3454), 1, sym_query_tuning, - STATE(3482), 1, + STATE(3550), 1, aux_sym_for_phrase_repeat2, - STATE(4172), 1, + STATE(4154), 1, sym_on_error_phrase, - STATE(4276), 1, + STATE(4353), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4821), 1, + STATE(5053), 1, aux_sym_for_statement_repeat1, - STATE(4842), 1, + STATE(5054), 1, sym_on_stop_phrase, - STATE(5534), 1, + STATE(5939), 1, sym_body, - STATE(3088), 2, + STATE(3152), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [207528] = 22, - ACTIONS(65), 1, + [213389] = 22, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(4438), 1, + sym_identifier, + ACTIONS(4440), 1, + anon_sym_COLON, + ACTIONS(4450), 1, + aux_sym_while_phrase_token1, + ACTIONS(4452), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4454), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(4456), 1, + aux_sym_do_tuning_token1, + STATE(3434), 1, + sym_to_phrase, + STATE(3676), 1, + sym_while_phrase, + STATE(3677), 1, + aux_sym_do_block_repeat1, + STATE(4378), 1, + sym_stop_after_phrase, + STATE(4716), 1, + sym_object_access, + STATE(4926), 1, + sym_do_tuning, + STATE(6115), 1, + sym_body, + STATE(6598), 1, + sym_assignment, + STATE(3153), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5582), 2, + sym_qualified_name, + sym_member_access, + STATE(6047), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [213461] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3436), 1, + STATE(3497), 1, aux_sym_for_phrase_repeat2, - STATE(4053), 1, + STATE(4087), 1, sym_on_error_phrase, - STATE(4301), 1, + STATE(4464), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4653), 1, + STATE(4865), 1, sym_on_stop_phrase, - STATE(4654), 1, + STATE(4866), 1, aux_sym_for_statement_repeat1, - STATE(5746), 1, + STATE(5970), 1, sym_body, - STATE(3089), 2, + STATE(3154), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [207600] = 22, - ACTIONS(65), 1, + [213533] = 22, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(4438), 1, + sym_identifier, + ACTIONS(4440), 1, + anon_sym_COLON, + ACTIONS(4450), 1, + aux_sym_while_phrase_token1, + ACTIONS(4452), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4454), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(4456), 1, + aux_sym_do_tuning_token1, + STATE(3449), 1, + sym_to_phrase, + STATE(3692), 1, + aux_sym_do_block_repeat1, + STATE(3696), 1, + sym_while_phrase, + STATE(4397), 1, + sym_stop_after_phrase, + STATE(4716), 1, + sym_object_access, + STATE(4926), 1, + sym_do_tuning, + STATE(5993), 1, + sym_body, + STATE(6598), 1, + sym_assignment, + STATE(3155), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5582), 2, + sym_qualified_name, + sym_member_access, + STATE(6016), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [213605] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3474), 1, + STATE(3495), 1, aux_sym_for_phrase_repeat2, - STATE(4044), 1, + STATE(4114), 1, sym_on_error_phrase, - STATE(4343), 1, + STATE(4418), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4673), 1, + STATE(5152), 1, sym_on_stop_phrase, - STATE(4674), 1, + STATE(5156), 1, aux_sym_for_statement_repeat1, - STATE(5723), 1, + STATE(5876), 1, sym_body, - STATE(3090), 2, + STATE(3156), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [207672] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [213677] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, - sym_using, - STATE(3220), 1, + STATE(3156), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3271), 1, + sym_using, + STATE(3454), 1, sym_query_tuning, - STATE(3452), 1, + STATE(3516), 1, aux_sym_for_phrase_repeat2, - STATE(4118), 1, + STATE(4096), 1, sym_on_error_phrase, - STATE(4203), 1, + STATE(4434), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4584), 1, + STATE(5162), 1, sym_on_stop_phrase, - STATE(4652), 1, + STATE(5163), 1, aux_sym_for_statement_repeat1, - STATE(5378), 1, + STATE(5857), 1, sym_body, - STATE(3091), 2, + STATE(3157), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [207744] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [213749] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3089), 1, + STATE(3159), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3427), 1, + STATE(3518), 1, aux_sym_for_phrase_repeat2, - STATE(4050), 1, + STATE(4069), 1, sym_on_error_phrase, - STATE(4338), 1, + STATE(4495), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4667), 1, - sym_on_stop_phrase, - STATE(4668), 1, + STATE(5124), 1, aux_sym_for_statement_repeat1, - STATE(5737), 1, + STATE(5126), 1, + sym_on_stop_phrase, + STATE(5772), 1, sym_body, - STATE(3092), 2, + STATE(3158), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [207816] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [213821] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3465), 1, + STATE(3524), 1, aux_sym_for_phrase_repeat2, - STATE(3993), 1, + STATE(4085), 1, sym_on_error_phrase, - STATE(4364), 1, + STATE(4452), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(5037), 1, - aux_sym_for_statement_repeat1, - STATE(5038), 1, + STATE(5170), 1, sym_on_stop_phrase, - STATE(5689), 1, + STATE(5171), 1, + aux_sym_for_statement_repeat1, + STATE(5847), 1, sym_body, - STATE(3093), 2, + STATE(3159), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [207888] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [213893] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3427), 1, + STATE(3523), 1, aux_sym_for_phrase_repeat2, - STATE(4050), 1, + STATE(4079), 1, sym_on_error_phrase, - STATE(4338), 1, + STATE(4468), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4667), 1, - sym_on_stop_phrase, - STATE(4668), 1, + STATE(5164), 1, aux_sym_for_statement_repeat1, - STATE(5737), 1, + STATE(5169), 1, + sym_on_stop_phrase, + STATE(5808), 1, sym_body, - STATE(3094), 2, + STATE(3160), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [207960] = 22, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [213965] = 22, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, - sym_using, - STATE(3220), 1, + STATE(3068), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3271), 1, + sym_using, + STATE(3454), 1, sym_query_tuning, - STATE(3449), 1, + STATE(3523), 1, aux_sym_for_phrase_repeat2, - STATE(4020), 1, + STATE(4079), 1, sym_on_error_phrase, - STATE(4440), 1, + STATE(4468), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4739), 1, + STATE(5164), 1, aux_sym_for_statement_repeat1, - STATE(4742), 1, + STATE(5169), 1, sym_on_stop_phrase, - STATE(5978), 1, + STATE(5808), 1, sym_body, - STATE(3095), 2, + STATE(3161), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [208032] = 6, + [214037] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4123), 1, + ACTIONS(4132), 1, sym__escaped_string, - STATE(3096), 2, + STATE(3162), 2, sym_comment, sym_include, - ACTIONS(2780), 20, + ACTIONS(2847), 20, sym_identifier, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, @@ -227364,19 +233358,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, aux_sym_class_type_token1, - [208071] = 6, + [214076] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4348), 1, + ACTIONS(4470), 1, sym__escaped_string, - STATE(3097), 2, + STATE(3163), 2, sym_comment, sym_include, - ACTIONS(2787), 20, + ACTIONS(4468), 20, sym_identifier, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, @@ -227397,19 +233391,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, aux_sym_class_type_token1, - [208110] = 6, + [214115] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4427), 1, + ACTIONS(4379), 1, sym__escaped_string, - STATE(3098), 2, + STATE(3164), 2, sym_comment, sym_include, - ACTIONS(4425), 20, + ACTIONS(2845), 20, sym_identifier, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, @@ -227430,110 +233424,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, aux_sym_class_type_token1, - [208149] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [214154] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(3217), 1, - sym_using, - STATE(3220), 1, - aux_sym_for_phrase_repeat1, - STATE(3406), 1, - sym_query_tuning, - STATE(3755), 1, - aux_sym_for_phrase_repeat2, - STATE(4487), 1, - sym_sort_clause, - STATE(4557), 1, - sym_on_error_phrase, - STATE(4595), 1, - sym_on_quit_phrase, - STATE(5382), 1, - sym_on_stop_phrase, - ACTIONS(4423), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(3099), 2, + ACTIONS(4472), 1, + sym__namedot, + STATE(3191), 1, + aux_sym_qualified_name_repeat1, + STATE(3165), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(104), 18, + sym__terminator, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_variable_tuning_token7, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [208213] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_setter_token1, + aux_sym_on_error_phrase_token1, + aux_sym_widget_field_token1, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + aux_sym_run_tuning_token7, + [214194] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, - aux_sym_variable_definition_token4, - ACTIONS(4435), 1, - aux_sym_button_definition_token1, - ACTIONS(4433), 2, - aux_sym_workfile_definition_token1, - aux_sym_workfile_definition_token2, - STATE(3100), 2, + ACTIONS(2429), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(4474), 1, + sym__terminator, + STATE(3188), 1, + aux_sym_output_stream_statement_repeat1, + STATE(3211), 1, + sym_output_stream_tuning, + STATE(3166), 2, sym_comment, sym_include, - ACTIONS(4376), 3, - aux_sym_dataset_expression_token1, - aux_sym_buffer_definition_token1, - aux_sym_query_definition_token1, - ACTIONS(4374), 4, - aux_sym_temp_table_expression_token1, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - aux_sym_variable_definition_token3, - ACTIONS(4429), 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_access_tuning_token4, - aux_sym_access_tuning_token5, - [208259] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2427), 4, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + aux_sym_output_stream_tuning_token1, + aux_sym_output_stream_tuning_token7, + ACTIONS(2425), 12, + aux_sym__function_argument_with_mode_token4, + 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, + [214240] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4437), 1, - sym__terminator, - ACTIONS(4445), 1, + ACTIONS(2429), 1, aux_sym_input_stream_tuning_token9, - STATE(3195), 1, + ACTIONS(4476), 1, + sym__terminator, + STATE(3188), 1, + aux_sym_output_stream_statement_repeat1, + STATE(3211), 1, sym_output_stream_tuning, - STATE(3101), 3, + STATE(3167), 2, sym_comment, sym_include, - aux_sym_output_stream_statement_repeat1, - ACTIONS(4442), 4, + ACTIONS(2427), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token7, - ACTIONS(4439), 12, + ACTIONS(2425), 12, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, @@ -227546,291 +233529,363 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token4, aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, - [208303] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [214286] = 19, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3099), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, sym_query_tuning, - STATE(3747), 1, + STATE(3917), 1, aux_sym_for_phrase_repeat2, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4521), 1, + STATE(4624), 1, sym_on_error_phrase, - STATE(4898), 1, + STATE(5127), 1, sym_on_quit_phrase, - STATE(5581), 1, + STATE(5941), 1, sym_on_stop_phrase, - ACTIONS(4372), 2, + ACTIONS(4478), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(3102), 2, + STATE(3168), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [208367] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [214350] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4448), 1, - sym__namedot, - STATE(3116), 1, - aux_sym_qualified_name_repeat1, - STATE(3103), 2, + ACTIONS(4482), 1, + aux_sym_input_stream_tuning_token10, + ACTIONS(4484), 1, + aux_sym_input_stream_tuning_token11, + STATE(3169), 2, sym_comment, sym_include, - ACTIONS(98), 18, + ACTIONS(4480), 18, sym__terminator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_variable_tuning_token7, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token2, - aux_sym_argument_pass_type_token3, aux_sym__function_argument_with_mode_token4, - aux_sym_function_call_token1, - aux_sym_setter_token1, - aux_sym_on_error_phrase_token1, - aux_sym_widget_field_token1, - aux_sym_run_tuning_token1, - aux_sym_run_tuning_token2, - aux_sym_run_tuning_token3, - aux_sym_run_tuning_token4, - aux_sym_run_tuning_token7, - [208407] = 19, - ACTIONS(65), 1, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token5, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + aux_sym_input_stream_tuning_token9, + 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, + [214390] = 10, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2429), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(4486), 1, + sym__terminator, + STATE(3188), 1, + aux_sym_output_stream_statement_repeat1, + STATE(3211), 1, + sym_output_stream_tuning, + STATE(3170), 2, + sym_comment, + sym_include, + ACTIONS(2427), 4, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + aux_sym_output_stream_tuning_token1, + aux_sym_output_stream_tuning_token7, + ACTIONS(2425), 12, + aux_sym__function_argument_with_mode_token4, + 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, + [214436] = 19, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3124), 1, + STATE(3193), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3728), 1, + STATE(3917), 1, aux_sym_for_phrase_repeat2, - STATE(4476), 1, - sym_on_error_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4869), 1, + STATE(4624), 1, + sym_on_error_phrase, + STATE(5127), 1, sym_on_quit_phrase, - STATE(5856), 1, + STATE(5941), 1, sym_on_stop_phrase, - ACTIONS(4450), 2, + ACTIONS(4478), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(3104), 2, + STATE(3171), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [208471] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [214500] = 19, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, - sym_using, - STATE(3220), 1, + STATE(3186), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3271), 1, + sym_using, + STATE(3454), 1, sym_query_tuning, - STATE(3758), 1, + STATE(3859), 1, aux_sym_for_phrase_repeat2, - STATE(4487), 1, - sym_sort_clause, - STATE(4558), 1, + STATE(4586), 1, sym_on_error_phrase, - STATE(4589), 1, + STATE(4603), 1, + sym_sort_clause, + STATE(4644), 1, sym_on_quit_phrase, - STATE(5388), 1, + STATE(5488), 1, sym_on_stop_phrase, - ACTIONS(4407), 2, + ACTIONS(4488), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(3105), 2, + STATE(3172), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [208535] = 19, - ACTIONS(65), 1, + [214564] = 10, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2429), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(4490), 1, + sym__terminator, + STATE(3188), 1, + aux_sym_output_stream_statement_repeat1, + STATE(3211), 1, + sym_output_stream_tuning, + STATE(3173), 2, + sym_comment, + sym_include, + ACTIONS(2427), 4, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + aux_sym_output_stream_tuning_token1, + aux_sym_output_stream_tuning_token7, + ACTIONS(2425), 12, + aux_sym__function_argument_with_mode_token4, + 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, + [214610] = 19, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3131), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, sym_query_tuning, - STATE(3726), 1, + STATE(3920), 1, aux_sym_for_phrase_repeat2, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4537), 1, + STATE(4627), 1, sym_on_error_phrase, - STATE(4754), 1, + STATE(5154), 1, sym_on_quit_phrase, - STATE(5498), 1, + STATE(5942), 1, sym_on_stop_phrase, - ACTIONS(4421), 2, + ACTIONS(4436), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(3106), 2, + STATE(3174), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [208599] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [214674] = 19, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3128), 1, + STATE(3196), 1, aux_sym_for_phrase_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3758), 1, + STATE(3920), 1, aux_sym_for_phrase_repeat2, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4558), 1, + STATE(4627), 1, sym_on_error_phrase, - STATE(4589), 1, + STATE(5154), 1, sym_on_quit_phrase, - STATE(5388), 1, + STATE(5942), 1, sym_on_stop_phrase, - ACTIONS(4407), 2, + ACTIONS(4436), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(3107), 2, + STATE(3175), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [208663] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [214738] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4409), 1, aux_sym_variable_definition_token4, - ACTIONS(4452), 1, + ACTIONS(4498), 1, aux_sym_button_definition_token1, - ACTIONS(4433), 2, + ACTIONS(4496), 2, aux_sym_workfile_definition_token1, aux_sym_workfile_definition_token2, - STATE(3108), 2, + STATE(3176), 2, sym_comment, sym_include, - ACTIONS(4376), 3, + ACTIONS(4393), 3, aux_sym_dataset_expression_token1, aux_sym_buffer_definition_token1, aux_sym_query_definition_token1, - ACTIONS(4374), 4, + ACTIONS(4391), 4, aux_sym_temp_table_expression_token1, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, aux_sym_variable_definition_token3, - ACTIONS(4429), 9, + ACTIONS(4492), 9, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, @@ -227840,30 +233895,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [208709] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [214784] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2414), 1, + ACTIONS(2429), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(4454), 1, + ACTIONS(4500), 1, sym__terminator, - STATE(3101), 1, + STATE(3188), 1, aux_sym_output_stream_statement_repeat1, - STATE(3195), 1, + STATE(3211), 1, sym_output_stream_tuning, - STATE(3109), 2, + STATE(3177), 2, sym_comment, sym_include, - ACTIONS(2412), 4, + ACTIONS(2427), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token7, - ACTIONS(2410), 12, + ACTIONS(2425), 12, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, @@ -227876,66 +233931,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token4, aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, - [208755] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [214830] = 10, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4392), 1, - aux_sym_variable_definition_token4, - ACTIONS(4456), 1, - aux_sym_button_definition_token1, - ACTIONS(4433), 2, - aux_sym_workfile_definition_token1, - aux_sym_workfile_definition_token2, - STATE(3110), 2, - sym_comment, - sym_include, - ACTIONS(4376), 3, - aux_sym_dataset_expression_token1, - aux_sym_buffer_definition_token1, - aux_sym_query_definition_token1, - ACTIONS(4374), 4, - aux_sym_temp_table_expression_token1, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - aux_sym_variable_definition_token3, - ACTIONS(4429), 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_access_tuning_token4, - aux_sym_access_tuning_token5, - [208801] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2414), 1, + ACTIONS(2429), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(4458), 1, + ACTIONS(4502), 1, sym__terminator, - STATE(3101), 1, + STATE(3188), 1, aux_sym_output_stream_statement_repeat1, - STATE(3195), 1, + STATE(3211), 1, sym_output_stream_tuning, - STATE(3111), 2, + STATE(3178), 2, sym_comment, sym_include, - ACTIONS(2412), 4, + ACTIONS(2427), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token7, - ACTIONS(2410), 12, + ACTIONS(2425), 12, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, @@ -227948,75 +233967,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token4, aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, - [208847] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [214876] = 10, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(3118), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, - sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3755), 1, - aux_sym_for_phrase_repeat2, - STATE(4487), 1, - sym_sort_clause, - STATE(4557), 1, - sym_on_error_phrase, - STATE(4595), 1, - sym_on_quit_phrase, - STATE(5382), 1, - sym_on_stop_phrase, - ACTIONS(4423), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(3112), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [208911] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2414), 1, + ACTIONS(2429), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(4460), 1, + ACTIONS(4504), 1, sym__terminator, - STATE(3101), 1, + STATE(3188), 1, aux_sym_output_stream_statement_repeat1, - STATE(3195), 1, + STATE(3211), 1, sym_output_stream_tuning, - STATE(3113), 2, + STATE(3179), 2, sym_comment, sym_include, - ACTIONS(2412), 4, + ACTIONS(2427), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token7, - ACTIONS(2410), 12, + ACTIONS(2425), 12, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, @@ -228029,227 +234003,114 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token4, aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, - [208957] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [214922] = 19, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2414), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(4462), 1, - sym__terminator, - STATE(3101), 1, - aux_sym_output_stream_statement_repeat1, - STATE(3195), 1, - sym_output_stream_tuning, - STATE(3114), 2, - sym_comment, - sym_include, - ACTIONS(2412), 4, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - aux_sym_output_stream_tuning_token1, - aux_sym_output_stream_tuning_token7, - ACTIONS(2410), 12, - aux_sym__function_argument_with_mode_token4, - 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, - [209003] = 19, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, - sym_using, - STATE(3220), 1, + STATE(3197), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3271), 1, + sym_using, + STATE(3454), 1, sym_query_tuning, - STATE(3747), 1, + STATE(3842), 1, aux_sym_for_phrase_repeat2, - STATE(4487), 1, - sym_sort_clause, - STATE(4521), 1, + STATE(4578), 1, sym_on_error_phrase, - STATE(4898), 1, + STATE(4603), 1, + sym_sort_clause, + STATE(4727), 1, sym_on_quit_phrase, - STATE(5581), 1, + STATE(5574), 1, sym_on_stop_phrase, - ACTIONS(4372), 2, + ACTIONS(4420), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(3115), 2, + STATE(3180), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [209067] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [214986] = 10, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4464), 1, - sym__namedot, - STATE(3116), 3, - sym_comment, - sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(117), 18, - sym__terminator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_variable_tuning_token7, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token2, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - aux_sym_function_call_token1, - aux_sym_setter_token1, - aux_sym_on_error_phrase_token1, - aux_sym_widget_field_token1, - aux_sym_run_tuning_token1, - aux_sym_run_tuning_token2, - aux_sym_run_tuning_token3, - aux_sym_run_tuning_token4, - aux_sym_run_tuning_token7, - [209105] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2414), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(4467), 1, - sym__terminator, - STATE(3101), 1, - aux_sym_output_stream_statement_repeat1, - STATE(3195), 1, - sym_output_stream_tuning, - STATE(3117), 2, + ACTIONS(4409), 1, + aux_sym_variable_definition_token4, + ACTIONS(4506), 1, + aux_sym_button_definition_token1, + ACTIONS(4496), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(3181), 2, sym_comment, sym_include, - ACTIONS(2412), 4, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - aux_sym_output_stream_tuning_token1, - aux_sym_output_stream_tuning_token7, - ACTIONS(2410), 12, - aux_sym__function_argument_with_mode_token4, - 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, - [209151] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4393), 3, + aux_sym_dataset_expression_token1, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + ACTIONS(4391), 4, + aux_sym_temp_table_expression_token1, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_variable_definition_token3, + ACTIONS(4492), 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_access_tuning_token4, + aux_sym_access_tuning_token5, + [215032] = 10, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(3217), 1, - sym_using, - STATE(3220), 1, - aux_sym_for_phrase_repeat1, - STATE(3406), 1, - sym_query_tuning, - STATE(3716), 1, - aux_sym_for_phrase_repeat2, - STATE(4487), 1, - sym_sort_clause, - STATE(4538), 1, - sym_on_error_phrase, - STATE(4707), 1, - sym_on_quit_phrase, - STATE(5490), 1, - sym_on_stop_phrase, - ACTIONS(4469), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(3118), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [209215] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4409), 1, aux_sym_variable_definition_token4, - ACTIONS(4471), 1, + ACTIONS(4508), 1, aux_sym_button_definition_token1, - ACTIONS(4433), 2, + ACTIONS(4496), 2, aux_sym_workfile_definition_token1, aux_sym_workfile_definition_token2, - STATE(3119), 2, + STATE(3182), 2, sym_comment, sym_include, - ACTIONS(4376), 3, + ACTIONS(4393), 3, aux_sym_dataset_expression_token1, aux_sym_buffer_definition_token1, aux_sym_query_definition_token1, - ACTIONS(4374), 4, + ACTIONS(4391), 4, aux_sym_temp_table_expression_token1, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, aux_sym_variable_definition_token3, - ACTIONS(4429), 9, + ACTIONS(4492), 9, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, @@ -228259,63 +234120,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [209261] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [215078] = 10, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4475), 1, - aux_sym_input_stream_tuning_token10, - ACTIONS(4477), 1, - aux_sym_input_stream_tuning_token11, - STATE(3120), 2, - sym_comment, - sym_include, - ACTIONS(4473), 18, - sym__terminator, - aux_sym__function_argument_with_mode_token4, - 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, - [209301] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2414), 1, + ACTIONS(2429), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(4479), 1, + ACTIONS(4510), 1, sym__terminator, - STATE(3101), 1, + STATE(3188), 1, aux_sym_output_stream_statement_repeat1, - STATE(3195), 1, + STATE(3211), 1, sym_output_stream_tuning, - STATE(3121), 2, + STATE(3183), 2, sym_comment, sym_include, - ACTIONS(2412), 4, + ACTIONS(2427), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token7, - ACTIONS(2410), 12, + ACTIONS(2425), 12, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, @@ -228328,192 +234156,165 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token4, aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, - [209347] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [215124] = 19, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2414), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(4481), 1, - sym__terminator, - STATE(3101), 1, - aux_sym_output_stream_statement_repeat1, - STATE(3195), 1, - sym_output_stream_tuning, - STATE(3122), 2, - sym_comment, - sym_include, - ACTIONS(2412), 4, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - aux_sym_output_stream_tuning_token1, - aux_sym_output_stream_tuning_token7, - ACTIONS(2410), 12, - aux_sym__function_argument_with_mode_token4, - 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, - [209393] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2414), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(4483), 1, - sym__terminator, - STATE(3101), 1, - aux_sym_output_stream_statement_repeat1, - STATE(3195), 1, - sym_output_stream_tuning, - STATE(3123), 2, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(3271), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, + sym_query_tuning, + STATE(3842), 1, + aux_sym_for_phrase_repeat2, + STATE(4578), 1, + sym_on_error_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4727), 1, + sym_on_quit_phrase, + STATE(5574), 1, + sym_on_stop_phrase, + ACTIONS(4420), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3184), 2, sym_comment, sym_include, - ACTIONS(2412), 4, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - aux_sym_output_stream_tuning_token1, - aux_sym_output_stream_tuning_token7, - ACTIONS(2410), 12, - aux_sym__function_argument_with_mode_token4, - 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, - [209439] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [215188] = 19, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3745), 1, + STATE(3911), 1, aux_sym_for_phrase_repeat2, - STATE(4485), 1, - sym_on_error_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4704), 1, + STATE(4622), 1, + sym_on_error_phrase, + STATE(4935), 1, sym_on_quit_phrase, - STATE(5780), 1, + STATE(6073), 1, sym_on_stop_phrase, - ACTIONS(4485), 2, + ACTIONS(4430), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(3124), 2, + STATE(3185), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [209503] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [215252] = 19, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(3129), 1, - aux_sym_for_phrase_repeat1, - STATE(3217), 1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, sym_query_tuning, - STATE(3716), 1, + STATE(3916), 1, aux_sym_for_phrase_repeat2, - STATE(4487), 1, - sym_sort_clause, - STATE(4538), 1, + STATE(4555), 1, sym_on_error_phrase, - STATE(4707), 1, + STATE(4603), 1, + sym_sort_clause, + STATE(4824), 1, sym_on_quit_phrase, - STATE(5490), 1, + STATE(5700), 1, sym_on_stop_phrase, - ACTIONS(4469), 2, + ACTIONS(4512), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(3125), 2, + STATE(3186), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [209567] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [215316] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2414), 1, + ACTIONS(2429), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(4487), 1, + ACTIONS(4514), 1, sym__terminator, - STATE(3101), 1, + STATE(3188), 1, aux_sym_output_stream_statement_repeat1, - STATE(3195), 1, + STATE(3211), 1, sym_output_stream_tuning, - STATE(3126), 2, + STATE(3187), 2, sym_comment, sym_include, - ACTIONS(2412), 4, + ACTIONS(2427), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token7, - ACTIONS(2410), 12, + ACTIONS(2425), 12, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, @@ -228526,30 +234327,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token4, aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, - [209613] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [215362] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2414), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(4489), 1, + ACTIONS(4516), 1, sym__terminator, - STATE(3101), 1, - aux_sym_output_stream_statement_repeat1, - STATE(3195), 1, + ACTIONS(4524), 1, + aux_sym_input_stream_tuning_token9, + STATE(3211), 1, sym_output_stream_tuning, - STATE(3127), 2, + STATE(3188), 3, sym_comment, sym_include, - ACTIONS(2412), 4, + aux_sym_output_stream_statement_repeat1, + ACTIONS(4521), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token7, - ACTIONS(2410), 12, + ACTIONS(4518), 12, aux_sym__function_argument_with_mode_token4, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, @@ -228562,123 +234362,227 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token4, aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, - [209659] = 19, - ACTIONS(65), 1, + [215406] = 10, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4409), 1, + aux_sym_variable_definition_token4, + ACTIONS(4527), 1, + aux_sym_button_definition_token1, + ACTIONS(4496), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(3189), 2, + sym_comment, + sym_include, + ACTIONS(4393), 3, + aux_sym_dataset_expression_token1, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + ACTIONS(4391), 4, + aux_sym_temp_table_expression_token1, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_variable_definition_token3, + ACTIONS(4492), 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_access_tuning_token4, + aux_sym_access_tuning_token5, + [215452] = 19, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, - sym_using, - STATE(3220), 1, + STATE(3174), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3271), 1, + sym_using, + STATE(3454), 1, sym_query_tuning, - STATE(3726), 1, + STATE(3911), 1, aux_sym_for_phrase_repeat2, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4537), 1, + STATE(4622), 1, sym_on_error_phrase, - STATE(4754), 1, + STATE(4935), 1, sym_on_quit_phrase, - STATE(5498), 1, + STATE(6073), 1, sym_on_stop_phrase, - ACTIONS(4421), 2, + ACTIONS(4430), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(3128), 2, + STATE(3190), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [209723] = 19, - ACTIONS(65), 1, + [215516] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4529), 1, + sym__namedot, + STATE(3191), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(108), 18, + sym__terminator, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_variable_tuning_token7, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + aux_sym_function_call_token1, + aux_sym_setter_token1, + aux_sym_on_error_phrase_token1, + aux_sym_widget_field_token1, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + aux_sym_run_tuning_token7, + [215554] = 10, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2429), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(4532), 1, + sym__terminator, + STATE(3188), 1, + aux_sym_output_stream_statement_repeat1, + STATE(3211), 1, + sym_output_stream_tuning, + STATE(3192), 2, + sym_comment, + sym_include, + ACTIONS(2427), 4, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + aux_sym_output_stream_tuning_token1, + aux_sym_output_stream_tuning_token7, + ACTIONS(2425), 12, + aux_sym__function_argument_with_mode_token4, + 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, + [215600] = 19, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3734), 1, + STATE(3863), 1, aux_sym_for_phrase_repeat2, - STATE(4478), 1, - sym_on_error_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4885), 1, + STATE(4613), 1, + sym_on_error_phrase, + STATE(4678), 1, sym_on_quit_phrase, - STATE(5842), 1, + STATE(5468), 1, sym_on_stop_phrase, - ACTIONS(4491), 2, + ACTIONS(4534), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(3129), 2, + STATE(3193), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [209787] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [215664] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4409), 1, aux_sym_variable_definition_token4, - ACTIONS(4493), 1, + ACTIONS(4536), 1, aux_sym_button_definition_token1, - ACTIONS(4433), 2, + ACTIONS(4496), 2, aux_sym_workfile_definition_token1, aux_sym_workfile_definition_token2, - STATE(3130), 2, + STATE(3194), 2, sym_comment, sym_include, - ACTIONS(4376), 3, + ACTIONS(4393), 3, aux_sym_dataset_expression_token1, aux_sym_buffer_definition_token1, aux_sym_query_definition_token1, - ACTIONS(4374), 4, + ACTIONS(4391), 4, aux_sym_temp_table_expression_token1, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, aux_sym_variable_definition_token3, - ACTIONS(4429), 9, + ACTIONS(4492), 9, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, @@ -228688,199 +234592,213 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [209833] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [215710] = 19, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3217), 1, - sym_using, - STATE(3220), 1, + STATE(3168), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3271), 1, + sym_using, + STATE(3454), 1, sym_query_tuning, - STATE(3728), 1, + STATE(3918), 1, aux_sym_for_phrase_repeat2, - STATE(4476), 1, - sym_on_error_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4869), 1, + STATE(4625), 1, + sym_on_error_phrase, + STATE(4931), 1, sym_on_quit_phrase, - STATE(5856), 1, + STATE(6035), 1, sym_on_stop_phrase, - ACTIONS(4450), 2, + ACTIONS(4464), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(3131), 2, + STATE(3195), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [209897] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [215774] = 19, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(3132), 2, - sym_comment, - sym_include, - ACTIONS(4495), 17, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(3271), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, + sym_query_tuning, + STATE(3859), 1, + aux_sym_for_phrase_repeat2, + STATE(4586), 1, + sym_on_error_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4644), 1, + sym_on_quit_phrase, + STATE(5488), 1, + sym_on_stop_phrase, + ACTIONS(4488), 2, anon_sym_COLON, - sym__terminator, anon_sym_COMMA, - anon_sym_RPAREN, + STATE(3196), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, aux_sym_function_call_token1, - 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, + [215838] = 19, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - aux_sym_of_token1, - aux_sym_using_token1, - [209936] = 17, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(3271), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, + sym_query_tuning, + STATE(3918), 1, + aux_sym_for_phrase_repeat2, + STATE(4603), 1, + sym_sort_clause, + STATE(4625), 1, + sym_on_error_phrase, + STATE(4931), 1, + sym_on_quit_phrase, + STATE(6035), 1, + sym_on_stop_phrase, + ACTIONS(4464), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3197), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [215902] = 17, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4497), 1, + ACTIONS(4538), 1, sym__terminator, - ACTIONS(4501), 1, + ACTIONS(4542), 1, aux_sym_variable_tuning_token2, - ACTIONS(4503), 1, + ACTIONS(4544), 1, aux_sym_variable_tuning_token7, - ACTIONS(4505), 1, + ACTIONS(4546), 1, aux_sym_variable_tuning_token8, - ACTIONS(4507), 1, + ACTIONS(4548), 1, aux_sym_getter_token1, - ACTIONS(4509), 1, + ACTIONS(4550), 1, aux_sym_setter_token1, - STATE(3204), 1, + STATE(3262), 1, aux_sym_property_definition_repeat3, - STATE(3281), 1, + STATE(3306), 1, aux_sym_property_definition_repeat2, - STATE(3353), 1, + STATE(3474), 1, sym_property_tuning, - STATE(5439), 1, + STATE(5905), 1, sym_access_tuning, - ACTIONS(4499), 2, + ACTIONS(4540), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token6, - STATE(3133), 2, + STATE(3198), 2, sym_comment, sym_include, - STATE(3355), 2, + STATE(3475), 2, sym_getter, sym_setter, - ACTIONS(2834), 5, + ACTIONS(3075), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [209995] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4511), 1, - sym_identifier, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4515), 1, - aux_sym_while_phrase_token1, - ACTIONS(4517), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4519), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(4521), 1, - aux_sym_do_tuning_token1, - STATE(3347), 1, - sym_to_phrase, - STATE(3682), 1, - aux_sym_do_block_repeat1, - STATE(3687), 1, - sym_while_phrase, - STATE(4382), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5789), 1, - sym_body, - STATE(6564), 1, - sym_assignment, - STATE(3134), 2, - sym_comment, - sym_include, - STATE(5735), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - STATE(6576), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [210058] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [215961] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4525), 1, + ACTIONS(4554), 1, aux_sym_unary_expression_token2, - ACTIONS(4527), 1, + ACTIONS(4556), 1, aux_sym_variable_tuning_token1, - ACTIONS(4529), 1, + ACTIONS(4558), 1, aux_sym_variable_tuning_token2, - ACTIONS(4535), 1, + ACTIONS(4564), 1, aux_sym_field_option_token1, - STATE(3154), 1, + STATE(3207), 1, aux_sym_field_definition_repeat1, - STATE(3210), 1, + STATE(3260), 1, sym_field_option, - ACTIONS(4533), 2, + ACTIONS(4562), 2, aux_sym_variable_tuning_token6, aux_sym_variable_tuning_token7, - STATE(3135), 2, + STATE(3199), 2, sym_comment, sym_include, - ACTIONS(4523), 3, + ACTIONS(4552), 3, sym__terminator, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - ACTIONS(4531), 8, + ACTIONS(4560), 8, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, @@ -228889,1069 +234807,188 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token4, aux_sym_field_option_token5, aux_sym_field_option_token6, - [210109] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4511), 1, - sym_identifier, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4537), 1, - aux_sym__block_terminator_token1, - ACTIONS(4539), 1, - aux_sym_while_phrase_token1, - ACTIONS(4541), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(4543), 1, - aux_sym_on_error_phrase_token1, - STATE(2037), 1, - sym__block_terminator, - STATE(3380), 1, - sym_to_phrase, - STATE(3499), 1, - sym_while_phrase, - STATE(3735), 1, - sym_on_error_phrase, - STATE(3857), 1, - sym_on_quit_phrase, - STATE(4169), 1, - sym_on_stop_phrase, - STATE(4174), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5437), 1, - sym_body, - STATE(6345), 1, - sym_assignment, - STATE(3136), 2, - sym_comment, - sym_include, - STATE(6576), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [210176] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4511), 1, - sym_identifier, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4515), 1, - aux_sym_while_phrase_token1, - ACTIONS(4517), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4519), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(4521), 1, - aux_sym_do_tuning_token1, - STATE(3357), 1, - sym_to_phrase, - STATE(3633), 1, - aux_sym_do_block_repeat1, - STATE(3636), 1, - sym_while_phrase, - STATE(4262), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5855), 1, - sym_body, - STATE(6564), 1, - sym_assignment, - STATE(3137), 2, - sym_comment, - sym_include, - STATE(5527), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - STATE(6576), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [210239] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4511), 1, - sym_identifier, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4515), 1, - aux_sym_while_phrase_token1, - ACTIONS(4517), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4519), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(4521), 1, - aux_sym_do_tuning_token1, - STATE(3401), 1, - sym_to_phrase, - STATE(3491), 1, - aux_sym_do_block_repeat1, - STATE(3493), 1, - sym_while_phrase, - STATE(4244), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5478), 1, - sym_body, - STATE(6564), 1, - sym_assignment, - STATE(3138), 2, - sym_comment, - sym_include, - STATE(5480), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - STATE(6576), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [210302] = 17, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [216012] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4501), 1, - aux_sym_variable_tuning_token2, - ACTIONS(4503), 1, - aux_sym_variable_tuning_token7, - ACTIONS(4505), 1, - aux_sym_variable_tuning_token8, - ACTIONS(4507), 1, - aux_sym_getter_token1, - ACTIONS(4509), 1, - aux_sym_setter_token1, - ACTIONS(4545), 1, - sym__terminator, - STATE(3150), 1, - aux_sym_property_definition_repeat2, - STATE(3214), 1, - aux_sym_property_definition_repeat3, - STATE(3353), 1, - sym_property_tuning, - STATE(5439), 1, - sym_access_tuning, - ACTIONS(4499), 2, + ACTIONS(4554), 1, + aux_sym_unary_expression_token2, + ACTIONS(4556), 1, aux_sym_variable_tuning_token1, + ACTIONS(4558), 1, + aux_sym_variable_tuning_token2, + ACTIONS(4564), 1, + aux_sym_field_option_token1, + STATE(3199), 1, + aux_sym_field_definition_repeat1, + STATE(3260), 1, + sym_field_option, + ACTIONS(4562), 2, aux_sym_variable_tuning_token6, - STATE(3139), 2, - sym_comment, - sym_include, - STATE(3355), 2, - sym_getter, - sym_setter, - ACTIONS(2834), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - [210361] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4511), 1, - sym_identifier, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4539), 1, - aux_sym_while_phrase_token1, - ACTIONS(4541), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(4543), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4547), 1, - aux_sym__block_terminator_token1, - STATE(2352), 1, - sym__block_terminator, - STATE(3345), 1, - sym_to_phrase, - STATE(3528), 1, - sym_while_phrase, - STATE(3776), 1, - sym_on_error_phrase, - STATE(3811), 1, - sym_on_quit_phrase, - STATE(4089), 1, - aux_sym_repeat_statement_repeat1, - STATE(4091), 1, - sym_on_stop_phrase, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5839), 1, - sym_body, - STATE(6345), 1, - sym_assignment, - STATE(3140), 2, - sym_comment, - sym_include, - STATE(6576), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [210428] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4511), 1, - sym_identifier, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4539), 1, - aux_sym_while_phrase_token1, - ACTIONS(4541), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(4543), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4549), 1, - aux_sym__block_terminator_token1, - STATE(1943), 1, - sym__block_terminator, - STATE(3340), 1, - sym_to_phrase, - STATE(3625), 1, - sym_while_phrase, - STATE(3720), 1, - sym_on_error_phrase, - STATE(3868), 1, - sym_on_quit_phrase, - STATE(4136), 1, - aux_sym_repeat_statement_repeat1, - STATE(4143), 1, - sym_on_stop_phrase, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5795), 1, - sym_body, - STATE(6345), 1, - sym_assignment, - STATE(3141), 2, - sym_comment, - sym_include, - STATE(6576), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [210495] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4511), 1, - sym_identifier, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4515), 1, - aux_sym_while_phrase_token1, - ACTIONS(4517), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4519), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(4521), 1, - aux_sym_do_tuning_token1, - STATE(3368), 1, - sym_to_phrase, - STATE(3603), 1, - sym_while_phrase, - STATE(3606), 1, - aux_sym_do_block_repeat1, - STATE(4442), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5427), 1, - sym_body, - STATE(6564), 1, - sym_assignment, - STATE(3142), 2, - sym_comment, - sym_include, - STATE(5939), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - STATE(6576), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [210558] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4511), 1, - sym_identifier, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4515), 1, - aux_sym_while_phrase_token1, - ACTIONS(4517), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4519), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(4521), 1, - aux_sym_do_tuning_token1, - STATE(3349), 1, - sym_to_phrase, - STATE(3680), 1, - sym_while_phrase, - STATE(3681), 1, - aux_sym_do_block_repeat1, - STATE(4365), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5816), 1, - sym_body, - STATE(6564), 1, - sym_assignment, - STATE(3143), 2, - sym_comment, - sym_include, - STATE(5704), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - STATE(6576), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [210621] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4511), 1, - sym_identifier, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4539), 1, - aux_sym_while_phrase_token1, - ACTIONS(4541), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(4543), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4551), 1, - aux_sym__block_terminator_token1, - STATE(1780), 1, - sym__block_terminator, - STATE(3342), 1, - sym_to_phrase, - STATE(3494), 1, - sym_while_phrase, - STATE(3718), 1, - sym_on_error_phrase, - STATE(3869), 1, - sym_on_quit_phrase, - STATE(4187), 1, - sym_on_stop_phrase, - STATE(4190), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5391), 1, - sym_body, - STATE(6345), 1, - sym_assignment, - STATE(3144), 2, - sym_comment, - sym_include, - STATE(6576), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [210688] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4511), 1, - sym_identifier, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4539), 1, - aux_sym_while_phrase_token1, - ACTIONS(4541), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(4543), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4551), 1, - aux_sym__block_terminator_token1, - STATE(1752), 1, - sym__block_terminator, - STATE(3381), 1, - sym_to_phrase, - STATE(3505), 1, - sym_while_phrase, - STATE(3744), 1, - sym_on_error_phrase, - STATE(3837), 1, - sym_on_quit_phrase, - STATE(4147), 1, - aux_sym_repeat_statement_repeat1, - STATE(4149), 1, - sym_on_stop_phrase, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5414), 1, - sym_body, - STATE(6345), 1, - sym_assignment, - STATE(3145), 2, - sym_comment, - sym_include, - STATE(6576), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [210755] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4511), 1, - sym_identifier, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4539), 1, - aux_sym_while_phrase_token1, - ACTIONS(4541), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(4543), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4553), 1, - aux_sym__block_terminator_token1, - STATE(3399), 1, - sym_to_phrase, - STATE(3647), 1, - sym_while_phrase, - STATE(3732), 1, - sym_on_error_phrase, - STATE(3849), 1, - sym_on_quit_phrase, - STATE(4145), 1, - sym_on_stop_phrase, - STATE(4148), 1, - aux_sym_repeat_statement_repeat1, - STATE(4577), 1, - sym__block_terminator, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5820), 1, - sym_body, - STATE(6345), 1, - sym_assignment, - STATE(3146), 2, + aux_sym_variable_tuning_token7, + STATE(3200), 2, sym_comment, sym_include, - STATE(6576), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [210822] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4566), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + ACTIONS(4560), 8, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_field_option_token2, + aux_sym_field_option_token3, + aux_sym_field_option_token4, + aux_sym_field_option_token5, + aux_sym_field_option_token6, + [216063] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4555), 1, + ACTIONS(4580), 1, aux_sym_property_definition_token1, - STATE(3156), 1, - aux_sym_property_definition_repeat1, - ACTIONS(2836), 2, + ACTIONS(4574), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - ACTIONS(3414), 2, + ACTIONS(4577), 2, aux_sym_property_type_token1, aux_sym_property_type_token2, - STATE(3147), 2, + STATE(3201), 3, sym_comment, sym_include, - ACTIONS(2832), 4, + aux_sym_property_definition_repeat1, + ACTIONS(4568), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - STATE(3311), 4, + STATE(3390), 4, sym_scope_tuning, sym_access_tuning, sym_serialization_tuning, sym_property_type, - ACTIONS(2834), 5, + ACTIONS(4571), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [210869] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4511), 1, - sym_identifier, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4537), 1, - aux_sym__block_terminator_token1, - ACTIONS(4539), 1, - aux_sym_while_phrase_token1, - ACTIONS(4541), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(4543), 1, - aux_sym_on_error_phrase_token1, - STATE(2400), 1, - sym__block_terminator, - STATE(3364), 1, - sym_to_phrase, - STATE(3620), 1, - sym_while_phrase, - STATE(3740), 1, - sym_on_error_phrase, - STATE(3836), 1, - sym_on_quit_phrase, - STATE(3989), 1, - aux_sym_repeat_statement_repeat1, - STATE(4106), 1, - sym_on_stop_phrase, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5640), 1, - sym_body, - STATE(6345), 1, - sym_assignment, - STATE(3148), 2, - sym_comment, - sym_include, - STATE(6576), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [210936] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4511), 1, - sym_identifier, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4515), 1, - aux_sym_while_phrase_token1, - ACTIONS(4517), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4519), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(4521), 1, - aux_sym_do_tuning_token1, - STATE(3375), 1, - sym_to_phrase, - STATE(3592), 1, - aux_sym_do_block_repeat1, - STATE(3595), 1, - sym_while_phrase, - STATE(4435), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5705), 1, - sym_body, - STATE(6564), 1, - sym_assignment, - STATE(3149), 2, - sym_comment, - sym_include, - STATE(5712), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - STATE(6576), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [210999] = 17, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [216108] = 17, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4501), 1, + ACTIONS(4542), 1, aux_sym_variable_tuning_token2, - ACTIONS(4503), 1, + ACTIONS(4544), 1, aux_sym_variable_tuning_token7, - ACTIONS(4505), 1, + ACTIONS(4546), 1, aux_sym_variable_tuning_token8, - ACTIONS(4507), 1, + ACTIONS(4548), 1, aux_sym_getter_token1, - ACTIONS(4509), 1, + ACTIONS(4550), 1, aux_sym_setter_token1, - ACTIONS(4557), 1, + ACTIONS(4582), 1, sym__terminator, - STATE(3207), 1, + STATE(3252), 1, aux_sym_property_definition_repeat3, - STATE(3281), 1, + STATE(3306), 1, aux_sym_property_definition_repeat2, - STATE(3353), 1, + STATE(3474), 1, sym_property_tuning, - STATE(5439), 1, + STATE(5905), 1, sym_access_tuning, - ACTIONS(4499), 2, + ACTIONS(4540), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token6, - STATE(3150), 2, + STATE(3202), 2, sym_comment, sym_include, - STATE(3355), 2, + STATE(3475), 2, sym_getter, sym_setter, - ACTIONS(2834), 5, + ACTIONS(3075), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [211058] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4511), 1, - sym_identifier, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4539), 1, - aux_sym_while_phrase_token1, - ACTIONS(4541), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(4543), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4553), 1, - aux_sym__block_terminator_token1, - STATE(3372), 1, - sym_to_phrase, - STATE(3627), 1, - sym_while_phrase, - STATE(3724), 1, - sym_on_error_phrase, - STATE(3862), 1, - sym_on_quit_phrase, - STATE(4152), 1, - sym_on_stop_phrase, - STATE(4157), 1, - aux_sym_repeat_statement_repeat1, - STATE(4658), 1, - sym__block_terminator, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5794), 1, - sym_body, - STATE(6345), 1, - sym_assignment, - STATE(3151), 2, - sym_comment, - sym_include, - STATE(6576), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [211125] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4511), 1, - sym_identifier, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4515), 1, - aux_sym_while_phrase_token1, - ACTIONS(4517), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4519), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(4521), 1, - aux_sym_do_tuning_token1, - STATE(3339), 1, - sym_to_phrase, - STATE(3614), 1, - aux_sym_do_block_repeat1, - STATE(3622), 1, - sym_while_phrase, - STATE(4434), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5381), 1, - sym_body, - STATE(6564), 1, - sym_assignment, - STATE(3152), 2, - sym_comment, - sym_include, - STATE(5909), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - STATE(6576), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [211188] = 17, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [216167] = 17, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4501), 1, + ACTIONS(4542), 1, aux_sym_variable_tuning_token2, - ACTIONS(4503), 1, + ACTIONS(4544), 1, aux_sym_variable_tuning_token7, - ACTIONS(4505), 1, + ACTIONS(4546), 1, aux_sym_variable_tuning_token8, - ACTIONS(4507), 1, + ACTIONS(4548), 1, aux_sym_getter_token1, - ACTIONS(4509), 1, + ACTIONS(4550), 1, aux_sym_setter_token1, - ACTIONS(4559), 1, + ACTIONS(4584), 1, sym__terminator, - STATE(3133), 1, + STATE(3202), 1, aux_sym_property_definition_repeat2, - STATE(3213), 1, + STATE(3255), 1, aux_sym_property_definition_repeat3, - STATE(3353), 1, + STATE(3474), 1, sym_property_tuning, - STATE(5439), 1, - sym_access_tuning, - ACTIONS(4499), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token6, - STATE(3153), 2, - sym_comment, - sym_include, - STATE(3355), 2, - sym_getter, - sym_setter, - ACTIONS(2834), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - [211247] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4563), 1, - aux_sym_unary_expression_token2, - ACTIONS(4566), 1, - aux_sym_variable_tuning_token1, - ACTIONS(4569), 1, - aux_sym_variable_tuning_token2, - ACTIONS(4578), 1, - aux_sym_field_option_token1, - STATE(3210), 1, - sym_field_option, - ACTIONS(4575), 2, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - ACTIONS(4561), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - STATE(3154), 3, - sym_comment, - sym_include, - aux_sym_field_definition_repeat1, - ACTIONS(4572), 8, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_field_option_token2, - aux_sym_field_option_token3, - aux_sym_field_option_token4, - aux_sym_field_option_token5, - aux_sym_field_option_token6, - [211296] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4511), 1, - sym_identifier, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4539), 1, - aux_sym_while_phrase_token1, - ACTIONS(4541), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(4543), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4549), 1, - aux_sym__block_terminator_token1, - STATE(1903), 1, - sym__block_terminator, - STATE(3361), 1, - sym_to_phrase, - STATE(3639), 1, - sym_while_phrase, - STATE(3729), 1, - sym_on_error_phrase, - STATE(3856), 1, - sym_on_quit_phrase, - STATE(4189), 1, - aux_sym_repeat_statement_repeat1, - STATE(4193), 1, - sym_on_stop_phrase, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5818), 1, - sym_body, - STATE(6345), 1, - sym_assignment, - STATE(3155), 2, - sym_comment, - sym_include, - STATE(6576), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [211363] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4593), 1, - aux_sym_property_definition_token1, - ACTIONS(4587), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(4590), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - STATE(3156), 3, - sym_comment, - sym_include, - aux_sym_property_definition_repeat1, - ACTIONS(4581), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - STATE(3311), 4, - sym_scope_tuning, + STATE(5905), 1, sym_access_tuning, - sym_serialization_tuning, - sym_property_type, - ACTIONS(4584), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - [211408] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4525), 1, - aux_sym_unary_expression_token2, - ACTIONS(4527), 1, + ACTIONS(4540), 2, aux_sym_variable_tuning_token1, - ACTIONS(4529), 1, - aux_sym_variable_tuning_token2, - ACTIONS(4535), 1, - aux_sym_field_option_token1, - STATE(3135), 1, - aux_sym_field_definition_repeat1, - STATE(3210), 1, - sym_field_option, - ACTIONS(4533), 2, aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - STATE(3157), 2, - sym_comment, - sym_include, - ACTIONS(4595), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - ACTIONS(4531), 8, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_field_option_token2, - aux_sym_field_option_token3, - aux_sym_field_option_token4, - aux_sym_field_option_token5, - aux_sym_field_option_token6, - [211459] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4511), 1, - sym_identifier, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4515), 1, - aux_sym_while_phrase_token1, - ACTIONS(4517), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4519), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(4521), 1, - aux_sym_do_tuning_token1, - STATE(3376), 1, - sym_to_phrase, - STATE(3623), 1, - sym_while_phrase, - STATE(3626), 1, - aux_sym_do_block_repeat1, - STATE(4251), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5835), 1, - sym_body, - STATE(6564), 1, - sym_assignment, - STATE(3158), 2, - sym_comment, - sym_include, - STATE(5495), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - STATE(6576), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [211522] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4511), 1, - sym_identifier, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4515), 1, - aux_sym_while_phrase_token1, - ACTIONS(4517), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4519), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(4521), 1, - aux_sym_do_tuning_token1, - STATE(3413), 1, - sym_to_phrase, - STATE(3541), 1, - aux_sym_do_block_repeat1, - STATE(3566), 1, - sym_while_phrase, - STATE(4211), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5834), 1, - sym_body, - STATE(6564), 1, - sym_assignment, - STATE(3159), 2, + STATE(3203), 2, sym_comment, - sym_include, - STATE(5887), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - STATE(6576), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [211585] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + sym_include, + STATE(3475), 2, + sym_getter, + sym_setter, + ACTIONS(3075), 5, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + [216226] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4409), 1, aux_sym_variable_definition_token4, - ACTIONS(4433), 2, + ACTIONS(4496), 2, aux_sym_workfile_definition_token1, aux_sym_workfile_definition_token2, - STATE(3160), 2, + STATE(3204), 2, sym_comment, sym_include, - ACTIONS(4376), 3, + ACTIONS(4393), 3, aux_sym_dataset_expression_token1, aux_sym_buffer_definition_token1, aux_sym_query_definition_token1, - ACTIONS(4374), 4, + ACTIONS(4391), 4, aux_sym_temp_table_expression_token1, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, aux_sym_variable_definition_token3, - ACTIONS(4429), 9, + ACTIONS(4492), 9, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, @@ -229961,67 +234998,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [211628] = 21, - ACTIONS(3), 1, + [216269] = 17, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4511), 1, - sym_identifier, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4539), 1, - aux_sym_while_phrase_token1, - ACTIONS(4541), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(4543), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4547), 1, - aux_sym__block_terminator_token1, - STATE(2337), 1, - sym__block_terminator, - STATE(3377), 1, - sym_to_phrase, - STATE(3572), 1, - sym_while_phrase, - STATE(3788), 1, - sym_on_error_phrase, - STATE(3799), 1, - sym_on_quit_phrase, - STATE(4008), 1, - aux_sym_repeat_statement_repeat1, - STATE(4016), 1, - sym_on_stop_phrase, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5853), 1, - sym_body, - STATE(6345), 1, - sym_assignment, - STATE(3161), 2, + ACTIONS(4542), 1, + aux_sym_variable_tuning_token2, + ACTIONS(4544), 1, + aux_sym_variable_tuning_token7, + ACTIONS(4546), 1, + aux_sym_variable_tuning_token8, + ACTIONS(4548), 1, + aux_sym_getter_token1, + ACTIONS(4550), 1, + aux_sym_setter_token1, + ACTIONS(4586), 1, + sym__terminator, + STATE(3198), 1, + aux_sym_property_definition_repeat2, + STATE(3253), 1, + aux_sym_property_definition_repeat3, + STATE(3474), 1, + sym_property_tuning, + STATE(5905), 1, + sym_access_tuning, + ACTIONS(4540), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + STATE(3205), 2, sym_comment, sym_include, - STATE(6576), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [211695] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(3475), 2, + sym_getter, + sym_setter, + ACTIONS(3075), 5, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + [216328] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - STATE(340), 1, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(3162), 2, + STATE(3206), 2, sym_comment, sym_include, - ACTIONS(4597), 17, + ACTIONS(4588), 17, anon_sym_COLON, sym__terminator, anon_sym_COMMA, @@ -230039,61 +235072,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sort_clause_token2, aux_sym_of_token1, aux_sym_using_token1, - [211734] = 19, - ACTIONS(3), 1, + [216367] = 12, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4511), 1, - sym_identifier, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4515), 1, - aux_sym_while_phrase_token1, - ACTIONS(4517), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4519), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(4521), 1, - aux_sym_do_tuning_token1, - STATE(3421), 1, - sym_to_phrase, - STATE(3542), 1, - aux_sym_do_block_repeat1, - STATE(3544), 1, - sym_while_phrase, - STATE(4227), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5804), 1, - sym_body, - STATE(6564), 1, - sym_assignment, - STATE(3163), 2, + ACTIONS(4592), 1, + aux_sym_unary_expression_token2, + ACTIONS(4595), 1, + aux_sym_variable_tuning_token1, + ACTIONS(4598), 1, + aux_sym_variable_tuning_token2, + ACTIONS(4607), 1, + aux_sym_field_option_token1, + STATE(3260), 1, + sym_field_option, + ACTIONS(4604), 2, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + ACTIONS(4590), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + STATE(3207), 3, sym_comment, sym_include, - STATE(5927), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - STATE(6576), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [211797] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_field_definition_repeat1, + ACTIONS(4601), 8, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_field_option_token2, + aux_sym_field_option_token3, + aux_sym_field_option_token4, + aux_sym_field_option_token5, + aux_sym_field_option_token6, + [216416] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(3164), 2, + STATE(3208), 2, sym_comment, sym_include, - ACTIONS(117), 19, + ACTIONS(108), 19, sym__namedot, sym__terminator, anon_sym_COMMA, @@ -230113,57 +235139,118 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_run_tuning_token3, aux_sym_run_tuning_token4, aux_sym_run_tuning_token7, - [211832] = 12, - ACTIONS(65), 1, + [216451] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(3209), 2, + sym_comment, + sym_include, + ACTIONS(4610), 17, + anon_sym_COLON, + sym__terminator, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + aux_sym_using_token1, + [216490] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4599), 1, - aux_sym__block_terminator_token1, - ACTIONS(4601), 1, - aux_sym_variable_definition_token1, - ACTIONS(4603), 1, - aux_sym_variable_definition_token2, - ACTIONS(4605), 1, - aux_sym_method_definition_token1, - ACTIONS(4607), 1, - aux_sym_constructor_definition_token1, - ACTIONS(4609), 1, - aux_sym_destructor_definition_token1, - STATE(3188), 1, - aux_sym_class_body_repeat1, - STATE(3165), 2, + ACTIONS(4612), 1, + aux_sym_property_definition_token1, + STATE(3201), 1, + aux_sym_property_definition_repeat1, + ACTIONS(3077), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(3809), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(3210), 2, sym_comment, sym_include, - STATE(4318), 11, - 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_destructor_definition, - sym_temp_table_definition, - sym_data_source_definition, - [211880] = 7, - ACTIONS(65), 1, + ACTIONS(3073), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + STATE(3390), 4, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + sym_property_type, + ACTIONS(3075), 5, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + [216537] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(3211), 2, + sym_comment, + sym_include, + ACTIONS(4614), 18, + sym__terminator, + aux_sym__function_argument_with_mode_token4, + 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, + [216571] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4613), 1, + ACTIONS(4618), 1, aux_sym_using_token1, - STATE(3201), 1, + STATE(3226), 1, aux_sym_using_repeat1, - STATE(3166), 2, + STATE(3212), 2, sym_comment, sym_include, - ACTIONS(4611), 16, + ACTIONS(4616), 16, anon_sym_COLON, sym__terminator, anon_sym_COMMA, @@ -230180,439 +235267,527 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, aux_sym_of_token1, - [211918] = 18, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [216609] = 18, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4615), 1, + ACTIONS(4620), 1, sym__terminator, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - STATE(340), 1, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3314), 1, - sym_of, - STATE(3321), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3407), 1, + STATE(3379), 1, + sym_of, + STATE(3430), 1, sym__pre_tuning, - STATE(3677), 1, - sym_where_clause, - STATE(3678), 1, + STATE(3765), 1, aux_sym_for_phrase_repeat1, - STATE(3167), 2, + STATE(3767), 1, + sym_where_clause, + STATE(3213), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [211978] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [216669] = 19, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4525), 1, - aux_sym_unary_expression_token2, - ACTIONS(4535), 1, - aux_sym_field_option_token1, - ACTIONS(4619), 1, - aux_sym_variable_tuning_token1, - ACTIONS(4621), 1, - aux_sym_variable_tuning_token2, - STATE(3177), 1, - aux_sym_field_definition_repeat1, - STATE(3210), 1, - sym_field_option, - ACTIONS(4523), 2, - sym__terminator, - aux_sym_field_definition_token1, - ACTIONS(4533), 2, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - STATE(3168), 2, - sym_comment, - sym_include, - ACTIONS(4531), 8, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_field_option_token2, - aux_sym_field_option_token3, - aux_sym_field_option_token4, - aux_sym_field_option_token5, - aux_sym_field_option_token6, - [212028] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4623), 1, - aux_sym__block_terminator_token1, - ACTIONS(4625), 1, - aux_sym_variable_definition_token1, + ACTIONS(4472), 1, + sym__namedot, + ACTIONS(4624), 1, + sym__terminator, + ACTIONS(4626), 1, + anon_sym_LPAREN, ACTIONS(4628), 1, - aux_sym_variable_definition_token2, - ACTIONS(4631), 1, - aux_sym_method_definition_token1, + aux_sym_function_call_token1, + ACTIONS(4630), 1, + aux_sym_setter_token1, + ACTIONS(4632), 1, + aux_sym_on_error_phrase_token1, ACTIONS(4634), 1, - aux_sym_constructor_definition_token1, - ACTIONS(4637), 1, - aux_sym_destructor_definition_token1, - STATE(3169), 3, + aux_sym_widget_field_token1, + ACTIONS(4638), 1, + aux_sym_run_tuning_token7, + ACTIONS(4640), 1, + sym__namecolon, + STATE(3165), 1, + aux_sym_qualified_name_repeat1, + STATE(3381), 1, + aux_sym_run_statement_repeat1, + STATE(3536), 1, + aux_sym_object_access_repeat1, + STATE(3567), 1, + sym_function_arguments, + STATE(3613), 1, + sym_run_tuning, + STATE(3214), 2, sym_comment, sym_include, - aux_sym_class_body_repeat1, - STATE(4318), 11, - 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_destructor_definition, - sym_temp_table_definition, - sym_data_source_definition, - [212074] = 18, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4636), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [216731] = 18, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(4640), 1, + ACTIONS(4642), 1, sym__terminator, - STATE(340), 1, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3321), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3338), 1, + STATE(3383), 1, sym_of, - STATE(3352), 1, + STATE(3447), 1, sym__pre_tuning, - STATE(3640), 1, + STATE(3789), 1, sym_where_clause, - STATE(3643), 1, + STATE(3808), 1, aux_sym_for_phrase_repeat1, - STATE(3170), 2, + STATE(3215), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [212134] = 17, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [216791] = 17, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(4642), 1, - anon_sym_COLON, ACTIONS(4644), 1, - aux_sym_serialization_tuning_token1, + anon_sym_COLON, ACTIONS(4646), 1, - aux_sym_property_type_token1, + aux_sym_serialization_tuning_token1, ACTIONS(4648), 1, - aux_sym_method_tuning_token1, + aux_sym_property_type_token1, ACTIONS(4650), 1, - aux_sym_inherits_token1, + aux_sym_method_tuning_token1, ACTIONS(4652), 1, - aux_sym_implements_token1, + aux_sym_inherits_token1, ACTIONS(4654), 1, + aux_sym_implements_token1, + ACTIONS(4656), 1, aux_sym_use_widget_pool_token1, - STATE(340), 1, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(3228), 1, + STATE(3274), 1, aux_sym_class_statement_repeat1, - STATE(4104), 1, + STATE(4073), 1, sym_class_tuning, - STATE(6122), 1, + STATE(6407), 1, sym_class_body, - STATE(3171), 2, + STATE(3216), 2, sym_comment, sym_include, - STATE(4111), 6, + STATE(4075), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [212192] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [216849] = 12, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(3172), 2, - sym_comment, - sym_include, - ACTIONS(4473), 18, - sym__terminator, - aux_sym__function_argument_with_mode_token4, - 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, - [212226] = 12, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4656), 1, - aux_sym_temp_table_expression_token1, ACTIONS(4658), 1, - aux_sym_variable_definition_token3, + aux_sym_temp_table_expression_token1, ACTIONS(4660), 1, + aux_sym_variable_definition_token3, + ACTIONS(4662), 1, aux_sym_variable_definition_token4, - STATE(3180), 1, + STATE(3220), 1, aux_sym_variable_definition_repeat1, - ACTIONS(2836), 2, + ACTIONS(3077), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - STATE(3173), 2, + STATE(3217), 2, sym_comment, sym_include, - STATE(3327), 3, + STATE(3366), 3, sym_scope_tuning, sym_access_tuning, sym_serialization_tuning, - ACTIONS(2832), 4, + ACTIONS(3073), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, + ACTIONS(3075), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [212274] = 18, - ACTIONS(65), 1, + [216897] = 13, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4554), 1, + aux_sym_unary_expression_token2, + ACTIONS(4564), 1, + aux_sym_field_option_token1, + ACTIONS(4664), 1, + aux_sym_variable_tuning_token1, + ACTIONS(4666), 1, + aux_sym_variable_tuning_token2, + STATE(3245), 1, + aux_sym_field_definition_repeat1, + STATE(3260), 1, + sym_field_option, + ACTIONS(4562), 2, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + ACTIONS(4566), 2, + sym__terminator, + aux_sym_field_definition_token1, + STATE(3218), 2, + sym_comment, + sym_include, + ACTIONS(4560), 8, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_field_option_token2, + aux_sym_field_option_token3, + aux_sym_field_option_token4, + aux_sym_field_option_token5, + aux_sym_field_option_token6, + [216947] = 18, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(4662), 1, + ACTIONS(4668), 1, sym__terminator, - STATE(340), 1, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3320), 1, - sym_of, - STATE(3321), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3396), 1, + STATE(3387), 1, + sym_of, + STATE(3465), 1, sym__pre_tuning, - STATE(3586), 1, + STATE(3610), 1, aux_sym_for_phrase_repeat1, - STATE(3589), 1, + STATE(3649), 1, sym_where_clause, - STATE(3174), 2, + STATE(3219), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [212334] = 12, - ACTIONS(65), 1, + [217007] = 10, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4681), 1, + aux_sym_variable_definition_token4, + ACTIONS(4670), 2, + aux_sym_temp_table_expression_token1, + aux_sym_variable_definition_token3, + ACTIONS(4678), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(3220), 3, + sym_comment, + sym_include, + aux_sym_variable_definition_repeat1, + STATE(3366), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(4672), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(4675), 5, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + [217051] = 17, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(4644), 1, + anon_sym_COLON, + ACTIONS(4646), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(4648), 1, + aux_sym_property_type_token1, + ACTIONS(4650), 1, + aux_sym_method_tuning_token1, + ACTIONS(4652), 1, + aux_sym_inherits_token1, + ACTIONS(4654), 1, + aux_sym_implements_token1, + ACTIONS(4656), 1, + aux_sym_use_widget_pool_token1, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(3278), 1, + aux_sym_class_statement_repeat1, + STATE(4073), 1, + sym_class_tuning, + STATE(6248), 1, + sym_class_body, + STATE(3221), 2, + sym_comment, + sym_include, + STATE(4075), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [217109] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4664), 1, + ACTIONS(4683), 1, + aux_sym__block_terminator_token1, + ACTIONS(4685), 1, + aux_sym_variable_definition_token1, + ACTIONS(4688), 1, + aux_sym_variable_definition_token2, + ACTIONS(4691), 1, + aux_sym_method_definition_token1, + ACTIONS(4694), 1, + aux_sym_constructor_definition_token1, + ACTIONS(4697), 1, + aux_sym_destructor_definition_token1, + STATE(3222), 3, + sym_comment, + sym_include, + aux_sym_class_body_repeat1, + STATE(4267), 11, + 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_destructor_definition, + sym_temp_table_definition, + sym_data_source_definition, + [217155] = 12, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4700), 1, aux_sym_temp_table_expression_token1, - ACTIONS(4666), 1, + ACTIONS(4702), 1, aux_sym_variable_definition_token3, - ACTIONS(4668), 1, + ACTIONS(4704), 1, aux_sym_variable_definition_token4, - STATE(3180), 1, + STATE(3220), 1, aux_sym_variable_definition_repeat1, - ACTIONS(2836), 2, + ACTIONS(3077), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - STATE(3175), 2, + STATE(3223), 2, sym_comment, sym_include, - STATE(3327), 3, + STATE(3366), 3, sym_scope_tuning, sym_access_tuning, sym_serialization_tuning, - ACTIONS(2832), 4, + ACTIONS(3073), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, + ACTIONS(3075), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [212382] = 18, - ACTIONS(65), 1, + [217203] = 12, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4706), 1, + aux_sym__block_terminator_token1, + ACTIONS(4708), 1, + aux_sym_variable_definition_token1, + ACTIONS(4710), 1, + aux_sym_variable_definition_token2, + ACTIONS(4712), 1, + aux_sym_method_definition_token1, + ACTIONS(4714), 1, + aux_sym_constructor_definition_token1, + ACTIONS(4716), 1, + aux_sym_destructor_definition_token1, + STATE(3241), 1, + aux_sym_class_body_repeat1, + STATE(3224), 2, + sym_comment, + sym_include, + STATE(4267), 11, + 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_destructor_definition, + sym_temp_table_definition, + sym_data_source_definition, + [217251] = 18, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(4670), 1, + ACTIONS(4718), 1, sym__terminator, - STATE(340), 1, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3313), 1, - sym_of, - STATE(3321), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3398), 1, + STATE(3384), 1, + sym_of, + STATE(3440), 1, sym__pre_tuning, - STATE(3522), 1, + STATE(3582), 1, sym_where_clause, - STATE(3526), 1, + STATE(3589), 1, aux_sym_for_phrase_repeat1, - STATE(3176), 2, + STATE(3225), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [212442] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [217311] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4563), 1, - aux_sym_unary_expression_token2, - ACTIONS(4578), 1, - aux_sym_field_option_token1, - ACTIONS(4672), 1, - aux_sym_variable_tuning_token1, - ACTIONS(4675), 1, - aux_sym_variable_tuning_token2, - STATE(3210), 1, - sym_field_option, - ACTIONS(4561), 2, - sym__terminator, - aux_sym_field_definition_token1, - ACTIONS(4575), 2, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - STATE(3177), 3, - sym_comment, - sym_include, - aux_sym_field_definition_repeat1, - ACTIONS(4572), 8, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_field_option_token2, - aux_sym_field_option_token3, - aux_sym_field_option_token4, - aux_sym_field_option_token5, - aux_sym_field_option_token6, - [212490] = 7, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(3178), 2, + ACTIONS(4722), 1, + aux_sym_using_token1, + STATE(3226), 3, sym_comment, sym_include, - ACTIONS(4678), 16, + aux_sym_using_repeat1, + ACTIONS(4720), 16, anon_sym_COLON, sym__terminator, anon_sym_COMMA, @@ -230629,154 +235804,149 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, aux_sym_of_token1, - [212528] = 19, - ACTIONS(65), 1, + [217347] = 17, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(4644), 1, + anon_sym_COLON, + ACTIONS(4646), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(4648), 1, + aux_sym_property_type_token1, + ACTIONS(4650), 1, + aux_sym_method_tuning_token1, + ACTIONS(4652), 1, + aux_sym_inherits_token1, + ACTIONS(4654), 1, + aux_sym_implements_token1, + ACTIONS(4656), 1, + aux_sym_use_widget_pool_token1, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(3295), 1, + aux_sym_class_statement_repeat1, + STATE(4073), 1, + sym_class_tuning, + STATE(6582), 1, + sym_class_body, + STATE(3227), 2, + sym_comment, + sym_include, + STATE(4075), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [217405] = 19, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(820), 1, - sym__namecolon, - ACTIONS(4448), 1, + ACTIONS(4472), 1, sym__namedot, - ACTIONS(4680), 1, - sym__terminator, - ACTIONS(4682), 1, + ACTIONS(4626), 1, anon_sym_LPAREN, - ACTIONS(4684), 1, - aux_sym_function_call_token1, - ACTIONS(4686), 1, + ACTIONS(4630), 1, aux_sym_setter_token1, - ACTIONS(4688), 1, + ACTIONS(4632), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4690), 1, + ACTIONS(4634), 1, aux_sym_widget_field_token1, - ACTIONS(4694), 1, + ACTIONS(4638), 1, aux_sym_run_tuning_token7, - STATE(3103), 1, + ACTIONS(4640), 1, + sym__namecolon, + ACTIONS(4725), 1, + sym__terminator, + ACTIONS(4727), 1, + aux_sym_function_call_token1, + STATE(3165), 1, aux_sym_qualified_name_repeat1, - STATE(3312), 1, + STATE(3372), 1, aux_sym_run_statement_repeat1, - STATE(3384), 1, + STATE(3536), 1, aux_sym_object_access_repeat1, - STATE(3667), 1, + STATE(3567), 1, sym_function_arguments, - STATE(3669), 1, + STATE(3613), 1, sym_run_tuning, - STATE(3179), 2, + STATE(3228), 2, sym_comment, sym_include, - ACTIONS(4692), 4, + ACTIONS(4636), 4, aux_sym_run_tuning_token1, aux_sym_run_tuning_token2, aux_sym_run_tuning_token3, aux_sym_run_tuning_token4, - [212590] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [217467] = 7, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4707), 1, - aux_sym_variable_definition_token4, - ACTIONS(4696), 2, - aux_sym_temp_table_expression_token1, - aux_sym_variable_definition_token3, - ACTIONS(4704), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(3180), 3, - sym_comment, - sym_include, - aux_sym_variable_definition_repeat1, - STATE(3327), 3, - sym_scope_tuning, - sym_access_tuning, - sym_serialization_tuning, - ACTIONS(4698), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - ACTIONS(4701), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - [212634] = 18, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(4617), 1, - aux_sym_where_clause_token1, - ACTIONS(4709), 1, - sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3335), 1, - sym_of, - STATE(3356), 1, - sym__pre_tuning, - STATE(3648), 1, - sym_where_clause, - STATE(3653), 1, - aux_sym_for_phrase_repeat1, - STATE(3181), 2, + ACTIONS(4618), 1, + aux_sym_using_token1, + STATE(3212), 1, + aux_sym_using_repeat1, + STATE(3229), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(4729), 16, + anon_sym_COLON, + sym__terminator, + anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_function_call_token1, + 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, - [212694] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + [217505] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4525), 1, + ACTIONS(4592), 1, aux_sym_unary_expression_token2, - ACTIONS(4535), 1, + ACTIONS(4607), 1, aux_sym_field_option_token1, - ACTIONS(4619), 1, + ACTIONS(4731), 1, aux_sym_variable_tuning_token1, - ACTIONS(4621), 1, + ACTIONS(4734), 1, aux_sym_variable_tuning_token2, - STATE(3168), 1, - aux_sym_field_definition_repeat1, - STATE(3210), 1, + STATE(3260), 1, sym_field_option, - ACTIONS(4533), 2, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - ACTIONS(4595), 2, + ACTIONS(4590), 2, sym__terminator, aux_sym_field_definition_token1, - STATE(3182), 2, + ACTIONS(4604), 2, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + STATE(3230), 3, sym_comment, sym_include, - ACTIONS(4531), 8, + aux_sym_field_definition_repeat1, + ACTIONS(4601), 8, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, @@ -230785,988 +235955,730 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token4, aux_sym_field_option_token5, aux_sym_field_option_token6, - [212744] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [217553] = 18, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4613), 1, - aux_sym_using_token1, - STATE(3166), 1, - aux_sym_using_repeat1, - STATE(3183), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(4622), 1, + aux_sym_where_clause_token1, + ACTIONS(4737), 1, + sym__terminator, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3369), 1, + sym_of, + STATE(3415), 1, + sym__pre_tuning, + STATE(3679), 1, + sym_where_clause, + STATE(3688), 1, + aux_sym_for_phrase_repeat1, + STATE(3231), 2, sym_comment, sym_include, - ACTIONS(4711), 16, - anon_sym_COLON, - sym__terminator, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2483), 5, aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_where_clause_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_of_token1, - [212782] = 17, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [217613] = 18, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(4642), 1, - anon_sym_COLON, - ACTIONS(4644), 1, - aux_sym_serialization_tuning_token1, - ACTIONS(4646), 1, - aux_sym_property_type_token1, - ACTIONS(4648), 1, - aux_sym_method_tuning_token1, - ACTIONS(4650), 1, - aux_sym_inherits_token1, - ACTIONS(4652), 1, - aux_sym_implements_token1, - ACTIONS(4654), 1, - aux_sym_use_widget_pool_token1, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(3233), 1, - aux_sym_class_statement_repeat1, - STATE(4104), 1, - sym_class_tuning, - STATE(6447), 1, - sym_class_body, - STATE(3184), 2, - sym_comment, - sym_include, - STATE(4111), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [212840] = 18, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(4713), 1, + ACTIONS(4739), 1, sym__terminator, - STATE(340), 1, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3309), 1, - sym_of, - STATE(3321), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3363), 1, + STATE(3382), 1, + sym_of, + STATE(3446), 1, sym__pre_tuning, - STATE(3508), 1, + STATE(3815), 1, sym_where_clause, - STATE(3512), 1, + STATE(3820), 1, aux_sym_for_phrase_repeat1, - STATE(3185), 2, + STATE(3232), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [212900] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [217673] = 18, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(820), 1, - sym__namecolon, - ACTIONS(4448), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(4682), 1, - anon_sym_LPAREN, - ACTIONS(4686), 1, - aux_sym_setter_token1, - ACTIONS(4688), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4690), 1, - aux_sym_widget_field_token1, - ACTIONS(4694), 1, - aux_sym_run_tuning_token7, - ACTIONS(4715), 1, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(4622), 1, + aux_sym_where_clause_token1, + ACTIONS(4741), 1, sym__terminator, - ACTIONS(4717), 1, - aux_sym_function_call_token1, - STATE(3103), 1, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(3325), 1, - aux_sym_run_statement_repeat1, - STATE(3384), 1, - aux_sym_object_access_repeat1, - STATE(3667), 1, - sym_function_arguments, - STATE(3669), 1, - sym_run_tuning, - STATE(3186), 2, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3377), 1, + sym_of, + STATE(3476), 1, + sym__pre_tuning, + STATE(3661), 1, + sym_where_clause, + STATE(3670), 1, + aux_sym_for_phrase_repeat1, + STATE(3233), 2, sym_comment, sym_include, - ACTIONS(4692), 4, - aux_sym_run_tuning_token1, - aux_sym_run_tuning_token2, - aux_sym_run_tuning_token3, - aux_sym_run_tuning_token4, - [212962] = 17, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [217733] = 17, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(4642), 1, - anon_sym_COLON, ACTIONS(4644), 1, - aux_sym_serialization_tuning_token1, + anon_sym_COLON, ACTIONS(4646), 1, - aux_sym_property_type_token1, + aux_sym_serialization_tuning_token1, ACTIONS(4648), 1, - aux_sym_method_tuning_token1, + aux_sym_property_type_token1, ACTIONS(4650), 1, - aux_sym_inherits_token1, + aux_sym_method_tuning_token1, ACTIONS(4652), 1, - aux_sym_implements_token1, + aux_sym_inherits_token1, ACTIONS(4654), 1, + aux_sym_implements_token1, + ACTIONS(4656), 1, aux_sym_use_widget_pool_token1, - STATE(340), 1, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(3219), 1, + STATE(3276), 1, aux_sym_class_statement_repeat1, - STATE(4104), 1, + STATE(4073), 1, sym_class_tuning, - STATE(6294), 1, + STATE(6766), 1, sym_class_body, - STATE(3187), 2, + STATE(3234), 2, sym_comment, sym_include, - STATE(4111), 6, + STATE(4075), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [213020] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4601), 1, - aux_sym_variable_definition_token1, - ACTIONS(4603), 1, - aux_sym_variable_definition_token2, - ACTIONS(4605), 1, - aux_sym_method_definition_token1, - ACTIONS(4607), 1, - aux_sym_constructor_definition_token1, - ACTIONS(4609), 1, - aux_sym_destructor_definition_token1, - ACTIONS(4719), 1, - aux_sym__block_terminator_token1, - STATE(3169), 1, - aux_sym_class_body_repeat1, - STATE(3188), 2, - sym_comment, - sym_include, - STATE(4318), 11, - 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_destructor_definition, - sym_temp_table_definition, - sym_data_source_definition, - [213068] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4721), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(4723), 1, - aux_sym_variable_definition_token3, - ACTIONS(4725), 1, - aux_sym_variable_definition_token4, - STATE(3180), 1, - aux_sym_variable_definition_repeat1, - ACTIONS(2836), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(3189), 2, - sym_comment, - sym_include, - STATE(3327), 3, - sym_scope_tuning, - sym_access_tuning, - sym_serialization_tuning, - ACTIONS(2832), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - [213116] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4727), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(4729), 1, - aux_sym_variable_definition_token3, - ACTIONS(4731), 1, - aux_sym_variable_definition_token4, - STATE(3180), 1, - aux_sym_variable_definition_repeat1, - ACTIONS(2836), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(3190), 2, - sym_comment, - sym_include, - STATE(3327), 3, - sym_scope_tuning, - sym_access_tuning, - sym_serialization_tuning, - ACTIONS(2832), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - [213164] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [217791] = 18, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(820), 1, - sym__namecolon, - ACTIONS(4448), 1, - sym__namedot, - ACTIONS(4682), 1, - anon_sym_LPAREN, - ACTIONS(4686), 1, - aux_sym_setter_token1, - ACTIONS(4688), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4690), 1, - aux_sym_widget_field_token1, - ACTIONS(4694), 1, - aux_sym_run_tuning_token7, - ACTIONS(4733), 1, - sym__terminator, - ACTIONS(4735), 1, - aux_sym_function_call_token1, - STATE(3103), 1, - aux_sym_qualified_name_repeat1, - STATE(3333), 1, - aux_sym_run_statement_repeat1, - STATE(3384), 1, - aux_sym_object_access_repeat1, - STATE(3667), 1, - sym_function_arguments, - STATE(3669), 1, - sym_run_tuning, - STATE(3191), 2, - sym_comment, - sym_include, - ACTIONS(4692), 4, - aux_sym_run_tuning_token1, - aux_sym_run_tuning_token2, - aux_sym_run_tuning_token3, - aux_sym_run_tuning_token4, - [213226] = 19, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(820), 1, - sym__namecolon, - ACTIONS(4448), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(4682), 1, - anon_sym_LPAREN, - ACTIONS(4686), 1, - aux_sym_setter_token1, - ACTIONS(4688), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4690), 1, - aux_sym_widget_field_token1, - ACTIONS(4694), 1, - aux_sym_run_tuning_token7, - ACTIONS(4737), 1, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(4622), 1, + aux_sym_where_clause_token1, + ACTIONS(4743), 1, sym__terminator, - ACTIONS(4739), 1, - aux_sym_function_call_token1, - STATE(3103), 1, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(3323), 1, - aux_sym_run_statement_repeat1, - STATE(3384), 1, - aux_sym_object_access_repeat1, - STATE(3667), 1, - sym_function_arguments, - STATE(3669), 1, - sym_run_tuning, - STATE(3192), 2, + STATE(3271), 1, + sym_using, + STATE(3362), 1, + sym_of, + STATE(3368), 1, + sym_query_tuning, + STATE(3453), 1, + sym__pre_tuning, + STATE(3715), 1, + sym_where_clause, + STATE(3718), 1, + aux_sym_for_phrase_repeat1, + STATE(3235), 2, sym_comment, sym_include, - ACTIONS(4692), 4, - aux_sym_run_tuning_token1, - aux_sym_run_tuning_token2, - aux_sym_run_tuning_token3, - aux_sym_run_tuning_token4, - [213288] = 19, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [217851] = 19, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(820), 1, - sym__namecolon, - ACTIONS(4448), 1, + ACTIONS(4472), 1, sym__namedot, - ACTIONS(4682), 1, + ACTIONS(4626), 1, anon_sym_LPAREN, - ACTIONS(4686), 1, + ACTIONS(4630), 1, aux_sym_setter_token1, - ACTIONS(4688), 1, + ACTIONS(4632), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4690), 1, + ACTIONS(4634), 1, aux_sym_widget_field_token1, - ACTIONS(4694), 1, + ACTIONS(4638), 1, aux_sym_run_tuning_token7, - ACTIONS(4741), 1, + ACTIONS(4640), 1, + sym__namecolon, + ACTIONS(4745), 1, sym__terminator, - ACTIONS(4743), 1, + ACTIONS(4747), 1, aux_sym_function_call_token1, - STATE(3103), 1, + STATE(3165), 1, aux_sym_qualified_name_repeat1, - STATE(3319), 1, + STATE(3364), 1, aux_sym_run_statement_repeat1, - STATE(3384), 1, + STATE(3536), 1, aux_sym_object_access_repeat1, - STATE(3667), 1, + STATE(3567), 1, sym_function_arguments, - STATE(3669), 1, + STATE(3613), 1, sym_run_tuning, - STATE(3193), 2, + STATE(3236), 2, sym_comment, sym_include, - ACTIONS(4692), 4, + ACTIONS(4636), 4, aux_sym_run_tuning_token1, aux_sym_run_tuning_token2, aux_sym_run_tuning_token3, aux_sym_run_tuning_token4, - [213350] = 18, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [217913] = 18, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(4745), 1, + ACTIONS(4749), 1, sym__terminator, - STATE(340), 1, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3336), 1, + STATE(3360), 1, sym_of, - STATE(3370), 1, + STATE(3368), 1, + sym_query_tuning, + STATE(3408), 1, sym__pre_tuning, - STATE(3596), 1, + STATE(3655), 1, sym_where_clause, - STATE(3602), 1, + STATE(3658), 1, aux_sym_for_phrase_repeat1, - STATE(3194), 2, + STATE(3237), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [213410] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [217973] = 7, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(3195), 2, - sym_comment, - sym_include, - ACTIONS(4747), 18, - sym__terminator, - aux_sym__function_argument_with_mode_token4, - 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, - [213444] = 18, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(4617), 1, - aux_sym_where_clause_token1, - ACTIONS(4749), 1, - sym__terminator, - STATE(340), 1, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3337), 1, - sym_of, - STATE(3394), 1, - sym__pre_tuning, - STATE(3579), 1, - sym_where_clause, - STATE(3582), 1, - aux_sym_for_phrase_repeat1, - STATE(3196), 2, + STATE(3238), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(4751), 16, + anon_sym_COLON, + sym__terminator, + anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_function_call_token1, + 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, - [213504] = 17, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + [218011] = 19, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(4472), 1, sym__namedot, - ACTIONS(4642), 1, - anon_sym_COLON, - ACTIONS(4644), 1, - aux_sym_serialization_tuning_token1, - ACTIONS(4646), 1, - aux_sym_property_type_token1, - ACTIONS(4648), 1, - aux_sym_method_tuning_token1, - ACTIONS(4650), 1, - aux_sym_inherits_token1, - ACTIONS(4652), 1, - aux_sym_implements_token1, - ACTIONS(4654), 1, - aux_sym_use_widget_pool_token1, - STATE(340), 1, + ACTIONS(4626), 1, + anon_sym_LPAREN, + ACTIONS(4630), 1, + aux_sym_setter_token1, + ACTIONS(4632), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4634), 1, + aux_sym_widget_field_token1, + ACTIONS(4638), 1, + aux_sym_run_tuning_token7, + ACTIONS(4640), 1, + sym__namecolon, + ACTIONS(4753), 1, + sym__terminator, + ACTIONS(4755), 1, + aux_sym_function_call_token1, + STATE(3165), 1, aux_sym_qualified_name_repeat1, - STATE(3222), 1, - aux_sym_class_statement_repeat1, - STATE(4104), 1, - sym_class_tuning, - STATE(6112), 1, - sym_class_body, - STATE(3197), 2, + STATE(3365), 1, + aux_sym_run_statement_repeat1, + STATE(3536), 1, + aux_sym_object_access_repeat1, + STATE(3567), 1, + sym_function_arguments, + STATE(3613), 1, + sym_run_tuning, + STATE(3239), 2, sym_comment, sym_include, - STATE(4111), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [213562] = 17, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4636), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [218073] = 17, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(4642), 1, - anon_sym_COLON, ACTIONS(4644), 1, - aux_sym_serialization_tuning_token1, + anon_sym_COLON, ACTIONS(4646), 1, - aux_sym_property_type_token1, + aux_sym_serialization_tuning_token1, ACTIONS(4648), 1, - aux_sym_method_tuning_token1, + aux_sym_property_type_token1, ACTIONS(4650), 1, - aux_sym_inherits_token1, + aux_sym_method_tuning_token1, ACTIONS(4652), 1, - aux_sym_implements_token1, + aux_sym_inherits_token1, ACTIONS(4654), 1, + aux_sym_implements_token1, + ACTIONS(4656), 1, aux_sym_use_widget_pool_token1, - STATE(340), 1, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(3226), 1, + STATE(3279), 1, aux_sym_class_statement_repeat1, - STATE(4104), 1, + STATE(4073), 1, sym_class_tuning, - STATE(6592), 1, + STATE(6231), 1, sym_class_body, - STATE(3198), 2, + STATE(3240), 2, sym_comment, sym_include, - STATE(4111), 6, + STATE(4075), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [213620] = 18, - ACTIONS(65), 1, + [218131] = 12, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4708), 1, + aux_sym_variable_definition_token1, + ACTIONS(4710), 1, + aux_sym_variable_definition_token2, + ACTIONS(4712), 1, + aux_sym_method_definition_token1, + ACTIONS(4714), 1, + aux_sym_constructor_definition_token1, + ACTIONS(4716), 1, + aux_sym_destructor_definition_token1, + ACTIONS(4757), 1, + aux_sym__block_terminator_token1, + STATE(3222), 1, + aux_sym_class_body_repeat1, + STATE(3241), 2, + sym_comment, + sym_include, + STATE(4267), 11, + 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_destructor_definition, + sym_temp_table_definition, + sym_data_source_definition, + [218179] = 18, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(4751), 1, + ACTIONS(4759), 1, sym__terminator, - STATE(340), 1, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3324), 1, + STATE(3367), 1, sym_of, - STATE(3378), 1, + STATE(3368), 1, + sym_query_tuning, + STATE(3411), 1, sym__pre_tuning, - STATE(3617), 1, + STATE(3647), 1, aux_sym_for_phrase_repeat1, - STATE(3619), 1, + STATE(3660), 1, sym_where_clause, - STATE(3199), 2, + STATE(3242), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [213680] = 12, - ACTIONS(65), 1, + [218239] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(3243), 2, + sym_comment, + sym_include, + ACTIONS(4480), 18, + sym__terminator, + aux_sym__function_argument_with_mode_token4, + 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, + [218273] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4753), 1, + ACTIONS(4761), 1, aux_sym_temp_table_expression_token1, - ACTIONS(4755), 1, + ACTIONS(4763), 1, aux_sym_variable_definition_token3, - ACTIONS(4757), 1, + ACTIONS(4765), 1, aux_sym_variable_definition_token4, - STATE(3180), 1, + STATE(3220), 1, aux_sym_variable_definition_repeat1, - ACTIONS(2836), 2, + ACTIONS(3077), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - STATE(3200), 2, + STATE(3244), 2, sym_comment, sym_include, - STATE(3327), 3, + STATE(3366), 3, sym_scope_tuning, sym_access_tuning, sym_serialization_tuning, - ACTIONS(2832), 4, + ACTIONS(3073), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, + ACTIONS(3075), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [213728] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [218321] = 13, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4761), 1, - aux_sym_using_token1, - STATE(3201), 3, - sym_comment, - sym_include, - aux_sym_using_repeat1, - ACTIONS(4759), 16, - anon_sym_COLON, - sym__terminator, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_of_token1, - [213764] = 18, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(4617), 1, - aux_sym_where_clause_token1, - ACTIONS(4764), 1, + ACTIONS(4554), 1, + aux_sym_unary_expression_token2, + ACTIONS(4564), 1, + aux_sym_field_option_token1, + ACTIONS(4664), 1, + aux_sym_variable_tuning_token1, + ACTIONS(4666), 1, + aux_sym_variable_tuning_token2, + STATE(3230), 1, + aux_sym_field_definition_repeat1, + STATE(3260), 1, + sym_field_option, + ACTIONS(4552), 2, sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3329), 1, - sym_of, - STATE(3405), 1, - sym__pre_tuning, - STATE(3557), 1, - sym_where_clause, - STATE(3618), 1, - aux_sym_for_phrase_repeat1, - STATE(3202), 2, + aux_sym_field_definition_token1, + ACTIONS(4562), 2, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + STATE(3245), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [213824] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4560), 8, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_field_option_token2, + aux_sym_field_option_token3, + aux_sym_field_option_token4, + aux_sym_field_option_token5, + aux_sym_field_option_token6, + [218371] = 12, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(3203), 2, - sym_comment, - sym_include, - ACTIONS(4759), 17, - anon_sym_COLON, - sym__terminator, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_of_token1, - aux_sym_using_token1, - [213857] = 12, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4507), 1, - aux_sym_getter_token1, - ACTIONS(4509), 1, - aux_sym_setter_token1, - ACTIONS(4768), 1, - aux_sym_variable_definition_token2, - STATE(3208), 1, - aux_sym_property_definition_repeat3, - STATE(5439), 1, - sym_access_tuning, - STATE(3204), 2, + ACTIONS(4767), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(4769), 1, + aux_sym_variable_definition_token3, + ACTIONS(4771), 1, + aux_sym_variable_definition_token4, + STATE(3220), 1, + aux_sym_variable_definition_repeat1, + ACTIONS(3077), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(3246), 2, sym_comment, sym_include, - STATE(3355), 2, - sym_getter, - sym_setter, - ACTIONS(2834), 5, + STATE(3366), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(3073), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3075), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - ACTIONS(4766), 5, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [213904] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [218419] = 19, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(3205), 2, - sym_comment, - sym_include, - ACTIONS(4495), 17, - anon_sym_COLON, - sym__terminator, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_of_token1, - aux_sym_using_token1, - [213937] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(3206), 2, - sym_comment, - sym_include, - ACTIONS(4597), 17, - anon_sym_COLON, + ACTIONS(4472), 1, + sym__namedot, + ACTIONS(4626), 1, + anon_sym_LPAREN, + ACTIONS(4630), 1, + aux_sym_setter_token1, + ACTIONS(4632), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4634), 1, + aux_sym_widget_field_token1, + ACTIONS(4638), 1, + aux_sym_run_tuning_token7, + ACTIONS(4640), 1, + sym__namecolon, + ACTIONS(4773), 1, sym__terminator, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4775), 1, aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_of_token1, - aux_sym_using_token1, - [213970] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4507), 1, - aux_sym_getter_token1, - ACTIONS(4509), 1, - aux_sym_setter_token1, - ACTIONS(4772), 1, - aux_sym_variable_definition_token2, - STATE(3208), 1, - aux_sym_property_definition_repeat3, - STATE(5439), 1, - sym_access_tuning, - STATE(3207), 2, + STATE(3165), 1, + aux_sym_qualified_name_repeat1, + STATE(3389), 1, + aux_sym_run_statement_repeat1, + STATE(3536), 1, + aux_sym_object_access_repeat1, + STATE(3567), 1, + sym_function_arguments, + STATE(3613), 1, + sym_run_tuning, + STATE(3247), 2, sym_comment, sym_include, - STATE(3355), 2, - sym_getter, - sym_setter, - ACTIONS(2834), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - ACTIONS(4770), 5, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [214017] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4636), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [218481] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, + ACTIONS(4777), 1, + aux_sym_temp_table_expression_token1, ACTIONS(4779), 1, - aux_sym_variable_definition_token2, + aux_sym_variable_definition_token3, ACTIONS(4781), 1, - aux_sym_getter_token1, - ACTIONS(4784), 1, - aux_sym_setter_token1, - STATE(5439), 1, - sym_access_tuning, - STATE(3355), 2, - sym_getter, - sym_setter, - STATE(3208), 3, + aux_sym_variable_definition_token4, + STATE(3220), 1, + aux_sym_variable_definition_repeat1, + ACTIONS(3077), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(3248), 2, sym_comment, sym_include, - aux_sym_property_definition_repeat3, - ACTIONS(4774), 5, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - ACTIONS(4776), 5, + STATE(3366), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(3073), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3075), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [214062] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [218529] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4425), 1, + ACTIONS(4409), 1, aux_sym_variable_definition_token4, - STATE(3209), 2, + ACTIONS(4391), 2, + aux_sym_temp_table_expression_token1, + aux_sym_variable_definition_token3, + STATE(3249), 2, sym_comment, sym_include, - ACTIONS(4427), 16, - aux_sym_temp_table_expression_token1, + ACTIONS(4416), 3, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_property_definition_token1, + ACTIONS(4406), 11, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, @@ -231778,23 +236690,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - aux_sym_variable_definition_token3, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_property_definition_token1, - [214097] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [218568] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4789), 1, + ACTIONS(2477), 1, aux_sym_variable_tuning_token2, - STATE(3210), 2, + STATE(3250), 2, sym_comment, sym_include, - ACTIONS(4787), 16, + ACTIONS(2475), 16, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -231811,19 +236719,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [214132] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [218603] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2464), 1, + ACTIONS(4785), 1, aux_sym_variable_tuning_token2, - STATE(3211), 2, + STATE(3251), 2, sym_comment, sym_include, - ACTIONS(2462), 16, + ACTIONS(4783), 16, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -231840,64 +236748,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [214167] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [218638] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4374), 1, - aux_sym_temp_table_expression_token1, - ACTIONS(4376), 1, - aux_sym_dataset_expression_token1, - ACTIONS(4399), 1, - aux_sym_property_definition_token1, - ACTIONS(4401), 1, - aux_sym_event_definition_token1, - ACTIONS(4389), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(4396), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - STATE(3212), 2, + ACTIONS(4548), 1, + aux_sym_getter_token1, + ACTIONS(4550), 1, + aux_sym_setter_token1, + ACTIONS(4789), 1, + aux_sym_variable_definition_token2, + STATE(3259), 1, + aux_sym_property_definition_repeat3, + STATE(5905), 1, + sym_access_tuning, + STATE(3252), 2, sym_comment, sym_include, - ACTIONS(4384), 9, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, + STATE(3475), 2, + sym_getter, + sym_setter, + ACTIONS(3075), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [214212] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4787), 5, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [218685] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4507), 1, + ACTIONS(4548), 1, aux_sym_getter_token1, - ACTIONS(4509), 1, + ACTIONS(4550), 1, aux_sym_setter_token1, ACTIONS(4793), 1, aux_sym_variable_definition_token2, - STATE(3208), 1, + STATE(3259), 1, aux_sym_property_definition_repeat3, - STATE(5439), 1, + STATE(5905), 1, sym_access_tuning, - STATE(3213), 2, + STATE(3253), 2, sym_comment, sym_include, - STATE(3355), 2, + STATE(3475), 2, sym_getter, sym_setter, - ACTIONS(2834), 5, + ACTIONS(3075), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, @@ -231909,30 +236818,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, - [214259] = 12, - ACTIONS(65), 1, + [218732] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(3254), 2, + sym_comment, + sym_include, + ACTIONS(4720), 17, + anon_sym_COLON, + sym__terminator, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + aux_sym_using_token1, + [218765] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4507), 1, + ACTIONS(4548), 1, aux_sym_getter_token1, - ACTIONS(4509), 1, + ACTIONS(4550), 1, aux_sym_setter_token1, ACTIONS(4797), 1, aux_sym_variable_definition_token2, - STATE(3208), 1, + STATE(3259), 1, aux_sym_property_definition_repeat3, - STATE(5439), 1, + STATE(5905), 1, sym_access_tuning, - STATE(3214), 2, + STATE(3255), 2, sym_comment, sym_include, - STATE(3355), 2, + STATE(3475), 2, sym_getter, sym_setter, - ACTIONS(2834), 5, + ACTIONS(3075), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, @@ -231944,19 +236881,144 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, - [214306] = 6, - ACTIONS(65), 1, + [218812] = 5, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(3256), 2, + sym_comment, + sym_include, + ACTIONS(4610), 17, + anon_sym_COLON, + sym__terminator, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + aux_sym_using_token1, + [218845] = 11, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4391), 1, + aux_sym_temp_table_expression_token1, + ACTIONS(4393), 1, + aux_sym_dataset_expression_token1, + ACTIONS(4416), 1, + aux_sym_property_definition_token1, + ACTIONS(4418), 1, + aux_sym_event_definition_token1, + ACTIONS(4406), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(4413), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(3257), 2, + sym_comment, + sym_include, + ACTIONS(4401), 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_access_tuning_token4, + aux_sym_access_tuning_token5, + [218890] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4468), 1, + aux_sym_variable_definition_token4, + STATE(3258), 2, + sym_comment, + sym_include, + ACTIONS(4470), 16, + aux_sym_temp_table_expression_token1, + 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_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_variable_definition_token3, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_property_definition_token1, + [218925] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4804), 1, + aux_sym_variable_definition_token2, + ACTIONS(4806), 1, + aux_sym_getter_token1, + ACTIONS(4809), 1, + aux_sym_setter_token1, + STATE(5905), 1, + sym_access_tuning, + STATE(3475), 2, + sym_getter, + sym_setter, + STATE(3259), 3, + sym_comment, + sym_include, + aux_sym_property_definition_repeat3, + ACTIONS(4799), 5, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + ACTIONS(4801), 5, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + [218970] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4801), 1, + ACTIONS(4814), 1, aux_sym_variable_tuning_token2, - STATE(3215), 2, + STATE(3260), 2, sym_comment, sym_include, - ACTIONS(4799), 16, + ACTIONS(4812), 16, sym__terminator, aux_sym_unary_expression_token2, aux_sym_variable_tuning_token1, @@ -231973,701 +237035,1066 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_field_option_token6, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [214341] = 8, - ACTIONS(65), 1, + [219005] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(3261), 2, + sym_comment, + sym_include, + ACTIONS(4588), 17, + anon_sym_COLON, + sym__terminator, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + aux_sym_using_token1, + [219038] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, - aux_sym_variable_definition_token4, - ACTIONS(4374), 2, - aux_sym_temp_table_expression_token1, - aux_sym_variable_definition_token3, - STATE(3216), 2, + ACTIONS(4548), 1, + aux_sym_getter_token1, + ACTIONS(4550), 1, + aux_sym_setter_token1, + ACTIONS(4818), 1, + aux_sym_variable_definition_token2, + STATE(3259), 1, + aux_sym_property_definition_repeat3, + STATE(5905), 1, + sym_access_tuning, + STATE(3262), 2, sym_comment, sym_include, - ACTIONS(4399), 3, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_property_definition_token1, - ACTIONS(4389), 11, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, + STATE(3475), 2, + sym_getter, + sym_setter, + ACTIONS(3075), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - [214380] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4816), 5, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [219085] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(3217), 2, + ACTIONS(4644), 1, + anon_sym_COLON, + ACTIONS(4646), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(4648), 1, + aux_sym_property_type_token1, + ACTIONS(4650), 1, + aux_sym_method_tuning_token1, + ACTIONS(4652), 1, + aux_sym_inherits_token1, + ACTIONS(4654), 1, + aux_sym_implements_token1, + ACTIONS(4656), 1, + aux_sym_use_widget_pool_token1, + STATE(3274), 1, + aux_sym_class_statement_repeat1, + STATE(4073), 1, + sym_class_tuning, + STATE(6407), 1, + sym_class_body, + STATE(3263), 2, sym_comment, sym_include, - ACTIONS(4803), 16, + STATE(4075), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [219137] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4644), 1, anon_sym_COLON, + ACTIONS(4646), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(4648), 1, + aux_sym_property_type_token1, + ACTIONS(4650), 1, + aux_sym_method_tuning_token1, + ACTIONS(4652), 1, + aux_sym_inherits_token1, + ACTIONS(4654), 1, + aux_sym_implements_token1, + ACTIONS(4656), 1, + aux_sym_use_widget_pool_token1, + STATE(3295), 1, + aux_sym_class_statement_repeat1, + STATE(4073), 1, + sym_class_tuning, + STATE(6582), 1, + sym_class_body, + STATE(3264), 2, + sym_comment, + sym_include, + STATE(4075), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [219189] = 16, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(4622), 1, + aux_sym_where_clause_token1, + ACTIONS(4737), 1, sym__terminator, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3369), 1, + sym_of, + STATE(3415), 1, + sym__pre_tuning, + STATE(3679), 1, + sym_where_clause, + STATE(3688), 1, + aux_sym_for_phrase_repeat1, + STATE(3265), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [219243] = 16, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, + ACTIONS(4743), 1, + sym__terminator, + STATE(3271), 1, + sym_using, + STATE(3362), 1, + sym_of, + STATE(3368), 1, + sym_query_tuning, + STATE(3453), 1, + sym__pre_tuning, + STATE(3715), 1, + sym_where_clause, + STATE(3718), 1, + aux_sym_for_phrase_repeat1, + STATE(3266), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, + [219297] = 17, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4630), 1, + aux_sym_setter_token1, + ACTIONS(4632), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4634), 1, + aux_sym_widget_field_token1, + ACTIONS(4638), 1, + aux_sym_run_tuning_token7, + ACTIONS(4640), 1, + sym__namecolon, + ACTIONS(4725), 1, + sym__terminator, + ACTIONS(4727), 1, + aux_sym_function_call_token1, + ACTIONS(4820), 1, + anon_sym_LPAREN, + STATE(3372), 1, + aux_sym_run_statement_repeat1, + STATE(3512), 1, + aux_sym_object_access_repeat1, + STATE(3613), 1, + sym_run_tuning, + STATE(5479), 1, + sym_function_arguments, + STATE(3267), 2, + sym_comment, + sym_include, + ACTIONS(4636), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [219353] = 16, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, + ACTIONS(2491), 1, aux_sym_of_token1, - [214412] = 16, - ACTIONS(65), 1, + ACTIONS(4622), 1, + aux_sym_where_clause_token1, + ACTIONS(4668), 1, + sym__terminator, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3387), 1, + sym_of, + STATE(3465), 1, + sym__pre_tuning, + STATE(3610), 1, + aux_sym_for_phrase_repeat1, + STATE(3649), 1, + sym_where_clause, + STATE(3268), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [219407] = 17, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4630), 1, + aux_sym_setter_token1, + ACTIONS(4632), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4634), 1, + aux_sym_widget_field_token1, + ACTIONS(4638), 1, + aux_sym_run_tuning_token7, + ACTIONS(4640), 1, + sym__namecolon, + ACTIONS(4753), 1, + sym__terminator, + ACTIONS(4755), 1, + aux_sym_function_call_token1, + ACTIONS(4820), 1, + anon_sym_LPAREN, + STATE(3365), 1, + aux_sym_run_statement_repeat1, + STATE(3512), 1, + aux_sym_object_access_repeat1, + STATE(3613), 1, + sym_run_tuning, + STATE(6121), 1, + sym_function_arguments, + STATE(3269), 2, + sym_comment, + sym_include, + ACTIONS(4636), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [219463] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(4662), 1, + ACTIONS(4759), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3320), 1, + STATE(3367), 1, sym_of, - STATE(3321), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3396), 1, + STATE(3411), 1, sym__pre_tuning, - STATE(3586), 1, + STATE(3647), 1, aux_sym_for_phrase_repeat1, - STATE(3589), 1, + STATE(3660), 1, sym_where_clause, - STATE(3218), 2, + STATE(3270), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [214466] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [219517] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4642), 1, - anon_sym_COLON, - ACTIONS(4644), 1, - aux_sym_serialization_tuning_token1, - ACTIONS(4646), 1, - aux_sym_property_type_token1, - ACTIONS(4648), 1, - aux_sym_method_tuning_token1, - ACTIONS(4650), 1, - aux_sym_inherits_token1, - ACTIONS(4652), 1, - aux_sym_implements_token1, - ACTIONS(4654), 1, - aux_sym_use_widget_pool_token1, - STATE(3296), 1, - aux_sym_class_statement_repeat1, - STATE(4104), 1, - sym_class_tuning, - STATE(6278), 1, - sym_class_body, - STATE(3219), 2, + STATE(3271), 2, sym_comment, sym_include, - STATE(4111), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [214518] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4822), 16, + anon_sym_COLON, + sym__terminator, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + [219549] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4810), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(4813), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - STATE(3217), 1, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(4622), 1, + aux_sym_where_clause_token1, + ACTIONS(4718), 1, + sym__terminator, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3220), 3, + STATE(3384), 1, + sym_of, + STATE(3440), 1, + sym__pre_tuning, + STATE(3582), 1, + sym_where_clause, + STATE(3589), 1, + aux_sym_for_phrase_repeat1, + STATE(3272), 2, sym_comment, sym_include, - aux_sym_for_phrase_repeat1, - ACTIONS(4807), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(4805), 6, - anon_sym_COLON, - sym__terminator, - anon_sym_COMMA, - aux_sym_on_error_phrase_token1, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [214560] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [219603] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(4670), 1, + ACTIONS(4739), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3313), 1, - sym_of, - STATE(3321), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3398), 1, + STATE(3382), 1, + sym_of, + STATE(3446), 1, sym__pre_tuning, - STATE(3522), 1, + STATE(3815), 1, sym_where_clause, - STATE(3526), 1, + STATE(3820), 1, aux_sym_for_phrase_repeat1, - STATE(3221), 2, + STATE(3273), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [214614] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [219657] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4642), 1, - anon_sym_COLON, ACTIONS(4644), 1, - aux_sym_serialization_tuning_token1, + anon_sym_COLON, ACTIONS(4646), 1, - aux_sym_property_type_token1, + aux_sym_serialization_tuning_token1, ACTIONS(4648), 1, - aux_sym_method_tuning_token1, + aux_sym_property_type_token1, ACTIONS(4650), 1, - aux_sym_inherits_token1, + aux_sym_method_tuning_token1, ACTIONS(4652), 1, - aux_sym_implements_token1, + aux_sym_inherits_token1, ACTIONS(4654), 1, + aux_sym_implements_token1, + ACTIONS(4656), 1, aux_sym_use_widget_pool_token1, - STATE(3296), 1, + STATE(3338), 1, aux_sym_class_statement_repeat1, - STATE(4104), 1, + STATE(4073), 1, sym_class_tuning, - STATE(6084), 1, + STATE(6394), 1, sym_class_body, - STATE(3222), 2, + STATE(3274), 2, sym_comment, sym_include, - STATE(4111), 6, + STATE(4075), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [214666] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [219709] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4825), 1, + ACTIONS(4824), 1, aux_sym_event_definition_token1, - ACTIONS(4822), 2, + STATE(3284), 1, + aux_sym_event_definition_repeat1, + ACTIONS(3809), 2, aux_sym_property_type_token1, aux_sym_property_type_token2, - STATE(3223), 3, + STATE(3275), 2, sym_comment, sym_include, - aux_sym_event_definition_repeat1, - STATE(3462), 3, + STATE(3492), 3, sym_scope_tuning, sym_access_tuning, sym_property_type, - ACTIONS(4816), 4, + ACTIONS(3073), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(4819), 5, + ACTIONS(3075), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [214706] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [219751] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4642), 1, - anon_sym_COLON, ACTIONS(4644), 1, - aux_sym_serialization_tuning_token1, + anon_sym_COLON, ACTIONS(4646), 1, - aux_sym_property_type_token1, + aux_sym_serialization_tuning_token1, ACTIONS(4648), 1, - aux_sym_method_tuning_token1, + aux_sym_property_type_token1, ACTIONS(4650), 1, - aux_sym_inherits_token1, + aux_sym_method_tuning_token1, ACTIONS(4652), 1, - aux_sym_implements_token1, + aux_sym_inherits_token1, ACTIONS(4654), 1, + aux_sym_implements_token1, + ACTIONS(4656), 1, aux_sym_use_widget_pool_token1, - STATE(3226), 1, + STATE(3338), 1, aux_sym_class_statement_repeat1, - STATE(4104), 1, + STATE(4073), 1, sym_class_tuning, - STATE(6592), 1, + STATE(6323), 1, sym_class_body, - STATE(3224), 2, + STATE(3276), 2, sym_comment, sym_include, - STATE(4111), 6, + STATE(4075), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [214758] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [219803] = 15, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(4617), 1, - aux_sym_where_clause_token1, - ACTIONS(4751), 1, - sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3324), 1, - sym_of, - STATE(3378), 1, - sym__pre_tuning, - STATE(3617), 1, - aux_sym_for_phrase_repeat1, - STATE(3619), 1, - sym_where_clause, - STATE(3225), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [214812] = 15, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4642), 1, - anon_sym_COLON, ACTIONS(4644), 1, - aux_sym_serialization_tuning_token1, + anon_sym_COLON, ACTIONS(4646), 1, - aux_sym_property_type_token1, + aux_sym_serialization_tuning_token1, ACTIONS(4648), 1, - aux_sym_method_tuning_token1, + aux_sym_property_type_token1, ACTIONS(4650), 1, - aux_sym_inherits_token1, + aux_sym_method_tuning_token1, ACTIONS(4652), 1, - aux_sym_implements_token1, + aux_sym_inherits_token1, ACTIONS(4654), 1, + aux_sym_implements_token1, + ACTIONS(4656), 1, aux_sym_use_widget_pool_token1, - STATE(3296), 1, + STATE(3278), 1, aux_sym_class_statement_repeat1, - STATE(4104), 1, + STATE(4073), 1, sym_class_tuning, - STATE(6350), 1, + STATE(6248), 1, sym_class_body, - STATE(3226), 2, + STATE(3277), 2, sym_comment, sym_include, - STATE(4111), 6, + STATE(4075), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [214864] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [219855] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4642), 1, - anon_sym_COLON, ACTIONS(4644), 1, - aux_sym_serialization_tuning_token1, + anon_sym_COLON, ACTIONS(4646), 1, - aux_sym_property_type_token1, + aux_sym_serialization_tuning_token1, ACTIONS(4648), 1, - aux_sym_method_tuning_token1, + aux_sym_property_type_token1, ACTIONS(4650), 1, - aux_sym_inherits_token1, + aux_sym_method_tuning_token1, ACTIONS(4652), 1, - aux_sym_implements_token1, + aux_sym_inherits_token1, ACTIONS(4654), 1, + aux_sym_implements_token1, + ACTIONS(4656), 1, aux_sym_use_widget_pool_token1, - STATE(3222), 1, + STATE(3338), 1, aux_sym_class_statement_repeat1, - STATE(4104), 1, + STATE(4073), 1, sym_class_tuning, - STATE(6112), 1, + STATE(6232), 1, sym_class_body, - STATE(3227), 2, + STATE(3278), 2, sym_comment, sym_include, - STATE(4111), 6, + STATE(4075), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [214916] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [219907] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4642), 1, - anon_sym_COLON, ACTIONS(4644), 1, - aux_sym_serialization_tuning_token1, + anon_sym_COLON, ACTIONS(4646), 1, - aux_sym_property_type_token1, + aux_sym_serialization_tuning_token1, ACTIONS(4648), 1, - aux_sym_method_tuning_token1, + aux_sym_property_type_token1, ACTIONS(4650), 1, - aux_sym_inherits_token1, + aux_sym_method_tuning_token1, ACTIONS(4652), 1, - aux_sym_implements_token1, + aux_sym_inherits_token1, ACTIONS(4654), 1, + aux_sym_implements_token1, + ACTIONS(4656), 1, aux_sym_use_widget_pool_token1, - STATE(3296), 1, + STATE(3338), 1, aux_sym_class_statement_repeat1, - STATE(4104), 1, + STATE(4073), 1, sym_class_tuning, - STATE(6148), 1, + STATE(6257), 1, sym_class_body, - STATE(3228), 2, + STATE(3279), 2, sym_comment, sym_include, - STATE(4111), 6, + STATE(4075), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [214968] = 16, - ACTIONS(65), 1, + [219959] = 10, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4658), 1, + aux_sym_temp_table_expression_token1, + STATE(3220), 1, + aux_sym_variable_definition_repeat1, + ACTIONS(3077), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(3280), 2, + sym_comment, + sym_include, + STATE(3366), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(3073), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3075), 5, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + [220001] = 17, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(4617), 1, - aux_sym_where_clause_token1, - ACTIONS(4764), 1, + ACTIONS(4630), 1, + aux_sym_setter_token1, + ACTIONS(4632), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4634), 1, + aux_sym_widget_field_token1, + ACTIONS(4638), 1, + aux_sym_run_tuning_token7, + ACTIONS(4640), 1, + sym__namecolon, + ACTIONS(4773), 1, sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3329), 1, - sym_of, - STATE(3405), 1, - sym__pre_tuning, - STATE(3557), 1, - sym_where_clause, - STATE(3618), 1, - aux_sym_for_phrase_repeat1, - STATE(3229), 2, + ACTIONS(4775), 1, + aux_sym_function_call_token1, + ACTIONS(4820), 1, + anon_sym_LPAREN, + STATE(3389), 1, + aux_sym_run_statement_repeat1, + STATE(3512), 1, + aux_sym_object_access_repeat1, + STATE(3613), 1, + sym_run_tuning, + STATE(5851), 1, + sym_function_arguments, + STATE(3281), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [215022] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4636), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [220057] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(4749), 1, + ACTIONS(4642), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3321), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3337), 1, + STATE(3383), 1, sym_of, - STATE(3394), 1, + STATE(3447), 1, sym__pre_tuning, - STATE(3579), 1, + STATE(3789), 1, sym_where_clause, - STATE(3582), 1, + STATE(3808), 1, aux_sym_for_phrase_repeat1, - STATE(3230), 2, + STATE(3282), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [215076] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [220111] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(4831), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(4834), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(4617), 1, - aux_sym_where_clause_token1, - ACTIONS(4709), 1, - sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3321), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3335), 1, - sym_of, - STATE(3356), 1, - sym__pre_tuning, - STATE(3648), 1, - sym_where_clause, - STATE(3653), 1, - aux_sym_for_phrase_repeat1, - STATE(3231), 2, + STATE(3283), 3, sym_comment, sym_include, - ACTIONS(2470), 5, + aux_sym_for_phrase_repeat1, + ACTIONS(4828), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [215130] = 16, - ACTIONS(65), 1, + ACTIONS(4826), 6, + anon_sym_COLON, + sym__terminator, + anon_sym_COMMA, + aux_sym_on_error_phrase_token1, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [220153] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4846), 1, + aux_sym_event_definition_token1, + ACTIONS(4843), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(3284), 3, + sym_comment, + sym_include, + aux_sym_event_definition_repeat1, + STATE(3492), 3, + sym_scope_tuning, + sym_access_tuning, + sym_property_type, + ACTIONS(4837), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(4840), 5, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + [220193] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(4745), 1, + ACTIONS(4749), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3336), 1, + STATE(3360), 1, sym_of, - STATE(3370), 1, + STATE(3368), 1, + sym_query_tuning, + STATE(3408), 1, sym__pre_tuning, - STATE(3596), 1, + STATE(3655), 1, sym_where_clause, - STATE(3602), 1, + STATE(3658), 1, aux_sym_for_phrase_repeat1, - STATE(3232), 2, + STATE(3285), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [215184] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [220247] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4642), 1, - anon_sym_COLON, ACTIONS(4644), 1, - aux_sym_serialization_tuning_token1, + anon_sym_COLON, ACTIONS(4646), 1, - aux_sym_property_type_token1, + aux_sym_serialization_tuning_token1, ACTIONS(4648), 1, - aux_sym_method_tuning_token1, + aux_sym_property_type_token1, ACTIONS(4650), 1, - aux_sym_inherits_token1, + aux_sym_method_tuning_token1, ACTIONS(4652), 1, - aux_sym_implements_token1, + aux_sym_inherits_token1, ACTIONS(4654), 1, + aux_sym_implements_token1, + ACTIONS(4656), 1, aux_sym_use_widget_pool_token1, - STATE(3296), 1, + STATE(3276), 1, aux_sym_class_statement_repeat1, - STATE(4104), 1, + STATE(4073), 1, sym_class_tuning, - STATE(6511), 1, + STATE(6766), 1, sym_class_body, - STATE(3233), 2, + STATE(3286), 2, sym_comment, sym_include, - STATE(4111), 6, + STATE(4075), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [215236] = 16, - ACTIONS(65), 1, + [220299] = 17, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4624), 1, + sym__terminator, + ACTIONS(4628), 1, + aux_sym_function_call_token1, + ACTIONS(4630), 1, + aux_sym_setter_token1, + ACTIONS(4632), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4634), 1, + aux_sym_widget_field_token1, + ACTIONS(4638), 1, + aux_sym_run_tuning_token7, + ACTIONS(4640), 1, + sym__namecolon, + ACTIONS(4820), 1, + anon_sym_LPAREN, + STATE(3381), 1, + aux_sym_run_statement_repeat1, + STATE(3512), 1, + aux_sym_object_access_repeat1, + STATE(3613), 1, + sym_run_tuning, + STATE(5547), 1, + sym_function_arguments, + STATE(3287), 2, + sym_comment, + sym_include, + ACTIONS(4636), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [220355] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(4713), 1, + ACTIONS(4741), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3309), 1, - sym_of, - STATE(3321), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3363), 1, + STATE(3377), 1, + sym_of, + STATE(3476), 1, sym__pre_tuning, - STATE(3508), 1, + STATE(3661), 1, sym_where_clause, - STATE(3512), 1, + STATE(3670), 1, aux_sym_for_phrase_repeat1, - STATE(3234), 2, + STATE(3288), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [215290] = 5, - ACTIONS(65), 1, + [220409] = 16, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(4620), 1, + sym__terminator, + ACTIONS(4622), 1, + aux_sym_where_clause_token1, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3379), 1, + sym_of, + STATE(3430), 1, + sym__pre_tuning, + STATE(3765), 1, + aux_sym_for_phrase_repeat1, + STATE(3767), 1, + sym_where_clause, + STATE(3289), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [220463] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(3235), 2, + STATE(3290), 2, sym_comment, sym_include, - ACTIONS(4827), 16, + ACTIONS(4751), 16, anon_sym_COLON, sym__terminator, anon_sym_COMMA, @@ -232684,86 +238111,93 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, aux_sym_of_token1, - [215322] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [220495] = 17, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4664), 1, - aux_sym_temp_table_expression_token1, - STATE(3180), 1, - aux_sym_variable_definition_repeat1, - ACTIONS(2836), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(3236), 2, + ACTIONS(4626), 1, + anon_sym_LPAREN, + ACTIONS(4640), 1, + sym__namecolon, + ACTIONS(4850), 1, + aux_sym_type_tuning_token1, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(4856), 1, + aux_sym__function_argument_with_mode_token4, + ACTIONS(4858), 1, + sym__namedot, + STATE(3375), 1, + aux_sym_qualified_name_repeat1, + STATE(3531), 1, + sym_function_arguments, + STATE(3536), 1, + aux_sym_object_access_repeat1, + STATE(4130), 1, + sym_type_tuning, + STATE(5554), 1, + sym_argument_pass_type, + ACTIONS(4848), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3291), 2, sym_comment, sym_include, - STATE(3327), 3, - sym_scope_tuning, - sym_access_tuning, - sym_serialization_tuning, - ACTIONS(2832), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - [215364] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4854), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + [220551] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4642), 1, - anon_sym_COLON, ACTIONS(4644), 1, - aux_sym_serialization_tuning_token1, + anon_sym_COLON, ACTIONS(4646), 1, - aux_sym_property_type_token1, + aux_sym_serialization_tuning_token1, ACTIONS(4648), 1, - aux_sym_method_tuning_token1, + aux_sym_property_type_token1, ACTIONS(4650), 1, - aux_sym_inherits_token1, + aux_sym_method_tuning_token1, ACTIONS(4652), 1, - aux_sym_implements_token1, + aux_sym_inherits_token1, ACTIONS(4654), 1, + aux_sym_implements_token1, + ACTIONS(4656), 1, aux_sym_use_widget_pool_token1, - STATE(3228), 1, + STATE(3279), 1, aux_sym_class_statement_repeat1, - STATE(4104), 1, + STATE(4073), 1, sym_class_tuning, - STATE(6122), 1, + STATE(6231), 1, sym_class_body, - STATE(3237), 2, + STATE(3292), 2, sym_comment, sym_include, - STATE(4111), 6, + STATE(4075), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [215416] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [220603] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(3238), 2, + STATE(3293), 2, sym_comment, sym_include, - ACTIONS(4678), 16, + ACTIONS(4860), 16, anon_sym_COLON, sym__terminator, anon_sym_COMMA, @@ -232780,2750 +238214,2498 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, aux_sym_of_token1, - [215448] = 15, - ACTIONS(65), 1, + [220635] = 17, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4630), 1, + aux_sym_setter_token1, + ACTIONS(4632), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4634), 1, + aux_sym_widget_field_token1, + ACTIONS(4638), 1, + aux_sym_run_tuning_token7, + ACTIONS(4640), 1, + sym__namecolon, + ACTIONS(4745), 1, + sym__terminator, + ACTIONS(4747), 1, + aux_sym_function_call_token1, + ACTIONS(4820), 1, + anon_sym_LPAREN, + STATE(3364), 1, + aux_sym_run_statement_repeat1, + STATE(3512), 1, + aux_sym_object_access_repeat1, + STATE(3613), 1, + sym_run_tuning, + STATE(6079), 1, + sym_function_arguments, + STATE(3294), 2, + sym_comment, + sym_include, + ACTIONS(4636), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [220691] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4642), 1, - anon_sym_COLON, ACTIONS(4644), 1, - aux_sym_serialization_tuning_token1, + anon_sym_COLON, ACTIONS(4646), 1, - aux_sym_property_type_token1, + aux_sym_serialization_tuning_token1, ACTIONS(4648), 1, - aux_sym_method_tuning_token1, + aux_sym_property_type_token1, ACTIONS(4650), 1, - aux_sym_inherits_token1, + aux_sym_method_tuning_token1, ACTIONS(4652), 1, - aux_sym_implements_token1, + aux_sym_inherits_token1, ACTIONS(4654), 1, + aux_sym_implements_token1, + ACTIONS(4656), 1, aux_sym_use_widget_pool_token1, - STATE(3233), 1, + STATE(3338), 1, aux_sym_class_statement_repeat1, - STATE(4104), 1, + STATE(4073), 1, sym_class_tuning, - STATE(6447), 1, + STATE(6547), 1, sym_class_body, - STATE(3239), 2, + STATE(3295), 2, sym_comment, sym_include, - STATE(4111), 6, + STATE(4075), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [215500] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [220743] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2487), 1, + aux_sym_where_clause_token1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4615), 1, - sym__terminator, - ACTIONS(4617), 1, - aux_sym_where_clause_token1, - STATE(3217), 1, + ACTIONS(4862), 1, + anon_sym_RPAREN, + STATE(3271), 1, sym_using, - STATE(3314), 1, - sym_of, - STATE(3321), 1, - sym_query_tuning, - STATE(3407), 1, - sym__pre_tuning, - STATE(3677), 1, - sym_where_clause, - STATE(3678), 1, - aux_sym_for_phrase_repeat1, - STATE(3240), 2, + STATE(3343), 1, + aux_sym_can_find_expression_repeat1, + STATE(3296), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + STATE(3861), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [215554] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [220790] = 13, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4642), 1, - anon_sym_COLON, - ACTIONS(4644), 1, - aux_sym_serialization_tuning_token1, - ACTIONS(4646), 1, - aux_sym_property_type_token1, - ACTIONS(4648), 1, - aux_sym_method_tuning_token1, - ACTIONS(4650), 1, - aux_sym_inherits_token1, - ACTIONS(4652), 1, - aux_sym_implements_token1, - ACTIONS(4654), 1, - aux_sym_use_widget_pool_token1, - STATE(3219), 1, - aux_sym_class_statement_repeat1, - STATE(4104), 1, - sym_class_tuning, - STATE(6294), 1, - sym_class_body, - STATE(3241), 2, - sym_comment, - sym_include, - STATE(4111), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [215606] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4829), 1, - aux_sym_event_definition_token1, - STATE(3223), 1, - aux_sym_event_definition_repeat1, - ACTIONS(3414), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - STATE(3242), 2, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2487), 1, + aux_sym_where_clause_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(2491), 1, + aux_sym_of_token1, + ACTIONS(4864), 1, + anon_sym_RPAREN, + STATE(3271), 1, + sym_using, + STATE(3343), 1, + aux_sym_can_find_expression_repeat1, + STATE(3297), 2, sym_comment, sym_include, - STATE(3462), 3, - sym_scope_tuning, - sym_access_tuning, - sym_property_type, - ACTIONS(2832), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - [215648] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(3861), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [220837] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2487), 1, + aux_sym_where_clause_token1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4617), 1, - aux_sym_where_clause_token1, - ACTIONS(4640), 1, - sym__terminator, - STATE(3217), 1, + ACTIONS(4866), 1, + anon_sym_RPAREN, + STATE(3271), 1, sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3338), 1, - sym_of, - STATE(3352), 1, - sym__pre_tuning, - STATE(3640), 1, - sym_where_clause, - STATE(3643), 1, - aux_sym_for_phrase_repeat1, - STATE(3243), 2, + STATE(3343), 1, + aux_sym_can_find_expression_repeat1, + STATE(3298), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + STATE(3861), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [215702] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [220884] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4831), 1, + ACTIONS(4868), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3244), 2, + STATE(3299), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [215749] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [220931] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4833), 1, + ACTIONS(4870), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3245), 2, + STATE(3300), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [215796] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [220978] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4835), 1, - aux_sym_dataset_expression_token1, - ACTIONS(4837), 1, - aux_sym_buffer_definition_token1, - ACTIONS(4839), 1, - aux_sym_query_definition_token1, - STATE(3254), 1, - aux_sym_buffer_definition_repeat1, - STATE(3246), 2, - sym_comment, - sym_include, - STATE(3468), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(2832), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - [215839] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4841), 1, + ACTIONS(4872), 1, aux_sym_dataset_expression_token1, - ACTIONS(4843), 1, + ACTIONS(4874), 1, aux_sym_buffer_definition_token1, - ACTIONS(4845), 1, + ACTIONS(4876), 1, aux_sym_query_definition_token1, - STATE(3254), 1, + STATE(3334), 1, aux_sym_buffer_definition_repeat1, - STATE(3247), 2, + STATE(3301), 2, sym_comment, sym_include, - STATE(3468), 2, + STATE(3543), 2, sym_scope_tuning, sym_access_tuning, - ACTIONS(2832), 4, + ACTIONS(3073), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, + ACTIONS(3075), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [215882] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [221021] = 13, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4847), 1, - aux_sym_dataset_expression_token1, - ACTIONS(4849), 1, - aux_sym_buffer_definition_token1, - ACTIONS(4851), 1, - aux_sym_query_definition_token1, - STATE(3254), 1, - aux_sym_buffer_definition_repeat1, - STATE(3248), 2, - sym_comment, - sym_include, - STATE(3468), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(2832), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - [215925] = 13, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4853), 1, + ACTIONS(4878), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3249), 2, + STATE(3302), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [215972] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [221068] = 13, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4855), 1, - anon_sym_RPAREN, - ACTIONS(4860), 1, - aux_sym_using_statement_token1, - ACTIONS(4863), 1, - aux_sym_where_clause_token1, - ACTIONS(4866), 1, - aux_sym_query_tuning_token5, - ACTIONS(4869), 1, - aux_sym_of_token1, - STATE(3217), 1, - sym_using, - STATE(3250), 3, - sym_comment, - sym_include, - aux_sym_can_find_expression_repeat1, - STATE(3743), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(4857), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [216017] = 13, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4872), 1, + ACTIONS(4880), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3251), 2, + STATE(3303), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [216064] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [221115] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4874), 1, + ACTIONS(4882), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3252), 2, + STATE(3304), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [216111] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [221162] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4876), 1, + ACTIONS(4884), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3253), 2, + STATE(3305), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [216158] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [221209] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(3468), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(4878), 3, - aux_sym_dataset_expression_token1, - aux_sym_buffer_definition_token1, - aux_sym_query_definition_token1, - STATE(3254), 3, + ACTIONS(4891), 1, + aux_sym_variable_tuning_token2, + ACTIONS(4894), 1, + aux_sym_variable_tuning_token7, + ACTIONS(4897), 1, + aux_sym_variable_tuning_token8, + STATE(3474), 1, + sym_property_tuning, + ACTIONS(4888), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + STATE(3306), 3, sym_comment, sym_include, - aux_sym_buffer_definition_repeat1, - ACTIONS(4880), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - ACTIONS(4883), 5, + aux_sym_property_definition_repeat2, + ACTIONS(4886), 8, + sym__terminator, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [216195] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_getter_token1, + aux_sym_setter_token1, + [221250] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4886), 1, + ACTIONS(4900), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3255), 2, + STATE(3307), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [216242] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [221297] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2474), 1, - aux_sym_where_clause_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(4888), 1, - anon_sym_RPAREN, - STATE(3217), 1, - sym_using, - STATE(3250), 1, - aux_sym_can_find_expression_repeat1, - STATE(3256), 2, + STATE(3308), 2, sym_comment, sym_include, - STATE(3743), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [216289] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4902), 15, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + 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, + aux_sym_event_definition_token1, + [221328] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4890), 1, + ACTIONS(4904), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3257), 2, + STATE(3309), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [216336] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [221375] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4892), 1, + ACTIONS(4906), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3258), 2, + STATE(3310), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [216383] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [221422] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4894), 1, + ACTIONS(4908), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3259), 2, + STATE(3311), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [216430] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [221469] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4896), 1, + ACTIONS(4910), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3260), 2, + STATE(3312), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [216477] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [221516] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4898), 1, + ACTIONS(4912), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3261), 2, + STATE(3313), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [216524] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [221563] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4900), 1, + ACTIONS(4914), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3262), 2, + STATE(3314), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [216571] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [221610] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4902), 1, + ACTIONS(4916), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3263), 2, + STATE(3315), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [216618] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [221657] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4904), 1, + ACTIONS(4918), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3264), 2, + STATE(3316), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [216665] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [221704] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2474), 1, - aux_sym_where_clause_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(2478), 1, - aux_sym_of_token1, - ACTIONS(4906), 1, - anon_sym_RPAREN, - STATE(3217), 1, - sym_using, - STATE(3250), 1, - aux_sym_can_find_expression_repeat1, - STATE(3265), 2, + ACTIONS(4920), 1, + aux_sym_dataset_expression_token1, + ACTIONS(4922), 1, + aux_sym_buffer_definition_token1, + ACTIONS(4924), 1, + aux_sym_query_definition_token1, + STATE(3334), 1, + aux_sym_buffer_definition_repeat1, + STATE(3317), 2, sym_comment, sym_include, - STATE(3743), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [216712] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(3543), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(3073), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3075), 5, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + [221747] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4908), 1, + ACTIONS(4926), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3266), 2, + STATE(3318), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [216759] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [221794] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4910), 1, + ACTIONS(4928), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3267), 2, + STATE(3319), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [216806] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [221841] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4912), 1, + ACTIONS(4930), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3268), 2, + STATE(3320), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [216853] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [221888] = 13, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4401), 1, - aux_sym_event_definition_token1, - STATE(3269), 2, - sym_comment, - sym_include, - ACTIONS(4399), 3, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - aux_sym_property_definition_token1, - ACTIONS(4396), 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_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - [216888] = 13, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4914), 1, + ACTIONS(4932), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3270), 2, + STATE(3321), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [216935] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [221935] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4916), 1, + ACTIONS(4934), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3271), 2, + STATE(3322), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [216982] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [221982] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4918), 1, + ACTIONS(4936), 1, aux_sym_dataset_expression_token1, - ACTIONS(4920), 1, + ACTIONS(4938), 1, aux_sym_buffer_definition_token1, - ACTIONS(4922), 1, + ACTIONS(4940), 1, aux_sym_query_definition_token1, - STATE(3254), 1, + STATE(3334), 1, aux_sym_buffer_definition_repeat1, - STATE(3272), 2, + STATE(3323), 2, sym_comment, sym_include, - STATE(3468), 2, + STATE(3543), 2, sym_scope_tuning, sym_access_tuning, - ACTIONS(2832), 4, + ACTIONS(3073), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, + ACTIONS(3075), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [217025] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [222025] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4924), 1, + ACTIONS(4942), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3273), 2, + STATE(3324), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [217072] = 13, - ACTIONS(65), 1, + [222072] = 11, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4944), 1, + aux_sym_dataset_expression_token1, + ACTIONS(4946), 1, + aux_sym_buffer_definition_token1, + ACTIONS(4948), 1, + aux_sym_query_definition_token1, + STATE(3334), 1, + aux_sym_buffer_definition_repeat1, + STATE(3325), 2, + sym_comment, + sym_include, + STATE(3543), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(3073), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3075), 5, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + [222115] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4418), 1, + aux_sym_event_definition_token1, + STATE(3326), 2, + sym_comment, + sym_include, + ACTIONS(4416), 3, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_property_definition_token1, + ACTIONS(4413), 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_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + [222150] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4926), 1, + ACTIONS(4950), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3274), 2, + STATE(3327), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [217119] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [222197] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4928), 1, + ACTIONS(4952), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3275), 2, + STATE(3328), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [217166] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [222244] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4930), 1, + ACTIONS(4954), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3276), 2, + STATE(3329), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [217213] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [222291] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4932), 1, + ACTIONS(4956), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3277), 2, + STATE(3330), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [217260] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [222338] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4934), 1, + ACTIONS(4958), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3278), 2, + STATE(3331), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [217307] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [222385] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4936), 1, + ACTIONS(4960), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3279), 2, + STATE(3332), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [217354] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [222432] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4938), 1, + ACTIONS(4962), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3280), 2, + STATE(3333), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [217401] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [222479] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4945), 1, - aux_sym_variable_tuning_token2, - ACTIONS(4948), 1, - aux_sym_variable_tuning_token7, - ACTIONS(4951), 1, - aux_sym_variable_tuning_token8, - STATE(3353), 1, - sym_property_tuning, - ACTIONS(4942), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token6, - STATE(3281), 3, + STATE(3543), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(4964), 3, + aux_sym_dataset_expression_token1, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + STATE(3334), 3, sym_comment, sym_include, - aux_sym_property_definition_repeat2, - ACTIONS(4940), 8, - sym__terminator, + aux_sym_buffer_definition_repeat1, + ACTIONS(4966), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(4969), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - [217442] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [222516] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4954), 1, + ACTIONS(4972), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3282), 2, + STATE(3335), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [217489] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [222563] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4956), 1, + ACTIONS(4974), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3283), 2, + STATE(3336), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [217536] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [222610] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4958), 1, + ACTIONS(4976), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3284), 2, + STATE(3337), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [217583] = 13, - ACTIONS(65), 1, + [222657] = 13, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4978), 1, + anon_sym_COLON, + ACTIONS(4980), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(4983), 1, + aux_sym_property_type_token1, + ACTIONS(4986), 1, + aux_sym_method_tuning_token1, + ACTIONS(4989), 1, + aux_sym_inherits_token1, + ACTIONS(4992), 1, + aux_sym_implements_token1, + ACTIONS(4995), 1, + aux_sym_use_widget_pool_token1, + STATE(4073), 1, + sym_class_tuning, + STATE(3338), 3, + sym_comment, + sym_include, + aux_sym_class_statement_repeat1, + STATE(4075), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [222704] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4960), 1, + ACTIONS(4998), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3285), 2, + STATE(3339), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [217630] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [222751] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4962), 1, + ACTIONS(5000), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3286), 2, + STATE(3340), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [217677] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [222798] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4964), 1, + ACTIONS(5002), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3287), 2, + STATE(3341), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [217724] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [222845] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4966), 1, + ACTIONS(5004), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3288), 2, + STATE(3342), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [217771] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [222892] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(5006), 1, + anon_sym_RPAREN, + ACTIONS(5011), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(5014), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(5017), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(5020), 1, aux_sym_of_token1, - ACTIONS(4968), 1, - anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, - aux_sym_can_find_expression_repeat1, - STATE(3289), 2, + STATE(3343), 3, sym_comment, sym_include, - STATE(3743), 3, + aux_sym_can_find_expression_repeat1, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(5008), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [217818] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [222937] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4970), 1, + ACTIONS(5023), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3290), 2, + STATE(3344), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [217865] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [222984] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4972), 1, + ACTIONS(5025), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3291), 2, + STATE(3345), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [217912] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [223031] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4974), 1, + ACTIONS(5027), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3292), 2, + STATE(3346), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [217959] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [223078] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4976), 1, + ACTIONS(5029), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3293), 2, + STATE(3347), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [218006] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [223125] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4978), 1, + ACTIONS(5031), 1, aux_sym_dataset_expression_token1, - ACTIONS(4980), 1, + ACTIONS(5033), 1, aux_sym_buffer_definition_token1, - ACTIONS(4982), 1, + ACTIONS(5035), 1, aux_sym_query_definition_token1, - STATE(3254), 1, + STATE(3334), 1, aux_sym_buffer_definition_repeat1, - STATE(3294), 2, + STATE(3348), 2, sym_comment, sym_include, - STATE(3468), 2, + STATE(3543), 2, sym_scope_tuning, sym_access_tuning, - ACTIONS(2832), 4, + ACTIONS(3073), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, + ACTIONS(3075), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [218049] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [223168] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(4984), 1, + ACTIONS(5037), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3295), 2, + STATE(3349), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [218096] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [223215] = 13, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4986), 1, - anon_sym_COLON, - ACTIONS(4988), 1, - aux_sym_serialization_tuning_token1, - ACTIONS(4991), 1, - aux_sym_property_type_token1, - ACTIONS(4994), 1, - aux_sym_method_tuning_token1, - ACTIONS(4997), 1, - aux_sym_inherits_token1, - ACTIONS(5000), 1, - aux_sym_implements_token1, - ACTIONS(5003), 1, - aux_sym_use_widget_pool_token1, - STATE(4104), 1, - sym_class_tuning, - STATE(3296), 3, - sym_comment, - sym_include, - aux_sym_class_statement_repeat1, - STATE(4111), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [218143] = 13, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(5006), 1, + ACTIONS(5039), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3297), 2, + STATE(3350), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [218190] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [223262] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(5008), 1, + ACTIONS(5041), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3298), 2, + STATE(3351), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [218237] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [223309] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(5010), 1, + ACTIONS(5043), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3299), 2, + STATE(3352), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [218284] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [223356] = 13, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(3300), 2, - sym_comment, - sym_include, - ACTIONS(5012), 15, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - 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, - aux_sym_event_definition_token1, - [218315] = 13, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(5014), 1, + ACTIONS(5045), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3301), 2, + STATE(3353), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [218362] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [223403] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(5016), 1, + ACTIONS(5047), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3302), 2, + STATE(3354), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [218409] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [223450] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(5018), 1, + ACTIONS(5049), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3303), 2, + STATE(3355), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [218456] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [223497] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(5020), 1, + ACTIONS(5051), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3304), 2, + STATE(3356), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [218503] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [223544] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(5022), 1, + ACTIONS(5053), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3305), 2, + STATE(3357), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [218550] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [223591] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2474), 1, + ACTIONS(2487), 1, aux_sym_where_clause_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(2478), 1, + ACTIONS(2491), 1, aux_sym_of_token1, - ACTIONS(5024), 1, + ACTIONS(5055), 1, anon_sym_RPAREN, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3250), 1, + STATE(3343), 1, aux_sym_can_find_expression_repeat1, - STATE(3306), 2, + STATE(3358), 2, sym_comment, sym_include, - STATE(3743), 3, + STATE(3861), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [218597] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [223638] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4682), 1, - anon_sym_LPAREN, - ACTIONS(4686), 1, - aux_sym_setter_token1, - ACTIONS(4688), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4690), 1, - aux_sym_widget_field_token1, - ACTIONS(4694), 1, - aux_sym_run_tuning_token7, - ACTIONS(4715), 1, - sym__terminator, - ACTIONS(4717), 1, - aux_sym_function_call_token1, - STATE(3325), 1, - aux_sym_run_statement_repeat1, - STATE(3669), 1, - sym_run_tuning, - STATE(5866), 1, - sym_function_arguments, - STATE(3307), 2, - sym_comment, - sym_include, - ACTIONS(4692), 4, - aux_sym_run_tuning_token1, - aux_sym_run_tuning_token2, - aux_sym_run_tuning_token3, - aux_sym_run_tuning_token4, - [218647] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5026), 1, - sym__namedot, - STATE(3308), 3, + ACTIONS(5063), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(3731), 2, + sym_scope_tuning, + sym_access_tuning, + STATE(3359), 3, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(117), 12, - anon_sym_COLON, - anon_sym_DOT, - aux_sym__block_terminator_token1, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_type_tuning_token1, - aux_sym_type_tuning_token2, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token2, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [218679] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_workfile_definition_repeat1, + ACTIONS(5057), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(5060), 5, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + [223674] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(5029), 1, + ACTIONS(5065), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3321), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3395), 1, + STATE(3450), 1, sym__pre_tuning, - STATE(3520), 1, + STATE(3712), 1, aux_sym_for_phrase_repeat1, - STATE(3521), 1, + STATE(3713), 1, sym_where_clause, - STATE(3309), 2, + STATE(3360), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [218727] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5037), 2, - aux_sym_workfile_definition_token1, - aux_sym_workfile_definition_token2, - STATE(3511), 2, - sym_scope_tuning, - sym_access_tuning, - STATE(3310), 3, - sym_comment, - sym_include, - aux_sym_workfile_definition_repeat1, - ACTIONS(5031), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - ACTIONS(5034), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - [218763] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [223722] = 15, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(3311), 2, - sym_comment, - sym_include, - ACTIONS(4399), 14, - 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_access_tuning_token4, - aux_sym_access_tuning_token5, - 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, - [218793] = 15, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4682), 1, - anon_sym_LPAREN, - ACTIONS(4686), 1, + ACTIONS(4630), 1, aux_sym_setter_token1, - ACTIONS(4688), 1, + ACTIONS(4632), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4690), 1, + ACTIONS(4634), 1, aux_sym_widget_field_token1, - ACTIONS(4694), 1, + ACTIONS(4638), 1, aux_sym_run_tuning_token7, - ACTIONS(5039), 1, + ACTIONS(4725), 1, sym__terminator, - ACTIONS(5041), 1, + ACTIONS(4727), 1, aux_sym_function_call_token1, - STATE(3359), 1, + ACTIONS(4820), 1, + anon_sym_LPAREN, + STATE(3372), 1, aux_sym_run_statement_repeat1, - STATE(3669), 1, + STATE(3613), 1, sym_run_tuning, - STATE(5529), 1, + STATE(5479), 1, sym_function_arguments, - STATE(3312), 2, + STATE(3361), 2, sym_comment, sym_include, - ACTIONS(4692), 4, + ACTIONS(4636), 4, aux_sym_run_tuning_token1, aux_sym_run_tuning_token2, aux_sym_run_tuning_token3, aux_sym_run_tuning_token4, - [218843] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [223772] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(5043), 1, + ACTIONS(5067), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3321), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3417), 1, + STATE(3473), 1, sym__pre_tuning, - STATE(3550), 1, + STATE(3777), 1, aux_sym_for_phrase_repeat1, - STATE(3551), 1, + STATE(3778), 1, sym_where_clause, - STATE(3313), 2, + STATE(3362), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [218891] = 14, - ACTIONS(65), 1, + [223820] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(4617), 1, - aux_sym_where_clause_token1, - ACTIONS(5045), 1, - sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3371), 1, - sym__pre_tuning, - STATE(3693), 1, - aux_sym_for_phrase_repeat1, - STATE(3694), 1, - sym_where_clause, - STATE(3314), 2, + ACTIONS(823), 1, + sym__namedot, + ACTIONS(825), 1, + sym__namecolon, + ACTIONS(827), 1, + sym__namedoublecolon, + ACTIONS(5071), 1, + anon_sym_LPAREN, + ACTIONS(5073), 1, + anon_sym_EQ, + ACTIONS(5075), 1, + sym__augmented_assignment, + STATE(3531), 1, + sym_function_arguments, + STATE(4582), 1, + aux_sym_object_access_repeat1, + STATE(4729), 1, + aux_sym_qualified_name_repeat1, + STATE(4751), 1, + aux_sym_member_access_repeat1, + STATE(3363), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [218939] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5069), 4, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + aux_sym_scope_tuning_token1, + [223870] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4682), 1, - anon_sym_LPAREN, - ACTIONS(4686), 1, + ACTIONS(4630), 1, aux_sym_setter_token1, - ACTIONS(4688), 1, + ACTIONS(4632), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4690), 1, + ACTIONS(4634), 1, aux_sym_widget_field_token1, - ACTIONS(4694), 1, + ACTIONS(4638), 1, aux_sym_run_tuning_token7, - ACTIONS(4741), 1, + ACTIONS(4820), 1, + anon_sym_LPAREN, + ACTIONS(5077), 1, sym__terminator, - ACTIONS(4743), 1, + ACTIONS(5079), 1, aux_sym_function_call_token1, - STATE(3319), 1, + STATE(3477), 1, aux_sym_run_statement_repeat1, - STATE(3669), 1, + STATE(3613), 1, sym_run_tuning, - STATE(5590), 1, + STATE(5969), 1, sym_function_arguments, - STATE(3315), 2, + STATE(3364), 2, sym_comment, sym_include, - ACTIONS(4692), 4, + ACTIONS(4636), 4, aux_sym_run_tuning_token1, aux_sym_run_tuning_token2, aux_sym_run_tuning_token3, aux_sym_run_tuning_token4, - [218989] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [223920] = 15, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(3310), 1, - aux_sym_workfile_definition_repeat1, - ACTIONS(5047), 2, - aux_sym_workfile_definition_token1, - aux_sym_workfile_definition_token2, - STATE(3316), 2, - sym_comment, - sym_include, - STATE(3511), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(2832), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - [219027] = 9, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(3310), 1, - aux_sym_workfile_definition_repeat1, - ACTIONS(5049), 2, - aux_sym_workfile_definition_token1, - aux_sym_workfile_definition_token2, - STATE(3317), 2, + ACTIONS(4630), 1, + aux_sym_setter_token1, + ACTIONS(4632), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4634), 1, + aux_sym_widget_field_token1, + ACTIONS(4638), 1, + aux_sym_run_tuning_token7, + ACTIONS(4820), 1, + anon_sym_LPAREN, + ACTIONS(5081), 1, + sym__terminator, + ACTIONS(5083), 1, + aux_sym_function_call_token1, + STATE(3477), 1, + aux_sym_run_statement_repeat1, + STATE(3613), 1, + sym_run_tuning, + STATE(5982), 1, + sym_function_arguments, + STATE(3365), 2, sym_comment, sym_include, - STATE(3511), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(2832), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - [219065] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4636), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [223970] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(3310), 1, - aux_sym_workfile_definition_repeat1, - ACTIONS(5051), 2, - aux_sym_workfile_definition_token1, - aux_sym_workfile_definition_token2, - STATE(3318), 2, + ACTIONS(4409), 1, + aux_sym_variable_definition_token4, + STATE(3366), 2, sym_comment, sym_include, - STATE(3511), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(2832), 4, + ACTIONS(4391), 13, + aux_sym_temp_table_expression_token1, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [219103] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_variable_definition_token3, + [224002] = 14, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4682), 1, - anon_sym_LPAREN, - ACTIONS(4686), 1, - aux_sym_setter_token1, - ACTIONS(4688), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4690), 1, - aux_sym_widget_field_token1, - ACTIONS(4694), 1, - aux_sym_run_tuning_token7, - ACTIONS(5053), 1, - sym__terminator, - ACTIONS(5055), 1, - aux_sym_function_call_token1, - STATE(3359), 1, - aux_sym_run_statement_repeat1, - STATE(3669), 1, - sym_run_tuning, - STATE(5896), 1, - sym_function_arguments, - STATE(3319), 2, - sym_comment, - sym_include, - ACTIONS(4692), 4, - aux_sym_run_tuning_token1, - aux_sym_run_tuning_token2, - aux_sym_run_tuning_token3, - aux_sym_run_tuning_token4, - [219153] = 14, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(5057), 1, + ACTIONS(5085), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3321), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3420), 1, + STATE(3457), 1, sym__pre_tuning, - STATE(3552), 1, + STATE(3650), 1, sym_where_clause, - STATE(3553), 1, + STATE(3703), 1, aux_sym_for_phrase_repeat1, - STATE(3320), 2, + STATE(3367), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [219201] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [224050] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(3321), 2, + STATE(3368), 2, sym_comment, sym_include, - ACTIONS(5059), 14, + ACTIONS(5087), 14, anon_sym_COLON, sym__terminator, anon_sym_COMMA, @@ -235538,319 +240720,238 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [219231] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4680), 1, - sym__terminator, - ACTIONS(4682), 1, - anon_sym_LPAREN, - ACTIONS(4684), 1, - aux_sym_function_call_token1, - ACTIONS(4686), 1, - aux_sym_setter_token1, - ACTIONS(4688), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4690), 1, - aux_sym_widget_field_token1, - ACTIONS(4694), 1, - aux_sym_run_tuning_token7, - STATE(3312), 1, - aux_sym_run_statement_repeat1, - STATE(3669), 1, - sym_run_tuning, - STATE(5446), 1, - sym_function_arguments, - STATE(3322), 2, - sym_comment, - sym_include, - ACTIONS(4692), 4, - aux_sym_run_tuning_token1, - aux_sym_run_tuning_token2, - aux_sym_run_tuning_token3, - aux_sym_run_tuning_token4, - [219281] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [224080] = 14, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4682), 1, - anon_sym_LPAREN, - ACTIONS(4686), 1, - aux_sym_setter_token1, - ACTIONS(4688), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4690), 1, - aux_sym_widget_field_token1, - ACTIONS(4694), 1, - aux_sym_run_tuning_token7, - ACTIONS(5061), 1, - sym__terminator, - ACTIONS(5063), 1, - aux_sym_function_call_token1, - STATE(3359), 1, - aux_sym_run_statement_repeat1, - STATE(3669), 1, - sym_run_tuning, - STATE(5949), 1, - sym_function_arguments, - STATE(3323), 2, - sym_comment, - sym_include, - ACTIONS(4692), 4, - aux_sym_run_tuning_token1, - aux_sym_run_tuning_token2, - aux_sym_run_tuning_token3, - aux_sym_run_tuning_token4, - [219331] = 14, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(5065), 1, + ACTIONS(5089), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3321), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3392), 1, + STATE(3445), 1, sym__pre_tuning, - STATE(3593), 1, - sym_where_clause, - STATE(3594), 1, + STATE(3810), 1, aux_sym_for_phrase_repeat1, - STATE(3324), 2, + STATE(3813), 1, + sym_where_clause, + STATE(3369), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [219379] = 15, - ACTIONS(65), 1, + [224128] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(3359), 1, + aux_sym_workfile_definition_repeat1, + ACTIONS(5091), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(3370), 2, + sym_comment, + sym_include, + STATE(3731), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(3073), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3075), 5, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + [224166] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4682), 1, - anon_sym_LPAREN, - ACTIONS(4686), 1, + ACTIONS(4630), 1, aux_sym_setter_token1, - ACTIONS(4688), 1, + ACTIONS(4632), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4690), 1, + ACTIONS(4634), 1, aux_sym_widget_field_token1, - ACTIONS(4694), 1, + ACTIONS(4638), 1, aux_sym_run_tuning_token7, - ACTIONS(5067), 1, + ACTIONS(4745), 1, sym__terminator, - ACTIONS(5069), 1, + ACTIONS(4747), 1, aux_sym_function_call_token1, - STATE(3359), 1, + ACTIONS(4820), 1, + anon_sym_LPAREN, + STATE(3364), 1, aux_sym_run_statement_repeat1, - STATE(3669), 1, + STATE(3613), 1, sym_run_tuning, - STATE(5925), 1, + STATE(6079), 1, sym_function_arguments, - STATE(3325), 2, + STATE(3371), 2, sym_comment, sym_include, - ACTIONS(4692), 4, + ACTIONS(4636), 4, aux_sym_run_tuning_token1, aux_sym_run_tuning_token2, aux_sym_run_tuning_token3, aux_sym_run_tuning_token4, - [219429] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [224216] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4682), 1, - anon_sym_LPAREN, - ACTIONS(4686), 1, + ACTIONS(4630), 1, aux_sym_setter_token1, - ACTIONS(4688), 1, + ACTIONS(4632), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4690), 1, + ACTIONS(4634), 1, aux_sym_widget_field_token1, - ACTIONS(4694), 1, + ACTIONS(4638), 1, aux_sym_run_tuning_token7, - ACTIONS(4733), 1, + ACTIONS(4820), 1, + anon_sym_LPAREN, + ACTIONS(5093), 1, sym__terminator, - ACTIONS(4735), 1, + ACTIONS(5095), 1, aux_sym_function_call_token1, - STATE(3333), 1, + STATE(3477), 1, aux_sym_run_statement_repeat1, - STATE(3669), 1, + STATE(3613), 1, sym_run_tuning, - STATE(5772), 1, + STATE(5535), 1, sym_function_arguments, - STATE(3326), 2, + STATE(3372), 2, sym_comment, sym_include, - ACTIONS(4692), 4, + ACTIONS(4636), 4, aux_sym_run_tuning_token1, aux_sym_run_tuning_token2, aux_sym_run_tuning_token3, aux_sym_run_tuning_token4, - [219479] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [224266] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, - aux_sym_variable_definition_token4, - STATE(3327), 2, + STATE(3359), 1, + aux_sym_workfile_definition_repeat1, + ACTIONS(5097), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(3373), 2, sym_comment, sym_include, - ACTIONS(4374), 13, - aux_sym_temp_table_expression_token1, + STATE(3731), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(3073), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, + ACTIONS(3075), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - aux_sym_variable_definition_token3, - [219511] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4682), 1, - anon_sym_LPAREN, - ACTIONS(4686), 1, - aux_sym_setter_token1, - ACTIONS(4688), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4690), 1, - aux_sym_widget_field_token1, - ACTIONS(4694), 1, - aux_sym_run_tuning_token7, - ACTIONS(4737), 1, - sym__terminator, - ACTIONS(4739), 1, - aux_sym_function_call_token1, - STATE(3323), 1, - aux_sym_run_statement_repeat1, - STATE(3669), 1, - sym_run_tuning, - STATE(5862), 1, - sym_function_arguments, - STATE(3328), 2, - sym_comment, - sym_include, - ACTIONS(4692), 4, - aux_sym_run_tuning_token1, - aux_sym_run_tuning_token2, - aux_sym_run_tuning_token3, - aux_sym_run_tuning_token4, - [219561] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [224304] = 9, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(4617), 1, - aux_sym_where_clause_token1, - ACTIONS(5071), 1, - sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3321), 1, - sym_query_tuning, - STATE(3385), 1, - sym__pre_tuning, - STATE(3575), 1, - aux_sym_for_phrase_repeat1, - STATE(3576), 1, - sym_where_clause, - STATE(3329), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [219609] = 9, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(3310), 1, + STATE(3359), 1, aux_sym_workfile_definition_repeat1, - ACTIONS(5073), 2, + ACTIONS(5099), 2, aux_sym_workfile_definition_token1, aux_sym_workfile_definition_token2, - STATE(3330), 2, + STATE(3374), 2, sym_comment, sym_include, - STATE(3511), 2, + STATE(3731), 2, sym_scope_tuning, sym_access_tuning, - ACTIONS(2832), 4, + ACTIONS(3073), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, + ACTIONS(3075), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [219647] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [224342] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5075), 1, + ACTIONS(4858), 1, sym__namedot, - STATE(3308), 1, + STATE(3376), 1, aux_sym_qualified_name_repeat1, - STATE(3331), 2, + STATE(3375), 2, + sym_comment, + sym_include, + ACTIONS(104), 12, + anon_sym_COLON, + anon_sym_DOT, + aux_sym__block_terminator_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [224376] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5101), 1, + sym__namedot, + STATE(3376), 3, sym_comment, sym_include, - ACTIONS(98), 12, + aux_sym_qualified_name_repeat1, + ACTIONS(108), 12, anon_sym_COLON, anon_sym_DOT, aux_sym__block_terminator_token1, @@ -235863,1305 +240964,1567 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_argument_pass_type_token2, aux_sym_argument_pass_type_token3, aux_sym__function_argument_with_mode_token4, - [219681] = 15, - ACTIONS(65), 1, + [224408] = 14, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(4622), 1, + aux_sym_where_clause_token1, + ACTIONS(5104), 1, + sym__terminator, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3485), 1, + sym__pre_tuning, + STATE(3763), 1, + aux_sym_for_phrase_repeat1, + STATE(3764), 1, + sym_where_clause, + STATE(3377), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [224456] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(3359), 1, + aux_sym_workfile_definition_repeat1, + ACTIONS(5106), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(3378), 2, + sym_comment, + sym_include, + STATE(3731), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(3073), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3075), 5, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + [224494] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(820), 1, - sym__namecolon, - ACTIONS(5075), 1, - sym__namedot, - ACTIONS(5079), 1, - aux_sym_type_tuning_token1, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5085), 1, - aux_sym__function_argument_with_mode_token4, - STATE(3331), 1, - aux_sym_qualified_name_repeat1, - STATE(3384), 1, - aux_sym_object_access_repeat1, - STATE(4176), 1, - sym_type_tuning, - STATE(5946), 1, - sym_argument_pass_type, - ACTIONS(5077), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3332), 2, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(4622), 1, + aux_sym_where_clause_token1, + ACTIONS(5108), 1, + sym__terminator, + STATE(3271), 1, + sym_using, + STATE(3368), 1, + sym_query_tuning, + STATE(3420), 1, + sym__pre_tuning, + STATE(3705), 1, + sym_where_clause, + STATE(3707), 1, + aux_sym_for_phrase_repeat1, + STATE(3379), 2, sym_comment, sym_include, - ACTIONS(5083), 3, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token2, - aux_sym_argument_pass_type_token3, - [219731] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [224542] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4682), 1, - anon_sym_LPAREN, - ACTIONS(4686), 1, + ACTIONS(4630), 1, aux_sym_setter_token1, - ACTIONS(4688), 1, + ACTIONS(4632), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4690), 1, + ACTIONS(4634), 1, aux_sym_widget_field_token1, - ACTIONS(4694), 1, + ACTIONS(4638), 1, aux_sym_run_tuning_token7, - ACTIONS(5087), 1, + ACTIONS(4773), 1, sym__terminator, - ACTIONS(5089), 1, + ACTIONS(4775), 1, aux_sym_function_call_token1, - STATE(3359), 1, + ACTIONS(4820), 1, + anon_sym_LPAREN, + STATE(3389), 1, aux_sym_run_statement_repeat1, - STATE(3669), 1, + STATE(3613), 1, sym_run_tuning, - STATE(5671), 1, + STATE(5851), 1, sym_function_arguments, - STATE(3333), 2, + STATE(3380), 2, sym_comment, sym_include, - ACTIONS(4692), 4, + ACTIONS(4636), 4, aux_sym_run_tuning_token1, aux_sym_run_tuning_token2, aux_sym_run_tuning_token3, aux_sym_run_tuning_token4, - [219781] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [224592] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(3310), 1, - aux_sym_workfile_definition_repeat1, - ACTIONS(5091), 2, - aux_sym_workfile_definition_token1, - aux_sym_workfile_definition_token2, - STATE(3334), 2, + ACTIONS(4630), 1, + aux_sym_setter_token1, + ACTIONS(4632), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4634), 1, + aux_sym_widget_field_token1, + ACTIONS(4638), 1, + aux_sym_run_tuning_token7, + ACTIONS(4820), 1, + anon_sym_LPAREN, + ACTIONS(5110), 1, + sym__terminator, + ACTIONS(5112), 1, + aux_sym_function_call_token1, + STATE(3477), 1, + aux_sym_run_statement_repeat1, + STATE(3613), 1, + sym_run_tuning, + STATE(5490), 1, + sym_function_arguments, + STATE(3381), 2, sym_comment, sym_include, - STATE(3511), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(2832), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - [219819] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4636), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [224642] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(5093), 1, + ACTIONS(5114), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3321), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3412), 1, + STATE(3469), 1, sym__pre_tuning, - STATE(3675), 1, + STATE(3644), 1, aux_sym_for_phrase_repeat1, - STATE(3676), 1, + STATE(3747), 1, sym_where_clause, - STATE(3335), 2, + STATE(3382), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [219867] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [224690] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(5095), 1, + ACTIONS(5116), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3321), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3402), 1, + STATE(3432), 1, sym__pre_tuning, - STATE(3564), 1, + STATE(3771), 1, sym_where_clause, - STATE(3565), 1, + STATE(3779), 1, aux_sym_for_phrase_repeat1, - STATE(3336), 2, + STATE(3383), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [219915] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [224738] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(5097), 1, + ACTIONS(5118), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3321), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3354), 1, + STATE(3462), 1, sym__pre_tuning, - STATE(3637), 1, + STATE(3657), 1, aux_sym_for_phrase_repeat1, - STATE(3638), 1, + STATE(3659), 1, sym_where_clause, - STATE(3337), 2, + STATE(3384), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [219963] = 14, - ACTIONS(65), 1, + [224786] = 9, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(3359), 1, + aux_sym_workfile_definition_repeat1, + ACTIONS(5120), 2, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + STATE(3385), 2, + sym_comment, + sym_include, + STATE(3731), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(3073), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3075), 5, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + [224824] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4624), 1, + sym__terminator, + ACTIONS(4628), 1, + aux_sym_function_call_token1, + ACTIONS(4630), 1, + aux_sym_setter_token1, + ACTIONS(4632), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4634), 1, + aux_sym_widget_field_token1, + ACTIONS(4638), 1, + aux_sym_run_tuning_token7, + ACTIONS(4820), 1, + anon_sym_LPAREN, + STATE(3381), 1, + aux_sym_run_statement_repeat1, + STATE(3613), 1, + sym_run_tuning, + STATE(5547), 1, + sym_function_arguments, + STATE(3386), 2, + sym_comment, + sym_include, + ACTIONS(4636), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [224874] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(5099), 1, + ACTIONS(5122), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3321), 1, + STATE(3368), 1, sym_query_tuning, - STATE(3379), 1, + STATE(3423), 1, sym__pre_tuning, - STATE(3702), 1, + STATE(3664), 1, aux_sym_for_phrase_repeat1, - STATE(3703), 1, + STATE(3667), 1, sym_where_clause, - STATE(3338), 2, + STATE(3387), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [220011] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [224922] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5101), 1, - aux_sym_while_phrase_token1, - ACTIONS(5103), 1, + ACTIONS(4630), 1, + aux_sym_setter_token1, + ACTIONS(4632), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(3603), 1, - sym_while_phrase, - STATE(3606), 1, - aux_sym_do_block_repeat1, - STATE(4442), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5427), 1, - sym_body, - STATE(3339), 2, + ACTIONS(4634), 1, + aux_sym_widget_field_token1, + ACTIONS(4638), 1, + aux_sym_run_tuning_token7, + ACTIONS(4753), 1, + sym__terminator, + ACTIONS(4755), 1, + aux_sym_function_call_token1, + ACTIONS(4820), 1, + anon_sym_LPAREN, + STATE(3365), 1, + aux_sym_run_statement_repeat1, + STATE(3613), 1, + sym_run_tuning, + STATE(6121), 1, + sym_function_arguments, + STATE(3388), 2, sym_comment, sym_include, - STATE(5939), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [220060] = 17, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4636), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [224972] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - ACTIONS(5111), 1, - aux_sym_while_phrase_token1, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, + ACTIONS(4630), 1, + aux_sym_setter_token1, + ACTIONS(4632), 1, aux_sym_on_error_phrase_token1, - STATE(1978), 1, - sym__block_terminator, - STATE(3583), 1, - sym_while_phrase, - STATE(3775), 1, - sym_on_error_phrase, - STATE(3813), 1, - sym_on_quit_phrase, - STATE(4031), 1, - aux_sym_repeat_statement_repeat1, - STATE(4032), 1, - sym_on_stop_phrase, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5764), 1, - sym_body, - STATE(3340), 2, + ACTIONS(4634), 1, + aux_sym_widget_field_token1, + ACTIONS(4638), 1, + aux_sym_run_tuning_token7, + ACTIONS(4820), 1, + anon_sym_LPAREN, + ACTIONS(5124), 1, + sym__terminator, + ACTIONS(5126), 1, + aux_sym_function_call_token1, + STATE(3477), 1, + aux_sym_run_statement_repeat1, + STATE(3613), 1, + sym_run_tuning, + STATE(5538), 1, + sym_function_arguments, + STATE(3389), 2, sym_comment, sym_include, - [220113] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4636), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [225022] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4841), 1, - aux_sym_dataset_expression_token1, - STATE(3254), 1, - aux_sym_buffer_definition_repeat1, - STATE(3341), 2, + STATE(3390), 2, sym_comment, sym_include, - STATE(3468), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(2832), 4, + ACTIONS(4416), 14, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(2834), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [220150] = 17, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + 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, + [225052] = 15, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5111), 1, - aux_sym_while_phrase_token1, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5117), 1, - aux_sym__block_terminator_token1, - STATE(1752), 1, - sym__block_terminator, - STATE(3505), 1, - sym_while_phrase, - STATE(3744), 1, - sym_on_error_phrase, - STATE(3837), 1, - sym_on_quit_phrase, - STATE(4147), 1, - aux_sym_repeat_statement_repeat1, - STATE(4149), 1, - sym_on_stop_phrase, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5414), 1, - sym_body, - STATE(3342), 2, - sym_comment, - sym_include, - [220203] = 9, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5119), 1, - sym_identifier, - STATE(3360), 1, - aux_sym_buffer_definition_repeat1, - STATE(3343), 2, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5128), 1, + sym__terminator, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + STATE(3927), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4235), 1, + sym_temp_table_tuning, + STATE(4399), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4400), 1, + sym_type_tuning, + ACTIONS(5132), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3391), 2, sym_comment, sym_include, - STATE(3731), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(5121), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - ACTIONS(5123), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - [220240] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [225101] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5127), 1, - aux_sym_variable_definition_token2, - STATE(3344), 2, + ACTIONS(2576), 1, + aux_sym_variable_tuning_token2, + STATE(3392), 2, sym_comment, sym_include, - ACTIONS(5125), 12, - aux_sym__block_terminator_token1, + ACTIONS(2574), 12, + sym__terminator, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - aux_sym_variable_definition_token1, aux_sym_getter_token1, aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [220271] = 17, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [225132] = 17, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5111), 1, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + ACTIONS(5140), 1, aux_sym_while_phrase_token1, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, + ACTIONS(5144), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2337), 1, + STATE(2381), 1, sym__block_terminator, - STATE(3572), 1, + STATE(3755), 1, sym_while_phrase, - STATE(3788), 1, + STATE(3865), 1, sym_on_error_phrase, - STATE(3799), 1, + STATE(3945), 1, sym_on_quit_phrase, - STATE(4008), 1, + STATE(4083), 1, aux_sym_repeat_statement_repeat1, - STATE(4016), 1, + STATE(4101), 1, sym_on_stop_phrase, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5853), 1, + STATE(6097), 1, sym_body, - STATE(3345), 2, + STATE(3393), 2, sym_comment, sym_include, - [220324] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [225185] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5133), 1, - aux_sym_variable_definition_token2, - STATE(3346), 2, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(5146), 1, + sym__terminator, + STATE(3438), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4235), 1, + sym_temp_table_tuning, + STATE(4380), 1, + sym_type_tuning, + STATE(4390), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(5132), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3394), 2, sym_comment, sym_include, - ACTIONS(5131), 12, - aux_sym__block_terminator_token1, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_variable_definition_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [220355] = 15, - ACTIONS(65), 1, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [225234] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(653), 1, + sym__integer_literal, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(5148), 1, + sym_identifier, + STATE(17), 1, + sym_function_call, + STATE(22), 1, + sym_object_access, + STATE(43), 1, + sym__decimal_literal, + STATE(47), 1, + sym__unary_minus_expressions, + STATE(5552), 1, + sym_new_expression, + STATE(3395), 2, + sym_comment, + sym_include, + STATE(48), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [225281] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5101), 1, + ACTIONS(5150), 1, aux_sym_while_phrase_token1, - ACTIONS(5103), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, + ACTIONS(5154), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, + ACTIONS(5156), 1, aux_sym_do_tuning_token1, - STATE(3490), 1, + STATE(3682), 1, sym_while_phrase, - STATE(3705), 1, + STATE(3684), 1, aux_sym_do_block_repeat1, - STATE(4389), 1, + STATE(4330), 1, sym_stop_after_phrase, - STATE(4810), 1, + STATE(4926), 1, sym_do_tuning, - STATE(5701), 1, + STATE(5670), 1, sym_body, - STATE(3347), 2, + STATE(3396), 2, sym_comment, sym_include, - STATE(5768), 3, + STATE(5671), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [220404] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [225330] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(3348), 2, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(5158), 1, + sym__terminator, + STATE(3414), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4235), 1, + sym_temp_table_tuning, + STATE(4291), 1, + sym_type_tuning, + STATE(4310), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(5132), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3397), 2, sym_comment, sym_include, - ACTIONS(117), 13, - sym__namedot, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [225379] = 17, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, anon_sym_COLON, - anon_sym_DOT, + ACTIONS(5140), 1, + aux_sym_while_phrase_token1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5144), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_type_tuning_token1, - aux_sym_type_tuning_token2, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token2, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [220433] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(3681), 1, + sym_while_phrase, + STATE(3891), 1, + sym_on_error_phrase, + STATE(3974), 1, + sym_on_quit_phrase, + STATE(4181), 1, + aux_sym_repeat_statement_repeat1, + STATE(4186), 1, + sym_on_stop_phrase, + STATE(5113), 1, + sym__block_terminator, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5503), 1, + sym_body, + STATE(3398), 2, + sym_comment, + sym_include, + [225432] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5101), 1, + ACTIONS(5150), 1, aux_sym_while_phrase_token1, - ACTIONS(5103), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, + ACTIONS(5154), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, + ACTIONS(5156), 1, aux_sym_do_tuning_token1, - STATE(3682), 1, + STATE(3666), 1, aux_sym_do_block_repeat1, - STATE(3687), 1, + STATE(3668), 1, sym_while_phrase, - STATE(4382), 1, + STATE(4356), 1, sym_stop_after_phrase, - STATE(4810), 1, + STATE(4926), 1, sym_do_tuning, - STATE(5789), 1, + STATE(5463), 1, sym_body, - STATE(3349), 2, + STATE(3399), 2, sym_comment, sym_include, - STATE(5735), 3, + STATE(6032), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [220482] = 6, - ACTIONS(65), 1, + [225481] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5137), 1, - aux_sym_variable_tuning_token2, - STATE(3350), 2, + ACTIONS(5162), 1, + sym_identifier, + STATE(3900), 2, + sym_scope_tuning, + sym_access_tuning, + STATE(3400), 3, sym_comment, sym_include, - ACTIONS(5135), 12, - sym__terminator, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, + aux_sym_buffer_definition_repeat1, + ACTIONS(5164), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(5167), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - [220513] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [225516] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5139), 1, + ACTIONS(5128), 1, sym__terminator, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5145), 1, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - ACTIONS(5147), 1, + ACTIONS(5136), 1, aux_sym_index_definition_token1, - STATE(3872), 1, + STATE(3464), 1, aux_sym_temp_table_definition_repeat1, - STATE(4082), 1, + STATE(4235), 1, sym_temp_table_tuning, - STATE(4198), 1, + STATE(4399), 1, aux_sym_temp_table_definition_repeat2, - STATE(4370), 1, + STATE(4400), 1, sym_type_tuning, - ACTIONS(5143), 2, + ACTIONS(5132), 2, aux_sym_variable_tuning_token8, aux_sym_temp_table_tuning_token1, - STATE(3351), 2, + STATE(3401), 2, sym_comment, sym_include, - STATE(5095), 2, + STATE(5184), 2, sym_field_definition, sym_index_definition, - [220562] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(4617), 1, - aux_sym_where_clause_token1, - ACTIONS(5099), 1, - sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3702), 1, - aux_sym_for_phrase_repeat1, - STATE(3703), 1, - sym_where_clause, - STATE(3352), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [220607] = 6, - ACTIONS(65), 1, + [225565] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5151), 1, - aux_sym_variable_tuning_token2, - STATE(3353), 2, + ACTIONS(5170), 1, + sym_identifier, + STATE(3412), 1, + aux_sym_buffer_definition_repeat1, + STATE(3402), 2, sym_comment, sym_include, - ACTIONS(5149), 12, - sym__terminator, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, + STATE(3900), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(5172), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(5174), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - aux_sym_getter_token1, - aux_sym_setter_token1, - [220638] = 13, - ACTIONS(65), 1, + [225602] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1296), 1, + sym__integer_literal, + ACTIONS(1300), 1, + anon_sym_LPAREN, + ACTIONS(5176), 1, + sym_identifier, + STATE(1082), 1, + sym_function_call, + STATE(1112), 1, + sym_object_access, + STATE(1135), 1, + sym__decimal_literal, + STATE(1161), 1, + sym__unary_minus_expressions, + STATE(6048), 1, + sym_new_expression, + STATE(3403), 2, + sym_comment, + sym_include, + STATE(1127), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [225649] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(4617), 1, - aux_sym_where_clause_token1, - ACTIONS(5153), 1, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(5178), 1, sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3700), 1, - aux_sym_for_phrase_repeat1, - STATE(3701), 1, - sym_where_clause, - STATE(3354), 2, + STATE(3927), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4235), 1, + sym_temp_table_tuning, + STATE(4258), 1, + sym_type_tuning, + STATE(4259), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(5132), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3404), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [220683] = 6, - ACTIONS(65), 1, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [225698] = 17, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5140), 1, + aux_sym_while_phrase_token1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5144), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1715), 1, + sym__block_terminator, + STATE(3671), 1, + sym_while_phrase, + STATE(3892), 1, + sym_on_error_phrase, + STATE(3983), 1, + sym_on_quit_phrase, + STATE(4153), 1, + aux_sym_repeat_statement_repeat1, + STATE(4173), 1, + sym_on_stop_phrase, + STATE(5323), 1, + sym_repeat_tuning, + STATE(6110), 1, + sym_body, + STATE(3405), 2, + sym_comment, + sym_include, + [225751] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1910), 1, + sym__integer_literal, + ACTIONS(1914), 1, + anon_sym_LPAREN, + ACTIONS(5182), 1, + sym_identifier, + STATE(1320), 1, + sym_function_call, + STATE(1322), 1, + sym_object_access, + STATE(1412), 1, + sym__decimal_literal, + STATE(1455), 1, + sym__unary_minus_expressions, + STATE(5649), 1, + sym_new_expression, + STATE(3406), 2, + sym_comment, + sym_include, + STATE(1454), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [225798] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5157), 1, - aux_sym_variable_definition_token2, - STATE(3355), 2, + ACTIONS(4920), 1, + aux_sym_dataset_expression_token1, + STATE(3334), 1, + aux_sym_buffer_definition_repeat1, + STATE(3407), 2, sym_comment, sym_include, - ACTIONS(5155), 12, - aux_sym__block_terminator_token1, + STATE(3543), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(3073), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(3075), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - aux_sym_variable_definition_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [220714] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [225835] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(5093), 1, + ACTIONS(5065), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3675), 1, + STATE(3712), 1, aux_sym_for_phrase_repeat1, - STATE(3676), 1, + STATE(3713), 1, sym_where_clause, - STATE(3356), 2, + STATE(3408), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [220759] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [225880] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5101), 1, - aux_sym_while_phrase_token1, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(3607), 1, - aux_sym_do_block_repeat1, - STATE(3652), 1, - sym_while_phrase, - STATE(4282), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5907), 1, - sym_body, - STATE(3357), 2, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(5178), 1, + sym__terminator, + STATE(3452), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4235), 1, + sym_temp_table_tuning, + STATE(4258), 1, + sym_type_tuning, + STATE(4259), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(5132), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3409), 2, sym_comment, sym_include, - STATE(5561), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [220808] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [225929] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5145), 1, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - ACTIONS(5147), 1, + ACTIONS(5136), 1, aux_sym_index_definition_token1, - ACTIONS(5159), 1, + ACTIONS(5184), 1, sym__terminator, - STATE(3387), 1, + STATE(3391), 1, aux_sym_temp_table_definition_repeat1, - STATE(4082), 1, + STATE(4235), 1, sym_temp_table_tuning, - STATE(4271), 1, + STATE(4348), 1, sym_type_tuning, - STATE(4273), 1, + STATE(4350), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(5143), 2, + ACTIONS(5132), 2, aux_sym_variable_tuning_token8, aux_sym_temp_table_tuning_token1, - STATE(3358), 2, + STATE(3410), 2, sym_comment, sym_include, - STATE(5095), 2, + STATE(5184), 2, sym_field_definition, sym_index_definition, - [220857] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [225978] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5163), 1, - aux_sym_setter_token1, - ACTIONS(5166), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5169), 1, - aux_sym_widget_field_token1, - ACTIONS(5175), 1, - aux_sym_run_tuning_token7, - STATE(3669), 1, - sym_run_tuning, - ACTIONS(5161), 3, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(4622), 1, + aux_sym_where_clause_token1, + ACTIONS(5085), 1, sym__terminator, - anon_sym_LPAREN, - aux_sym_function_call_token1, - STATE(3359), 3, + STATE(3271), 1, + sym_using, + STATE(3454), 1, + sym_query_tuning, + STATE(3650), 1, + sym_where_clause, + STATE(3703), 1, + aux_sym_for_phrase_repeat1, + STATE(3411), 2, sym_comment, sym_include, - aux_sym_run_statement_repeat1, - ACTIONS(5172), 4, - aux_sym_run_tuning_token1, - aux_sym_run_tuning_token2, - aux_sym_run_tuning_token3, - aux_sym_run_tuning_token4, - [220898] = 8, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [226023] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5178), 1, + ACTIONS(5186), 1, sym_identifier, - STATE(3731), 2, - sym_scope_tuning, - sym_access_tuning, - STATE(3360), 3, + STATE(3400), 1, + aux_sym_buffer_definition_repeat1, + STATE(3412), 2, sym_comment, sym_include, - aux_sym_buffer_definition_repeat1, - ACTIONS(5180), 4, + STATE(3900), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(5172), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - ACTIONS(5183), 5, + ACTIONS(5174), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [220933] = 17, - ACTIONS(65), 1, + [226060] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - ACTIONS(5111), 1, - aux_sym_while_phrase_token1, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, - aux_sym_on_error_phrase_token1, - STATE(1943), 1, - sym__block_terminator, - STATE(3625), 1, - sym_while_phrase, - STATE(3720), 1, - sym_on_error_phrase, - STATE(3868), 1, - sym_on_quit_phrase, - STATE(4136), 1, - aux_sym_repeat_statement_repeat1, - STATE(4143), 1, - sym_on_stop_phrase, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5795), 1, - sym_body, - STATE(3361), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2012), 1, + sym__integer_literal, + ACTIONS(2016), 1, + anon_sym_LPAREN, + ACTIONS(5188), 1, + sym_identifier, + STATE(2600), 1, + sym_function_call, + STATE(2601), 1, + sym_object_access, + STATE(2977), 1, + sym__unary_minus_expressions, + STATE(2984), 1, + sym__decimal_literal, + STATE(5701), 1, + sym_new_expression, + STATE(3413), 2, sym_comment, sym_include, - [220986] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(2976), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [226107] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5145), 1, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - ACTIONS(5147), 1, + ACTIONS(5136), 1, aux_sym_index_definition_token1, - ACTIONS(5186), 1, + ACTIONS(5190), 1, sym__terminator, - STATE(3397), 1, + STATE(3927), 1, aux_sym_temp_table_definition_repeat1, - STATE(4082), 1, + STATE(4235), 1, sym_temp_table_tuning, - STATE(4446), 1, + STATE(4392), 1, aux_sym_temp_table_definition_repeat2, - STATE(4447), 1, + STATE(4393), 1, sym_type_tuning, - ACTIONS(5143), 2, + ACTIONS(5132), 2, aux_sym_variable_tuning_token8, aux_sym_temp_table_tuning_token1, - STATE(3362), 2, + STATE(3414), 2, sym_comment, sym_include, - STATE(5095), 2, + STATE(5184), 2, sym_field_definition, sym_index_definition, - [221035] = 13, - ACTIONS(65), 1, + [226156] = 13, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(4622), 1, + aux_sym_where_clause_token1, + ACTIONS(5089), 1, + sym__terminator, + STATE(3271), 1, + sym_using, + STATE(3454), 1, + sym_query_tuning, + STATE(3810), 1, + aux_sym_for_phrase_repeat1, + STATE(3813), 1, + sym_where_clause, + STATE(3415), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [226201] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5194), 1, + aux_sym_variable_definition_token2, + STATE(3416), 2, + sym_comment, + sym_include, + ACTIONS(5192), 12, + aux_sym__block_terminator_token1, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_variable_definition_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [226232] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(789), 1, + sym__integer_literal, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(5196), 1, + sym_identifier, + STATE(1052), 1, + sym_function_call, + STATE(1074), 1, + sym_object_access, + STATE(1124), 1, + sym__unary_minus_expressions, + STATE(1125), 1, + sym__decimal_literal, + STATE(5951), 1, + sym_new_expression, + STATE(3417), 2, + sym_comment, + sym_include, + STATE(1096), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [226279] = 5, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(3418), 2, + sym_comment, + sym_include, + ACTIONS(108), 13, + sym__namedot, + anon_sym_COLON, + anon_sym_DOT, + aux_sym__block_terminator_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [226308] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1750), 1, + sym__integer_literal, + ACTIONS(1754), 1, + anon_sym_LPAREN, + ACTIONS(5198), 1, + sym_identifier, + STATE(2472), 1, + sym_object_access, + STATE(2473), 1, + sym_function_call, + STATE(2748), 1, + sym__decimal_literal, + STATE(2763), 1, + sym__unary_minus_expressions, + STATE(5949), 1, + sym_new_expression, + STATE(3419), 2, + sym_comment, + sym_include, + STATE(2806), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [226355] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(5029), 1, + ACTIONS(5200), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3520), 1, - aux_sym_for_phrase_repeat1, - STATE(3521), 1, + STATE(3641), 1, sym_where_clause, - STATE(3363), 2, + STATE(3642), 1, + aux_sym_for_phrase_repeat1, + STATE(3420), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [221080] = 17, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [226400] = 17, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5111), 1, + ACTIONS(5140), 1, aux_sym_while_phrase_token1, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, + ACTIONS(5144), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5188), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(2037), 1, + STATE(1681), 1, sym__block_terminator, - STATE(3499), 1, + STATE(3738), 1, sym_while_phrase, - STATE(3735), 1, + STATE(3849), 1, sym_on_error_phrase, - STATE(3857), 1, + STATE(3926), 1, sym_on_quit_phrase, - STATE(4169), 1, + STATE(4051), 1, sym_on_stop_phrase, - STATE(4174), 1, + STATE(4149), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5437), 1, + STATE(6089), 1, sym_body, - STATE(3364), 2, + STATE(3421), 2, sym_comment, sym_include, - [221133] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [226453] = 15, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5192), 1, - aux_sym_variable_definition_token2, - STATE(3365), 2, - sym_comment, - sym_include, - ACTIONS(5190), 12, - aux_sym__block_terminator_token1, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_variable_definition_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [221164] = 15, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5145), 1, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - ACTIONS(5147), 1, + ACTIONS(5136), 1, aux_sym_index_definition_token1, - ACTIONS(5186), 1, + ACTIONS(5202), 1, sym__terminator, - STATE(3872), 1, + STATE(3927), 1, aux_sym_temp_table_definition_repeat1, - STATE(4082), 1, + STATE(4235), 1, sym_temp_table_tuning, - STATE(4446), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4447), 1, + STATE(4324), 1, sym_type_tuning, - ACTIONS(5143), 2, + STATE(4332), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(5132), 2, aux_sym_variable_tuning_token8, aux_sym_temp_table_tuning_token1, - STATE(3366), 2, + STATE(3422), 2, sym_comment, sym_include, - STATE(5095), 2, + STATE(5184), 2, sym_field_definition, sym_index_definition, - [221213] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5196), 1, - aux_sym_variable_definition_token2, - STATE(3367), 2, - sym_comment, - sym_include, - ACTIONS(5194), 12, - aux_sym__block_terminator_token1, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_variable_definition_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [221244] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5101), 1, - aux_sym_while_phrase_token1, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(3598), 1, - sym_while_phrase, - STATE(3599), 1, - aux_sym_do_block_repeat1, - STATE(4456), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5512), 1, - sym_body, - STATE(3368), 2, - sym_comment, - sym_include, - STATE(5970), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [221293] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [226502] = 13, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5200), 1, - aux_sym_variable_definition_token2, - STATE(3369), 2, - sym_comment, - sym_include, - ACTIONS(5198), 12, - aux_sym__block_terminator_token1, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_variable_definition_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [221324] = 13, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(5095), 1, + ACTIONS(5204), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3564), 1, + STATE(3732), 1, sym_where_clause, - STATE(3565), 1, + STATE(3792), 1, aux_sym_for_phrase_repeat1, - STATE(3370), 2, + STATE(3423), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [221369] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [226547] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(4617), 1, - aux_sym_where_clause_token1, - ACTIONS(5202), 1, - sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3707), 1, - aux_sym_for_phrase_repeat1, - STATE(3710), 1, - sym_where_clause, - STATE(3371), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [221414] = 17, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5111), 1, - aux_sym_while_phrase_token1, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(3647), 1, - sym_while_phrase, - STATE(3732), 1, - sym_on_error_phrase, - STATE(3849), 1, - sym_on_quit_phrase, - STATE(4145), 1, - sym_on_stop_phrase, - STATE(4148), 1, - aux_sym_repeat_statement_repeat1, - STATE(4577), 1, - sym__block_terminator, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5820), 1, - sym_body, - STATE(3372), 2, + ACTIONS(5208), 1, + aux_sym_variable_definition_token2, + STATE(3424), 2, sym_comment, sym_include, - [221467] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5206), 12, + aux_sym__block_terminator_token1, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_variable_definition_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [226578] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5208), 1, + ACTIONS(5212), 1, aux_sym_variable_definition_token2, - STATE(3373), 2, + STATE(3425), 2, sym_comment, sym_include, - ACTIONS(5206), 12, + ACTIONS(5210), 12, aux_sym__block_terminator_token1, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, @@ -237174,327 +242537,461 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, - [221498] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [226609] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5145), 1, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - ACTIONS(5147), 1, + ACTIONS(5136), 1, aux_sym_index_definition_token1, - ACTIONS(5210), 1, + ACTIONS(5214), 1, sym__terminator, - STATE(3388), 1, + STATE(3404), 1, aux_sym_temp_table_definition_repeat1, - STATE(4082), 1, + STATE(4235), 1, sym_temp_table_tuning, - STATE(4420), 1, + STATE(4269), 1, sym_type_tuning, - STATE(4428), 1, + STATE(4272), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(5143), 2, + ACTIONS(5132), 2, aux_sym_variable_tuning_token8, aux_sym_temp_table_tuning_token1, - STATE(3374), 2, + STATE(3426), 2, sym_comment, sym_include, - STATE(5095), 2, + STATE(5184), 2, sym_field_definition, sym_index_definition, - [221547] = 15, - ACTIONS(65), 1, + [226658] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5101), 1, - aux_sym_while_phrase_token1, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(3491), 1, - aux_sym_do_block_repeat1, - STATE(3493), 1, - sym_while_phrase, - STATE(4244), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5478), 1, - sym_body, - STATE(3375), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2108), 1, + sym__integer_literal, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(5216), 1, + sym_identifier, + STATE(2521), 1, + sym_object_access, + STATE(2543), 1, + sym_function_call, + STATE(2917), 1, + sym__unary_minus_expressions, + STATE(2966), 1, + sym__decimal_literal, + STATE(5738), 1, + sym_new_expression, + STATE(3427), 2, sym_comment, sym_include, - STATE(5480), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [221596] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(2924), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [226705] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5101), 1, + ACTIONS(5150), 1, aux_sym_while_phrase_token1, - ACTIONS(5103), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, + ACTIONS(5154), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, + ACTIONS(5156), 1, aux_sym_do_tuning_token1, - STATE(3633), 1, + STATE(3714), 1, aux_sym_do_block_repeat1, - STATE(3636), 1, + STATE(3716), 1, sym_while_phrase, - STATE(4262), 1, + STATE(4396), 1, sym_stop_after_phrase, - STATE(4810), 1, + STATE(4926), 1, sym_do_tuning, - STATE(5855), 1, + STATE(5523), 1, sym_body, - STATE(3376), 2, + STATE(3428), 2, sym_comment, sym_include, - STATE(5527), 3, + STATE(6001), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [221645] = 17, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [226754] = 17, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5111), 1, + ACTIONS(5140), 1, aux_sym_while_phrase_token1, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, + ACTIONS(5144), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5129), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(2001), 1, + STATE(2313), 1, sym__block_terminator, - STATE(3651), 1, + STATE(3648), 1, sym_while_phrase, - STATE(3717), 1, + STATE(3889), 1, sym_on_error_phrase, - STATE(3871), 1, + STATE(3985), 1, sym_on_quit_phrase, - STATE(4119), 1, - sym_on_stop_phrase, - STATE(4132), 1, + STATE(4158), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(4164), 1, + sym_on_stop_phrase, + STATE(5323), 1, sym_repeat_tuning, - STATE(5885), 1, + STATE(6104), 1, sym_body, - STATE(3377), 2, + STATE(3429), 2, sym_comment, sym_include, - [221698] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [226807] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(5065), 1, + ACTIONS(5108), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3593), 1, + STATE(3705), 1, sym_where_clause, - STATE(3594), 1, + STATE(3707), 1, aux_sym_for_phrase_repeat1, - STATE(3378), 2, + STATE(3430), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [221743] = 13, - ACTIONS(65), 1, + [226852] = 17, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + ACTIONS(5140), 1, + aux_sym_while_phrase_token1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5144), 1, + aux_sym_on_error_phrase_token1, + STATE(2412), 1, + sym__block_terminator, + STATE(3717), 1, + sym_while_phrase, + STATE(3874), 1, + sym_on_error_phrase, + STATE(3953), 1, + sym_on_quit_phrase, + STATE(4107), 1, + sym_on_stop_phrase, + STATE(4113), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5549), 1, + sym_body, + STATE(3431), 2, + sym_comment, + sym_include, + [226905] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(5212), 1, + ACTIONS(5220), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3696), 1, + STATE(3708), 1, sym_where_clause, - STATE(3698), 1, + STATE(3710), 1, aux_sym_for_phrase_repeat1, - STATE(3379), 2, + STATE(3432), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [221788] = 17, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [226950] = 17, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5111), 1, + ACTIONS(5140), 1, aux_sym_while_phrase_token1, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, + ACTIONS(5144), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5188), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(2430), 1, + STATE(2280), 1, sym__block_terminator, - STATE(3644), 1, + STATE(3726), 1, sym_while_phrase, - STATE(3750), 1, + STATE(3879), 1, sym_on_error_phrase, - STATE(3831), 1, + STATE(3961), 1, sym_on_quit_phrase, - STATE(4141), 1, + STATE(4125), 1, aux_sym_repeat_statement_repeat1, - STATE(4144), 1, + STATE(4128), 1, sym_on_stop_phrase, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5786), 1, + STATE(6015), 1, sym_body, - STATE(3380), 2, + STATE(3433), 2, sym_comment, sym_include, - [221841] = 17, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [227003] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5111), 1, + ACTIONS(5150), 1, aux_sym_while_phrase_token1, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5117), 1, - aux_sym__block_terminator_token1, - STATE(1722), 1, - sym__block_terminator, - STATE(3529), 1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(3654), 1, sym_while_phrase, - STATE(3770), 1, + STATE(3662), 1, + aux_sym_do_block_repeat1, + STATE(4358), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(6008), 1, + sym_body, + STATE(3434), 2, + sym_comment, + sym_include, + STATE(6078), 3, sym_on_error_phrase, - STATE(3814), 1, - sym_on_quit_phrase, - STATE(4108), 1, - aux_sym_repeat_statement_repeat1, - STATE(4110), 1, sym_on_stop_phrase, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5484), 1, - sym_body, - STATE(3381), 2, + sym_on_quit_phrase, + [227052] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(5222), 1, + sym__terminator, + STATE(3422), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4235), 1, + sym_temp_table_tuning, + STATE(4354), 1, + sym_type_tuning, + STATE(4355), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(5132), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3435), 2, sym_comment, sym_include, - [221894] = 15, - ACTIONS(65), 1, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [227101] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1970), 1, + sym__integer_literal, + ACTIONS(1974), 1, + anon_sym_LPAREN, + ACTIONS(5224), 1, + sym_identifier, + STATE(214), 1, + sym_function_call, + STATE(219), 1, + sym_object_access, + STATE(311), 1, + sym__decimal_literal, + STATE(319), 1, + sym__unary_minus_expressions, + STATE(6137), 1, + sym_new_expression, + STATE(3436), 2, + sym_comment, + sym_include, + STATE(318), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [227148] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5145), 1, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - ACTIONS(5147), 1, + ACTIONS(5136), 1, aux_sym_index_definition_token1, - ACTIONS(5214), 1, + ACTIONS(5222), 1, sym__terminator, - STATE(3419), 1, + STATE(3927), 1, aux_sym_temp_table_definition_repeat1, - STATE(4082), 1, + STATE(4235), 1, sym_temp_table_tuning, - STATE(4272), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4279), 1, + STATE(4354), 1, sym_type_tuning, - ACTIONS(5143), 2, + STATE(4355), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(5132), 2, aux_sym_variable_tuning_token8, aux_sym_temp_table_tuning_token1, - STATE(3382), 2, + STATE(3437), 2, sym_comment, sym_include, - STATE(5095), 2, + STATE(5184), 2, sym_field_definition, sym_index_definition, - [221943] = 6, - ACTIONS(65), 1, + [227197] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(5226), 1, + sym__terminator, + STATE(3927), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4235), 1, + sym_temp_table_tuning, + STATE(4441), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4448), 1, + sym_type_tuning, + ACTIONS(5132), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3438), 2, + sym_comment, + sym_include, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [227246] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5218), 1, + ACTIONS(5230), 1, aux_sym_variable_definition_token2, - STATE(3383), 2, + STATE(3439), 2, sym_comment, sym_include, - ACTIONS(5216), 12, + ACTIONS(5228), 12, aux_sym__block_terminator_token1, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, @@ -237507,77 +243004,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, - [221974] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [227277] = 13, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(820), 1, - sym__namecolon, - STATE(3418), 1, - aux_sym_object_access_repeat1, - STATE(3384), 2, - sym_comment, - sym_include, - ACTIONS(94), 11, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_type_tuning_token1, - aux_sym_type_tuning_token2, - anon_sym_EQ, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token2, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [222007] = 13, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(5220), 1, + ACTIONS(5118), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3574), 1, - sym_where_clause, - STATE(3578), 1, + STATE(3657), 1, aux_sym_for_phrase_repeat1, - STATE(3385), 2, + STATE(3659), 1, + sym_where_clause, + STATE(3440), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [222052] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [227322] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5224), 1, + ACTIONS(5234), 1, aux_sym_variable_definition_token2, - STATE(3386), 2, + STATE(3441), 2, sym_comment, sym_include, - ACTIONS(5222), 12, + ACTIONS(5232), 12, aux_sym__block_terminator_token1, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, @@ -237590,547 +243061,603 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, - [222083] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [227353] = 17, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(5226), 1, - sym__terminator, - STATE(3872), 1, - aux_sym_temp_table_definition_repeat1, - STATE(4082), 1, - sym_temp_table_tuning, - STATE(4322), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4323), 1, - sym_type_tuning, - ACTIONS(5143), 2, - aux_sym_variable_tuning_token8, - aux_sym_temp_table_tuning_token1, - STATE(3387), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5140), 1, + aux_sym_while_phrase_token1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5144), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1925), 1, + sym__block_terminator, + STATE(3754), 1, + sym_while_phrase, + STATE(3852), 1, + sym_on_error_phrase, + STATE(3930), 1, + sym_on_quit_phrase, + STATE(4047), 1, + sym_on_stop_phrase, + STATE(4048), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5512), 1, + sym_body, + STATE(3442), 2, sym_comment, sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [222132] = 15, - ACTIONS(65), 1, + [227406] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(5228), 1, - sym__terminator, - STATE(3872), 1, - aux_sym_temp_table_definition_repeat1, - STATE(4082), 1, - sym_temp_table_tuning, - STATE(4403), 1, - sym_type_tuning, - STATE(4407), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(5143), 2, - aux_sym_variable_tuning_token8, - aux_sym_temp_table_tuning_token1, - STATE(3388), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(869), 1, + sym__integer_literal, + ACTIONS(873), 1, + anon_sym_LPAREN, + ACTIONS(5238), 1, + sym_identifier, + STATE(353), 1, + sym_function_call, + STATE(674), 1, + sym_object_access, + STATE(1000), 1, + sym__decimal_literal, + STATE(1019), 1, + sym__unary_minus_expressions, + STATE(5822), 1, + sym_new_expression, + STATE(3443), 2, sym_comment, sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [222181] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(1016), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [227453] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5145), 1, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - ACTIONS(5147), 1, + ACTIONS(5136), 1, aux_sym_index_definition_token1, ACTIONS(5226), 1, sym__terminator, - STATE(3423), 1, + STATE(3466), 1, aux_sym_temp_table_definition_repeat1, - STATE(4082), 1, + STATE(4235), 1, sym_temp_table_tuning, - STATE(4322), 1, + STATE(4441), 1, aux_sym_temp_table_definition_repeat2, - STATE(4323), 1, - sym_type_tuning, - ACTIONS(5143), 2, - aux_sym_variable_tuning_token8, - aux_sym_temp_table_tuning_token1, - STATE(3389), 2, - sym_comment, - sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [222230] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(5228), 1, - sym__terminator, - STATE(3408), 1, - aux_sym_temp_table_definition_repeat1, - STATE(4082), 1, - sym_temp_table_tuning, - STATE(4403), 1, + STATE(4448), 1, sym_type_tuning, - STATE(4407), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(5143), 2, + ACTIONS(5132), 2, aux_sym_variable_tuning_token8, aux_sym_temp_table_tuning_token1, - STATE(3390), 2, + STATE(3444), 2, sym_comment, sym_include, - STATE(5095), 2, + STATE(5184), 2, sym_field_definition, sym_index_definition, - [222279] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [227502] = 13, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(5230), 1, - sym__terminator, - STATE(3416), 1, - aux_sym_temp_table_definition_repeat1, - STATE(4082), 1, - sym_temp_table_tuning, - STATE(4206), 1, - sym_type_tuning, - STATE(4209), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(5143), 2, - aux_sym_variable_tuning_token8, - aux_sym_temp_table_tuning_token1, - STATE(3391), 2, - sym_comment, - sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [222328] = 13, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(5232), 1, + ACTIONS(5240), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3554), 1, - sym_where_clause, - STATE(3556), 1, + STATE(3630), 1, aux_sym_for_phrase_repeat1, - STATE(3392), 2, + STATE(3631), 1, + sym_where_clause, + STATE(3445), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [222373] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [227547] = 13, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(5234), 1, - sym__terminator, - STATE(3404), 1, - aux_sym_temp_table_definition_repeat1, - STATE(4082), 1, - sym_temp_table_tuning, - STATE(4329), 1, - sym_type_tuning, - STATE(4331), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(5143), 2, - aux_sym_variable_tuning_token8, - aux_sym_temp_table_tuning_token1, - STATE(3393), 2, - sym_comment, - sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [222422] = 13, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(5097), 1, + ACTIONS(5114), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3637), 1, + STATE(3644), 1, aux_sym_for_phrase_repeat1, - STATE(3638), 1, + STATE(3747), 1, sym_where_clause, - STATE(3394), 2, + STATE(3446), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [222467] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [227592] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(5236), 1, + ACTIONS(5116), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3547), 1, - aux_sym_for_phrase_repeat1, - STATE(3549), 1, + STATE(3771), 1, sym_where_clause, - STATE(3395), 2, + STATE(3779), 1, + aux_sym_for_phrase_repeat1, + STATE(3447), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [222512] = 13, - ACTIONS(65), 1, + [227637] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5244), 1, + aux_sym_variable_definition_token2, + STATE(3448), 2, + sym_comment, + sym_include, + ACTIONS(5242), 12, + aux_sym__block_terminator_token1, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_variable_definition_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [227668] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5150), 1, + aux_sym_while_phrase_token1, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(3676), 1, + sym_while_phrase, + STATE(3677), 1, + aux_sym_do_block_repeat1, + STATE(4378), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(6115), 1, + sym_body, + STATE(3449), 2, + sym_comment, + sym_include, + STATE(6047), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [227717] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(5057), 1, + ACTIONS(5246), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3552), 1, - sym_where_clause, - STATE(3553), 1, + STATE(3775), 1, aux_sym_for_phrase_repeat1, - STATE(3396), 2, + STATE(3776), 1, + sym_where_clause, + STATE(3450), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [222557] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [227762] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5145), 1, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - ACTIONS(5147), 1, + ACTIONS(5136), 1, aux_sym_index_definition_token1, - ACTIONS(5238), 1, + ACTIONS(5248), 1, sym__terminator, - STATE(3872), 1, + STATE(3437), 1, aux_sym_temp_table_definition_repeat1, - STATE(4082), 1, + STATE(4235), 1, sym_temp_table_tuning, - STATE(4372), 1, + STATE(4352), 1, sym_type_tuning, - STATE(4401), 1, + STATE(4372), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(5143), 2, + ACTIONS(5132), 2, aux_sym_variable_tuning_token8, aux_sym_temp_table_tuning_token1, - STATE(3397), 2, + STATE(3451), 2, sym_comment, sym_include, - STATE(5095), 2, + STATE(5184), 2, sym_field_definition, sym_index_definition, - [222606] = 13, - ACTIONS(65), 1, + [227811] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(5250), 1, + sym__terminator, + STATE(3927), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4235), 1, + sym_temp_table_tuning, + STATE(4361), 1, + sym_type_tuning, + STATE(4419), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(5132), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3452), 2, + sym_comment, + sym_include, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [227860] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(5043), 1, + ACTIONS(5067), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3550), 1, + STATE(3777), 1, aux_sym_for_phrase_repeat1, - STATE(3551), 1, + STATE(3778), 1, sym_where_clause, - STATE(3398), 2, + STATE(3453), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [222651] = 17, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [227905] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5111), 1, - aux_sym_while_phrase_token1, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(3679), 1, - sym_while_phrase, - STATE(3782), 1, - sym_on_error_phrase, - STATE(3807), 1, - sym_on_quit_phrase, - STATE(3997), 1, - sym_on_stop_phrase, - STATE(3999), 1, - aux_sym_repeat_statement_repeat1, - STATE(4670), 1, - sym__block_terminator, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5902), 1, - sym_body, - STATE(3399), 2, + STATE(3454), 2, sym_comment, sym_include, - [222704] = 9, - ACTIONS(3), 1, + ACTIONS(5252), 13, + anon_sym_COLON, + sym__terminator, + anon_sym_COMMA, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [227934] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5240), 1, - sym_identifier, - STATE(3343), 1, - aux_sym_buffer_definition_repeat1, - STATE(3400), 2, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(5190), 1, + sym__terminator, + STATE(3481), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4235), 1, + sym_temp_table_tuning, + STATE(4392), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4393), 1, + sym_type_tuning, + ACTIONS(5132), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3455), 2, sym_comment, sym_include, - STATE(3731), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(5121), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - ACTIONS(5123), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - [222741] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [227983] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5101), 1, + ACTIONS(5150), 1, aux_sym_while_phrase_token1, - ACTIONS(5103), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, + ACTIONS(5154), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, + ACTIONS(5156), 1, aux_sym_do_tuning_token1, - STATE(3537), 1, + STATE(3581), 1, aux_sym_do_block_repeat1, - STATE(3646), 1, + STATE(3593), 1, sym_while_phrase, - STATE(4409), 1, + STATE(4414), 1, sym_stop_after_phrase, - STATE(4810), 1, + STATE(4926), 1, sym_do_tuning, - STATE(5837), 1, + STATE(6096), 1, sym_body, - STATE(3401), 2, + STATE(3456), 2, sym_comment, sym_include, - STATE(5838), 3, + STATE(5631), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [222790] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [228032] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(5242), 1, + ACTIONS(5254), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3664), 1, - aux_sym_for_phrase_repeat1, - STATE(3668), 1, + STATE(3656), 1, sym_where_clause, - STATE(3402), 2, + STATE(3837), 1, + aux_sym_for_phrase_repeat1, + STATE(3457), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [222835] = 6, - ACTIONS(65), 1, + [228077] = 17, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5140), 1, + aux_sym_while_phrase_token1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5144), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1955), 1, + sym__block_terminator, + STATE(3752), 1, + sym_while_phrase, + STATE(3864), 1, + sym_on_error_phrase, + STATE(3987), 1, + sym_on_quit_phrase, + STATE(4143), 1, + aux_sym_repeat_statement_repeat1, + STATE(4145), 1, + sym_on_stop_phrase, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5565), 1, + sym_body, + STATE(3458), 2, + sym_comment, + sym_include, + [228130] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5150), 1, + aux_sym_while_phrase_token1, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(3571), 1, + aux_sym_do_block_repeat1, + STATE(3591), 1, + sym_while_phrase, + STATE(4420), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(5980), 1, + sym_body, + STATE(3459), 2, + sym_comment, + sym_include, + STATE(5665), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [228179] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5246), 1, + ACTIONS(5258), 1, aux_sym_variable_definition_token2, - STATE(3403), 2, + STATE(3460), 2, sym_comment, sym_include, - ACTIONS(5244), 12, + ACTIONS(5256), 12, aux_sym__block_terminator_token1, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, @@ -238143,209 +243670,220 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, - [222866] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [228210] = 17, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(5248), 1, - sym__terminator, - STATE(3872), 1, - aux_sym_temp_table_definition_repeat1, - STATE(4082), 1, - sym_temp_table_tuning, - STATE(4378), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4383), 1, - sym_type_tuning, - ACTIONS(5143), 2, - aux_sym_variable_tuning_token8, - aux_sym_temp_table_tuning_token1, - STATE(3404), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5140), 1, + aux_sym_while_phrase_token1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5144), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(3574), 1, + sym_while_phrase, + STATE(3919), 1, + sym_on_error_phrase, + STATE(3924), 1, + sym_on_quit_phrase, + STATE(4249), 1, + sym_on_stop_phrase, + STATE(4253), 1, + aux_sym_repeat_statement_repeat1, + STATE(4780), 1, + sym__block_terminator, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5726), 1, + sym_body, + STATE(3461), 2, sym_comment, sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [222915] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [228263] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(5071), 1, + ACTIONS(5260), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3575), 1, + STATE(3758), 1, aux_sym_for_phrase_repeat1, - STATE(3576), 1, + STATE(3759), 1, sym_where_clause, - STATE(3405), 2, + STATE(3462), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [222960] = 5, - ACTIONS(65), 1, + [228308] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3406), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2186), 1, + sym__integer_literal, + ACTIONS(2190), 1, + anon_sym_LPAREN, + ACTIONS(5262), 1, + sym_identifier, + STATE(2538), 1, + sym_function_call, + STATE(2539), 1, + sym_object_access, + STATE(2903), 1, + sym__unary_minus_expressions, + STATE(2958), 1, + sym__decimal_literal, + STATE(5929), 1, + sym_new_expression, + STATE(3463), 2, sym_comment, sym_include, - ACTIONS(5250), 13, - anon_sym_COLON, - sym__terminator, - anon_sym_COMMA, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [222989] = 13, - ACTIONS(65), 1, + STATE(2902), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [228355] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(5264), 1, + sym__terminator, + STATE(3927), 1, + aux_sym_temp_table_definition_repeat1, + STATE(4235), 1, + sym_temp_table_tuning, + STATE(4450), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4458), 1, + sym_type_tuning, + ACTIONS(5132), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3464), 2, + sym_comment, + sym_include, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [228404] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(5045), 1, + ACTIONS(5122), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3693), 1, + STATE(3664), 1, aux_sym_for_phrase_repeat1, - STATE(3694), 1, + STATE(3667), 1, sym_where_clause, - STATE(3407), 2, + STATE(3465), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [223034] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [228449] = 15, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(5252), 1, - sym__terminator, - STATE(3872), 1, - aux_sym_temp_table_definition_repeat1, - STATE(4082), 1, - sym_temp_table_tuning, - STATE(4342), 1, - sym_type_tuning, - STATE(4356), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(5143), 2, - aux_sym_variable_tuning_token8, - aux_sym_temp_table_tuning_token1, - STATE(3408), 2, - sym_comment, - sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [223083] = 15, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5145), 1, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - ACTIONS(5147), 1, + ACTIONS(5136), 1, aux_sym_index_definition_token1, - ACTIONS(5254), 1, + ACTIONS(5266), 1, sym__terminator, - STATE(3366), 1, + STATE(3927), 1, aux_sym_temp_table_definition_repeat1, - STATE(4082), 1, + STATE(4235), 1, sym_temp_table_tuning, - STATE(4426), 1, + STATE(4511), 1, sym_type_tuning, - STATE(4427), 1, + STATE(4520), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(5143), 2, + ACTIONS(5132), 2, aux_sym_variable_tuning_token8, aux_sym_temp_table_tuning_token1, - STATE(3409), 2, + STATE(3466), 2, sym_comment, sym_include, - STATE(5095), 2, + STATE(5184), 2, sym_field_definition, sym_index_definition, - [223132] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [228498] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5258), 1, + ACTIONS(5270), 1, aux_sym_variable_definition_token2, - STATE(3410), 2, + STATE(3467), 2, sym_comment, sym_include, - ACTIONS(5256), 12, + ACTIONS(5268), 12, aux_sym__block_terminator_token1, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, @@ -238358,119 +243896,134 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, - [223163] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [228529] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(5248), 1, - sym__terminator, - STATE(3351), 1, - aux_sym_temp_table_definition_repeat1, - STATE(4082), 1, - sym_temp_table_tuning, - STATE(4378), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4383), 1, - sym_type_tuning, - ACTIONS(5143), 2, - aux_sym_variable_tuning_token8, - aux_sym_temp_table_tuning_token1, - STATE(3411), 2, + ACTIONS(5274), 1, + aux_sym_variable_tuning_token2, + STATE(3468), 2, sym_comment, sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [223212] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5272), 12, + sym__terminator, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_getter_token1, + aux_sym_setter_token1, + [228560] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(5260), 1, + ACTIONS(5276), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3691), 1, + STATE(3751), 1, aux_sym_for_phrase_repeat1, - STATE(3692), 1, + STATE(3756), 1, sym_where_clause, - STATE(3412), 2, + STATE(3469), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [223257] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [228605] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5101), 1, - aux_sym_while_phrase_token1, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(3500), 1, - aux_sym_do_block_repeat1, - STATE(3501), 1, - sym_while_phrase, - STATE(4208), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5924), 1, - sym_body, - STATE(3413), 2, + ACTIONS(5280), 1, + aux_sym_variable_definition_token2, + STATE(3470), 2, sym_comment, sym_include, - STATE(5851), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [223306] = 6, - ACTIONS(65), 1, + ACTIONS(5278), 12, + aux_sym__block_terminator_token1, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_variable_definition_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [228636] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(949), 1, + sym__integer_literal, + ACTIONS(953), 1, + anon_sym_LPAREN, + ACTIONS(5282), 1, + sym_identifier, + STATE(260), 1, + sym_function_call, + STATE(274), 1, + sym_object_access, + STATE(363), 1, + sym__decimal_literal, + STATE(379), 1, + sym__unary_minus_expressions, + STATE(6106), 1, + sym_new_expression, + STATE(3471), 2, + sym_comment, + sym_include, + STATE(380), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [228683] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5264), 1, + ACTIONS(5286), 1, aux_sym_variable_definition_token2, - STATE(3414), 2, + STATE(3472), 2, sym_comment, sym_include, - ACTIONS(5262), 12, + ACTIONS(5284), 12, aux_sym__block_terminator_token1, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, @@ -238483,19 +244036,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, - [223337] = 6, - ACTIONS(65), 1, + [228714] = 13, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(4622), 1, + aux_sym_where_clause_token1, + ACTIONS(5288), 1, + sym__terminator, + STATE(3271), 1, + sym_using, + STATE(3454), 1, + sym_query_tuning, + STATE(3825), 1, + aux_sym_for_phrase_repeat1, + STATE(3826), 1, + sym_where_clause, + STATE(3473), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [228759] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2554), 1, + ACTIONS(5292), 1, aux_sym_variable_tuning_token2, - STATE(3415), 2, + STATE(3474), 2, sym_comment, sym_include, - ACTIONS(2552), 12, + ACTIONS(5290), 12, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token6, @@ -238508,210 +244093,365 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_tuning_token5, aux_sym_getter_token1, aux_sym_setter_token1, - [223368] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [228790] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(5214), 1, - sym__terminator, - STATE(3872), 1, - aux_sym_temp_table_definition_repeat1, - STATE(4082), 1, - sym_temp_table_tuning, - STATE(4272), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4279), 1, - sym_type_tuning, - ACTIONS(5143), 2, - aux_sym_variable_tuning_token8, - aux_sym_temp_table_tuning_token1, - STATE(3416), 2, + ACTIONS(5296), 1, + aux_sym_variable_definition_token2, + STATE(3475), 2, sym_comment, sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [223417] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5294), 12, + aux_sym__block_terminator_token1, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_variable_definition_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [228821] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(4617), 1, + ACTIONS(4622), 1, aux_sym_where_clause_token1, - ACTIONS(5266), 1, + ACTIONS(5104), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3573), 1, + STATE(3763), 1, aux_sym_for_phrase_repeat1, - STATE(3577), 1, + STATE(3764), 1, sym_where_clause, - STATE(3417), 2, + STATE(3476), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [223462] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [228866] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5268), 1, - sym__namecolon, - STATE(3418), 3, + ACTIONS(5300), 1, + aux_sym_setter_token1, + ACTIONS(5303), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5306), 1, + aux_sym_widget_field_token1, + ACTIONS(5312), 1, + aux_sym_run_tuning_token7, + STATE(3613), 1, + sym_run_tuning, + ACTIONS(5298), 3, + sym__terminator, + anon_sym_LPAREN, + aux_sym_function_call_token1, + STATE(3477), 3, sym_comment, sym_include, - aux_sym_object_access_repeat1, - ACTIONS(87), 11, - anon_sym_COLON, - anon_sym_COMMA, + aux_sym_run_statement_repeat1, + ACTIONS(5309), 4, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + [228907] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(2264), 1, + sym__integer_literal, + ACTIONS(2268), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_type_tuning_token1, - aux_sym_type_tuning_token2, - anon_sym_EQ, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token2, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [223493] = 15, - ACTIONS(65), 1, + ACTIONS(5315), 1, + sym_identifier, + STATE(2502), 1, + sym_function_call, + STATE(2504), 1, + sym_object_access, + STATE(2831), 1, + sym__unary_minus_expressions, + STATE(2886), 1, + sym__decimal_literal, + STATE(5913), 1, + sym_new_expression, + STATE(3478), 2, + sym_comment, + sym_include, + STATE(2830), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [228954] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5319), 1, + aux_sym_variable_definition_token2, + STATE(3479), 2, + sym_comment, + sym_include, + ACTIONS(5317), 12, + aux_sym__block_terminator_token1, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_variable_definition_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [228985] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5150), 1, + aux_sym_while_phrase_token1, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(3584), 1, + sym_while_phrase, + STATE(3806), 1, + aux_sym_do_block_repeat1, + STATE(4371), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(6018), 1, + sym_body, + STATE(3480), 2, + sym_comment, + sym_include, + STATE(6017), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [229034] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5145), 1, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - ACTIONS(5147), 1, + ACTIONS(5136), 1, aux_sym_index_definition_token1, - ACTIONS(5271), 1, + ACTIONS(5321), 1, sym__terminator, - STATE(3872), 1, + STATE(3927), 1, aux_sym_temp_table_definition_repeat1, - STATE(4082), 1, + STATE(4235), 1, sym_temp_table_tuning, - STATE(4352), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4362), 1, + STATE(4517), 1, sym_type_tuning, - ACTIONS(5143), 2, + STATE(4524), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(5132), 2, aux_sym_variable_tuning_token8, aux_sym_temp_table_tuning_token1, - STATE(3419), 2, + STATE(3481), 2, sym_comment, sym_include, - STATE(5095), 2, + STATE(5184), 2, sym_field_definition, sym_index_definition, - [223542] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [229083] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(4617), 1, - aux_sym_where_clause_token1, - ACTIONS(5273), 1, - sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3530), 1, - sym_where_clause, - STATE(3531), 1, - aux_sym_for_phrase_repeat1, - STATE(3420), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5150), 1, + aux_sym_while_phrase_token1, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(3799), 1, + sym_while_phrase, + STATE(3805), 1, + aux_sym_do_block_repeat1, + STATE(4507), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(5499), 1, + sym_body, + STATE(3482), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [223587] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5874), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [229132] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5101), 1, + ACTIONS(5150), 1, aux_sym_while_phrase_token1, - ACTIONS(5103), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, + ACTIONS(5154), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, + ACTIONS(5156), 1, aux_sym_do_tuning_token1, - STATE(3541), 1, - aux_sym_do_block_repeat1, - STATE(3566), 1, + STATE(3818), 1, sym_while_phrase, - STATE(4211), 1, + STATE(3822), 1, + aux_sym_do_block_repeat1, + STATE(4499), 1, sym_stop_after_phrase, - STATE(4810), 1, + STATE(4926), 1, sym_do_tuning, - STATE(5834), 1, + STATE(5562), 1, sym_body, - STATE(3421), 2, + STATE(3483), 2, sym_comment, sym_include, - STATE(5887), 3, + STATE(5841), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [223636] = 6, - ACTIONS(65), 1, + [229181] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(1848), 1, + sym__integer_literal, + ACTIONS(1852), 1, + anon_sym_LPAREN, + ACTIONS(5323), 1, + sym_identifier, + STATE(2494), 1, + sym_function_call, + STATE(2496), 1, + sym_object_access, + STATE(2691), 1, + sym__decimal_literal, + STATE(2833), 1, + sym__unary_minus_expressions, + STATE(6075), 1, + sym_new_expression, + STATE(3484), 2, + sym_comment, + sym_include, + STATE(2824), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_member_access, + [229228] = 13, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(4622), 1, + aux_sym_where_clause_token1, + ACTIONS(5325), 1, + sym__terminator, + STATE(3271), 1, + sym_using, + STATE(3454), 1, + sym_query_tuning, + STATE(3828), 1, + aux_sym_for_phrase_repeat1, + STATE(3838), 1, + sym_where_clause, + STATE(3485), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [229273] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5277), 1, + ACTIONS(5329), 1, aux_sym_variable_definition_token2, - STATE(3422), 2, + STATE(3486), 2, sym_comment, sym_include, - ACTIONS(5275), 12, + ACTIONS(5327), 12, aux_sym__block_terminator_token1, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, @@ -238724,2355 +244464,3739 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, - [223667] = 15, - ACTIONS(65), 1, + [229304] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5333), 1, + sym__terminator, + ACTIONS(5335), 1, + anon_sym_LBRACK, + STATE(3834), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3487), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [229350] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(5279), 1, + ACTIONS(5337), 1, sym__terminator, - STATE(3872), 1, - aux_sym_temp_table_definition_repeat1, - STATE(4082), 1, - sym_temp_table_tuning, - STATE(4373), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4381), 1, - sym_type_tuning, - ACTIONS(5143), 2, - aux_sym_variable_tuning_token8, - aux_sym_temp_table_tuning_token1, - STATE(3423), 2, + ACTIONS(5345), 1, + aux_sym_input_stream_tuning_token9, + STATE(3914), 1, + sym_input_stream_tuning, + ACTIONS(5339), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(3488), 3, sym_comment, sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [223716] = 16, - ACTIONS(65), 1, + aux_sym_input_stream_statement_repeat1, + ACTIONS(5342), 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, + [229386] = 16, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(4142), 1, + sym_on_error_phrase, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4477), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4905), 1, + aux_sym_for_statement_repeat1, + STATE(4908), 1, + sym_on_stop_phrase, + STATE(5750), 1, + sym_body, + STATE(3489), 2, + sym_comment, + sym_include, + [229436] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4020), 1, + STATE(4208), 1, sym_on_error_phrase, - STATE(4036), 1, + STATE(4240), 1, aux_sym_for_phrase_repeat2, - STATE(4440), 1, + STATE(4480), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4739), 1, + STATE(4911), 1, aux_sym_for_statement_repeat1, - STATE(4742), 1, + STATE(4913), 1, sym_on_stop_phrase, - STATE(5978), 1, + STATE(5749), 1, sym_body, - STATE(3424), 2, + STATE(3490), 2, + sym_comment, + sym_include, + [229486] = 16, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(4168), 1, + sym_on_error_phrase, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4473), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4898), 1, + aux_sym_for_statement_repeat1, + STATE(4901), 1, + sym_on_stop_phrase, + STATE(5762), 1, + sym_body, + STATE(3491), 2, sym_comment, sym_include, - [223766] = 16, - ACTIONS(65), 1, + [229536] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(3492), 2, + sym_comment, + sym_include, + ACTIONS(4418), 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_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_event_definition_token1, + [229564] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, + STATE(4240), 1, aux_sym_for_phrase_repeat2, - STATE(4164), 1, + STATE(4245), 1, sym_on_error_phrase, - STATE(4332), 1, + STATE(4453), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(5082), 1, - aux_sym_for_statement_repeat1, - STATE(5088), 1, + STATE(4860), 1, sym_on_stop_phrase, - STATE(5926), 1, + STATE(4861), 1, + aux_sym_for_statement_repeat1, + STATE(5815), 1, sym_body, - STATE(3425), 2, + STATE(3493), 2, sym_comment, sym_include, - [223816] = 10, - ACTIONS(65), 1, + [229614] = 16, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(4139), 1, + sym_on_error_phrase, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4483), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4941), 1, + aux_sym_for_statement_repeat1, + STATE(4948), 1, + sym_on_stop_phrase, + STATE(5742), 1, + sym_body, + STATE(3494), 2, + sym_comment, + sym_include, + [229664] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2565), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(5281), 1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(4119), 1, + sym_on_error_phrase, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4405), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(5148), 1, + sym_on_stop_phrase, + STATE(5149), 1, + aux_sym_for_statement_repeat1, + STATE(5882), 1, + sym_body, + STATE(3495), 2, + sym_comment, + sym_include, + [229714] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5348), 1, sym__terminator, - STATE(3481), 1, - aux_sym_input_stream_statement_repeat1, - STATE(3760), 1, - sym_input_stream_tuning, - ACTIONS(2561), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(3426), 2, + ACTIONS(5350), 1, + anon_sym_LBRACK, + STATE(3622), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3496), 2, sym_comment, sym_include, - ACTIONS(2563), 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, - [223854] = 16, - ACTIONS(65), 1, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [229760] = 16, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(4228), 1, + sym_on_error_phrase, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4440), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4856), 1, + sym_on_stop_phrase, + STATE(4858), 1, + aux_sym_for_statement_repeat1, + STATE(5828), 1, + sym_body, + STATE(3497), 2, + sym_comment, + sym_include, + [229810] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, + STATE(4087), 1, + sym_on_error_phrase, + STATE(4240), 1, aux_sym_for_phrase_repeat2, - STATE(4053), 1, + STATE(4464), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4865), 1, + sym_on_stop_phrase, + STATE(4866), 1, + aux_sym_for_statement_repeat1, + STATE(5970), 1, + sym_body, + STATE(3498), 2, + sym_comment, + sym_include, + [229860] = 16, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(4199), 1, sym_on_error_phrase, - STATE(4301), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4462), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4653), 1, + STATE(4892), 1, + aux_sym_for_statement_repeat1, + STATE(4894), 1, sym_on_stop_phrase, - STATE(4654), 1, + STATE(5770), 1, + sym_body, + STATE(3499), 2, + sym_comment, + sym_include, + [229910] = 16, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(4124), 1, + sym_on_error_phrase, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4382), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4825), 1, aux_sym_for_statement_repeat1, - STATE(5746), 1, + STATE(4829), 1, + sym_on_stop_phrase, + STATE(5801), 1, sym_body, - STATE(3427), 2, + STATE(3500), 2, sym_comment, sym_include, - [223904] = 10, - ACTIONS(65), 1, + [229960] = 16, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(4166), 1, + sym_on_error_phrase, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4394), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4868), 1, + aux_sym_for_statement_repeat1, + STATE(4874), 1, + sym_on_stop_phrase, + STATE(5904), 1, + sym_body, + STATE(3501), 2, + sym_comment, + sym_include, + [230010] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2565), 1, + ACTIONS(2584), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(5283), 1, + ACTIONS(5352), 1, sym__terminator, - STATE(3481), 1, + STATE(3488), 1, aux_sym_input_stream_statement_repeat1, - STATE(3760), 1, + STATE(3914), 1, sym_input_stream_tuning, - ACTIONS(2561), 2, + ACTIONS(2580), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(3428), 2, + STATE(3502), 2, sym_comment, sym_include, - ACTIONS(2563), 6, + ACTIONS(2582), 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, - [223942] = 16, - ACTIONS(65), 1, + [230048] = 16, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(4066), 1, + sym_on_error_phrase, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4514), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(5074), 1, + sym_on_stop_phrase, + STATE(5079), 1, + aux_sym_for_statement_repeat1, + STATE(5464), 1, + sym_body, + STATE(3503), 2, + sym_comment, + sym_include, + [230098] = 16, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(4131), 1, + sym_on_error_phrase, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4459), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4885), 1, + aux_sym_for_statement_repeat1, + STATE(4887), 1, + sym_on_stop_phrase, + STATE(5794), 1, + sym_body, + STATE(3504), 2, + sym_comment, + sym_include, + [230148] = 16, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(4216), 1, + sym_on_error_phrase, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4425), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4853), 1, + sym_on_stop_phrase, + STATE(4854), 1, + aux_sym_for_statement_repeat1, + STATE(5856), 1, + sym_body, + STATE(3505), 2, + sym_comment, + sym_include, + [230198] = 5, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(3506), 2, + sym_comment, + sym_include, + ACTIONS(138), 12, + sym__namecolon, + sym__terminator, + anon_sym_LPAREN, + aux_sym_function_call_token1, + aux_sym_setter_token1, + aux_sym_on_error_phrase_token1, + aux_sym_widget_field_token1, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + aux_sym_run_tuning_token7, + [230226] = 16, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(4059), 1, + sym_on_error_phrase, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4509), 1, + sym_on_quit_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(5102), 1, + aux_sym_for_statement_repeat1, + STATE(5105), 1, + sym_on_stop_phrase, + STATE(5712), 1, + sym_body, + STATE(3507), 2, + sym_comment, + sym_include, + [230276] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4067), 1, + STATE(4151), 1, sym_on_error_phrase, - STATE(4315), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4523), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4999), 1, + STATE(4869), 1, aux_sym_for_statement_repeat1, - STATE(5000), 1, + STATE(4870), 1, sym_on_stop_phrase, - STATE(5956), 1, + STATE(5764), 1, sym_body, - STATE(3429), 2, + STATE(3508), 2, sym_comment, sym_include, - [223992] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [230326] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2565), 1, + ACTIONS(2584), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(5285), 1, + ACTIONS(5354), 1, sym__terminator, - STATE(3481), 1, + STATE(3488), 1, aux_sym_input_stream_statement_repeat1, - STATE(3760), 1, + STATE(3914), 1, sym_input_stream_tuning, - ACTIONS(2561), 2, + ACTIONS(2580), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(3430), 2, + STATE(3509), 2, sym_comment, sym_include, - ACTIONS(2563), 6, + ACTIONS(2582), 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, - [224030] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [230364] = 10, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4071), 1, - sym_on_error_phrase, - STATE(4242), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4692), 1, - sym_on_stop_phrase, - STATE(4695), 1, - aux_sym_for_statement_repeat1, - STATE(5489), 1, - sym_body, - STATE(3431), 2, - sym_comment, - sym_include, - [224080] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2565), 1, + ACTIONS(2584), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(5287), 1, + ACTIONS(5356), 1, sym__terminator, - STATE(3481), 1, + STATE(3488), 1, aux_sym_input_stream_statement_repeat1, - STATE(3760), 1, + STATE(3914), 1, sym_input_stream_tuning, - ACTIONS(2561), 2, + ACTIONS(2580), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(3432), 2, + STATE(3510), 2, sym_comment, sym_include, - ACTIONS(2563), 6, + ACTIONS(2582), 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, - [224118] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [230402] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4025), 1, - sym_on_error_phrase, - STATE(4036), 1, + STATE(4240), 1, aux_sym_for_phrase_repeat2, - STATE(4414), 1, + STATE(4252), 1, + sym_on_error_phrase, + STATE(4449), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4722), 1, - aux_sym_for_statement_repeat1, - STATE(4724), 1, + STATE(4857), 1, sym_on_stop_phrase, - STATE(5983), 1, + STATE(4862), 1, + aux_sym_for_statement_repeat1, + STATE(5831), 1, sym_body, - STATE(3433), 2, + STATE(3511), 2, sym_comment, sym_include, - [224168] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [230452] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(3991), 1, - sym_on_error_phrase, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4400), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4922), 1, - sym_on_stop_phrase, - STATE(4923), 1, - aux_sym_for_statement_repeat1, - STATE(5558), 1, - sym_body, - STATE(3434), 2, + ACTIONS(4640), 1, + sym__namecolon, + STATE(3522), 1, + aux_sym_object_access_repeat1, + STATE(3512), 2, sym_comment, sym_include, - [224218] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(89), 10, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [230484] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3987), 1, + STATE(4063), 1, sym_on_error_phrase, - STATE(4036), 1, + STATE(4240), 1, aux_sym_for_phrase_repeat2, - STATE(4339), 1, + STATE(4529), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(5074), 1, + STATE(4704), 1, sym_on_stop_phrase, - STATE(5076), 1, + STATE(4757), 1, aux_sym_for_statement_repeat1, - STATE(5894), 1, + STATE(5544), 1, sym_body, - STATE(3435), 2, + STATE(3513), 2, sym_comment, sym_include, - [224268] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [230534] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4057), 1, + STATE(4064), 1, sym_on_error_phrase, - STATE(4283), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4508), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4637), 1, + STATE(5111), 1, sym_on_stop_phrase, - STATE(4638), 1, + STATE(5112), 1, aux_sym_for_statement_repeat1, - STATE(5751), 1, + STATE(5760), 1, sym_body, - STATE(3436), 2, + STATE(3514), 2, sym_comment, sym_include, - [224318] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [230584] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4172), 1, + STATE(4069), 1, sym_on_error_phrase, - STATE(4276), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4495), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4821), 1, + STATE(5124), 1, aux_sym_for_statement_repeat1, - STATE(4842), 1, + STATE(5126), 1, sym_on_stop_phrase, - STATE(5534), 1, + STATE(5772), 1, sym_body, - STATE(3437), 2, + STATE(3515), 2, sym_comment, sym_include, - [224368] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [230634] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4086), 1, + STATE(4114), 1, sym_on_error_phrase, - STATE(4309), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4418), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4976), 1, + STATE(5152), 1, sym_on_stop_phrase, - STATE(4977), 1, + STATE(5156), 1, aux_sym_for_statement_repeat1, - STATE(5987), 1, + STATE(5876), 1, sym_body, - STATE(3438), 2, + STATE(3516), 2, sym_comment, sym_include, - [224418] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [230684] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4102), 1, + STATE(4192), 1, sym_on_error_phrase, - STATE(4354), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4307), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4683), 1, - aux_sym_for_statement_repeat1, - STATE(4687), 1, + STATE(4784), 1, sym_on_stop_phrase, - STATE(5996), 1, + STATE(4788), 1, + aux_sym_for_statement_repeat1, + STATE(5713), 1, sym_body, - STATE(3439), 2, + STATE(3517), 2, sym_comment, sym_include, - [224468] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [230734] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4076), 1, + STATE(4085), 1, sym_on_error_phrase, - STATE(4312), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4452), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4988), 1, - aux_sym_for_statement_repeat1, - STATE(4989), 1, + STATE(5170), 1, sym_on_stop_phrase, - STATE(5960), 1, + STATE(5171), 1, + aux_sym_for_statement_repeat1, + STATE(5847), 1, sym_body, - STATE(3440), 2, + STATE(3518), 2, sym_comment, sym_include, - [224518] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [230784] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4120), 1, + STATE(4197), 1, sym_on_error_phrase, - STATE(4412), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4415), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4887), 1, + STATE(4849), 1, sym_on_stop_phrase, - STATE(4890), 1, + STATE(4850), 1, aux_sym_for_statement_repeat1, - STATE(5464), 1, + STATE(5864), 1, sym_body, - STATE(3441), 2, + STATE(3519), 2, sym_comment, sym_include, - [224568] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [230834] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, + STATE(4240), 1, aux_sym_for_phrase_repeat2, - STATE(4041), 1, + STATE(4243), 1, sym_on_error_phrase, - STATE(4328), 1, + STATE(4256), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(5073), 1, + STATE(4841), 1, aux_sym_for_statement_repeat1, - STATE(5079), 1, + STATE(4851), 1, sym_on_stop_phrase, - STATE(5928), 1, + STATE(5865), 1, sym_body, - STATE(3442), 2, + STATE(3520), 2, sym_comment, sym_include, - [224618] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [230884] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4158), 1, + STATE(4133), 1, sym_on_error_phrase, - STATE(4394), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4255), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4949), 1, - aux_sym_for_statement_repeat1, - STATE(4953), 1, + STATE(4879), 1, sym_on_stop_phrase, - STATE(5632), 1, + STATE(4880), 1, + aux_sym_for_statement_repeat1, + STATE(5683), 1, sym_body, - STATE(3443), 2, + STATE(3521), 2, sym_comment, sym_include, - [224668] = 16, - ACTIONS(65), 1, + [230934] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5358), 1, + sym__namecolon, + STATE(3522), 3, + sym_comment, + sym_include, + aux_sym_object_access_repeat1, + ACTIONS(93), 10, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [230964] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4050), 1, + STATE(4096), 1, sym_on_error_phrase, - STATE(4338), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4434), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4667), 1, + STATE(5162), 1, sym_on_stop_phrase, - STATE(4668), 1, + STATE(5163), 1, aux_sym_for_statement_repeat1, - STATE(5737), 1, + STATE(5857), 1, sym_body, - STATE(3444), 2, + STATE(3523), 2, sym_comment, sym_include, - [224718] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [231014] = 16, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2565), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(5289), 1, - sym__terminator, - STATE(3481), 1, - aux_sym_input_stream_statement_repeat1, - STATE(3760), 1, - sym_input_stream_tuning, - ACTIONS(2561), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(3445), 2, - sym_comment, - sym_include, - ACTIONS(2563), 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, - [224756] = 16, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4044), 1, + STATE(4110), 1, sym_on_error_phrase, - STATE(4343), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4432), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4673), 1, + STATE(5158), 1, sym_on_stop_phrase, - STATE(4674), 1, + STATE(5159), 1, aux_sym_for_statement_repeat1, - STATE(5723), 1, + STATE(5862), 1, sym_body, - STATE(3446), 2, + STATE(3524), 2, sym_comment, sym_include, - [224806] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [231064] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4048), 1, + STATE(4148), 1, sym_on_error_phrase, - STATE(4326), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4481), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(5050), 1, - aux_sym_for_statement_repeat1, - STATE(5054), 1, + STATE(4847), 1, sym_on_stop_phrase, - STATE(5930), 1, + STATE(4848), 1, + aux_sym_for_statement_repeat1, + STATE(5866), 1, sym_body, - STATE(3447), 2, + STATE(3525), 2, sym_comment, sym_include, - [224856] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [231114] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4024), 1, + STATE(4224), 1, sym_on_error_phrase, - STATE(4036), 1, + STATE(4240), 1, aux_sym_for_phrase_repeat2, - STATE(4353), 1, + STATE(4421), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4686), 1, + STATE(4785), 1, sym_on_stop_phrase, - STATE(4691), 1, + STATE(4789), 1, aux_sym_for_statement_repeat1, - STATE(5711), 1, + STATE(5947), 1, sym_body, - STATE(3448), 2, + STATE(3526), 2, sym_comment, sym_include, - [224906] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [231164] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3998), 1, + STATE(4079), 1, sym_on_error_phrase, - STATE(4036), 1, + STATE(4240), 1, aux_sym_for_phrase_repeat2, - STATE(4459), 1, + STATE(4468), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4763), 1, + STATE(5164), 1, aux_sym_for_statement_repeat1, - STATE(4766), 1, + STATE(5169), 1, sym_on_stop_phrase, - STATE(5975), 1, + STATE(5808), 1, sym_body, - STATE(3449), 2, + STATE(3527), 2, sym_comment, sym_include, - [224956] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [231214] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4043), 1, + STATE(4155), 1, sym_on_error_phrase, - STATE(4385), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4476), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4564), 1, + STATE(4902), 1, aux_sym_for_statement_repeat1, - STATE(4709), 1, + STATE(4904), 1, sym_on_stop_phrase, - STATE(5986), 1, + STATE(5754), 1, sym_body, - STATE(3450), 2, + STATE(3528), 2, sym_comment, sym_include, - [225006] = 5, - ACTIONS(65), 1, + [231264] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3451), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5361), 1, + sym__terminator, + ACTIONS(5363), 1, + anon_sym_LBRACK, + STATE(3596), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3529), 2, sym_comment, sym_include, - ACTIONS(124), 12, - sym__namecolon, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_type_tuning_token1, - aux_sym_type_tuning_token2, - anon_sym_EQ, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token2, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [225034] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [231310] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4166), 1, + STATE(4076), 1, sym_on_error_phrase, - STATE(4314), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4367), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4784), 1, - aux_sym_for_statement_repeat1, - STATE(4787), 1, + STATE(4636), 1, sym_on_stop_phrase, - STATE(5506), 1, + STATE(4646), 1, + aux_sym_for_statement_repeat1, + STATE(5508), 1, sym_body, - STATE(3452), 2, + STATE(3530), 2, sym_comment, sym_include, - [225084] = 16, - ACTIONS(65), 1, + [231360] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5365), 1, + aux_sym_function_call_token1, + STATE(3531), 2, + sym_comment, + sym_include, + ACTIONS(156), 11, + sym__namecolon, + sym__terminator, + anon_sym_LPAREN, + aux_sym_setter_token1, + aux_sym_on_error_phrase_token1, + aux_sym_widget_field_token1, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + aux_sym_run_tuning_token7, + [231390] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4105), 1, + STATE(4123), 1, sym_on_error_phrase, - STATE(4350), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4386), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4666), 1, - aux_sym_for_statement_repeat1, - STATE(4669), 1, + STATE(4842), 1, sym_on_stop_phrase, - STATE(6012), 1, + STATE(4843), 1, + aux_sym_for_statement_repeat1, + STATE(5871), 1, sym_body, - STATE(3453), 2, + STATE(3532), 2, sym_comment, sym_include, - [225134] = 10, - ACTIONS(65), 1, + [231440] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5367), 1, + sym__terminator, + ACTIONS(5369), 1, + anon_sym_LBRACK, + STATE(3757), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3533), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [231486] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2565), 1, + ACTIONS(2584), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(5291), 1, + ACTIONS(5371), 1, sym__terminator, - STATE(3481), 1, + STATE(3488), 1, aux_sym_input_stream_statement_repeat1, - STATE(3760), 1, + STATE(3914), 1, sym_input_stream_tuning, - ACTIONS(2561), 2, + ACTIONS(2580), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(3454), 2, + STATE(3534), 2, sym_comment, sym_include, - ACTIONS(2563), 6, + ACTIONS(2582), 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, - [225172] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [231524] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4175), 1, + STATE(4080), 1, sym_on_error_phrase, - STATE(4213), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4439), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4592), 1, - sym_on_stop_phrase, - STATE(4597), 1, + STATE(4893), 1, aux_sym_for_statement_repeat1, - STATE(5961), 1, + STATE(4896), 1, + sym_on_stop_phrase, + STATE(5569), 1, sym_body, - STATE(3455), 2, + STATE(3535), 2, sym_comment, sym_include, - [225222] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [231574] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(4640), 1, + sym__namecolon, + STATE(3522), 1, + aux_sym_object_access_repeat1, + STATE(3536), 2, + sym_comment, + sym_include, + ACTIONS(89), 10, anon_sym_COLON, - ACTIONS(3788), 1, anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(4005), 1, - sym_on_error_phrase, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4374), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4705), 1, - sym_on_stop_phrase, - STATE(4708), 1, - aux_sym_for_statement_repeat1, - STATE(5680), 1, - sym_body, - STATE(3456), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [231606] = 10, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2584), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(5373), 1, + sym__terminator, + STATE(3488), 1, + aux_sym_input_stream_statement_repeat1, + STATE(3914), 1, + sym_input_stream_tuning, + ACTIONS(2580), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(3537), 2, + sym_comment, + sym_include, + ACTIONS(2582), 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, + [231644] = 5, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(3538), 2, sym_comment, sym_include, - [225272] = 16, - ACTIONS(65), 1, + ACTIONS(115), 12, + sym__namecolon, + sym__terminator, + anon_sym_LPAREN, + aux_sym_function_call_token1, + aux_sym_setter_token1, + aux_sym_on_error_phrase_token1, + aux_sym_widget_field_token1, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + aux_sym_run_tuning_token7, + [231672] = 10, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2584), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(5375), 1, + sym__terminator, + STATE(3488), 1, + aux_sym_input_stream_statement_repeat1, + STATE(3914), 1, + sym_input_stream_tuning, + ACTIONS(2580), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(3539), 2, + sym_comment, + sym_include, + ACTIONS(2582), 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, + [231710] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4004), 1, + STATE(4154), 1, sym_on_error_phrase, - STATE(4036), 1, + STATE(4240), 1, aux_sym_for_phrase_repeat2, - STATE(4402), 1, + STATE(4353), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4715), 1, + STATE(5053), 1, aux_sym_for_statement_repeat1, - STATE(4717), 1, + STATE(5054), 1, sym_on_stop_phrase, - STATE(5663), 1, + STATE(5939), 1, sym_body, - STATE(3457), 2, + STATE(3540), 2, sym_comment, sym_include, - [225322] = 10, - ACTIONS(65), 1, + [231760] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(3541), 2, + sym_comment, + sym_include, + ACTIONS(146), 12, + sym__namecolon, + sym__terminator, + anon_sym_LPAREN, + aux_sym_function_call_token1, + aux_sym_setter_token1, + aux_sym_on_error_phrase_token1, + aux_sym_widget_field_token1, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + aux_sym_run_tuning_token7, + [231788] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2565), 1, + ACTIONS(2584), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(5293), 1, + ACTIONS(5377), 1, sym__terminator, - STATE(3481), 1, + STATE(3488), 1, aux_sym_input_stream_statement_repeat1, - STATE(3760), 1, + STATE(3914), 1, sym_input_stream_tuning, - ACTIONS(2561), 2, + ACTIONS(2580), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(3458), 2, + STATE(3542), 2, sym_comment, sym_include, - ACTIONS(2563), 6, + ACTIONS(2582), 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, - [225360] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [231826] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4155), 1, - sym_on_error_phrase, - STATE(4233), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4656), 1, - sym_on_stop_phrase, - STATE(4664), 1, - aux_sym_for_statement_repeat1, - STATE(5408), 1, - sym_body, - STATE(3459), 2, + STATE(3543), 2, sym_comment, sym_include, - [225410] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4393), 12, + aux_sym_dataset_expression_token1, + 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_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + [231854] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4061), 1, + STATE(4238), 1, sym_on_error_phrase, - STATE(4405), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4436), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4909), 1, - aux_sym_for_statement_repeat1, - STATE(4912), 1, + STATE(4804), 1, sym_on_stop_phrase, - STATE(5523), 1, + STATE(4827), 1, + aux_sym_for_statement_repeat1, + STATE(5697), 1, sym_body, - STATE(3460), 2, + STATE(3544), 2, sym_comment, sym_include, - [225460] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [231904] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3993), 1, + STATE(4179), 1, sym_on_error_phrase, - STATE(4036), 1, + STATE(4240), 1, aux_sym_for_phrase_repeat2, - STATE(4364), 1, + STATE(4402), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(5037), 1, + STATE(4990), 1, aux_sym_for_statement_repeat1, - STATE(5038), 1, + STATE(5000), 1, sym_on_stop_phrase, - STATE(5689), 1, + STATE(6093), 1, sym_body, - STATE(3461), 2, + STATE(3545), 2, sym_comment, sym_include, - [225510] = 5, - ACTIONS(65), 1, + [231954] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3462), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5379), 1, + sym__terminator, + ACTIONS(5381), 1, + anon_sym_LBRACK, + STATE(3723), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3546), 2, sym_comment, sym_include, - ACTIONS(4401), 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_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_event_definition_token1, - [225538] = 10, - ACTIONS(65), 1, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [232000] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5383), 1, + sym__terminator, + ACTIONS(5385), 1, + anon_sym_LBRACK, + STATE(3796), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3547), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [232046] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2565), 1, + ACTIONS(2584), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(5295), 1, + ACTIONS(5387), 1, sym__terminator, - STATE(3481), 1, + STATE(3488), 1, aux_sym_input_stream_statement_repeat1, - STATE(3760), 1, + STATE(3914), 1, sym_input_stream_tuning, - ACTIONS(2561), 2, + ACTIONS(2580), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(3463), 2, + STATE(3548), 2, sym_comment, sym_include, - ACTIONS(2563), 6, + ACTIONS(2582), 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, - [225576] = 16, - ACTIONS(65), 1, + [232084] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5389), 1, + sym__terminator, + ACTIONS(5391), 1, + anon_sym_LBRACK, + STATE(3689), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3549), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [232130] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4077), 1, + STATE(4176), 1, sym_on_error_phrase, - STATE(4368), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4342), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4700), 1, - aux_sym_for_statement_repeat1, - STATE(4701), 1, + STATE(5024), 1, sym_on_stop_phrase, - STATE(5990), 1, + STATE(5038), 1, + aux_sym_for_statement_repeat1, + STATE(5798), 1, sym_body, - STATE(3464), 2, + STATE(3550), 2, sym_comment, sym_include, - [225626] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [232180] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4146), 1, + STATE(4212), 1, sym_on_error_phrase, - STATE(4197), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4321), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4849), 1, + STATE(5002), 1, sym_on_stop_phrase, - STATE(4872), 1, + STATE(5004), 1, aux_sym_for_statement_repeat1, - STATE(5574), 1, + STATE(5678), 1, sym_body, - STATE(3465), 2, + STATE(3551), 2, sym_comment, sym_include, - [225676] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [232230] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4049), 1, + STATE(4184), 1, sym_on_error_phrase, - STATE(4320), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4335), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(5031), 1, + STATE(5018), 1, aux_sym_for_statement_repeat1, - STATE(5040), 1, + STATE(5019), 1, sym_on_stop_phrase, - STATE(5950), 1, + STATE(5747), 1, sym_body, - STATE(3466), 2, + STATE(3552), 2, sym_comment, sym_include, - [225726] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [232280] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4000), 1, + STATE(4226), 1, sym_on_error_phrase, - STATE(4036), 1, + STATE(4240), 1, aux_sym_for_phrase_repeat2, - STATE(4404), 1, + STATE(4292), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4725), 1, + STATE(4986), 1, sym_on_stop_phrase, - STATE(4728), 1, + STATE(4988), 1, aux_sym_for_statement_repeat1, - STATE(5631), 1, + STATE(5648), 1, sym_body, - STATE(3467), 2, + STATE(3553), 2, sym_comment, sym_include, - [225776] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [232330] = 16, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(3468), 2, - sym_comment, - sym_include, - ACTIONS(4376), 12, - aux_sym_dataset_expression_token1, - 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_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_buffer_definition_token1, - aux_sym_query_definition_token1, - [225804] = 16, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(3990), 1, - sym_on_error_phrase, - STATE(4036), 1, + STATE(4240), 1, aux_sym_for_phrase_repeat2, - STATE(4451), 1, + STATE(4250), 1, + sym_on_error_phrase, + STATE(4455), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4753), 1, - aux_sym_for_statement_repeat1, - STATE(4755), 1, + STATE(4909), 1, sym_on_stop_phrase, - STATE(5566), 1, + STATE(5157), 1, + aux_sym_for_statement_repeat1, + STATE(5812), 1, sym_body, - STATE(3469), 2, + STATE(3554), 2, sym_comment, sym_include, - [225854] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [232380] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4045), 1, + STATE(4213), 1, sym_on_error_phrase, - STATE(4212), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4319), 1, sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4602), 1, - aux_sym_for_statement_repeat1, STATE(4603), 1, + sym_sort_clause, + STATE(4998), 1, sym_on_stop_phrase, - STATE(5392), 1, + STATE(4999), 1, + aux_sym_for_statement_repeat1, + STATE(5669), 1, sym_body, - STATE(3470), 2, + STATE(3555), 2, + sym_comment, + sym_include, + [232430] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5393), 1, + sym__terminator, + ACTIONS(5395), 1, + anon_sym_LBRACK, + STATE(3663), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3556), 2, sym_comment, sym_include, - [225904] = 16, - ACTIONS(65), 1, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [232476] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5397), 1, + sym__terminator, + ACTIONS(5399), 1, + anon_sym_LBRACK, + STATE(3784), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3557), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [232522] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4127), 1, + STATE(4193), 1, sym_on_error_phrase, - STATE(4265), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4322), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4622), 1, - aux_sym_for_statement_repeat1, - STATE(4626), 1, + STATE(5006), 1, sym_on_stop_phrase, - STATE(6013), 1, + STATE(5012), 1, + aux_sym_for_statement_repeat1, + STATE(5698), 1, sym_body, - STATE(3471), 2, + STATE(3558), 2, sym_comment, sym_include, - [225954] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [232572] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4194), 1, + STATE(4223), 1, sym_on_error_phrase, - STATE(4408), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4301), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4899), 1, + STATE(4992), 1, sym_on_stop_phrase, - STATE(4900), 1, + STATE(4993), 1, aux_sym_for_statement_repeat1, - STATE(5486), 1, + STATE(5655), 1, sym_body, - STATE(3472), 2, + STATE(3559), 2, sym_comment, sym_include, - [226004] = 10, - ACTIONS(65), 1, + [232622] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5403), 1, + aux_sym_input_stream_tuning_token10, + ACTIONS(5405), 1, + aux_sym_input_stream_tuning_token11, + STATE(3560), 2, + sym_comment, + sym_include, + ACTIONS(5401), 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, + [232654] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2565), 1, + ACTIONS(2584), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(5297), 1, + ACTIONS(5407), 1, sym__terminator, - STATE(3481), 1, + STATE(3488), 1, aux_sym_input_stream_statement_repeat1, - STATE(3760), 1, + STATE(3914), 1, sym_input_stream_tuning, - ACTIONS(2561), 2, + ACTIONS(2580), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(3473), 2, + STATE(3561), 2, sym_comment, sym_include, - ACTIONS(2563), 6, + ACTIONS(2582), 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, - [226042] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [232692] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4051), 1, + STATE(4231), 1, sym_on_error_phrase, - STATE(4327), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4276), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4660), 1, + STATE(4961), 1, sym_on_stop_phrase, - STATE(4661), 1, + STATE(4963), 1, aux_sym_for_statement_repeat1, - STATE(5741), 1, + STATE(5632), 1, sym_body, - STATE(3474), 2, + STATE(3562), 2, sym_comment, sym_include, - [226092] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [232742] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4168), 1, + STATE(4127), 1, sym_on_error_phrase, - STATE(4430), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4339), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4846), 1, - sym_on_stop_phrase, - STATE(4850), 1, + STATE(4748), 1, aux_sym_for_statement_repeat1, - STATE(5430), 1, + STATE(4749), 1, + sym_on_stop_phrase, + STATE(5602), 1, sym_body, - STATE(3475), 2, + STATE(3563), 2, sym_comment, sym_include, - [226142] = 10, - ACTIONS(65), 1, + [232792] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5409), 1, + sym__terminator, + ACTIONS(5411), 1, + anon_sym_LBRACK, + STATE(3680), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3564), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [232838] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2565), 1, + ACTIONS(2584), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(5299), 1, + ACTIONS(5413), 1, sym__terminator, - STATE(3481), 1, + STATE(3488), 1, aux_sym_input_stream_statement_repeat1, - STATE(3760), 1, + STATE(3914), 1, sym_input_stream_tuning, - ACTIONS(2561), 2, + ACTIONS(2580), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(3476), 2, + STATE(3565), 2, sym_comment, sym_include, - ACTIONS(2563), 6, + ACTIONS(2582), 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, - [226180] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [232876] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4182), 1, + STATE(4081), 1, sym_on_error_phrase, - STATE(4424), 1, - sym_on_quit_phrase, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, STATE(4487), 1, + sym_on_quit_phrase, + STATE(4603), 1, sym_sort_clause, - STATE(4860), 1, + STATE(4744), 1, sym_on_stop_phrase, - STATE(4861), 1, + STATE(4899), 1, aux_sym_for_statement_repeat1, - STATE(5436), 1, + STATE(5981), 1, sym_body, - STATE(3477), 2, + STATE(3566), 2, + sym_comment, + sym_include, + [232926] = 5, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(3567), 2, sym_comment, sym_include, - [226230] = 16, - ACTIONS(65), 1, + ACTIONS(156), 12, + sym__namecolon, + sym__terminator, + anon_sym_LPAREN, + aux_sym_function_call_token1, + aux_sym_setter_token1, + aux_sym_on_error_phrase_token1, + aux_sym_widget_field_token1, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + aux_sym_run_tuning_token7, + [232954] = 13, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4626), 1, + anon_sym_LPAREN, + ACTIONS(4850), 1, + aux_sym_type_tuning_token1, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(4856), 1, + aux_sym__function_argument_with_mode_token4, + STATE(3531), 1, + sym_function_arguments, + STATE(4130), 1, + sym_type_tuning, + STATE(5554), 1, + sym_argument_pass_type, + ACTIONS(4848), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3568), 2, + sym_comment, + sym_include, + ACTIONS(4854), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + [232998] = 16, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4117), 1, + STATE(4229), 1, sym_on_error_phrase, - STATE(4280), 1, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4290), 1, sym_on_quit_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4633), 1, + STATE(4983), 1, sym_on_stop_phrase, - STATE(4641), 1, + STATE(4984), 1, aux_sym_for_statement_repeat1, - STATE(6019), 1, + STATE(5652), 1, sym_body, - STATE(3478), 2, + STATE(3569), 2, sym_comment, sym_include, - [226280] = 16, - ACTIONS(65), 1, + [233048] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(3570), 2, + sym_comment, + sym_include, + ACTIONS(142), 12, + sym__namecolon, + sym__terminator, + anon_sym_LPAREN, + aux_sym_function_call_token1, + aux_sym_setter_token1, + aux_sym_on_error_phrase_token1, + aux_sym_widget_field_token1, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + aux_sym_run_tuning_token7, + [233076] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4184), 1, - sym_on_error_phrase, - STATE(4422), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4865), 1, - sym_on_stop_phrase, - STATE(4867), 1, - aux_sym_for_statement_repeat1, - STATE(5443), 1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(4325), 1, + aux_sym_do_block_repeat1, + STATE(4435), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(5790), 1, sym_body, - STATE(3479), 2, + STATE(3571), 2, sym_comment, sym_include, - [226330] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5691), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [233119] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5303), 1, - aux_sym_input_stream_tuning_token10, - ACTIONS(5305), 1, - aux_sym_input_stream_tuning_token11, - STATE(3480), 2, + STATE(3572), 2, sym_comment, sym_include, - ACTIONS(5301), 10, + ACTIONS(246), 11, 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, - [226362] = 9, - ACTIONS(65), 1, + anon_sym_LPAREN, + aux_sym_function_call_token1, + aux_sym_setter_token1, + aux_sym_on_error_phrase_token1, + aux_sym_widget_field_token1, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + aux_sym_run_tuning_token7, + [233146] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5415), 1, + sym_identifier, + ACTIONS(5417), 1, sym__terminator, - ACTIONS(5315), 1, - aux_sym_input_stream_tuning_token9, - STATE(3760), 1, - sym_input_stream_tuning, - ACTIONS(5309), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(3481), 3, + ACTIONS(5419), 1, + anon_sym_NO_DASHERROR, + STATE(3607), 1, + aux_sym_assign_statement_repeat1, + STATE(5013), 1, + sym_object_access, + STATE(5114), 1, + sym_assignment, + STATE(3573), 2, sym_comment, sym_include, - aux_sym_input_stream_statement_repeat1, - ACTIONS(5312), 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, - [226398] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5795), 2, + sym_qualified_name, + sym_member_access, + [233189] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5144), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4046), 1, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(3891), 1, sym_on_error_phrase, - STATE(4292), 1, + STATE(3974), 1, sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4612), 1, + STATE(4181), 1, + aux_sym_repeat_statement_repeat1, + STATE(4186), 1, sym_on_stop_phrase, - STATE(4614), 1, - aux_sym_for_statement_repeat1, - STATE(5945), 1, + STATE(5113), 1, + sym__block_terminator, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5503), 1, sym_body, - STATE(3482), 2, + STATE(3574), 2, sym_comment, sym_include, - [226448] = 16, - ACTIONS(65), 1, + [233236] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5421), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3575), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [233279] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + STATE(3576), 2, + sym_comment, + sym_include, + ACTIONS(4085), 11, anon_sym_COLON, - ACTIONS(3788), 1, + anon_sym_DOT, + aux_sym__block_terminator_token1, anon_sym_COMMA, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(4033), 1, - sym_on_error_phrase, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4287), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4886), 1, - sym_on_stop_phrase, - STATE(4891), 1, - aux_sym_for_statement_repeat1, - STATE(5981), 1, - sym_body, - STATE(3483), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_variable_tuning_token7, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [233306] = 9, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(5425), 1, + anon_sym_COMMA, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(3931), 1, + aux_sym_inherits_repeat1, + STATE(3577), 2, + sym_comment, + sym_include, + ACTIONS(5423), 7, + anon_sym_COLON, + aux_sym_serialization_tuning_token1, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [233341] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(5348), 1, + sym_accumulate_aggregate, + STATE(3578), 2, sym_comment, sym_include, - [226498] = 16, - ACTIONS(65), 1, + ACTIONS(5427), 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, + [233370] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(762), 1, + sym_accumulate_aggregate, + STATE(3579), 2, + sym_comment, + sym_include, + ACTIONS(5429), 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, + [233399] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4093), 1, - sym_on_error_phrase, - STATE(4306), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4965), 1, - aux_sym_for_statement_repeat1, - STATE(4967), 1, - sym_on_stop_phrase, - STATE(6005), 1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(4325), 1, + aux_sym_do_block_repeat1, + STATE(4356), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(5463), 1, sym_body, - STATE(3484), 2, + STATE(3580), 2, sym_comment, sym_include, - [226548] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(6032), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [233442] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4195), 1, - sym_on_error_phrase, - STATE(4419), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4873), 1, - sym_on_stop_phrase, - STATE(4874), 1, - aux_sym_for_statement_repeat1, - STATE(5449), 1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(4325), 1, + aux_sym_do_block_repeat1, + STATE(4420), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(5980), 1, sym_body, - STATE(3485), 2, + STATE(3581), 2, sym_comment, sym_include, - [226598] = 16, - ACTIONS(65), 1, + STATE(5665), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [233485] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(5118), 1, + sym__terminator, + STATE(3271), 1, + sym_using, + STATE(3454), 1, + sym_query_tuning, + STATE(3657), 1, + aux_sym_for_phrase_repeat1, + STATE(3582), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [233524] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4133), 1, - sym_on_error_phrase, - STATE(4417), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4878), 1, - sym_on_stop_phrase, - STATE(4880), 1, - aux_sym_for_statement_repeat1, - STATE(5398), 1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(3666), 1, + aux_sym_do_block_repeat1, + STATE(4356), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(5463), 1, sym_body, - STATE(3486), 2, + STATE(3583), 2, sym_comment, sym_include, - [226648] = 16, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(6032), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [233567] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4159), 1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(3730), 1, + aux_sym_do_block_repeat1, + STATE(4265), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(6072), 1, + sym_body, + STATE(3584), 2, + sym_comment, + sym_include, + STATE(6069), 3, sym_on_error_phrase, - STATE(4319), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(5015), 1, - aux_sym_for_statement_repeat1, - STATE(5035), 1, sym_on_stop_phrase, - STATE(5645), 1, - sym_body, - STATE(3487), 2, + sym_on_quit_phrase, + [233610] = 9, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(5425), 1, + anon_sym_COMMA, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(3932), 1, + aux_sym_inherits_repeat1, + STATE(3585), 2, sym_comment, sym_include, - [226698] = 16, - ACTIONS(65), 1, + ACTIONS(5431), 7, + anon_sym_COLON, + aux_sym_serialization_tuning_token1, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [233645] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5433), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3586), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [233688] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4118), 1, - sym_on_error_phrase, - STATE(4203), 1, - sym_on_quit_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4584), 1, - sym_on_stop_phrase, - STATE(4652), 1, - aux_sym_for_statement_repeat1, - STATE(5378), 1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(4325), 1, + aux_sym_do_block_repeat1, + STATE(4330), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(5670), 1, sym_body, - STATE(3488), 2, + STATE(3587), 2, sym_comment, sym_include, - [226748] = 11, - ACTIONS(65), 1, + STATE(5671), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [233731] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5435), 1, + sym__terminator, + STATE(3798), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3588), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [233774] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5318), 1, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(5118), 1, sym__terminator, - ACTIONS(5322), 1, - aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, - aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, - aux_sym_variable_tuning_token8, - STATE(3666), 1, - aux_sym_variable_definition_repeat2, - STATE(3815), 1, - sym_variable_tuning, - STATE(3489), 2, + STATE(3271), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, + sym_query_tuning, + STATE(3589), 2, sym_comment, sym_include, - ACTIONS(5320), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - [226787] = 13, - ACTIONS(65), 1, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [233813] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(456), 1, + sym_accumulate_aggregate, + STATE(3590), 2, + sym_comment, + sym_include, + ACTIONS(5429), 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, + [233842] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, + ACTIONS(5154), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, + ACTIONS(5156), 1, aux_sym_do_tuning_token1, - STATE(3690), 1, + STATE(3598), 1, aux_sym_do_block_repeat1, - STATE(4397), 1, + STATE(4435), 1, sym_stop_after_phrase, - STATE(4810), 1, + STATE(4926), 1, sym_do_tuning, - STATE(5600), 1, + STATE(5790), 1, sym_body, - STATE(3490), 2, + STATE(3591), 2, sym_comment, sym_include, - STATE(5793), 3, + STATE(5691), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [226830] = 13, - ACTIONS(65), 1, + [233885] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5437), 1, + sym__terminator, + STATE(3802), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3592), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [233928] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, + ACTIONS(5154), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, + ACTIONS(5156), 1, aux_sym_do_tuning_token1, - STATE(4248), 1, + STATE(3571), 1, aux_sym_do_block_repeat1, - STATE(4409), 1, + STATE(4420), 1, sym_stop_after_phrase, - STATE(4810), 1, + STATE(4926), 1, sym_do_tuning, - STATE(5837), 1, + STATE(5980), 1, sym_body, - STATE(3491), 2, + STATE(3593), 2, sym_comment, sym_include, - STATE(5838), 3, + STATE(5665), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [226873] = 11, - ACTIONS(65), 1, + [233971] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5439), 1, + sym__terminator, + ACTIONS(5443), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5445), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5447), 1, + aux_sym_variable_tuning_token8, + STATE(3698), 1, + aux_sym_variable_definition_repeat2, + STATE(3984), 1, + sym_variable_tuning, + STATE(3594), 2, + sym_comment, + sym_include, + ACTIONS(5441), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + [234010] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, + ACTIONS(5443), 1, aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, + ACTIONS(5445), 1, aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, + ACTIONS(5447), 1, aux_sym_variable_tuning_token8, - ACTIONS(5328), 1, + ACTIONS(5449), 1, sym__terminator, - STATE(3539), 1, + STATE(3788), 1, aux_sym_variable_definition_repeat2, - STATE(3815), 1, + STATE(3984), 1, sym_variable_tuning, - STATE(3492), 2, + STATE(3595), 2, sym_comment, sym_include, - ACTIONS(5320), 5, + ACTIONS(5441), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, - [226912] = 13, - ACTIONS(65), 1, + [234049] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5451), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3596), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [234092] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5415), 1, + sym_identifier, + ACTIONS(5453), 1, + sym__terminator, + ACTIONS(5455), 1, + anon_sym_NO_DASHERROR, + STATE(3685), 1, + aux_sym_assign_statement_repeat1, + STATE(5013), 1, + sym_object_access, + STATE(5114), 1, + sym_assignment, + STATE(3597), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5795), 2, + sym_qualified_name, + sym_member_access, + [234135] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, + ACTIONS(5154), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, + ACTIONS(5156), 1, aux_sym_do_tuning_token1, - STATE(3537), 1, + STATE(4325), 1, aux_sym_do_block_repeat1, - STATE(4409), 1, + STATE(4457), 1, sym_stop_after_phrase, - STATE(4810), 1, + STATE(4926), 1, sym_do_tuning, - STATE(5837), 1, + STATE(5843), 1, sym_body, - STATE(3493), 2, + STATE(3598), 2, sym_comment, sym_include, - STATE(5838), 3, + STATE(5718), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [226955] = 15, - ACTIONS(65), 1, + [234178] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5415), 1, + sym_identifier, + ACTIONS(5457), 1, + sym__terminator, + ACTIONS(5459), 1, + anon_sym_NO_DASHERROR, + STATE(3702), 1, + aux_sym_assign_statement_repeat1, + STATE(5013), 1, + sym_object_access, + STATE(5114), 1, + sym_assignment, + STATE(3599), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5795), 2, + sym_qualified_name, + sym_member_access, + [234221] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(793), 1, + sym_accumulate_aggregate, + STATE(3600), 2, + sym_comment, + sym_include, + ACTIONS(5429), 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, + [234250] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5415), 1, + sym_identifier, + ACTIONS(5461), 1, + sym__terminator, + ACTIONS(5463), 1, + anon_sym_NO_DASHERROR, + STATE(3625), 1, + aux_sym_assign_statement_repeat1, + STATE(5013), 1, + sym_object_access, + STATE(5114), 1, + sym_assignment, + STATE(3601), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5795), 2, + sym_qualified_name, + sym_member_access, + [234293] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, + ACTIONS(5144), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5117), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(1752), 1, + STATE(1715), 1, sym__block_terminator, - STATE(3744), 1, + STATE(3892), 1, sym_on_error_phrase, - STATE(3837), 1, + STATE(3983), 1, sym_on_quit_phrase, - STATE(4147), 1, + STATE(4153), 1, aux_sym_repeat_statement_repeat1, - STATE(4149), 1, + STATE(4173), 1, sym_on_stop_phrase, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5414), 1, + STATE(6110), 1, sym_body, - STATE(3494), 2, + STATE(3602), 2, + sym_comment, + sym_include, + [234340] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5144), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1955), 1, + sym__block_terminator, + STATE(3864), 1, + sym_on_error_phrase, + STATE(3987), 1, + sym_on_quit_phrase, + STATE(4143), 1, + aux_sym_repeat_statement_repeat1, + STATE(4145), 1, + sym_on_stop_phrase, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5565), 1, + sym_body, + STATE(3603), 2, + sym_comment, + sym_include, + [234387] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5465), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3604), 2, sym_comment, sym_include, - [227002] = 6, - ACTIONS(65), 1, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [234430] = 12, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4850), 1, + aux_sym_type_tuning_token1, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5469), 1, + aux_sym_variable_tuning_token7, + STATE(4002), 1, + sym_type_tuning, + STATE(4003), 1, + aux_sym_function_parameter_repeat1, + STATE(4384), 1, + sym_function_parameter_tuning, + ACTIONS(5467), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3605), 2, + sym_comment, + sym_include, + ACTIONS(5471), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [234471] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(430), 1, + STATE(732), 1, sym_accumulate_aggregate, - STATE(3495), 2, + STATE(3606), 2, + sym_comment, + sym_include, + ACTIONS(5429), 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, + [234500] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5415), 1, + sym_identifier, + ACTIONS(5473), 1, + sym__terminator, + ACTIONS(5475), 1, + anon_sym_NO_DASHERROR, + STATE(3640), 1, + aux_sym_assign_statement_repeat1, + STATE(5013), 1, + sym_object_access, + STATE(5114), 1, + sym_assignment, + STATE(3607), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5795), 2, + sym_qualified_name, + sym_member_access, + [234543] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5477), 1, + sym__terminator, + STATE(3769), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3608), 2, sym_comment, sym_include, - ACTIONS(5330), 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, - [227031] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [234586] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(639), 1, + STATE(511), 1, sym_accumulate_aggregate, - STATE(3496), 2, + STATE(3609), 2, sym_comment, sym_include, - ACTIONS(5330), 10, + ACTIONS(5429), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -241083,190 +248207,120 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [227060] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [234615] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(702), 1, - sym_accumulate_aggregate, - STATE(3497), 2, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(5122), 1, + sym__terminator, + STATE(3271), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, + sym_query_tuning, + STATE(3610), 2, sym_comment, sym_include, - ACTIONS(5330), 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, - [227089] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [234654] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, + ACTIONS(5443), 1, aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, + ACTIONS(5445), 1, aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, + ACTIONS(5447), 1, aux_sym_variable_tuning_token8, - ACTIONS(5332), 1, + ACTIONS(5479), 1, sym__terminator, - STATE(3555), 1, + STATE(3709), 1, aux_sym_variable_definition_repeat2, - STATE(3815), 1, + STATE(3984), 1, sym_variable_tuning, - STATE(3498), 2, + STATE(3611), 2, sym_comment, sym_include, - ACTIONS(5320), 5, + ACTIONS(5441), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, - [227128] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [234693] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2430), 1, - sym__block_terminator, - STATE(3750), 1, - sym_on_error_phrase, - STATE(3831), 1, - sym_on_quit_phrase, - STATE(4141), 1, - aux_sym_repeat_statement_repeat1, - STATE(4144), 1, - sym_on_stop_phrase, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5786), 1, - sym_body, - STATE(3499), 2, - sym_comment, - sym_include, - [227175] = 13, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(4217), 1, - sym_stop_after_phrase, - STATE(4248), 1, - aux_sym_do_block_repeat1, - STATE(4810), 1, - sym_do_tuning, - STATE(6024), 1, - sym_body, - STATE(3500), 2, + STATE(398), 1, + sym_accumulate_aggregate, + STATE(3612), 2, sym_comment, sym_include, - STATE(5824), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [227218] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5429), 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, + [234722] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(3509), 1, - aux_sym_do_block_repeat1, - STATE(4217), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(6024), 1, - sym_body, - STATE(3501), 2, - sym_comment, - sym_include, - STATE(5824), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [227261] = 11, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1217), 1, - sym__integer_literal, - ACTIONS(1221), 1, - anon_sym_LPAREN, - ACTIONS(5334), 1, - sym_identifier, - STATE(1073), 1, - sym_object_access, - STATE(1108), 1, - sym__unary_minus_expressions, - STATE(1116), 1, - sym__decimal_literal, - STATE(3502), 2, + STATE(3613), 2, sym_comment, sym_include, - STATE(1114), 5, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, - sym_function_call, - sym_member_access, - [227300] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5481), 11, + sym__terminator, + anon_sym_LPAREN, + aux_sym_function_call_token1, + aux_sym_setter_token1, + aux_sym_on_error_phrase_token1, + aux_sym_widget_field_token1, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + aux_sym_run_tuning_token7, + [234749] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(738), 1, + STATE(5285), 1, sym_accumulate_aggregate, - STATE(3503), 2, + STATE(3614), 2, sym_comment, sym_include, - ACTIONS(5330), 10, + ACTIONS(5427), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -241277,195 +248331,131 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [227329] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1697), 1, - sym__integer_literal, - ACTIONS(1701), 1, - anon_sym_LPAREN, - ACTIONS(5336), 1, - sym_identifier, - STATE(2035), 1, - sym_object_access, - STATE(2564), 1, - sym__unary_minus_expressions, - STATE(2582), 1, - sym__decimal_literal, - STATE(3504), 2, - sym_comment, - sym_include, - STATE(2567), 5, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, - sym_function_call, - sym_member_access, - [227368] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [234778] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, + ACTIONS(5144), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5117), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(1722), 1, + STATE(2313), 1, sym__block_terminator, - STATE(3770), 1, + STATE(3889), 1, sym_on_error_phrase, - STATE(3814), 1, + STATE(3985), 1, sym_on_quit_phrase, - STATE(4108), 1, + STATE(4158), 1, aux_sym_repeat_statement_repeat1, - STATE(4110), 1, + STATE(4164), 1, sym_on_stop_phrase, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5484), 1, + STATE(6104), 1, sym_body, - STATE(3505), 2, + STATE(3615), 2, + sym_comment, + sym_include, + [234825] = 11, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5443), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5445), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5447), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5483), 1, + sym__terminator, + STATE(3720), 1, + aux_sym_variable_definition_repeat2, + STATE(3984), 1, + sym_variable_tuning, + STATE(3616), 2, sym_comment, sym_include, - [227415] = 11, + ACTIONS(5441), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + [234864] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1995), 1, - sym__integer_literal, - ACTIONS(1999), 1, - anon_sym_LPAREN, - ACTIONS(5338), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, sym_identifier, - STATE(2678), 1, + ACTIONS(5485), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, sym_object_access, - STATE(2924), 1, - sym__unary_minus_expressions, - STATE(2980), 1, - sym__decimal_literal, - STATE(3506), 2, + STATE(3617), 2, sym_comment, sym_include, - STATE(2921), 5, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, + STATE(5480), 2, sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, sym_member_access, - [227454] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [234907] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(4248), 1, - aux_sym_do_block_repeat1, - STATE(4316), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5664), 1, - sym_body, - STATE(3507), 2, - sym_comment, - sym_include, - STATE(5662), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [227497] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(5029), 1, - sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3520), 1, - aux_sym_for_phrase_repeat1, - STATE(3508), 2, + STATE(3618), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(5487), 11, + sym__terminator, + anon_sym_LPAREN, aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [227536] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, + aux_sym_setter_token1, aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(4248), 1, - aux_sym_do_block_repeat1, - STATE(4325), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(6015), 1, - sym_body, - STATE(3509), 2, - sym_comment, - sym_include, - STATE(5806), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [227579] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_widget_field_token1, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + aux_sym_run_tuning_token7, + [234934] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(762), 1, + STATE(861), 1, sym_accumulate_aggregate, - STATE(3510), 2, + STATE(3619), 2, sym_comment, sym_include, - ACTIONS(5330), 10, + ACTIONS(5429), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -241476,424 +248466,554 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [227608] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [234963] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(3511), 2, - sym_comment, - sym_include, - ACTIONS(4433), 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_access_tuning_token4, - aux_sym_access_tuning_token5, - aux_sym_workfile_definition_token1, - aux_sym_workfile_definition_token2, - [227635] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5029), 1, + ACTIONS(5489), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3512), 2, + STATE(3620), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [227674] = 6, - ACTIONS(65), 1, + [235002] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(803), 1, - sym_accumulate_aggregate, - STATE(3513), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5491), 1, + sym__terminator, + STATE(3719), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3621), 2, sym_comment, sym_include, - ACTIONS(5330), 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, - [227703] = 6, - ACTIONS(65), 1, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [235045] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(871), 1, - sym_accumulate_aggregate, - STATE(3514), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5493), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3622), 2, sym_comment, sym_include, - ACTIONS(5330), 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, - [227732] = 6, - ACTIONS(65), 1, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [235088] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(947), 1, - sym_accumulate_aggregate, - STATE(3515), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5415), 1, + sym_identifier, + ACTIONS(5495), 1, + sym__terminator, + ACTIONS(5497), 1, + anon_sym_NO_DASHERROR, + STATE(3640), 1, + aux_sym_assign_statement_repeat1, + STATE(5013), 1, + sym_object_access, + STATE(5114), 1, + sym_assignment, + STATE(3623), 2, sym_comment, sym_include, - ACTIONS(5330), 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, - [227761] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5795), 2, + sym_qualified_name, + sym_member_access, + [235131] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(3516), 2, - sym_comment, - sym_include, - ACTIONS(5340), 11, - sym__terminator, - anon_sym_LPAREN, - aux_sym_function_call_token1, - aux_sym_setter_token1, - aux_sym_on_error_phrase_token1, - aux_sym_widget_field_token1, - aux_sym_run_tuning_token1, - aux_sym_run_tuning_token2, - aux_sym_run_tuning_token3, - aux_sym_run_tuning_token4, - aux_sym_run_tuning_token7, - [227788] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, + ACTIONS(5443), 1, aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, + ACTIONS(5445), 1, aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, + ACTIONS(5447), 1, aux_sym_variable_tuning_token8, - ACTIONS(5342), 1, + ACTIONS(5499), 1, sym__terminator, - STATE(3538), 1, + STATE(3645), 1, aux_sym_variable_definition_repeat2, - STATE(3815), 1, + STATE(3984), 1, sym_variable_tuning, - STATE(3517), 2, + STATE(3624), 2, sym_comment, sym_include, - ACTIONS(5320), 5, + ACTIONS(5441), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, - [227827] = 11, + [235170] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - sym__integer_literal, - ACTIONS(1370), 1, - anon_sym_LPAREN, - ACTIONS(5344), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5415), 1, sym_identifier, - STATE(1036), 1, + ACTIONS(5501), 1, + sym__terminator, + ACTIONS(5503), 1, + anon_sym_NO_DASHERROR, + STATE(3640), 1, + aux_sym_assign_statement_repeat1, + STATE(5013), 1, sym_object_access, - STATE(1075), 1, - sym__decimal_literal, - STATE(1089), 1, - sym__unary_minus_expressions, - STATE(3518), 2, + STATE(5114), 1, + sym_assignment, + STATE(3625), 2, sym_comment, sym_include, - STATE(1061), 5, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, + STATE(5480), 2, sym_function_call, + sym_new_expression, + STATE(5795), 2, + sym_qualified_name, sym_member_access, - [227866] = 11, - ACTIONS(65), 1, + [235213] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(3626), 2, + sym_comment, + sym_include, + ACTIONS(4150), 11, + anon_sym_COLON, + anon_sym_DOT, + aux_sym__block_terminator_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_variable_tuning_token7, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [235240] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(5346), 1, - sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3220), 1, - aux_sym_for_phrase_repeat1, - STATE(3406), 1, - sym_query_tuning, - STATE(3519), 2, + ACTIONS(4850), 1, + aux_sym_type_tuning_token1, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5469), 1, + aux_sym_variable_tuning_token7, + STATE(4023), 1, + aux_sym_function_parameter_repeat1, + STATE(4024), 1, + sym_type_tuning, + STATE(4384), 1, + sym_function_parameter_tuning, + ACTIONS(5505), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3627), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [227905] = 11, - ACTIONS(65), 1, + ACTIONS(5471), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [235281] = 5, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(3628), 2, + sym_comment, + sym_include, + ACTIONS(4353), 11, + anon_sym_COLON, + anon_sym_DOT, + aux_sym__block_terminator_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_variable_tuning_token7, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [235308] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(701), 1, + sym_accumulate_aggregate, + STATE(3629), 2, + sym_comment, + sym_include, + ACTIONS(5429), 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, + [235337] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5236), 1, + ACTIONS(5507), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3520), 2, + STATE(3630), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [227944] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [235376] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5236), 1, + ACTIONS(5507), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3547), 1, + STATE(3750), 1, aux_sym_for_phrase_repeat1, - STATE(3521), 2, + STATE(3631), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [227983] = 11, - ACTIONS(65), 1, + [235415] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5509), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3632), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [235458] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5511), 1, + sym__terminator, + STATE(3617), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3633), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [235501] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5043), 1, + ACTIONS(5513), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3550), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3522), 2, + STATE(3454), 1, + sym_query_tuning, + STATE(3634), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [228022] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [235540] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(476), 1, - sym_accumulate_aggregate, - STATE(3523), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(4325), 1, + aux_sym_do_block_repeat1, + STATE(4327), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(5774), 1, + sym_body, + STATE(3635), 2, sym_comment, sym_include, - ACTIONS(5330), 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, - [228051] = 6, - ACTIONS(65), 1, + STATE(6118), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [235583] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5653), 1, - sym_accumulate_aggregate, - STATE(3524), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5515), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3636), 2, sym_comment, sym_include, - ACTIONS(5348), 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, - [228080] = 5, - ACTIONS(65), 1, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [235626] = 12, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3525), 2, + ACTIONS(5517), 1, + sym_identifier, + ACTIONS(5520), 1, + sym__terminator, + ACTIONS(5522), 1, + aux_sym_scope_tuning_token1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + STATE(3637), 3, sym_comment, sym_include, - ACTIONS(138), 11, - sym__terminator, - anon_sym_LPAREN, - aux_sym_function_call_token1, - aux_sym_setter_token1, - aux_sym_on_error_phrase_token1, - aux_sym_widget_field_token1, - aux_sym_run_tuning_token1, - aux_sym_run_tuning_token2, - aux_sym_run_tuning_token3, - aux_sym_run_tuning_token4, - aux_sym_run_tuning_token7, - [228107] = 11, - ACTIONS(65), 1, + aux_sym_var_statement_repeat1, + [235667] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(5043), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5525), 1, sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3220), 1, - aux_sym_for_phrase_repeat1, - STATE(3406), 1, - sym_query_tuning, - STATE(3526), 2, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3638), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [228146] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [235710] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(671), 1, + STATE(5299), 1, sym_accumulate_aggregate, - STATE(3527), 2, + STATE(3639), 2, sym_comment, sym_include, - ACTIONS(5330), 10, + ACTIONS(5427), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -241904,948 +249024,1106 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [228175] = 15, - ACTIONS(65), 1, + [235739] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2337), 1, - sym__block_terminator, - STATE(3788), 1, - sym_on_error_phrase, - STATE(3799), 1, - sym_on_quit_phrase, - STATE(4008), 1, - aux_sym_repeat_statement_repeat1, - STATE(4016), 1, - sym_on_stop_phrase, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5853), 1, - sym_body, - STATE(3528), 2, + ACTIONS(5527), 1, + sym_identifier, + ACTIONS(5532), 1, + aux_sym_scope_tuning_token1, + STATE(5013), 1, + sym_object_access, + STATE(5114), 1, + sym_assignment, + ACTIONS(5530), 2, + sym__terminator, + anon_sym_NO_DASHERROR, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5795), 2, + sym_qualified_name, + sym_member_access, + STATE(3640), 3, sym_comment, sym_include, - [228222] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_assign_statement_repeat1, + [235778] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5117), 1, - aux_sym__block_terminator_token1, - STATE(1682), 1, - sym__block_terminator, - STATE(3792), 1, - sym_on_error_phrase, - STATE(3797), 1, - sym_on_quit_phrase, - STATE(4064), 1, - sym_on_stop_phrase, - STATE(4065), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5573), 1, - sym_body, - STATE(3529), 2, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(5535), 1, + sym__terminator, + STATE(3271), 1, + sym_using, + STATE(3454), 1, + sym_query_tuning, + STATE(3620), 1, + aux_sym_for_phrase_repeat1, + STATE(3641), 2, sym_comment, sym_include, - [228269] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [235817] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5350), 1, + ACTIONS(5535), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3519), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3530), 2, + STATE(3454), 1, + sym_query_tuning, + STATE(3642), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [228308] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [235856] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5350), 1, + ACTIONS(5537), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3531), 2, + STATE(3643), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [228347] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [235895] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5352), 1, + ACTIONS(5276), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3532), 2, + STATE(3644), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [228386] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [235934] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, + ACTIONS(5443), 1, aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, + ACTIONS(5445), 1, aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, + ACTIONS(5447), 1, aux_sym_variable_tuning_token8, - ACTIONS(5354), 1, + ACTIONS(5539), 1, sym__terminator, - STATE(3560), 1, + STATE(3720), 1, aux_sym_variable_definition_repeat2, - STATE(3815), 1, + STATE(3984), 1, sym_variable_tuning, - STATE(3533), 2, + STATE(3645), 2, sym_comment, sym_include, - ACTIONS(5320), 5, + ACTIONS(5441), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, - [228425] = 11, - ACTIONS(3), 1, + [235973] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2073), 1, - sym__integer_literal, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(5356), 1, - sym_identifier, - STATE(2547), 1, - sym_object_access, - STATE(2909), 1, - sym__decimal_literal, - STATE(2932), 1, - sym__unary_minus_expressions, - STATE(3534), 2, + STATE(942), 1, + sym_accumulate_aggregate, + STATE(3646), 2, sym_comment, sym_include, - STATE(2934), 5, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, - sym_function_call, - sym_member_access, - [228464] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5429), 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, + [236002] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5079), 1, - aux_sym_type_tuning_token1, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5360), 1, - aux_sym_variable_tuning_token7, - STATE(3887), 1, - aux_sym_function_parameter_repeat1, - STATE(3888), 1, - sym_type_tuning, - STATE(4346), 1, - sym_function_parameter_tuning, - ACTIONS(5358), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3535), 2, - sym_comment, - sym_include, - ACTIONS(5362), 3, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [228505] = 11, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1917), 1, - sym__integer_literal, - ACTIONS(1921), 1, - anon_sym_LPAREN, - ACTIONS(5364), 1, - sym_identifier, - STATE(1310), 1, - sym_object_access, - STATE(1406), 1, - sym__decimal_literal, - STATE(1420), 1, - sym__unary_minus_expressions, - STATE(3536), 2, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(5085), 1, + sym__terminator, + STATE(3271), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, + sym_query_tuning, + STATE(3647), 2, sym_comment, sym_include, - STATE(1426), 5, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, - sym_function_call, - sym_member_access, - [228544] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [236041] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5144), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(4248), 1, - aux_sym_do_block_repeat1, - STATE(4444), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5988), 1, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2280), 1, + sym__block_terminator, + STATE(3879), 1, + sym_on_error_phrase, + STATE(3961), 1, + sym_on_quit_phrase, + STATE(4125), 1, + aux_sym_repeat_statement_repeat1, + STATE(4128), 1, + sym_on_stop_phrase, + STATE(5323), 1, + sym_repeat_tuning, + STATE(6015), 1, sym_body, - STATE(3537), 2, + STATE(3648), 2, sym_comment, sym_include, - STATE(5985), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [228587] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [236088] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, - aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, - aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, - aux_sym_variable_tuning_token8, - ACTIONS(5366), 1, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(5122), 1, sym__terminator, - STATE(3539), 1, - aux_sym_variable_definition_repeat2, - STATE(3815), 1, - sym_variable_tuning, - STATE(3538), 2, + STATE(3271), 1, + sym_using, + STATE(3454), 1, + sym_query_tuning, + STATE(3664), 1, + aux_sym_for_phrase_repeat1, + STATE(3649), 2, sym_comment, sym_include, - ACTIONS(5320), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - [228626] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [236127] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5368), 1, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(5254), 1, sym__terminator, - ACTIONS(5373), 1, - aux_sym_variable_tuning_token2, - ACTIONS(5376), 1, - aux_sym_variable_tuning_token7, - ACTIONS(5379), 1, - aux_sym_variable_tuning_token8, - STATE(3815), 1, - sym_variable_tuning, - STATE(3539), 3, + STATE(3271), 1, + sym_using, + STATE(3454), 1, + sym_query_tuning, + STATE(3837), 1, + aux_sym_for_phrase_repeat1, + STATE(3650), 2, sym_comment, sym_include, - aux_sym_variable_definition_repeat2, - ACTIONS(5370), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - [228663] = 11, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [236166] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, - sym__integer_literal, - ACTIONS(1879), 1, - anon_sym_LPAREN, - ACTIONS(5382), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, sym_identifier, - STATE(206), 1, + ACTIONS(5541), 1, + sym__terminator, + STATE(3604), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, sym_object_access, - STATE(248), 1, - sym__unary_minus_expressions, - STATE(277), 1, - sym__decimal_literal, - STATE(3540), 2, + STATE(3651), 2, sym_comment, sym_include, - STATE(249), 5, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, + STATE(5480), 2, sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, sym_member_access, - [228702] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(4208), 1, - sym_stop_after_phrase, - STATE(4248), 1, - aux_sym_do_block_repeat1, - STATE(4810), 1, - sym_do_tuning, - STATE(5924), 1, - sym_body, - STATE(3541), 2, - sym_comment, - sym_include, - STATE(5851), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [228745] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [236209] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(4211), 1, - sym_stop_after_phrase, - STATE(4248), 1, - aux_sym_do_block_repeat1, - STATE(4810), 1, - sym_do_tuning, - STATE(5834), 1, - sym_body, - STATE(3542), 2, - sym_comment, - sym_include, - STATE(5887), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [228788] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, + ACTIONS(5443), 1, aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, + ACTIONS(5445), 1, aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, + ACTIONS(5447), 1, aux_sym_variable_tuning_token8, - ACTIONS(5384), 1, + ACTIONS(5543), 1, sym__terminator, - STATE(3562), 1, + STATE(3720), 1, aux_sym_variable_definition_repeat2, - STATE(3815), 1, + STATE(3984), 1, sym_variable_tuning, - STATE(3543), 2, + STATE(3652), 2, sym_comment, sym_include, - ACTIONS(5320), 5, + ACTIONS(5441), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, - [228827] = 13, - ACTIONS(65), 1, + [236248] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5144), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(3919), 1, + sym_on_error_phrase, + STATE(3924), 1, + sym_on_quit_phrase, + STATE(4249), 1, + sym_on_stop_phrase, + STATE(4253), 1, + aux_sym_repeat_statement_repeat1, + STATE(4780), 1, + sym__block_terminator, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5726), 1, + sym_body, + STATE(3653), 2, + sym_comment, + sym_include, + [236295] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, + ACTIONS(5154), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, + ACTIONS(5156), 1, aux_sym_do_tuning_token1, - STATE(3541), 1, + STATE(3635), 1, aux_sym_do_block_repeat1, - STATE(4211), 1, + STATE(4349), 1, sym_stop_after_phrase, - STATE(4810), 1, + STATE(4926), 1, sym_do_tuning, - STATE(5834), 1, + STATE(5863), 1, sym_body, - STATE(3544), 2, + STATE(3654), 2, sym_comment, sym_include, - STATE(5887), 3, + STATE(6101), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [228870] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [236338] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5322), 1, - aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, - aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, - aux_sym_variable_tuning_token8, - ACTIONS(5386), 1, - sym__terminator, - STATE(3539), 1, - aux_sym_variable_definition_repeat2, - STATE(3815), 1, - sym_variable_tuning, - STATE(3545), 2, - sym_comment, - sym_include, - ACTIONS(5320), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - [228909] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, - aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, - aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, - aux_sym_variable_tuning_token8, - ACTIONS(5388), 1, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(5065), 1, sym__terminator, - STATE(3539), 1, - aux_sym_variable_definition_repeat2, - STATE(3815), 1, - sym_variable_tuning, - STATE(3546), 2, + STATE(3271), 1, + sym_using, + STATE(3454), 1, + sym_query_tuning, + STATE(3712), 1, + aux_sym_for_phrase_repeat1, + STATE(3655), 2, sym_comment, sym_include, - ACTIONS(5320), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - [228948] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [236377] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5390), 1, + ACTIONS(5545), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, - aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3547), 2, + STATE(3823), 1, + aux_sym_for_phrase_repeat1, + STATE(3656), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [228987] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [236416] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(957), 1, - sym_accumulate_aggregate, - STATE(3548), 2, - sym_comment, - sym_include, - ACTIONS(5330), 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, - [229016] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5390), 1, + ACTIONS(5260), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3571), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3549), 2, + STATE(3454), 1, + sym_query_tuning, + STATE(3657), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [229055] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [236455] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5266), 1, + ACTIONS(5065), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3550), 2, + STATE(3658), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [229094] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [236494] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5266), 1, + ACTIONS(5260), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3573), 1, + STATE(3758), 1, aux_sym_for_phrase_repeat1, - STATE(3551), 2, + STATE(3659), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [229133] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [236533] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5273), 1, + ACTIONS(5085), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3531), 1, + STATE(3703), 1, aux_sym_for_phrase_repeat1, - STATE(3552), 2, + STATE(3660), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [229172] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [236572] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5273), 1, + ACTIONS(5104), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, - aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3553), 2, + STATE(3763), 1, + aux_sym_for_phrase_repeat1, + STATE(3661), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [229211] = 11, - ACTIONS(65), 1, + [236611] = 13, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(4325), 1, + aux_sym_do_block_repeat1, + STATE(4349), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(5863), 1, + sym_body, + STATE(3662), 2, + sym_comment, + sym_include, + STATE(6101), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [236654] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5547), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3663), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [236697] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5392), 1, + ACTIONS(5204), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3532), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3554), 2, + STATE(3454), 1, + sym_query_tuning, + STATE(3664), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [229250] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [236736] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, - aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, - aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, - aux_sym_variable_tuning_token8, - ACTIONS(5394), 1, - sym__terminator, - STATE(3539), 1, - aux_sym_variable_definition_repeat2, - STATE(3815), 1, - sym_variable_tuning, - STATE(3555), 2, + STATE(973), 1, + sym_accumulate_aggregate, + STATE(3665), 2, sym_comment, sym_include, - ACTIONS(5320), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - [229289] = 11, - ACTIONS(65), 1, + ACTIONS(5429), 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, + [236765] = 13, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(4325), 1, + aux_sym_do_block_repeat1, + STATE(4396), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(5523), 1, + sym_body, + STATE(3666), 2, + sym_comment, + sym_include, + STATE(6001), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [236808] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5392), 1, + ACTIONS(5204), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, - aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3556), 2, + STATE(3792), 1, + aux_sym_for_phrase_repeat1, + STATE(3667), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [229328] = 11, - ACTIONS(65), 1, + [236847] = 13, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(3714), 1, + aux_sym_do_block_repeat1, + STATE(4396), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(5523), 1, + sym_body, + STATE(3668), 2, + sym_comment, + sym_include, + STATE(6001), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [236890] = 13, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(3684), 1, + aux_sym_do_block_repeat1, + STATE(4330), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(5670), 1, + sym_body, + STATE(3669), 2, + sym_comment, + sym_include, + STATE(5671), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [236933] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5071), 1, + ACTIONS(5104), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3575), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3557), 2, + STATE(3454), 1, + sym_query_tuning, + STATE(3670), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [229367] = 11, - ACTIONS(65), 1, + [236972] = 15, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5144), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1681), 1, + sym__block_terminator, + STATE(3849), 1, + sym_on_error_phrase, + STATE(3926), 1, + sym_on_quit_phrase, + STATE(4051), 1, + sym_on_stop_phrase, + STATE(4149), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(6089), 1, + sym_body, + STATE(3671), 2, + sym_comment, + sym_include, + [237019] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5396), 1, + ACTIONS(5549), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3558), 2, + STATE(3672), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [229406] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [237058] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(3559), 2, + ACTIONS(4850), 1, + aux_sym_type_tuning_token1, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5469), 1, + aux_sym_variable_tuning_token7, + STATE(3999), 1, + aux_sym_function_parameter_repeat1, + STATE(4011), 1, + sym_type_tuning, + STATE(4384), 1, + sym_function_parameter_tuning, + ACTIONS(5551), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3673), 2, sym_comment, sym_include, - ACTIONS(240), 11, - sym__terminator, - anon_sym_LPAREN, - aux_sym_function_call_token1, - aux_sym_setter_token1, - aux_sym_on_error_phrase_token1, - aux_sym_widget_field_token1, - aux_sym_run_tuning_token1, - aux_sym_run_tuning_token2, - aux_sym_run_tuning_token3, - aux_sym_run_tuning_token4, - aux_sym_run_tuning_token7, - [229433] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5471), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [237099] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, + ACTIONS(5443), 1, aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, + ACTIONS(5445), 1, aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, + ACTIONS(5447), 1, aux_sym_variable_tuning_token8, - ACTIONS(5398), 1, + ACTIONS(5553), 1, sym__terminator, - STATE(3539), 1, + STATE(3720), 1, aux_sym_variable_definition_repeat2, - STATE(3815), 1, + STATE(3984), 1, sym_variable_tuning, - STATE(3560), 2, + STATE(3674), 2, sym_comment, sym_include, - ACTIONS(5320), 5, + ACTIONS(5441), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, - [229472] = 6, - ACTIONS(65), 1, + [237138] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5555), 1, + sym__terminator, + STATE(3770), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3675), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [237181] = 13, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(3662), 1, + aux_sym_do_block_repeat1, + STATE(4358), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(6008), 1, + sym_body, + STATE(3676), 2, + sym_comment, + sym_include, + STATE(6078), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [237224] = 13, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(4325), 1, + aux_sym_do_block_repeat1, + STATE(4358), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(6008), 1, + sym_body, + STATE(3677), 2, + sym_comment, + sym_include, + STATE(6078), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [237267] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(791), 1, + STATE(582), 1, sym_accumulate_aggregate, - STATE(3561), 2, + STATE(3678), 2, sym_comment, sym_include, - ACTIONS(5330), 10, + ACTIONS(5429), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -242856,47 +250134,227 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [229501] = 11, - ACTIONS(65), 1, + [237296] = 11, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(5089), 1, + sym__terminator, + STATE(3271), 1, + sym_using, + STATE(3454), 1, + sym_query_tuning, + STATE(3810), 1, + aux_sym_for_phrase_repeat1, + STATE(3679), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [237335] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5557), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3680), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [237378] = 15, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5144), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(3856), 1, + sym_on_error_phrase, + STATE(3940), 1, + sym_on_quit_phrase, + STATE(4093), 1, + sym_on_stop_phrase, + STATE(4094), 1, + aux_sym_repeat_statement_repeat1, + STATE(5075), 1, + sym__block_terminator, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5580), 1, + sym_body, + STATE(3681), 2, + sym_comment, + sym_include, + [237425] = 13, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(3806), 1, + aux_sym_do_block_repeat1, + STATE(4371), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(6018), 1, + sym_body, + STATE(3682), 2, + sym_comment, + sym_include, + STATE(6017), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [237468] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, + ACTIONS(5443), 1, aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, + ACTIONS(5445), 1, aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, + ACTIONS(5447), 1, aux_sym_variable_tuning_token8, - ACTIONS(5400), 1, + ACTIONS(5559), 1, sym__terminator, - STATE(3539), 1, + STATE(3741), 1, aux_sym_variable_definition_repeat2, - STATE(3815), 1, + STATE(3984), 1, sym_variable_tuning, - STATE(3562), 2, + STATE(3683), 2, sym_comment, sym_include, - ACTIONS(5320), 5, + ACTIONS(5441), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, - [229540] = 6, - ACTIONS(65), 1, + [237507] = 13, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(4325), 1, + aux_sym_do_block_repeat1, + STATE(4371), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(6018), 1, + sym_body, + STATE(3684), 2, + sym_comment, + sym_include, + STATE(6017), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [237550] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5415), 1, + sym_identifier, + ACTIONS(5561), 1, + sym__terminator, + ACTIONS(5563), 1, + anon_sym_NO_DASHERROR, + STATE(3640), 1, + aux_sym_assign_statement_repeat1, + STATE(5013), 1, + sym_object_access, + STATE(5114), 1, + sym_assignment, + STATE(3685), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5795), 2, + sym_qualified_name, + sym_member_access, + [237593] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(949), 1, + STATE(5567), 1, sym_accumulate_aggregate, - STATE(3563), 2, + STATE(3686), 2, sym_comment, sym_include, - ACTIONS(5330), 10, + ACTIONS(5427), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -242907,133 +250365,247 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [229569] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [237622] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(5242), 1, + ACTIONS(5443), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5445), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5447), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5565), 1, sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3664), 1, - aux_sym_for_phrase_repeat1, - STATE(3564), 2, + STATE(3720), 1, + aux_sym_variable_definition_repeat2, + STATE(3984), 1, + sym_variable_tuning, + STATE(3687), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [229608] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5441), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + [237661] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5242), 1, + ACTIONS(5089), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3565), 2, + STATE(3688), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [229647] = 13, - ACTIONS(65), 1, + [237700] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5567), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3689), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [237743] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, + ACTIONS(5154), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, + ACTIONS(5156), 1, aux_sym_do_tuning_token1, - STATE(3500), 1, + STATE(4325), 1, aux_sym_do_block_repeat1, - STATE(4208), 1, + STATE(4414), 1, sym_stop_after_phrase, - STATE(4810), 1, + STATE(4926), 1, sym_do_tuning, - STATE(5924), 1, + STATE(6096), 1, sym_body, - STATE(3566), 2, + STATE(3690), 2, sym_comment, sym_include, - STATE(5851), 3, + STATE(5631), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [229690] = 11, - ACTIONS(65), 1, + [237786] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(5224), 1, + sym_accumulate_aggregate, + STATE(3691), 2, + sym_comment, + sym_include, + ACTIONS(5427), 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, + [237815] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, - aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, - aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, - aux_sym_variable_tuning_token8, - ACTIONS(5402), 1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(4325), 1, + aux_sym_do_block_repeat1, + STATE(4378), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(6115), 1, + sym_body, + STATE(3692), 2, + sym_comment, + sym_include, + STATE(6047), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [237858] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5415), 1, + sym_identifier, + ACTIONS(5569), 1, sym__terminator, - STATE(3545), 1, - aux_sym_variable_definition_repeat2, - STATE(3815), 1, - sym_variable_tuning, - STATE(3567), 2, + ACTIONS(5571), 1, + anon_sym_NO_DASHERROR, + STATE(3623), 1, + aux_sym_assign_statement_repeat1, + STATE(5013), 1, + sym_object_access, + STATE(5114), 1, + sym_assignment, + STATE(3693), 2, sym_comment, sym_include, - ACTIONS(5320), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - [229729] = 6, - ACTIONS(65), 1, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5795), 2, + sym_qualified_name, + sym_member_access, + [237901] = 12, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4850), 1, + aux_sym_type_tuning_token1, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5469), 1, + aux_sym_variable_tuning_token7, + STATE(3992), 1, + aux_sym_function_parameter_repeat1, + STATE(4009), 1, + sym_type_tuning, + STATE(4384), 1, + sym_function_parameter_tuning, + ACTIONS(5573), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3694), 2, + sym_comment, + sym_include, + ACTIONS(5471), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [237942] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(937), 1, + STATE(978), 1, sym_accumulate_aggregate, - STATE(3568), 2, + STATE(3695), 2, sym_comment, sym_include, - ACTIONS(5330), 10, + ACTIONS(5429), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -243044,614 +250616,451 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [229758] = 11, - ACTIONS(65), 1, + [237971] = 13, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(3677), 1, + aux_sym_do_block_repeat1, + STATE(4378), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(6115), 1, + sym_body, + STATE(3696), 2, + sym_comment, + sym_include, + STATE(6047), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [238014] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, + ACTIONS(5443), 1, aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, + ACTIONS(5445), 1, aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, + ACTIONS(5447), 1, aux_sym_variable_tuning_token8, - ACTIONS(5404), 1, + ACTIONS(5575), 1, sym__terminator, - STATE(3539), 1, + STATE(3616), 1, aux_sym_variable_definition_repeat2, - STATE(3815), 1, + STATE(3984), 1, sym_variable_tuning, - STATE(3569), 2, + STATE(3697), 2, sym_comment, sym_include, - ACTIONS(5320), 5, + ACTIONS(5441), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, - [229797] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [238053] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, + ACTIONS(5443), 1, aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, + ACTIONS(5445), 1, aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, + ACTIONS(5447), 1, aux_sym_variable_tuning_token8, - ACTIONS(5406), 1, + ACTIONS(5577), 1, sym__terminator, - STATE(3546), 1, + STATE(3720), 1, aux_sym_variable_definition_repeat2, - STATE(3815), 1, + STATE(3984), 1, sym_variable_tuning, - STATE(3570), 2, + STATE(3698), 2, sym_comment, sym_include, - ACTIONS(5320), 5, + ACTIONS(5441), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, - [229836] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(5408), 1, - sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3220), 1, - aux_sym_for_phrase_repeat1, - STATE(3406), 1, - sym_query_tuning, - STATE(3571), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [229875] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2001), 1, - sym__block_terminator, - STATE(3717), 1, - sym_on_error_phrase, - STATE(3871), 1, - sym_on_quit_phrase, - STATE(4119), 1, - sym_on_stop_phrase, - STATE(4132), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5885), 1, - sym_body, - STATE(3572), 2, - sym_comment, - sym_include, - [229922] = 11, - ACTIONS(65), 1, + [238092] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(5410), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5579), 1, sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3220), 1, - aux_sym_for_phrase_repeat1, - STATE(3406), 1, - sym_query_tuning, - STATE(3573), 2, + STATE(3636), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3699), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [229961] = 11, - ACTIONS(65), 1, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [238135] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(5412), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5581), 1, sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3662), 1, - aux_sym_for_phrase_repeat1, - STATE(3574), 2, + STATE(3638), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3700), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [230000] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [238178] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(5220), 1, - sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3220), 1, - aux_sym_for_phrase_repeat1, - STATE(3406), 1, - sym_query_tuning, - STATE(3575), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(3581), 1, + aux_sym_do_block_repeat1, + STATE(4414), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(6096), 1, + sym_body, + STATE(3701), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [230039] = 11, - ACTIONS(65), 1, + STATE(5631), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [238221] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(5220), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5415), 1, + sym_identifier, + ACTIONS(5583), 1, sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3578), 1, - aux_sym_for_phrase_repeat1, - STATE(3576), 2, + ACTIONS(5585), 1, + anon_sym_NO_DASHERROR, + STATE(3640), 1, + aux_sym_assign_statement_repeat1, + STATE(5013), 1, + sym_object_access, + STATE(5114), 1, + sym_assignment, + STATE(3702), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [230078] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(5795), 2, + sym_qualified_name, + sym_member_access, + [238264] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5410), 1, + ACTIONS(5254), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3597), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3577), 2, + STATE(3454), 1, + sym_query_tuning, + STATE(3703), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [230117] = 11, - ACTIONS(65), 1, + [238303] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(5412), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5587), 1, sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3220), 1, - aux_sym_for_phrase_repeat1, - STATE(3406), 1, - sym_query_tuning, - STATE(3578), 2, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3704), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [230156] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [238346] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5097), 1, + ACTIONS(5200), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3637), 1, + STATE(3642), 1, aux_sym_for_phrase_repeat1, - STATE(3579), 2, + STATE(3705), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [230195] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [238385] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(928), 1, - sym_accumulate_aggregate, - STATE(3580), 2, - sym_comment, - sym_include, - ACTIONS(5330), 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, - [230224] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(918), 1, - sym_accumulate_aggregate, - STATE(3581), 2, + ACTIONS(5443), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5445), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5447), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5589), 1, + sym__terminator, + STATE(3790), 1, + aux_sym_variable_definition_repeat2, + STATE(3984), 1, + sym_variable_tuning, + STATE(3706), 2, sym_comment, sym_include, - ACTIONS(5330), 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, - [230253] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5441), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + [238424] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5097), 1, + ACTIONS(5200), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3582), 2, + STATE(3707), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [230292] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, - aux_sym_on_error_phrase_token1, - STATE(1954), 1, - sym__block_terminator, - STATE(3789), 1, - sym_on_error_phrase, - STATE(3793), 1, - sym_on_quit_phrase, - STATE(4027), 1, - aux_sym_repeat_statement_repeat1, - STATE(4028), 1, - sym_on_stop_phrase, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5615), 1, - sym_body, - STATE(3583), 2, - sym_comment, - sym_include, - [230339] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(4248), 1, - aux_sym_do_block_repeat1, - STATE(4390), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5635), 1, - sym_body, - STATE(3584), 2, - sym_comment, - sym_include, - STATE(6018), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [230382] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [238463] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(3585), 2, - sym_comment, - sym_include, - ACTIONS(226), 11, - sym__terminator, - anon_sym_LPAREN, - aux_sym_function_call_token1, - aux_sym_setter_token1, - aux_sym_on_error_phrase_token1, - aux_sym_widget_field_token1, - aux_sym_run_tuning_token1, - aux_sym_run_tuning_token2, - aux_sym_run_tuning_token3, - aux_sym_run_tuning_token4, - aux_sym_run_tuning_token7, - [230409] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5057), 1, + ACTIONS(5591), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, - aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3586), 2, + STATE(3643), 1, + aux_sym_for_phrase_repeat1, + STATE(3708), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [230448] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [238502] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(907), 1, - sym_accumulate_aggregate, - STATE(3587), 2, - sym_comment, - sym_include, - ACTIONS(5330), 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, - [230477] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(896), 1, - sym_accumulate_aggregate, - STATE(3588), 2, + ACTIONS(5443), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5445), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5447), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5593), 1, + sym__terminator, + STATE(3720), 1, + aux_sym_variable_definition_repeat2, + STATE(3984), 1, + sym_variable_tuning, + STATE(3709), 2, sym_comment, sym_include, - ACTIONS(5330), 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, - [230506] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5441), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + [238541] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5057), 1, + ACTIONS(5591), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3553), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3589), 2, + STATE(3454), 1, + sym_query_tuning, + STATE(3710), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [230545] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [238580] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(885), 1, - sym_accumulate_aggregate, - STATE(3590), 2, - sym_comment, - sym_include, - ACTIONS(5330), 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, - [230574] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, STATE(655), 1, sym_accumulate_aggregate, - STATE(3591), 2, + STATE(3711), 2, sym_comment, sym_include, - ACTIONS(5330), 10, + ACTIONS(5429), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -243662,504 +251071,368 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [230603] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [238609] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(4244), 1, - sym_stop_after_phrase, - STATE(4248), 1, - aux_sym_do_block_repeat1, - STATE(4810), 1, - sym_do_tuning, - STATE(5478), 1, - sym_body, - STATE(3592), 2, - sym_comment, - sym_include, - STATE(5480), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [230646] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5232), 1, + ACTIONS(5246), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3556), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3593), 2, + STATE(3454), 1, + sym_query_tuning, + STATE(3712), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [230685] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [238648] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5232), 1, + ACTIONS(5246), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, - aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3594), 2, + STATE(3775), 1, + aux_sym_for_phrase_repeat1, + STATE(3713), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [230724] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [238687] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, + ACTIONS(5154), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, + ACTIONS(5156), 1, aux_sym_do_tuning_token1, - STATE(3491), 1, + STATE(4325), 1, aux_sym_do_block_repeat1, - STATE(4244), 1, + STATE(4510), 1, sym_stop_after_phrase, - STATE(4810), 1, + STATE(4926), 1, sym_do_tuning, - STATE(5478), 1, + STATE(5589), 1, sym_body, - STATE(3595), 2, + STATE(3714), 2, sym_comment, sym_include, - STATE(5480), 3, + STATE(5976), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [230767] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [238730] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5095), 1, + ACTIONS(5067), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3565), 1, + STATE(3777), 1, aux_sym_for_phrase_repeat1, - STATE(3596), 2, + STATE(3715), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [230806] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [238769] = 13, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(5414), 1, - sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3220), 1, - aux_sym_for_phrase_repeat1, - STATE(3406), 1, - sym_query_tuning, - STATE(3597), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [230845] = 13, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, + ACTIONS(5154), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, + ACTIONS(5156), 1, aux_sym_do_tuning_token1, - STATE(3584), 1, + STATE(3835), 1, aux_sym_do_block_repeat1, - STATE(4438), 1, + STATE(4510), 1, sym_stop_after_phrase, - STATE(4810), 1, + STATE(4926), 1, sym_do_tuning, - STATE(5593), 1, + STATE(5589), 1, sym_body, - STATE(3598), 2, + STATE(3716), 2, sym_comment, sym_include, - STATE(5993), 3, + STATE(5976), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [230888] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [238812] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5144), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(4248), 1, - aux_sym_do_block_repeat1, - STATE(4438), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5593), 1, - sym_body, - STATE(3599), 2, - sym_comment, - sym_include, - STATE(5993), 3, + STATE(2381), 1, + sym__block_terminator, + STATE(3865), 1, sym_on_error_phrase, - sym_on_stop_phrase, + STATE(3945), 1, sym_on_quit_phrase, - [230931] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5322), 1, - aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, - aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, - aux_sym_variable_tuning_token8, - ACTIONS(5416), 1, - sym__terminator, - STATE(3539), 1, - aux_sym_variable_definition_repeat2, - STATE(3815), 1, - sym_variable_tuning, - STATE(3600), 2, + STATE(4083), 1, + aux_sym_repeat_statement_repeat1, + STATE(4101), 1, + sym_on_stop_phrase, + STATE(5323), 1, + sym_repeat_tuning, + STATE(6097), 1, + sym_body, + STATE(3717), 2, sym_comment, sym_include, - ACTIONS(5320), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - [230970] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [238859] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(877), 1, - sym_accumulate_aggregate, - STATE(3601), 2, - sym_comment, - sym_include, - ACTIONS(5330), 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, - [230999] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5095), 1, + ACTIONS(5067), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3602), 2, + STATE(3718), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [231038] = 13, - ACTIONS(65), 1, + [238898] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(3599), 1, - aux_sym_do_block_repeat1, - STATE(4456), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5512), 1, - sym_body, - STATE(3603), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5595), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3719), 2, sym_comment, sym_include, - STATE(5970), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [231081] = 11, - ACTIONS(65), 1, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [238941] = 10, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5597), 1, + sym__terminator, + ACTIONS(5602), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5605), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5608), 1, + aux_sym_variable_tuning_token8, + STATE(3984), 1, + sym_variable_tuning, + STATE(3720), 3, + sym_comment, + sym_include, + aux_sym_variable_definition_repeat2, + ACTIONS(5599), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + [238978] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, + ACTIONS(5443), 1, aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, + ACTIONS(5445), 1, aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, + ACTIONS(5447), 1, aux_sym_variable_tuning_token8, - ACTIONS(5418), 1, + ACTIONS(5611), 1, sym__terminator, - STATE(3569), 1, + STATE(3794), 1, aux_sym_variable_definition_repeat2, - STATE(3815), 1, + STATE(3984), 1, sym_variable_tuning, - STATE(3604), 2, + STATE(3721), 2, sym_comment, sym_include, - ACTIONS(5320), 5, + ACTIONS(5441), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, - [231120] = 11, + [239017] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(862), 1, - sym__integer_literal, - ACTIONS(866), 1, - anon_sym_LPAREN, - ACTIONS(5420), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, sym_identifier, - STATE(705), 1, + ACTIONS(5613), 1, + sym__terminator, + STATE(3781), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, sym_object_access, - STATE(982), 1, - sym__decimal_literal, - STATE(997), 1, - sym__unary_minus_expressions, - STATE(3605), 2, + STATE(3722), 2, sym_comment, sym_include, - STATE(1000), 5, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, + STATE(5480), 2, sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, sym_member_access, - [231159] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(4248), 1, - aux_sym_do_block_repeat1, - STATE(4456), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5512), 1, - sym_body, - STATE(3606), 2, - sym_comment, - sym_include, - STATE(5970), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [231202] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(4248), 1, - aux_sym_do_block_repeat1, - STATE(4291), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(6017), 1, - sym_body, - STATE(3607), 2, - sym_comment, - sym_include, - STATE(5587), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [231245] = 11, + [239060] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1759), 1, - sym__integer_literal, - ACTIONS(1763), 1, - anon_sym_LPAREN, - ACTIONS(5422), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, sym_identifier, - STATE(2483), 1, + ACTIONS(5615), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, sym_object_access, - STATE(2779), 1, - sym__decimal_literal, - STATE(2823), 1, - sym__unary_minus_expressions, - STATE(3608), 2, + STATE(3723), 2, sym_comment, sym_include, - STATE(2816), 5, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, + STATE(5480), 2, sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, sym_member_access, - [231284] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [239103] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(865), 1, + STATE(970), 1, sym_accumulate_aggregate, - STATE(3609), 2, + STATE(3724), 2, sym_comment, sym_include, - ACTIONS(5330), 10, + ACTIONS(5429), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -244170,88 +251443,109 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [231313] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [239132] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5424), 1, - aux_sym_function_call_token1, - STATE(3610), 2, + ACTIONS(5443), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5445), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5447), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5617), 1, + sym__terminator, + STATE(3766), 1, + aux_sym_variable_definition_repeat2, + STATE(3984), 1, + sym_variable_tuning, + STATE(3725), 2, sym_comment, sym_include, - ACTIONS(230), 10, - sym__terminator, - anon_sym_LPAREN, - aux_sym_setter_token1, - aux_sym_on_error_phrase_token1, - aux_sym_widget_field_token1, - aux_sym_run_tuning_token1, - aux_sym_run_tuning_token2, - aux_sym_run_tuning_token3, - aux_sym_run_tuning_token4, - aux_sym_run_tuning_token7, - [231342] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5441), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + [239171] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(851), 1, - sym_accumulate_aggregate, - STATE(3611), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5144), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2225), 1, + sym__block_terminator, + STATE(3854), 1, + sym_on_error_phrase, + STATE(3934), 1, + sym_on_quit_phrase, + STATE(4067), 1, + sym_on_stop_phrase, + STATE(4068), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5940), 1, + sym_body, + STATE(3726), 2, sym_comment, sym_include, - ACTIONS(5330), 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, - [231371] = 6, - ACTIONS(65), 1, + [239218] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5371), 1, - sym_accumulate_aggregate, - STATE(3612), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5619), 1, + sym__terminator, + STATE(3575), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3727), 2, sym_comment, sym_include, - ACTIONS(5348), 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, - [231400] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [239261] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(834), 1, + STATE(617), 1, sym_accumulate_aggregate, - STATE(3613), 2, + STATE(3728), 2, sym_comment, sym_include, - ACTIONS(5330), 10, + ACTIONS(5429), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -244262,219 +251556,142 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [231429] = 13, - ACTIONS(65), 1, + [239290] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(3729), 2, + sym_comment, + sym_include, + ACTIONS(100), 11, + sym__namecolon, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [239317] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, + ACTIONS(5154), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, + ACTIONS(5156), 1, aux_sym_do_tuning_token1, - STATE(4248), 1, + STATE(4325), 1, aux_sym_do_block_repeat1, - STATE(4442), 1, + STATE(4369), 1, sym_stop_after_phrase, - STATE(4810), 1, + STATE(4926), 1, sym_do_tuning, - STATE(5427), 1, + STATE(5599), 1, sym_body, - STATE(3614), 2, + STATE(3730), 2, sym_comment, sym_include, - STATE(5939), 3, + STATE(5597), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [231472] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2229), 1, - sym__integer_literal, - ACTIONS(2233), 1, - anon_sym_LPAREN, - ACTIONS(5426), 1, - sym_identifier, - STATE(2470), 1, - sym_object_access, - STATE(2802), 1, - sym__unary_minus_expressions, - STATE(2856), 1, - sym__decimal_literal, - STATE(3615), 2, - sym_comment, - sym_include, - STATE(2801), 5, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, - sym_function_call, - sym_member_access, - [231511] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [239360] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5322), 1, - aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, - aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, - aux_sym_variable_tuning_token8, - ACTIONS(5428), 1, - sym__terminator, - STATE(3492), 1, - aux_sym_variable_definition_repeat2, - STATE(3815), 1, - sym_variable_tuning, - STATE(3616), 2, - sym_comment, - sym_include, - ACTIONS(5320), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - [231550] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(5065), 1, - sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3220), 1, - aux_sym_for_phrase_repeat1, - STATE(3406), 1, - sym_query_tuning, - STATE(3617), 2, + STATE(3731), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [231589] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4496), 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_access_tuning_token4, + aux_sym_access_tuning_token5, + aux_sym_workfile_definition_token1, + aux_sym_workfile_definition_token2, + [239387] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(5071), 1, - sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3220), 1, - aux_sym_for_phrase_repeat1, - STATE(3406), 1, - sym_query_tuning, - STATE(3618), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [231628] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5065), 1, + ACTIONS(5621), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3594), 1, + STATE(3672), 1, aux_sym_for_phrase_repeat1, - STATE(3619), 2, + STATE(3732), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [231667] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [239426] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2037), 1, - sym__block_terminator, - STATE(3735), 1, - sym_on_error_phrase, - STATE(3857), 1, - sym_on_quit_phrase, - STATE(4169), 1, - sym_on_stop_phrase, - STATE(4174), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5437), 1, - sym_body, - STATE(3620), 2, + STATE(950), 1, + sym_accumulate_aggregate, + STATE(3733), 2, sym_comment, sym_include, - [231714] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5429), 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, + [239455] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(3621), 2, + STATE(3734), 2, sym_comment, sym_include, - ACTIONS(5430), 11, + ACTIONS(5623), 11, sym__terminator, anon_sym_LPAREN, aux_sym_function_call_token1, @@ -244486,299 +251703,251 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_run_tuning_token3, aux_sym_run_tuning_token4, aux_sym_run_tuning_token7, - [231741] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [239482] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(3606), 1, - aux_sym_do_block_repeat1, - STATE(4442), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5427), 1, - sym_body, - STATE(3622), 2, - sym_comment, - sym_include, - STATE(5939), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [231784] = 13, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(3633), 1, - aux_sym_do_block_repeat1, - STATE(4262), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5855), 1, - sym_body, - STATE(3623), 2, + ACTIONS(5443), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5445), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5447), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5625), 1, + sym__terminator, + STATE(3674), 1, + aux_sym_variable_definition_repeat2, + STATE(3984), 1, + sym_variable_tuning, + STATE(3735), 2, sym_comment, sym_include, - STATE(5527), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [231827] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5441), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + [239521] = 15, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(555), 1, - sym_accumulate_aggregate, - STATE(3624), 2, - sym_comment, - sym_include, - ACTIONS(5330), 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, - [231856] = 15, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5109), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, + ACTIONS(5144), 1, aux_sym_on_error_phrase_token1, - STATE(1978), 1, + STATE(2412), 1, sym__block_terminator, - STATE(3775), 1, + STATE(3874), 1, sym_on_error_phrase, - STATE(3813), 1, + STATE(3953), 1, sym_on_quit_phrase, - STATE(4031), 1, - aux_sym_repeat_statement_repeat1, - STATE(4032), 1, + STATE(4107), 1, sym_on_stop_phrase, - STATE(5189), 1, + STATE(4113), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5764), 1, + STATE(5549), 1, sym_body, - STATE(3625), 2, + STATE(3736), 2, sym_comment, sym_include, - [231903] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [239568] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(4248), 1, - aux_sym_do_block_repeat1, - STATE(4262), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5855), 1, - sym_body, - STATE(3626), 2, + ACTIONS(5443), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5445), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5447), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5627), 1, + sym__terminator, + STATE(3652), 1, + aux_sym_variable_definition_repeat2, + STATE(3984), 1, + sym_variable_tuning, + STATE(3737), 2, sym_comment, sym_include, - STATE(5527), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [231946] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5441), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + [239607] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, + ACTIONS(5144), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5204), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(3732), 1, + STATE(1607), 1, + sym__block_terminator, + STATE(3882), 1, sym_on_error_phrase, - STATE(3849), 1, + STATE(3949), 1, sym_on_quit_phrase, - STATE(4145), 1, - sym_on_stop_phrase, - STATE(4148), 1, + STATE(4217), 1, aux_sym_repeat_statement_repeat1, - STATE(4577), 1, - sym__block_terminator, - STATE(5189), 1, + STATE(4218), 1, + sym_on_stop_phrase, + STATE(5323), 1, sym_repeat_tuning, - STATE(5820), 1, + STATE(5909), 1, sym_body, - STATE(3627), 2, + STATE(3738), 2, sym_comment, sym_include, - [231993] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [239654] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(3628), 2, + ACTIONS(5443), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5445), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5447), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5629), 1, + sym__terminator, + STATE(3720), 1, + aux_sym_variable_definition_repeat2, + STATE(3984), 1, + sym_variable_tuning, + STATE(3739), 2, sym_comment, sym_include, - ACTIONS(3916), 11, - anon_sym_COLON, - anon_sym_DOT, - aux_sym__block_terminator_token1, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_variable_tuning_token7, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token2, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [232020] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5441), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + [239693] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(517), 1, - sym_accumulate_aggregate, - STATE(3629), 2, + ACTIONS(5443), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5445), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5447), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5631), 1, + sym__terminator, + STATE(3795), 1, + aux_sym_variable_definition_repeat2, + STATE(3984), 1, + sym_variable_tuning, + STATE(3740), 2, sym_comment, sym_include, - ACTIONS(5330), 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, - [232049] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5441), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + [239732] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5079), 1, - aux_sym_type_tuning_token1, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5360), 1, + ACTIONS(5443), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5445), 1, aux_sym_variable_tuning_token7, - STATE(3896), 1, - sym_type_tuning, - STATE(3897), 1, - aux_sym_function_parameter_repeat1, - STATE(4346), 1, - sym_function_parameter_tuning, - ACTIONS(5432), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3630), 2, + ACTIONS(5447), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5633), 1, + sym__terminator, + STATE(3720), 1, + aux_sym_variable_definition_repeat2, + STATE(3984), 1, + sym_variable_tuning, + STATE(3741), 2, sym_comment, sym_include, - ACTIONS(5362), 3, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [232090] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5441), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + [239771] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5079), 1, - aux_sym_type_tuning_token1, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5360), 1, + ACTIONS(5443), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5445), 1, aux_sym_variable_tuning_token7, - STATE(3944), 1, - sym_type_tuning, - STATE(3945), 1, - aux_sym_function_parameter_repeat1, - STATE(4346), 1, - sym_function_parameter_tuning, - ACTIONS(5434), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3631), 2, + ACTIONS(5447), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5635), 1, + sym__terminator, + STATE(3687), 1, + aux_sym_variable_definition_repeat2, + STATE(3984), 1, + sym_variable_tuning, + STATE(3742), 2, sym_comment, sym_include, - ACTIONS(5362), 3, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [232131] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5441), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + [239810] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5253), 1, + STATE(790), 1, sym_accumulate_aggregate, - STATE(3632), 2, + STATE(3743), 2, sym_comment, sym_include, - ACTIONS(5348), 10, + ACTIONS(5429), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -244789,49 +251958,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [232160] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [239839] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(4248), 1, - aux_sym_do_block_repeat1, - STATE(4282), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5907), 1, - sym_body, - STATE(3633), 2, - sym_comment, - sym_include, - STATE(5561), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [232203] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(817), 1, + STATE(454), 1, sym_accumulate_aggregate, - STATE(3634), 2, + STATE(3744), 2, sym_comment, sym_include, - ACTIONS(5330), 10, + ACTIONS(5429), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -244842,19 +251981,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [232232] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [239868] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(842), 1, + STATE(800), 1, sym_accumulate_aggregate, - STATE(3635), 2, + STATE(3745), 2, sym_comment, sym_include, - ACTIONS(5330), 10, + ACTIONS(5429), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -244865,165 +252004,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [232261] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [239897] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(3607), 1, - aux_sym_do_block_repeat1, - STATE(4282), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5907), 1, - sym_body, - STATE(3636), 2, - sym_comment, - sym_include, - STATE(5561), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [232304] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(5153), 1, - sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3220), 1, - aux_sym_for_phrase_repeat1, - STATE(3406), 1, - sym_query_tuning, - STATE(3637), 2, + STATE(3746), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [232343] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(5153), 1, + ACTIONS(5637), 11, sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3700), 1, - aux_sym_for_phrase_repeat1, - STATE(3638), 2, - sym_comment, - sym_include, - ACTIONS(2470), 5, + anon_sym_LPAREN, aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [232382] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, + aux_sym_setter_token1, aux_sym_on_error_phrase_token1, - STATE(1943), 1, - sym__block_terminator, - STATE(3720), 1, - sym_on_error_phrase, - STATE(3868), 1, - sym_on_quit_phrase, - STATE(4136), 1, - aux_sym_repeat_statement_repeat1, - STATE(4143), 1, - sym_on_stop_phrase, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5795), 1, - sym_body, - STATE(3639), 2, - sym_comment, - sym_include, - [232429] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_widget_field_token1, + aux_sym_run_tuning_token1, + aux_sym_run_tuning_token2, + aux_sym_run_tuning_token3, + aux_sym_run_tuning_token4, + aux_sym_run_tuning_token7, + [239924] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5099), 1, + ACTIONS(5276), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3702), 1, + STATE(3751), 1, aux_sym_for_phrase_repeat1, - STATE(3640), 2, + STATE(3747), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [232468] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [239963] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(378), 1, + STATE(937), 1, sym_accumulate_aggregate, - STATE(3641), 2, + STATE(3748), 2, sym_comment, sym_include, - ACTIONS(5330), 10, + ACTIONS(5429), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -245034,383 +252077,396 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [232497] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [239992] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(3642), 2, + ACTIONS(5443), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5445), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5447), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5639), 1, + sym__terminator, + STATE(3801), 1, + aux_sym_variable_definition_repeat2, + STATE(3984), 1, + sym_variable_tuning, + STATE(3749), 2, sym_comment, sym_include, - ACTIONS(3926), 11, - anon_sym_COLON, - anon_sym_DOT, - aux_sym__block_terminator_token1, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_variable_tuning_token7, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token2, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [232524] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5441), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + [240031] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5099), 1, + ACTIONS(5641), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3643), 2, + STATE(3750), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [232563] = 15, - ACTIONS(65), 1, + [240070] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(5643), 1, + sym__terminator, + STATE(3271), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, + sym_query_tuning, + STATE(3751), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [240109] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, + ACTIONS(5144), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5188), 1, + ACTIONS(5236), 1, aux_sym__block_terminator_token1, - STATE(2322), 1, + STATE(1925), 1, sym__block_terminator, - STATE(3748), 1, + STATE(3852), 1, sym_on_error_phrase, - STATE(3851), 1, + STATE(3930), 1, sym_on_quit_phrase, - STATE(4095), 1, + STATE(4047), 1, sym_on_stop_phrase, - STATE(4167), 1, + STATE(4048), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5805), 1, + STATE(5512), 1, sym_body, - STATE(3644), 2, + STATE(3752), 2, sym_comment, sym_include, - [232610] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [240156] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(3645), 2, + STATE(812), 1, + sym_accumulate_aggregate, + STATE(3753), 2, sym_comment, sym_include, - ACTIONS(4322), 11, - anon_sym_COLON, - anon_sym_DOT, - aux_sym__block_terminator_token1, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_variable_tuning_token7, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token2, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [232637] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5429), 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, + [240185] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5144), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(3507), 1, - aux_sym_do_block_repeat1, - STATE(4444), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5988), 1, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1866), 1, + sym__block_terminator, + STATE(3860), 1, + sym_on_error_phrase, + STATE(3951), 1, + sym_on_quit_phrase, + STATE(4103), 1, + aux_sym_repeat_statement_repeat1, + STATE(4104), 1, + sym_on_stop_phrase, + STATE(5323), 1, + sym_repeat_tuning, + STATE(6123), 1, sym_body, - STATE(3646), 2, + STATE(3754), 2, sym_comment, sym_include, - STATE(5985), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [232680] = 15, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [240232] = 15, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, + ACTIONS(5144), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(3782), 1, + STATE(2291), 1, + sym__block_terminator, + STATE(3851), 1, sym_on_error_phrase, - STATE(3807), 1, + STATE(3954), 1, sym_on_quit_phrase, - STATE(3997), 1, - sym_on_stop_phrase, - STATE(3999), 1, + STATE(4102), 1, aux_sym_repeat_statement_repeat1, - STATE(4670), 1, - sym__block_terminator, - STATE(5189), 1, + STATE(4106), 1, + sym_on_stop_phrase, + STATE(5323), 1, sym_repeat_tuning, - STATE(5902), 1, + STATE(5963), 1, sym_body, - STATE(3647), 2, + STATE(3755), 2, sym_comment, sym_include, - [232727] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [240279] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5093), 1, + ACTIONS(5643), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3675), 1, + STATE(3804), 1, aux_sym_for_phrase_repeat1, - STATE(3648), 2, + STATE(3756), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [232766] = 6, - ACTIONS(65), 1, + [240318] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(629), 1, - sym_accumulate_aggregate, - STATE(3649), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5645), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3757), 2, sym_comment, sym_include, - ACTIONS(5330), 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, - [232795] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [240361] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5079), 1, - aux_sym_type_tuning_token1, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5360), 1, - aux_sym_variable_tuning_token7, - STATE(3912), 1, - aux_sym_function_parameter_repeat1, - STATE(3969), 1, - sym_type_tuning, - STATE(4346), 1, - sym_function_parameter_tuning, - ACTIONS(5436), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3650), 2, - sym_comment, - sym_include, - ACTIONS(5362), 3, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [232836] = 15, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2261), 1, - sym__block_terminator, - STATE(3719), 1, - sym_on_error_phrase, - STATE(3809), 1, - sym_on_quit_phrase, - STATE(4085), 1, - aux_sym_repeat_statement_repeat1, - STATE(4087), 1, - sym_on_stop_phrase, - STATE(5189), 1, - sym_repeat_tuning, - STATE(6000), 1, - sym_body, - STATE(3651), 2, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(5647), 1, + sym__terminator, + STATE(3271), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, + sym_query_tuning, + STATE(3758), 2, sym_comment, sym_include, - [232883] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [240400] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(3656), 1, - aux_sym_do_block_repeat1, - STATE(4291), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(6017), 1, - sym_body, - STATE(3652), 2, - sym_comment, - sym_include, - STATE(5587), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [232926] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5093), 1, + ACTIONS(5647), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, - aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3653), 2, + STATE(3827), 1, + aux_sym_for_phrase_repeat1, + STATE(3759), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [232965] = 11, + [240439] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2187), 1, - sym__integer_literal, - ACTIONS(2191), 1, - anon_sym_LPAREN, - ACTIONS(5438), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, sym_identifier, - STATE(2459), 1, + ACTIONS(5649), 1, + sym__terminator, + STATE(3704), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, sym_object_access, - STATE(2870), 1, - sym__unary_minus_expressions, - STATE(2875), 1, - sym__decimal_literal, - STATE(3654), 2, + STATE(3760), 2, sym_comment, sym_include, - STATE(2869), 5, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, + STATE(5480), 2, sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, sym_member_access, - [233004] = 6, - ACTIONS(65), 1, + [240482] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5651), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3761), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [240525] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5218), 1, + STATE(925), 1, sym_accumulate_aggregate, - STATE(3655), 2, + STATE(3762), 2, sym_comment, sym_include, - ACTIONS(5348), 10, + ACTIONS(5429), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -245421,49 +252477,159 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [233033] = 13, - ACTIONS(65), 1, + [240554] = 11, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(5325), 1, + sym__terminator, + STATE(3271), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, + sym_query_tuning, + STATE(3763), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [240593] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(5325), 1, + sym__terminator, + STATE(3271), 1, + sym_using, + STATE(3454), 1, + sym_query_tuning, + STATE(3828), 1, + aux_sym_for_phrase_repeat1, + STATE(3764), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [240632] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(4248), 1, - aux_sym_do_block_repeat1, - STATE(4311), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5994), 1, - sym_body, - STATE(3656), 2, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(5108), 1, + sym__terminator, + STATE(3271), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, + sym_query_tuning, + STATE(3765), 2, sym_comment, sym_include, - STATE(5614), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [233076] = 6, - ACTIONS(65), 1, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [240671] = 11, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5443), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5445), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5447), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5653), 1, + sym__terminator, + STATE(3720), 1, + aux_sym_variable_definition_repeat2, + STATE(3984), 1, + sym_variable_tuning, + STATE(3766), 2, + sym_comment, + sym_include, + ACTIONS(5441), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + [240710] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(5108), 1, + sym__terminator, + STATE(3271), 1, + sym_using, + STATE(3454), 1, + sym_query_tuning, + STATE(3707), 1, + aux_sym_for_phrase_repeat1, + STATE(3767), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [240749] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(737), 1, + STATE(819), 1, sym_accumulate_aggregate, - STATE(3657), 2, + STATE(3768), 2, sym_comment, sym_include, - ACTIONS(5330), 10, + ACTIONS(5429), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -245474,331 +252640,515 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [233105] = 5, - ACTIONS(65), 1, + [240778] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3658), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5655), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3769), 2, sym_comment, sym_include, - ACTIONS(146), 11, - sym__terminator, - anon_sym_LPAREN, - aux_sym_function_call_token1, - aux_sym_setter_token1, - aux_sym_on_error_phrase_token1, - aux_sym_widget_field_token1, - aux_sym_run_tuning_token1, - aux_sym_run_tuning_token2, - aux_sym_run_tuning_token3, - aux_sym_run_tuning_token4, - aux_sym_run_tuning_token7, - [233132] = 11, - ACTIONS(65), 1, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [240821] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5657), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3770), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [240864] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, - aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, - aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, - aux_sym_variable_tuning_token8, - ACTIONS(5440), 1, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(5220), 1, sym__terminator, - STATE(3600), 1, - aux_sym_variable_definition_repeat2, - STATE(3815), 1, - sym_variable_tuning, - STATE(3659), 2, + STATE(3271), 1, + sym_using, + STATE(3454), 1, + sym_query_tuning, + STATE(3710), 1, + aux_sym_for_phrase_repeat1, + STATE(3771), 2, sym_comment, sym_include, - ACTIONS(5320), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - [233171] = 11, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [240903] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(924), 1, - sym__integer_literal, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(5442), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, sym_identifier, - STATE(264), 1, + ACTIONS(5659), 1, + sym__terminator, + STATE(3817), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, sym_object_access, - STATE(319), 1, - sym__decimal_literal, - STATE(348), 1, - sym__unary_minus_expressions, - STATE(3660), 2, + STATE(3772), 2, sym_comment, sym_include, - STATE(349), 5, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, + STATE(5480), 2, sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, sym_member_access, - [233210] = 11, + [240946] = 13, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(4325), 1, + aux_sym_do_block_repeat1, + STATE(4497), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(5727), 1, + sym_body, + STATE(3773), 2, + sym_comment, + sym_include, + STATE(5925), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [240989] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(648), 1, - sym__integer_literal, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(5444), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, sym_identifier, - STATE(18), 1, + ACTIONS(5661), 1, + sym__terminator, + STATE(3793), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, sym_object_access, - STATE(21), 1, - sym__decimal_literal, - STATE(45), 1, - sym__unary_minus_expressions, - STATE(3661), 2, + STATE(3774), 2, sym_comment, sym_include, - STATE(46), 5, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, + STATE(5480), 2, sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, sym_member_access, - [233249] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [241032] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5446), 1, + ACTIONS(5663), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3662), 2, + STATE(3775), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [233288] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [241071] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(3663), 2, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(5663), 1, + sym__terminator, + STATE(3271), 1, + sym_using, + STATE(3454), 1, + sym_query_tuning, + STATE(3824), 1, + aux_sym_for_phrase_repeat1, + STATE(3776), 2, sym_comment, sym_include, - ACTIONS(5448), 11, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [241110] = 11, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(5288), 1, sym__terminator, - anon_sym_LPAREN, + STATE(3271), 1, + sym_using, + STATE(3283), 1, + aux_sym_for_phrase_repeat1, + STATE(3454), 1, + sym_query_tuning, + STATE(3777), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, aux_sym_function_call_token1, - aux_sym_setter_token1, - aux_sym_on_error_phrase_token1, - aux_sym_widget_field_token1, - aux_sym_run_tuning_token1, - aux_sym_run_tuning_token2, - aux_sym_run_tuning_token3, - aux_sym_run_tuning_token4, - aux_sym_run_tuning_token7, - [233315] = 11, - ACTIONS(65), 1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [241149] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(5288), 1, + sym__terminator, + STATE(3271), 1, + sym_using, + STATE(3454), 1, + sym_query_tuning, + STATE(3825), 1, + aux_sym_for_phrase_repeat1, + STATE(3778), 2, + sym_comment, + sym_include, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [241188] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5450), 1, + ACTIONS(5220), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3664), 2, + STATE(3779), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [233354] = 11, - ACTIONS(65), 1, + [241227] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5665), 1, + sym__terminator, + STATE(3632), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3780), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [241270] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5667), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3781), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [241313] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, - aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, - aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, - aux_sym_variable_tuning_token8, - ACTIONS(5452), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5669), 1, sym__terminator, - STATE(3712), 1, - aux_sym_variable_definition_repeat2, - STATE(3815), 1, - sym_variable_tuning, - STATE(3665), 2, + STATE(3830), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3782), 2, sym_comment, sym_include, - ACTIONS(5320), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - [233393] = 11, - ACTIONS(65), 1, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [241356] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, - aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, - aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, - aux_sym_variable_tuning_token8, - ACTIONS(5454), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5671), 1, sym__terminator, - STATE(3539), 1, - aux_sym_variable_definition_repeat2, - STATE(3815), 1, - sym_variable_tuning, - STATE(3666), 2, + STATE(3831), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3783), 2, sym_comment, sym_include, - ACTIONS(5320), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - [233432] = 5, - ACTIONS(65), 1, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [241399] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3667), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5673), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3784), 2, sym_comment, sym_include, - ACTIONS(230), 11, - sym__terminator, - anon_sym_LPAREN, - aux_sym_function_call_token1, - aux_sym_setter_token1, - aux_sym_on_error_phrase_token1, - aux_sym_widget_field_token1, - aux_sym_run_tuning_token1, - aux_sym_run_tuning_token2, - aux_sym_run_tuning_token3, - aux_sym_run_tuning_token4, - aux_sym_run_tuning_token7, - [233459] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [241442] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5450), 1, + ACTIONS(5675), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3558), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3668), 2, + STATE(3454), 1, + sym_query_tuning, + STATE(3785), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [233498] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [241481] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(3669), 2, - sym_comment, - sym_include, - ACTIONS(5456), 11, - sym__terminator, - anon_sym_LPAREN, - aux_sym_function_call_token1, - aux_sym_setter_token1, - aux_sym_on_error_phrase_token1, - aux_sym_widget_field_token1, - aux_sym_run_tuning_token1, - aux_sym_run_tuning_token2, - aux_sym_run_tuning_token3, - aux_sym_run_tuning_token4, - aux_sym_run_tuning_token7, - [233525] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5161), 1, + STATE(825), 1, sym_accumulate_aggregate, - STATE(3670), 2, + STATE(3786), 2, sym_comment, sym_include, - ACTIONS(5348), 10, + ACTIONS(5429), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -245809,19 +253159,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [233554] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [241510] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(823), 1, + STATE(636), 1, sym_accumulate_aggregate, - STATE(3671), 2, + STATE(3787), 2, sym_comment, sym_include, - ACTIONS(5330), 10, + ACTIONS(5429), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -245832,666 +253182,791 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [233583] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [241539] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, + ACTIONS(5443), 1, aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, + ACTIONS(5445), 1, aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, + ACTIONS(5447), 1, aux_sym_variable_tuning_token8, - ACTIONS(5458), 1, + ACTIONS(5677), 1, sym__terminator, - STATE(3685), 1, + STATE(3720), 1, aux_sym_variable_definition_repeat2, - STATE(3815), 1, + STATE(3984), 1, sym_variable_tuning, - STATE(3672), 2, + STATE(3788), 2, sym_comment, sym_include, - ACTIONS(5320), 5, + ACTIONS(5441), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, - [233622] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [241578] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(911), 1, - sym_accumulate_aggregate, - STATE(3673), 2, + ACTIONS(2485), 1, + aux_sym_using_statement_token1, + ACTIONS(2489), 1, + aux_sym_query_tuning_token5, + ACTIONS(5116), 1, + sym__terminator, + STATE(3271), 1, + sym_using, + STATE(3454), 1, + sym_query_tuning, + STATE(3779), 1, + aux_sym_for_phrase_repeat1, + STATE(3789), 2, sym_comment, sym_include, - ACTIONS(5330), 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, - [233651] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2483), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [241617] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, + ACTIONS(5443), 1, aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, + ACTIONS(5445), 1, aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, + ACTIONS(5447), 1, aux_sym_variable_tuning_token8, - ACTIONS(5460), 1, + ACTIONS(5679), 1, sym__terminator, - STATE(3713), 1, + STATE(3720), 1, aux_sym_variable_definition_repeat2, - STATE(3815), 1, + STATE(3984), 1, sym_variable_tuning, - STATE(3674), 2, + STATE(3790), 2, sym_comment, sym_include, - ACTIONS(5320), 5, + ACTIONS(5441), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, - [233690] = 11, - ACTIONS(65), 1, + [241656] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(916), 1, + sym_accumulate_aggregate, + STATE(3791), 2, + sym_comment, + sym_include, + ACTIONS(5429), 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, + [241685] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5260), 1, + ACTIONS(5621), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3675), 2, + STATE(3792), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [233729] = 11, - ACTIONS(65), 1, + [241724] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(5260), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5681), 1, sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3691), 1, - aux_sym_for_phrase_repeat1, - STATE(3676), 2, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3793), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [233768] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [241767] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(5045), 1, + ACTIONS(5443), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5445), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5447), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5683), 1, sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3693), 1, - aux_sym_for_phrase_repeat1, - STATE(3677), 2, + STATE(3720), 1, + aux_sym_variable_definition_repeat2, + STATE(3984), 1, + sym_variable_tuning, + STATE(3794), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [233807] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5441), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + [241806] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(5045), 1, + ACTIONS(5443), 1, + aux_sym_variable_tuning_token2, + ACTIONS(5445), 1, + aux_sym_variable_tuning_token7, + ACTIONS(5447), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5685), 1, sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3220), 1, - aux_sym_for_phrase_repeat1, - STATE(3406), 1, - sym_query_tuning, - STATE(3678), 2, + STATE(3720), 1, + aux_sym_variable_definition_repeat2, + STATE(3984), 1, + sym_variable_tuning, + STATE(3795), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [233846] = 15, - ACTIONS(65), 1, + ACTIONS(5441), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + [241845] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5115), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(3738), 1, - sym_on_error_phrase, - STATE(3818), 1, - sym_on_quit_phrase, - STATE(4115), 1, - aux_sym_repeat_statement_repeat1, - STATE(4116), 1, - sym_on_stop_phrase, - STATE(4776), 1, - sym__block_terminator, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5965), 1, - sym_body, - STATE(3679), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5687), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3796), 2, sym_comment, sym_include, - [233893] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [241888] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(3682), 1, - aux_sym_do_block_repeat1, - STATE(4382), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5789), 1, - sym_body, - STATE(3680), 2, + STATE(906), 1, + sym_accumulate_aggregate, + STATE(3797), 2, sym_comment, sym_include, - STATE(5735), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [233936] = 13, - ACTIONS(65), 1, + ACTIONS(5429), 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, + [241917] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, - aux_sym_do_tuning_token1, - STATE(4248), 1, - aux_sym_do_block_repeat1, - STATE(4382), 1, - sym_stop_after_phrase, - STATE(4810), 1, - sym_do_tuning, - STATE(5789), 1, - sym_body, - STATE(3681), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5689), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3798), 2, sym_comment, sym_include, - STATE(5735), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [233979] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [241960] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, + ACTIONS(5154), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, + ACTIONS(5156), 1, aux_sym_do_tuning_token1, - STATE(4248), 1, + STATE(3773), 1, aux_sym_do_block_repeat1, - STATE(4389), 1, + STATE(4521), 1, sym_stop_after_phrase, - STATE(4810), 1, + STATE(4926), 1, sym_do_tuning, - STATE(5701), 1, + STATE(5591), 1, sym_body, - STATE(3682), 2, + STATE(3799), 2, sym_comment, sym_include, - STATE(5768), 3, + STATE(5899), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [234022] = 11, - ACTIONS(65), 1, + [242003] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5691), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3800), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [242046] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, + ACTIONS(5443), 1, aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, + ACTIONS(5445), 1, aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, + ACTIONS(5447), 1, aux_sym_variable_tuning_token8, - ACTIONS(5462), 1, + ACTIONS(5693), 1, sym__terminator, - STATE(3706), 1, + STATE(3720), 1, aux_sym_variable_definition_repeat2, - STATE(3815), 1, + STATE(3984), 1, sym_variable_tuning, - STATE(3683), 2, + STATE(3801), 2, sym_comment, sym_include, - ACTIONS(5320), 5, + ACTIONS(5441), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, - [234061] = 11, - ACTIONS(65), 1, + [242085] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(5464), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5695), 1, sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3220), 1, - aux_sym_for_phrase_repeat1, - STATE(3406), 1, - sym_query_tuning, - STATE(3684), 2, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3802), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [234100] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [242128] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, + ACTIONS(5443), 1, aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, + ACTIONS(5445), 1, aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, + ACTIONS(5447), 1, aux_sym_variable_tuning_token8, - ACTIONS(5466), 1, + ACTIONS(5697), 1, sym__terminator, - STATE(3539), 1, + STATE(3739), 1, aux_sym_variable_definition_repeat2, - STATE(3815), 1, + STATE(3984), 1, sym_variable_tuning, - STATE(3685), 2, + STATE(3803), 2, sym_comment, sym_include, - ACTIONS(5320), 5, + ACTIONS(5441), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, - [234139] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [242167] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5468), 1, + ACTIONS(5699), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3686), 2, + STATE(3804), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [234178] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [242206] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, + ACTIONS(5154), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, + ACTIONS(5156), 1, aux_sym_do_tuning_token1, - STATE(3705), 1, + STATE(4325), 1, aux_sym_do_block_repeat1, - STATE(4389), 1, + STATE(4521), 1, sym_stop_after_phrase, - STATE(4810), 1, + STATE(4926), 1, sym_do_tuning, - STATE(5701), 1, + STATE(5591), 1, sym_body, - STATE(3687), 2, + STATE(3805), 2, sym_comment, sym_include, - STATE(5768), 3, + STATE(5899), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [234221] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5322), 1, - aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, - aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, - aux_sym_variable_tuning_token8, - ACTIONS(5470), 1, - sym__terminator, - STATE(3711), 1, - aux_sym_variable_definition_repeat2, - STATE(3815), 1, - sym_variable_tuning, - STATE(3688), 2, - sym_comment, - sym_include, - ACTIONS(5320), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - [234260] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [242249] = 13, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(3689), 2, - sym_comment, - sym_include, - ACTIONS(150), 11, - sym__terminator, - anon_sym_LPAREN, - aux_sym_function_call_token1, - aux_sym_setter_token1, - aux_sym_on_error_phrase_token1, - aux_sym_widget_field_token1, - aux_sym_run_tuning_token1, - aux_sym_run_tuning_token2, - aux_sym_run_tuning_token3, - aux_sym_run_tuning_token4, - aux_sym_run_tuning_token7, - [234287] = 13, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, + ACTIONS(5154), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, + ACTIONS(5156), 1, aux_sym_do_tuning_token1, - STATE(4248), 1, - aux_sym_do_block_repeat1, - STATE(4406), 1, + STATE(4265), 1, sym_stop_after_phrase, - STATE(4810), 1, + STATE(4325), 1, + aux_sym_do_block_repeat1, + STATE(4926), 1, sym_do_tuning, - STATE(5537), 1, + STATE(6072), 1, sym_body, - STATE(3690), 2, + STATE(3806), 2, sym_comment, sym_include, - STATE(5819), 3, + STATE(6069), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [234330] = 11, - ACTIONS(65), 1, + [242292] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(5230), 1, + sym_accumulate_aggregate, + STATE(3807), 2, + sym_comment, + sym_include, + ACTIONS(5427), 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, + [242321] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5472), 1, + ACTIONS(5116), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3691), 2, + STATE(3808), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [234369] = 11, - ACTIONS(65), 1, + [242360] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(895), 1, + sym_accumulate_aggregate, + STATE(3809), 2, + sym_comment, + sym_include, + ACTIONS(5429), 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, + [242389] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5472), 1, + ACTIONS(5240), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3708), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3692), 2, + STATE(3454), 1, + sym_query_tuning, + STATE(3810), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [234408] = 11, - ACTIONS(65), 1, + [242428] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(889), 1, + sym_accumulate_aggregate, + STATE(3811), 2, + sym_comment, + sym_include, + ACTIONS(5429), 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, + [242457] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5701), 1, + sym__terminator, + STATE(3800), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3812), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [242500] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5202), 1, + ACTIONS(5240), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, - aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3693), 2, + STATE(3630), 1, + aux_sym_for_phrase_repeat1, + STATE(3813), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [234447] = 11, - ACTIONS(65), 1, + [242539] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(880), 1, + sym_accumulate_aggregate, + STATE(3814), 2, + sym_comment, + sym_include, + ACTIONS(5429), 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, + [242568] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5202), 1, + ACTIONS(5114), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3707), 1, + STATE(3644), 1, aux_sym_for_phrase_repeat1, - STATE(3694), 2, + STATE(3815), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [234486] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [242607] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5205), 1, + STATE(869), 1, sym_accumulate_aggregate, - STATE(3695), 2, + STATE(3816), 2, sym_comment, sym_include, - ACTIONS(5348), 10, + ACTIONS(5429), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -246502,381 +253977,647 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [234515] = 11, - ACTIONS(65), 1, + [242636] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5703), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3817), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [242679] = 13, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(3805), 1, + aux_sym_do_block_repeat1, + STATE(4507), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(5499), 1, + sym_body, + STATE(3818), 2, + sym_comment, + sym_include, + STATE(5874), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [242722] = 13, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(3822), 1, + aux_sym_do_block_repeat1, + STATE(4499), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(5562), 1, + sym_body, + STATE(3819), 2, + sym_comment, + sym_include, + STATE(5841), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [242765] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5474), 1, + ACTIONS(5114), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3686), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3696), 2, + STATE(3454), 1, + sym_query_tuning, + STATE(3820), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [234554] = 9, - ACTIONS(65), 1, + [242804] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(5478), 1, - anon_sym_COMMA, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(3852), 1, - aux_sym_inherits_repeat1, - STATE(3697), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5705), 1, + sym__terminator, + STATE(3586), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3821), 2, sym_comment, sym_include, - ACTIONS(5476), 7, - anon_sym_COLON, - aux_sym_serialization_tuning_token1, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [234589] = 11, - ACTIONS(65), 1, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [242847] = 13, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(4325), 1, + aux_sym_do_block_repeat1, + STATE(4507), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(5499), 1, + sym_body, + STATE(3822), 2, + sym_comment, + sym_include, + STATE(5874), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [242890] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5474), 1, + ACTIONS(5707), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3698), 2, + STATE(3823), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [234628] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [242929] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5480), 1, + ACTIONS(5709), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3699), 2, + STATE(3824), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [234667] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [242968] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5482), 1, + ACTIONS(5711), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3700), 2, + STATE(3825), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [234706] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [243007] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5482), 1, + ACTIONS(5711), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3699), 1, + STATE(3785), 1, aux_sym_for_phrase_repeat1, - STATE(3701), 2, + STATE(3826), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [234745] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [243046] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5212), 1, + ACTIONS(5713), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3702), 2, + STATE(3827), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [234784] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [243085] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5212), 1, + ACTIONS(5715), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3698), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3703), 2, + STATE(3454), 1, + sym_query_tuning, + STATE(3828), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [234823] = 9, - ACTIONS(65), 1, + [243124] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(851), 1, + sym_accumulate_aggregate, + STATE(3829), 2, + sym_comment, + sym_include, + ACTIONS(5429), 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, + [243153] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5717), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3830), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [243196] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5719), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3831), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [243239] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5721), 1, + sym__terminator, + STATE(3761), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3832), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [243282] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(5478), 1, - anon_sym_COMMA, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(3858), 1, - aux_sym_inherits_repeat1, - STATE(3704), 2, + STATE(840), 1, + sym_accumulate_aggregate, + STATE(3833), 2, sym_comment, sym_include, - ACTIONS(5484), 7, - anon_sym_COLON, - aux_sym_serialization_tuning_token1, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [234858] = 13, - ACTIONS(65), 1, + ACTIONS(5429), 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, + [243311] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5331), 1, + sym_identifier, + ACTIONS(5723), 1, + sym__terminator, + STATE(3637), 1, + aux_sym_var_statement_repeat1, + STATE(4932), 1, + sym_assignment, + STATE(4937), 1, + sym_variable, + STATE(5117), 1, + sym_object_access, + STATE(3834), 2, + sym_comment, + sym_include, + STATE(5480), 2, + sym_function_call, + sym_new_expression, + STATE(6002), 2, + sym_qualified_name, + sym_member_access, + [243354] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - ACTIONS(5105), 1, + ACTIONS(5154), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(5107), 1, + ACTIONS(5156), 1, aux_sym_do_tuning_token1, - STATE(4248), 1, + STATE(4325), 1, aux_sym_do_block_repeat1, - STATE(4397), 1, + STATE(4471), 1, sym_stop_after_phrase, - STATE(4810), 1, + STATE(4926), 1, sym_do_tuning, - STATE(5600), 1, + STATE(5705), 1, sym_body, - STATE(3705), 2, + STATE(3835), 2, sym_comment, sym_include, - STATE(5793), 3, + STATE(5944), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [234901] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [243397] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, - aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, - aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, - aux_sym_variable_tuning_token8, - ACTIONS(5486), 1, - sym__terminator, - STATE(3539), 1, - aux_sym_variable_definition_repeat2, - STATE(3815), 1, - sym_variable_tuning, - STATE(3706), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5154), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(5156), 1, + aux_sym_do_tuning_token1, + STATE(4325), 1, + aux_sym_do_block_repeat1, + STATE(4499), 1, + sym_stop_after_phrase, + STATE(4926), 1, + sym_do_tuning, + STATE(5562), 1, + sym_body, + STATE(3836), 2, sym_comment, sym_include, - ACTIONS(5320), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - [234940] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5841), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [243440] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5488), 1, + ACTIONS(5545), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, + STATE(3283), 1, aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3707), 2, + STATE(3837), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [234979] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [243479] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, + ACTIONS(2485), 1, aux_sym_using_statement_token1, - ACTIONS(2476), 1, + ACTIONS(2489), 1, aux_sym_query_tuning_token5, - ACTIONS(5490), 1, + ACTIONS(5715), 1, sym__terminator, - STATE(3217), 1, + STATE(3271), 1, sym_using, - STATE(3220), 1, - aux_sym_for_phrase_repeat1, - STATE(3406), 1, + STATE(3454), 1, sym_query_tuning, - STATE(3708), 2, + STATE(3634), 1, + aux_sym_for_phrase_repeat1, + STATE(3838), 2, sym_comment, sym_include, - ACTIONS(2470), 5, + ACTIONS(2483), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [235018] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [243518] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(852), 1, + STATE(831), 1, sym_accumulate_aggregate, - STATE(3709), 2, + STATE(3839), 2, sym_comment, sym_include, - ACTIONS(5330), 10, + ACTIONS(5429), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -246887,2585 +254628,2686 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [235047] = 11, - ACTIONS(65), 1, + [243547] = 10, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4712), 1, + aux_sym_method_definition_token1, + ACTIONS(5725), 1, + aux_sym__block_terminator_token1, + ACTIONS(5727), 1, + aux_sym_variable_definition_token1, + ACTIONS(5729), 1, + aux_sym_variable_definition_token2, + STATE(3846), 1, + aux_sym_interface_body_repeat1, + STATE(3840), 2, + sym_comment, + sym_include, + STATE(4934), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [243583] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2472), 1, - aux_sym_using_statement_token1, - ACTIONS(2476), 1, - aux_sym_query_tuning_token5, - ACTIONS(5488), 1, - sym__terminator, - STATE(3217), 1, - sym_using, - STATE(3406), 1, - sym_query_tuning, - STATE(3684), 1, - aux_sym_for_phrase_repeat1, - STATE(3710), 2, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4603), 1, + sym_sort_clause, + STATE(4622), 1, + sym_on_error_phrase, + STATE(4935), 1, + sym_on_quit_phrase, + STATE(6073), 1, + sym_on_stop_phrase, + ACTIONS(4430), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3841), 2, sym_comment, sym_include, - ACTIONS(2470), 5, - aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [235086] = 11, - ACTIONS(65), 1, + [243625] = 13, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4603), 1, + sym_sort_clause, + STATE(4625), 1, + sym_on_error_phrase, + STATE(4931), 1, + sym_on_quit_phrase, + STATE(6035), 1, + sym_on_stop_phrase, + ACTIONS(4464), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3842), 2, + sym_comment, + sym_include, + [243667] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, - aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, - aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, - aux_sym_variable_tuning_token8, - ACTIONS(5492), 1, - sym__terminator, - STATE(3539), 1, - aux_sym_variable_definition_repeat2, - STATE(3815), 1, - sym_variable_tuning, - STATE(3711), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5731), 1, + aux_sym_on_error_phrase_token1, + STATE(2412), 1, + sym__block_terminator, + STATE(3953), 1, + sym_on_quit_phrase, + STATE(4107), 1, + sym_on_stop_phrase, + STATE(4113), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5549), 1, + sym_body, + STATE(3843), 2, sym_comment, sym_include, - ACTIONS(5320), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - [235125] = 11, - ACTIONS(65), 1, + [243711] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, - aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, - aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, - aux_sym_variable_tuning_token8, - ACTIONS(5494), 1, - sym__terminator, - STATE(3539), 1, - aux_sym_variable_definition_repeat2, - STATE(3815), 1, - sym_variable_tuning, - STATE(3712), 2, + STATE(3844), 2, sym_comment, sym_include, - ACTIONS(5320), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - [235164] = 11, - ACTIONS(65), 1, + ACTIONS(2845), 10, + sym_identifier, + 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_access_tuning_token4, + aux_sym_access_tuning_token5, + [243737] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, - aux_sym_variable_tuning_token2, - ACTIONS(5324), 1, - aux_sym_variable_tuning_token7, - ACTIONS(5326), 1, - aux_sym_variable_tuning_token8, - ACTIONS(5496), 1, - sym__terminator, - STATE(3539), 1, - aux_sym_variable_definition_repeat2, - STATE(3815), 1, - sym_variable_tuning, - STATE(3713), 2, + ACTIONS(615), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2633), 1, + anon_sym_COMMA, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + ACTIONS(5733), 1, + aux_sym_widget_field_token1, + STATE(1632), 1, + sym_do_block, + STATE(4046), 1, + aux_sym_on_statement_repeat2, + STATE(4503), 1, + aux_sym_on_statement_repeat1, + STATE(5271), 1, + sym_widget_phrase, + STATE(6172), 1, + sym_label, + STATE(3845), 2, sym_comment, sym_include, - ACTIONS(5320), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - [235203] = 14, - ACTIONS(65), 1, + [243781] = 10, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4712), 1, + aux_sym_method_definition_token1, + ACTIONS(5727), 1, + aux_sym_variable_definition_token1, + ACTIONS(5729), 1, + aux_sym_variable_definition_token2, + ACTIONS(5735), 1, + aux_sym__block_terminator_token1, + STATE(3903), 1, + aux_sym_interface_body_repeat1, + STATE(3846), 2, + sym_comment, + sym_include, + STATE(4934), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [243817] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5498), 1, + ACTIONS(5737), 1, sym__terminator, - ACTIONS(5500), 1, + ACTIONS(5739), 1, aux_sym_variable_tuning_token8, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - STATE(4079), 1, + STATE(4056), 1, aux_sym_workfile_definition_repeat2, - STATE(4503), 1, + STATE(4612), 1, sym_workfile_tuning, - STATE(5085), 1, + STATE(4670), 1, aux_sym_workfile_definition_repeat3, - STATE(5087), 1, + STATE(4671), 1, sym_type_tuning, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(3714), 2, + STATE(3847), 2, sym_comment, sym_include, - [235247] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [243861] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5500), 1, + ACTIONS(5739), 1, aux_sym_variable_tuning_token8, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(5504), 1, + ACTIONS(5743), 1, sym__terminator, - STATE(3749), 1, + STATE(3871), 1, aux_sym_workfile_definition_repeat2, - STATE(4503), 1, + STATE(4612), 1, sym_workfile_tuning, - STATE(4839), 1, - aux_sym_workfile_definition_repeat3, - STATE(4844), 1, + STATE(4683), 1, sym_type_tuning, - STATE(5672), 1, + STATE(4686), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, sym_field_definition, - STATE(3715), 2, + STATE(3848), 2, sym_comment, sym_include, - [235291] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [243905] = 14, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4478), 1, - sym_on_error_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4885), 1, - sym_on_quit_phrase, - STATE(5842), 1, - sym_on_stop_phrase, - ACTIONS(4491), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(3716), 2, - sym_comment, - sym_include, - [235333] = 14, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5129), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - ACTIONS(5506), 1, + ACTIONS(5731), 1, aux_sym_on_error_phrase_token1, - STATE(2261), 1, + STATE(1607), 1, sym__block_terminator, - STATE(3809), 1, + STATE(3949), 1, sym_on_quit_phrase, - STATE(4085), 1, + STATE(4217), 1, aux_sym_repeat_statement_repeat1, - STATE(4087), 1, + STATE(4218), 1, sym_on_stop_phrase, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(6000), 1, + STATE(5909), 1, sym_body, - STATE(3717), 2, + STATE(3849), 2, sym_comment, sym_include, - [235377] = 14, - ACTIONS(65), 1, + [243949] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(5745), 1, + sym_identifier, + STATE(3568), 1, + sym_object_access, + STATE(3904), 1, + sym_qualified_name, + STATE(3850), 2, + sym_comment, + sym_include, + STATE(6109), 2, + sym_function_call, + sym_new_expression, + ACTIONS(5747), 4, + aux_sym_dataset_expression_token1, + aux_sym__function_argument_with_mode_token1, + aux_sym__function_argument_with_mode_token2, + aux_sym__function_argument_with_mode_token3, + [243985] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5117), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - ACTIONS(5506), 1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5731), 1, aux_sym_on_error_phrase_token1, - STATE(1752), 1, + STATE(2077), 1, sym__block_terminator, - STATE(3837), 1, + STATE(3980), 1, sym_on_quit_phrase, - STATE(4147), 1, - aux_sym_repeat_statement_repeat1, - STATE(4149), 1, + STATE(4205), 1, sym_on_stop_phrase, - STATE(5189), 1, + STATE(4209), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5414), 1, + STATE(5642), 1, sym_body, - STATE(3718), 2, + STATE(3851), 2, sym_comment, sym_include, - [235421] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [244029] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5129), 1, + ACTIONS(5236), 1, aux_sym__block_terminator_token1, - ACTIONS(5506), 1, + ACTIONS(5731), 1, aux_sym_on_error_phrase_token1, - STATE(2203), 1, + STATE(1866), 1, sym__block_terminator, - STATE(3820), 1, + STATE(3951), 1, sym_on_quit_phrase, - STATE(4154), 1, - sym_on_stop_phrase, - STATE(4156), 1, + STATE(4103), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(4104), 1, + sym_on_stop_phrase, + STATE(5323), 1, sym_repeat_tuning, - STATE(5998), 1, + STATE(6123), 1, sym_body, - STATE(3719), 2, + STATE(3852), 2, sym_comment, sym_include, - [235465] = 14, - ACTIONS(65), 1, + [244073] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2633), 1, + anon_sym_COMMA, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + ACTIONS(5749), 1, + aux_sym_widget_field_token1, + STATE(2055), 1, + sym_do_block, + STATE(4161), 1, + aux_sym_on_statement_repeat2, + STATE(4503), 1, + aux_sym_on_statement_repeat1, + STATE(5271), 1, + sym_widget_phrase, + STATE(6498), 1, + sym_label, + STATE(3853), 2, + sym_comment, + sym_include, + [244117] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5506), 1, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + ACTIONS(5731), 1, aux_sym_on_error_phrase_token1, - STATE(1978), 1, + STATE(2153), 1, sym__block_terminator, - STATE(3813), 1, + STATE(3922), 1, sym_on_quit_phrase, - STATE(4031), 1, + STATE(4112), 1, aux_sym_repeat_statement_repeat1, - STATE(4032), 1, + STATE(4115), 1, sym_on_stop_phrase, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5764), 1, + STATE(5858), 1, sym_body, - STATE(3720), 2, + STATE(3854), 2, sym_comment, sym_include, - [235509] = 11, + [244161] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5751), 1, sym_identifier, - ACTIONS(5510), 1, + ACTIONS(5753), 1, anon_sym_RPAREN, - ACTIONS(5516), 1, + ACTIONS(5759), 1, aux_sym__function_argument_with_mode_token2, - STATE(4561), 1, + STATE(4594), 1, sym_function_parameter_mode, - STATE(5261), 1, + STATE(5240), 1, sym_function_parameter, - ACTIONS(5514), 2, + ACTIONS(5757), 2, aux_sym_input_expression_token1, aux_sym_argument_mode_token1, - STATE(3721), 2, + STATE(3855), 2, sym_comment, sym_include, - ACTIONS(5512), 3, + ACTIONS(5755), 3, aux_sym_dataset_expression_token1, aux_sym__function_argument_with_mode_token1, aux_sym__function_argument_with_mode_token3, - [235547] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - ACTIONS(5500), 1, - aux_sym_variable_tuning_token8, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(5518), 1, - sym__terminator, - STATE(4079), 1, - aux_sym_workfile_definition_repeat2, - STATE(4503), 1, - sym_workfile_tuning, - STATE(5022), 1, - aux_sym_workfile_definition_repeat3, - STATE(5025), 1, - sym_type_tuning, - STATE(5672), 1, - sym_field_definition, - STATE(3722), 2, - sym_comment, - sym_include, - [235591] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [244199] = 14, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(3723), 2, - sym_comment, - sym_include, - ACTIONS(5520), 8, - anon_sym_COLON, - anon_sym_COMMA, - aux_sym_serialization_tuning_token1, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [235621] = 14, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5204), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - ACTIONS(5506), 1, + ACTIONS(5731), 1, aux_sym_on_error_phrase_token1, - STATE(3849), 1, + STATE(3967), 1, sym_on_quit_phrase, - STATE(4145), 1, - sym_on_stop_phrase, - STATE(4148), 1, + STATE(4088), 1, aux_sym_repeat_statement_repeat1, - STATE(4577), 1, + STATE(4098), 1, + sym_on_stop_phrase, + STATE(4976), 1, sym__block_terminator, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5820), 1, + STATE(5686), 1, sym_body, - STATE(3724), 2, + STATE(3856), 2, sym_comment, sym_include, - [235665] = 14, + [244243] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(506), 1, + ACTIONS(284), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2633), 1, anon_sym_COMMA, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - ACTIONS(2626), 1, + ACTIONS(2665), 1, aux_sym_widget_field_token1, - STATE(4109), 1, + STATE(2143), 1, + sym_do_block, + STATE(4118), 1, aux_sym_on_statement_repeat2, - STATE(4296), 1, + STATE(4503), 1, aux_sym_on_statement_repeat1, - STATE(4994), 1, - sym_do_block, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6189), 1, + STATE(6498), 1, sym_label, - STATE(3725), 2, + STATE(3857), 2, sym_comment, sym_include, - [235709] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [244287] = 14, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4476), 1, - sym_on_error_phrase, - STATE(4487), 1, - sym_sort_clause, - STATE(4869), 1, - sym_on_quit_phrase, - STATE(5856), 1, - sym_on_stop_phrase, - ACTIONS(4450), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(3726), 2, - sym_comment, - sym_include, - [235751] = 14, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5500), 1, + ACTIONS(5739), 1, aux_sym_variable_tuning_token8, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(5522), 1, + ACTIONS(5761), 1, sym__terminator, - STATE(3757), 1, + STATE(3909), 1, aux_sym_workfile_definition_repeat2, - STATE(4503), 1, + STATE(4612), 1, sym_workfile_tuning, - STATE(4605), 1, + STATE(4871), 1, aux_sym_workfile_definition_repeat3, - STATE(4729), 1, + STATE(4872), 1, sym_type_tuning, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(3727), 2, + STATE(3858), 2, sym_comment, sym_include, - [235795] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [244331] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, + STATE(4240), 1, aux_sym_for_phrase_repeat2, - STATE(4485), 1, + STATE(4555), 1, sym_on_error_phrase, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4704), 1, + STATE(4824), 1, sym_on_quit_phrase, - STATE(5780), 1, + STATE(5700), 1, sym_on_stop_phrase, - ACTIONS(4485), 2, + ACTIONS(4512), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(3728), 2, + STATE(3859), 2, sym_comment, sym_include, - [235837] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [244373] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5506), 1, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + ACTIONS(5731), 1, aux_sym_on_error_phrase_token1, - STATE(1943), 1, + STATE(1835), 1, sym__block_terminator, - STATE(3868), 1, + STATE(3976), 1, sym_on_quit_phrase, - STATE(4136), 1, + STATE(4156), 1, aux_sym_repeat_statement_repeat1, - STATE(4143), 1, + STATE(4157), 1, sym_on_stop_phrase, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5795), 1, + STATE(5714), 1, sym_body, - STATE(3729), 2, + STATE(3860), 2, sym_comment, sym_include, - [235881] = 14, - ACTIONS(65), 1, + [244417] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(3861), 2, + sym_comment, + sym_include, + ACTIONS(5763), 10, + anon_sym_RPAREN, + aux_sym_function_call_token1, + aux_sym_using_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_of_token1, + [244443] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5500), 1, + ACTIONS(5739), 1, aux_sym_variable_tuning_token8, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(5524), 1, + ACTIONS(5765), 1, sym__terminator, - STATE(3769), 1, + STATE(4056), 1, aux_sym_workfile_definition_repeat2, - STATE(4503), 1, + STATE(4612), 1, sym_workfile_tuning, - STATE(4583), 1, + STATE(5063), 1, sym_type_tuning, - STATE(4585), 1, + STATE(5065), 1, aux_sym_workfile_definition_repeat3, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(3730), 2, - sym_comment, - sym_include, - [235925] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(3731), 2, + STATE(3862), 2, sym_comment, sym_include, - ACTIONS(5526), 10, - sym_identifier, - 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_access_tuning_token4, - aux_sym_access_tuning_token5, - [235951] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [244487] = 13, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - ACTIONS(5506), 1, - aux_sym_on_error_phrase_token1, - STATE(3807), 1, - sym_on_quit_phrase, - STATE(3997), 1, - sym_on_stop_phrase, - STATE(3999), 1, - aux_sym_repeat_statement_repeat1, - STATE(4670), 1, - sym__block_terminator, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5902), 1, - sym_body, - STATE(3732), 2, - sym_comment, - sym_include, - [235995] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(41), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2610), 1, - anon_sym_COMMA, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - ACTIONS(2649), 1, - aux_sym_widget_field_token1, - STATE(2188), 1, - sym_do_block, - STATE(4096), 1, - aux_sym_on_statement_repeat2, - STATE(4296), 1, - aux_sym_on_statement_repeat1, - STATE(5368), 1, - sym_widget_phrase, - STATE(6159), 1, - sym_label, - STATE(3733), 2, - sym_comment, - sym_include, - [236039] = 13, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, + STATE(4240), 1, aux_sym_for_phrase_repeat2, - STATE(4487), 1, - sym_sort_clause, - STATE(4498), 1, + STATE(4558), 1, sym_on_error_phrase, - STATE(4699), 1, + STATE(4603), 1, + sym_sort_clause, + STATE(4796), 1, sym_on_quit_phrase, - STATE(5790), 1, + STATE(5684), 1, sym_on_stop_phrase, - ACTIONS(5528), 2, + ACTIONS(5767), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(3734), 2, + STATE(3863), 2, sym_comment, sym_include, - [236081] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [244529] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5188), 1, + ACTIONS(5236), 1, aux_sym__block_terminator_token1, - ACTIONS(5506), 1, + ACTIONS(5731), 1, aux_sym_on_error_phrase_token1, - STATE(2430), 1, + STATE(1925), 1, sym__block_terminator, - STATE(3831), 1, + STATE(3930), 1, sym_on_quit_phrase, - STATE(4141), 1, - aux_sym_repeat_statement_repeat1, - STATE(4144), 1, + STATE(4047), 1, sym_on_stop_phrase, - STATE(5189), 1, + STATE(4048), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5786), 1, + STATE(5512), 1, sym_body, - STATE(3735), 2, - sym_comment, - sym_include, - [236125] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5530), 1, - aux_sym__block_terminator_token1, - ACTIONS(5532), 1, - aux_sym_variable_definition_token1, - ACTIONS(5535), 1, - aux_sym_variable_definition_token2, - ACTIONS(5538), 1, - aux_sym_method_definition_token1, - STATE(3736), 3, + STATE(3864), 2, sym_comment, sym_include, - aux_sym_interface_body_repeat1, - STATE(4929), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [236159] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [244573] = 14, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - ACTIONS(5500), 1, - aux_sym_variable_tuning_token8, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(5541), 1, - sym__terminator, - STATE(3763), 1, - aux_sym_workfile_definition_repeat2, - STATE(4503), 1, - sym_workfile_tuning, - STATE(4825), 1, - sym_type_tuning, - STATE(4857), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(3737), 2, - sym_comment, - sym_include, - [236203] = 14, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5204), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - ACTIONS(5506), 1, - aux_sym_on_error_phrase_token1, - STATE(3830), 1, - sym_on_quit_phrase, - STATE(4170), 1, - aux_sym_repeat_statement_repeat1, - STATE(4171), 1, - sym_on_stop_phrase, - STATE(4904), 1, - sym__block_terminator, - STATE(5189), 1, - sym_repeat_tuning, - STATE(6014), 1, - sym_body, - STATE(3738), 2, - sym_comment, - sym_include, - [236247] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(820), 1, - sym__namecolon, - ACTIONS(822), 1, - sym__namedoublecolon, - ACTIONS(5543), 1, - sym_identifier, - ACTIONS(5547), 1, - anon_sym_EQ, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(3384), 1, - aux_sym_object_access_repeat1, - STATE(5090), 1, - aux_sym_member_access_repeat1, - ACTIONS(5545), 2, - sym__terminator, - anon_sym_COMMA, - STATE(3739), 2, - sym_comment, - sym_include, - [236289] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - ACTIONS(5506), 1, + ACTIONS(5731), 1, aux_sym_on_error_phrase_token1, - STATE(2037), 1, + STATE(2291), 1, sym__block_terminator, - STATE(3857), 1, + STATE(3954), 1, sym_on_quit_phrase, - STATE(4169), 1, - sym_on_stop_phrase, - STATE(4174), 1, + STATE(4102), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(4106), 1, + sym_on_stop_phrase, + STATE(5323), 1, sym_repeat_tuning, - STATE(5437), 1, + STATE(5963), 1, sym_body, - STATE(3740), 2, + STATE(3865), 2, sym_comment, sym_include, - [236333] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [244617] = 14, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4487), 1, - sym_sort_clause, - STATE(4558), 1, - sym_on_error_phrase, - STATE(4589), 1, - sym_on_quit_phrase, - STATE(5388), 1, - sym_on_stop_phrase, - ACTIONS(4407), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(3741), 2, - sym_comment, - sym_include, - [236375] = 14, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5500), 1, + ACTIONS(5739), 1, aux_sym_variable_tuning_token8, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(5549), 1, + ACTIONS(5769), 1, sym__terminator, - STATE(3783), 1, + STATE(4056), 1, aux_sym_workfile_definition_repeat2, - STATE(4503), 1, + STATE(4612), 1, sym_workfile_tuning, - STATE(4774), 1, - aux_sym_workfile_definition_repeat3, - STATE(4775), 1, + STATE(4875), 1, sym_type_tuning, - STATE(5672), 1, + STATE(4876), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, sym_field_definition, - STATE(3742), 2, - sym_comment, - sym_include, - [236419] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(3743), 2, - sym_comment, - sym_include, - ACTIONS(5551), 10, - anon_sym_RPAREN, - aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_of_token1, - [236445] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5117), 1, - aux_sym__block_terminator_token1, - ACTIONS(5506), 1, - aux_sym_on_error_phrase_token1, - STATE(1722), 1, - sym__block_terminator, - STATE(3814), 1, - sym_on_quit_phrase, - STATE(4108), 1, - aux_sym_repeat_statement_repeat1, - STATE(4110), 1, - sym_on_stop_phrase, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5484), 1, - sym_body, - STATE(3744), 2, - sym_comment, - sym_include, - [236489] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4487), 1, - sym_sort_clause, - STATE(4494), 1, - sym_on_error_phrase, - STATE(5005), 1, - sym_on_quit_phrase, - STATE(5616), 1, - sym_on_stop_phrase, - ACTIONS(5553), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(3745), 2, + STATE(3866), 2, sym_comment, sym_include, - [236531] = 14, + [244661] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(448), 1, + ACTIONS(511), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2633), 1, anon_sym_COMMA, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - ACTIONS(2663), 1, + ACTIONS(2653), 1, aux_sym_widget_field_token1, - STATE(2136), 1, - sym_do_block, - STATE(4098), 1, + STATE(4105), 1, aux_sym_on_statement_repeat2, - STATE(4296), 1, + STATE(4503), 1, aux_sym_on_statement_repeat1, - STATE(5368), 1, + STATE(4972), 1, + sym_do_block, + STATE(5271), 1, sym_widget_phrase, - STATE(6368), 1, + STATE(6298), 1, sym_label, - STATE(3746), 2, + STATE(3867), 2, sym_comment, sym_include, - [236575] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [244705] = 14, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4487), 1, - sym_sort_clause, - STATE(4557), 1, - sym_on_error_phrase, - STATE(4595), 1, - sym_on_quit_phrase, - STATE(5382), 1, - sym_on_stop_phrase, - ACTIONS(4423), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(3747), 2, - sym_comment, - sym_include, - [236617] = 14, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - ACTIONS(5506), 1, - aux_sym_on_error_phrase_token1, - STATE(2357), 1, - sym__block_terminator, - STATE(3845), 1, - sym_on_quit_phrase, - STATE(4003), 1, - aux_sym_repeat_statement_repeat1, - STATE(4074), 1, - sym_on_stop_phrase, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5677), 1, - sym_body, - STATE(3748), 2, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + ACTIONS(5739), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(5771), 1, + sym__terminator, + STATE(3902), 1, + aux_sym_workfile_definition_repeat2, + STATE(4612), 1, + sym_workfile_tuning, + STATE(5097), 1, + aux_sym_workfile_definition_repeat3, + STATE(5109), 1, + sym_type_tuning, + STATE(6029), 1, + sym_field_definition, + STATE(3868), 2, sym_comment, sym_include, - [236661] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [244749] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5500), 1, + ACTIONS(5739), 1, aux_sym_variable_tuning_token8, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(5555), 1, + ACTIONS(5773), 1, sym__terminator, - STATE(4079), 1, + STATE(3847), 1, aux_sym_workfile_definition_repeat2, - STATE(4503), 1, + STATE(4612), 1, sym_workfile_tuning, - STATE(4778), 1, + STATE(4672), 1, sym_type_tuning, - STATE(4780), 1, + STATE(4675), 1, aux_sym_workfile_definition_repeat3, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(3749), 2, + STATE(3869), 2, sym_comment, sym_include, - [236705] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [244793] = 13, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - ACTIONS(5506), 1, - aux_sym_on_error_phrase_token1, - STATE(2322), 1, - sym__block_terminator, - STATE(3851), 1, - sym_on_quit_phrase, - STATE(4095), 1, - sym_on_stop_phrase, - STATE(4167), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5805), 1, - sym_body, - STATE(3750), 2, - sym_comment, - sym_include, - [236749] = 5, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(3751), 2, + ACTIONS(823), 1, + sym__namedot, + ACTIONS(825), 1, + sym__namecolon, + ACTIONS(827), 1, + sym__namedoublecolon, + ACTIONS(4626), 1, + anon_sym_LPAREN, + STATE(3531), 1, + sym_function_arguments, + STATE(4582), 1, + aux_sym_object_access_repeat1, + STATE(4729), 1, + aux_sym_qualified_name_repeat1, + STATE(4751), 1, + aux_sym_member_access_repeat1, + ACTIONS(5775), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(3870), 2, sym_comment, sym_include, - ACTIONS(2780), 10, - sym_identifier, - 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_access_tuning_token4, - aux_sym_access_tuning_token5, - [236775] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [244835] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5500), 1, + ACTIONS(5739), 1, aux_sym_variable_tuning_token8, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(5557), 1, + ACTIONS(5777), 1, sym__terminator, - STATE(3780), 1, + STATE(4056), 1, aux_sym_workfile_definition_repeat2, - STATE(4503), 1, + STATE(4612), 1, sym_workfile_tuning, - STATE(5048), 1, - aux_sym_workfile_definition_repeat3, - STATE(5069), 1, + STATE(4801), 1, sym_type_tuning, - STATE(5672), 1, + STATE(4916), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, sym_field_definition, - STATE(3752), 2, + STATE(3871), 2, sym_comment, sym_include, - [236819] = 5, + [244879] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3753), 2, + ACTIONS(511), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2633), 1, + anon_sym_COMMA, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + ACTIONS(2702), 1, + aux_sym_widget_field_token1, + STATE(4191), 1, + aux_sym_on_statement_repeat2, + STATE(4503), 1, + aux_sym_on_statement_repeat1, + STATE(4682), 1, + sym_do_block, + STATE(5271), 1, + sym_widget_phrase, + STATE(6298), 1, + sym_label, + STATE(3872), 2, sym_comment, sym_include, - ACTIONS(2787), 10, - sym_identifier, - 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_access_tuning_token4, - aux_sym_access_tuning_token5, - [236845] = 14, + [244923] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(448), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2633), 1, anon_sym_COMMA, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - ACTIONS(2665), 1, + ACTIONS(2696), 1, aux_sym_widget_field_token1, - STATE(2195), 1, + STATE(2130), 1, sym_do_block, - STATE(4151), 1, + STATE(4175), 1, aux_sym_on_statement_repeat2, - STATE(4296), 1, + STATE(4503), 1, aux_sym_on_statement_repeat1, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6368), 1, + STATE(6198), 1, sym_label, - STATE(3754), 2, + STATE(3873), 2, sym_comment, sym_include, - [236889] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [244967] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3790), 1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5731), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4487), 1, - sym_sort_clause, - STATE(4538), 1, - sym_on_error_phrase, - STATE(4707), 1, + STATE(2381), 1, + sym__block_terminator, + STATE(3945), 1, sym_on_quit_phrase, - STATE(5490), 1, + STATE(4083), 1, + aux_sym_repeat_statement_repeat1, + STATE(4101), 1, sym_on_stop_phrase, - ACTIONS(4469), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(3755), 2, + STATE(5323), 1, + sym_repeat_tuning, + STATE(6097), 1, + sym_body, + STATE(3874), 2, sym_comment, sym_include, - [236931] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [245011] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4605), 1, - aux_sym_method_definition_token1, - ACTIONS(5559), 1, - aux_sym__block_terminator_token1, - ACTIONS(5561), 1, - aux_sym_variable_definition_token1, - ACTIONS(5563), 1, - aux_sym_variable_definition_token2, - STATE(3772), 1, - aux_sym_interface_body_repeat1, - STATE(3756), 2, + ACTIONS(823), 1, + sym__namedot, + ACTIONS(825), 1, + sym__namecolon, + ACTIONS(827), 1, + sym__namedoublecolon, + ACTIONS(4626), 1, + anon_sym_LPAREN, + STATE(3531), 1, + sym_function_arguments, + STATE(4582), 1, + aux_sym_object_access_repeat1, + STATE(4729), 1, + aux_sym_qualified_name_repeat1, + STATE(4751), 1, + aux_sym_member_access_repeat1, + ACTIONS(5779), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(3875), 2, sym_comment, sym_include, - STATE(4929), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [236967] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [245053] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5500), 1, + ACTIONS(5739), 1, aux_sym_variable_tuning_token8, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(5565), 1, + ACTIONS(5781), 1, sym__terminator, - STATE(4079), 1, + STATE(4056), 1, aux_sym_workfile_definition_repeat2, - STATE(4503), 1, + STATE(4612), 1, sym_workfile_tuning, - STATE(4950), 1, + STATE(4776), 1, aux_sym_workfile_definition_repeat3, - STATE(4951), 1, + STATE(4777), 1, sym_type_tuning, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(3757), 2, - sym_comment, - sym_include, - [237011] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3790), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, - aux_sym_sort_clause_token1, - ACTIONS(3796), 1, - aux_sym_sort_clause_token2, - STATE(4036), 1, - aux_sym_for_phrase_repeat2, - STATE(4487), 1, - sym_sort_clause, - STATE(4537), 1, - sym_on_error_phrase, - STATE(4754), 1, - sym_on_quit_phrase, - STATE(5498), 1, - sym_on_stop_phrase, - ACTIONS(4421), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(3758), 2, + STATE(3876), 2, sym_comment, sym_include, - [237053] = 14, + [245097] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(41), 1, + ACTIONS(563), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2633), 1, anon_sym_COMMA, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - ACTIONS(2661), 1, + ACTIONS(2641), 1, aux_sym_widget_field_token1, - STATE(2335), 1, + STATE(1831), 1, sym_do_block, - STATE(4137), 1, + STATE(4159), 1, aux_sym_on_statement_repeat2, - STATE(4296), 1, + STATE(4503), 1, aux_sym_on_statement_repeat1, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6159), 1, + STATE(6365), 1, sym_label, - STATE(3759), 2, - sym_comment, - sym_include, - [237097] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(3760), 2, - sym_comment, - sym_include, - ACTIONS(5567), 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, - [237123] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(3761), 2, + STATE(3877), 2, sym_comment, sym_include, - ACTIONS(5301), 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, - [237149] = 11, + [245141] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5751), 1, sym_identifier, - ACTIONS(5516), 1, + ACTIONS(5759), 1, aux_sym__function_argument_with_mode_token2, - ACTIONS(5569), 1, + ACTIONS(5783), 1, anon_sym_RPAREN, - STATE(4561), 1, + STATE(4594), 1, sym_function_parameter_mode, - STATE(5295), 1, + STATE(5198), 1, sym_function_parameter, - ACTIONS(5514), 2, + ACTIONS(5757), 2, aux_sym_input_expression_token1, aux_sym_argument_mode_token1, - STATE(3762), 2, + STATE(3878), 2, sym_comment, sym_include, - ACTIONS(5512), 3, + ACTIONS(5755), 3, aux_sym_dataset_expression_token1, aux_sym__function_argument_with_mode_token1, aux_sym__function_argument_with_mode_token3, - [237187] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [245179] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - ACTIONS(5500), 1, - aux_sym_variable_tuning_token8, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(5571), 1, - sym__terminator, - STATE(4079), 1, - aux_sym_workfile_definition_repeat2, - STATE(4503), 1, - sym_workfile_tuning, - STATE(5080), 1, - aux_sym_workfile_definition_repeat3, - STATE(5086), 1, - sym_type_tuning, - STATE(5672), 1, - sym_field_definition, - STATE(3763), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + ACTIONS(5731), 1, + aux_sym_on_error_phrase_token1, + STATE(2225), 1, + sym__block_terminator, + STATE(3934), 1, + sym_on_quit_phrase, + STATE(4067), 1, + sym_on_stop_phrase, + STATE(4068), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5940), 1, + sym_body, + STATE(3879), 2, sym_comment, sym_include, - [237231] = 14, + [245223] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(41), 1, + ACTIONS(615), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2633), 1, anon_sym_COMMA, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - ACTIONS(5573), 1, + ACTIONS(2698), 1, aux_sym_widget_field_token1, - STATE(2098), 1, + STATE(1592), 1, sym_do_block, - STATE(4153), 1, + STATE(4092), 1, aux_sym_on_statement_repeat2, - STATE(4296), 1, + STATE(4503), 1, aux_sym_on_statement_repeat1, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6159), 1, + STATE(6172), 1, sym_label, - STATE(3764), 2, + STATE(3880), 2, sym_comment, sym_include, - [237275] = 14, + [245267] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(506), 1, + ACTIONS(284), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2633), 1, anon_sym_COMMA, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - ACTIONS(2624), 1, + ACTIONS(2667), 1, aux_sym_widget_field_token1, - STATE(4173), 1, + STATE(2089), 1, + sym_do_block, + STATE(4137), 1, aux_sym_on_statement_repeat2, - STATE(4296), 1, + STATE(4503), 1, aux_sym_on_statement_repeat1, - STATE(4916), 1, - sym_do_block, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6189), 1, + STATE(6498), 1, sym_label, - STATE(3765), 2, + STATE(3881), 2, sym_comment, sym_include, - [237319] = 14, - ACTIONS(65), 1, + [245311] = 14, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + ACTIONS(5731), 1, + aux_sym_on_error_phrase_token1, + STATE(1554), 1, + sym__block_terminator, + STATE(3963), 1, + sym_on_quit_phrase, + STATE(4180), 1, + sym_on_stop_phrase, + STATE(4183), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5786), 1, + sym_body, + STATE(3882), 2, + sym_comment, + sym_include, + [245355] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5500), 1, + ACTIONS(5739), 1, aux_sym_variable_tuning_token8, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(5575), 1, + ACTIONS(5785), 1, sym__terminator, - STATE(3785), 1, + STATE(4056), 1, aux_sym_workfile_definition_repeat2, - STATE(4503), 1, + STATE(4612), 1, sym_workfile_tuning, - STATE(5078), 1, + STATE(5167), 1, aux_sym_workfile_definition_repeat3, - STATE(5083), 1, + STATE(5172), 1, sym_type_tuning, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(3766), 2, + STATE(3883), 2, sym_comment, sym_include, - [237363] = 14, - ACTIONS(65), 1, + [245399] = 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(2631), 1, + sym_identifier, + ACTIONS(2633), 1, + anon_sym_COMMA, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + ACTIONS(5787), 1, + aux_sym_widget_field_token1, + STATE(2279), 1, + sym_do_block, + STATE(4108), 1, + aux_sym_on_statement_repeat2, + STATE(4503), 1, + aux_sym_on_statement_repeat1, + STATE(5271), 1, + sym_widget_phrase, + STATE(6198), 1, + sym_label, + STATE(3884), 2, + sym_comment, + sym_include, + [245443] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - ACTIONS(5500), 1, - aux_sym_variable_tuning_token8, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(5577), 1, - sym__terminator, - STATE(3714), 1, - aux_sym_workfile_definition_repeat2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + ACTIONS(5731), 1, + aux_sym_on_error_phrase_token1, + STATE(3924), 1, + sym_on_quit_phrase, + STATE(4249), 1, + sym_on_stop_phrase, + STATE(4253), 1, + aux_sym_repeat_statement_repeat1, + STATE(4780), 1, + sym__block_terminator, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5726), 1, + sym_body, + STATE(3885), 2, + sym_comment, + sym_include, + [245487] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(511), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2633), 1, + anon_sym_COMMA, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + ACTIONS(5789), 1, + aux_sym_widget_field_token1, + STATE(4242), 1, + aux_sym_on_statement_repeat2, STATE(4503), 1, - sym_workfile_tuning, - STATE(4956), 1, - sym_type_tuning, - STATE(4957), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(3767), 2, + aux_sym_on_statement_repeat1, + STATE(4728), 1, + sym_do_block, + STATE(5271), 1, + sym_widget_phrase, + STATE(6298), 1, + sym_label, + STATE(3886), 2, + sym_comment, + sym_include, + [245531] = 13, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4578), 1, + sym_on_error_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4727), 1, + sym_on_quit_phrase, + STATE(5574), 1, + sym_on_stop_phrase, + ACTIONS(4420), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3887), 2, sym_comment, sym_include, - [237407] = 14, + [245573] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(610), 1, + ACTIONS(563), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2633), 1, anon_sym_COMMA, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - ACTIONS(5579), 1, + ACTIONS(2639), 1, aux_sym_widget_field_token1, - STATE(1823), 1, + STATE(1808), 1, sym_do_block, - STATE(4130), 1, + STATE(4189), 1, aux_sym_on_statement_repeat2, - STATE(4296), 1, + STATE(4503), 1, aux_sym_on_statement_repeat1, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6240), 1, + STATE(6365), 1, sym_label, - STATE(3768), 2, + STATE(3888), 2, sym_comment, sym_include, - [237451] = 14, - ACTIONS(65), 1, + [245617] = 14, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + ACTIONS(5731), 1, + aux_sym_on_error_phrase_token1, + STATE(2280), 1, + sym__block_terminator, + STATE(3961), 1, + sym_on_quit_phrase, + STATE(4125), 1, + aux_sym_repeat_statement_repeat1, + STATE(4128), 1, + sym_on_stop_phrase, + STATE(5323), 1, + sym_repeat_tuning, + STATE(6015), 1, + sym_body, + STATE(3889), 2, + sym_comment, + sym_include, + [245661] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5500), 1, + ACTIONS(5739), 1, aux_sym_variable_tuning_token8, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(5581), 1, + ACTIONS(5791), 1, sym__terminator, - STATE(4079), 1, + STATE(3883), 1, aux_sym_workfile_definition_repeat2, - STATE(4503), 1, + STATE(4612), 1, sym_workfile_tuning, - STATE(4639), 1, + STATE(5100), 1, aux_sym_workfile_definition_repeat3, - STATE(4640), 1, + STATE(5118), 1, sym_type_tuning, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(3769), 2, + STATE(3890), 2, sym_comment, sym_include, - [237495] = 14, - ACTIONS(65), 1, + [245705] = 14, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + ACTIONS(5731), 1, + aux_sym_on_error_phrase_token1, + STATE(3940), 1, + sym_on_quit_phrase, + STATE(4093), 1, + sym_on_stop_phrase, + STATE(4094), 1, + aux_sym_repeat_statement_repeat1, + STATE(5075), 1, + sym__block_terminator, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5580), 1, + sym_body, + STATE(3891), 2, + sym_comment, + sym_include, + [245749] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5117), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - ACTIONS(5506), 1, + ACTIONS(5731), 1, aux_sym_on_error_phrase_token1, - STATE(1682), 1, + STATE(1681), 1, sym__block_terminator, - STATE(3797), 1, + STATE(3926), 1, sym_on_quit_phrase, - STATE(4064), 1, + STATE(4051), 1, sym_on_stop_phrase, - STATE(4065), 1, + STATE(4149), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5573), 1, + STATE(6089), 1, sym_body, - STATE(3770), 2, + STATE(3892), 2, sym_comment, sym_include, - [237539] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [245793] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5500), 1, + ACTIONS(5739), 1, aux_sym_variable_tuning_token8, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(5583), 1, + ACTIONS(5793), 1, sym__terminator, - STATE(4079), 1, + STATE(3906), 1, aux_sym_workfile_definition_repeat2, - STATE(4503), 1, + STATE(4612), 1, sym_workfile_tuning, - STATE(4696), 1, - aux_sym_workfile_definition_repeat3, - STATE(4697), 1, + STATE(4790), 1, sym_type_tuning, - STATE(5672), 1, + STATE(4791), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, sym_field_definition, - STATE(3771), 2, + STATE(3893), 2, sym_comment, sym_include, - [237583] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [245837] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4605), 1, - aux_sym_method_definition_token1, - ACTIONS(5561), 1, - aux_sym_variable_definition_token1, - ACTIONS(5563), 1, - aux_sym_variable_definition_token2, - ACTIONS(5585), 1, - aux_sym__block_terminator_token1, - STATE(3736), 1, - aux_sym_interface_body_repeat1, - STATE(3772), 2, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + ACTIONS(5739), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(5795), 1, + sym__terminator, + STATE(3866), 1, + aux_sym_workfile_definition_repeat2, + STATE(4612), 1, + sym_workfile_tuning, + STATE(4968), 1, + aux_sym_workfile_definition_repeat3, + STATE(4969), 1, + sym_type_tuning, + STATE(6029), 1, + sym_field_definition, + STATE(3894), 2, sym_comment, sym_include, - STATE(4929), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [237619] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [245881] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5079), 1, - aux_sym_type_tuning_token1, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5085), 1, - aux_sym__function_argument_with_mode_token4, - STATE(4176), 1, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + ACTIONS(5739), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(5797), 1, + sym__terminator, + STATE(3876), 1, + aux_sym_workfile_definition_repeat2, + STATE(4612), 1, + sym_workfile_tuning, + STATE(4724), 1, sym_type_tuning, - STATE(5946), 1, - sym_argument_pass_type, - ACTIONS(5077), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3773), 2, + STATE(4726), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(3895), 2, sym_comment, sym_include, - ACTIONS(5083), 3, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token2, - aux_sym_argument_pass_type_token3, - [237657] = 14, + [245925] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(506), 1, + ACTIONS(563), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2633), 1, anon_sym_COMMA, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - ACTIONS(5587), 1, + ACTIONS(5799), 1, aux_sym_widget_field_token1, - STATE(4040), 1, + STATE(1790), 1, + sym_do_block, + STATE(4206), 1, aux_sym_on_statement_repeat2, - STATE(4296), 1, + STATE(4503), 1, aux_sym_on_statement_repeat1, - STATE(5047), 1, - sym_do_block, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6189), 1, + STATE(6365), 1, sym_label, - STATE(3774), 2, + STATE(3896), 2, sym_comment, sym_include, - [237701] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [245969] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5506), 1, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + ACTIONS(5731), 1, aux_sym_on_error_phrase_token1, - STATE(1954), 1, + STATE(2313), 1, sym__block_terminator, - STATE(3793), 1, + STATE(3985), 1, sym_on_quit_phrase, - STATE(4027), 1, + STATE(4158), 1, aux_sym_repeat_statement_repeat1, - STATE(4028), 1, + STATE(4164), 1, sym_on_stop_phrase, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5615), 1, + STATE(6104), 1, sym_body, - STATE(3775), 2, + STATE(3897), 2, sym_comment, sym_include, - [237745] = 14, - ACTIONS(65), 1, + [246013] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(3898), 2, + sym_comment, + sym_include, + ACTIONS(2847), 10, + sym_identifier, + 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_access_tuning_token4, + aux_sym_access_tuning_token5, + [246039] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - ACTIONS(5506), 1, - aux_sym_on_error_phrase_token1, - STATE(2337), 1, - sym__block_terminator, - STATE(3799), 1, - sym_on_quit_phrase, - STATE(4008), 1, - aux_sym_repeat_statement_repeat1, - STATE(4016), 1, - sym_on_stop_phrase, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5853), 1, - sym_body, - STATE(3776), 2, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + ACTIONS(5739), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(5801), 1, + sym__terminator, + STATE(4056), 1, + aux_sym_workfile_definition_repeat2, + STATE(4612), 1, + sym_workfile_tuning, + STATE(4719), 1, + aux_sym_workfile_definition_repeat3, + STATE(4720), 1, + sym_type_tuning, + STATE(6029), 1, + sym_field_definition, + STATE(3899), 2, sym_comment, sym_include, - [237789] = 14, + [246083] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(558), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2610), 1, - anon_sym_COMMA, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - ACTIONS(5589), 1, - aux_sym_widget_field_token1, - STATE(1609), 1, - sym_do_block, - STATE(4007), 1, - aux_sym_on_statement_repeat2, - STATE(4296), 1, - aux_sym_on_statement_repeat1, - STATE(5368), 1, - sym_widget_phrase, - STATE(6056), 1, - sym_label, - STATE(3777), 2, + STATE(3900), 2, sym_comment, sym_include, - [237833] = 14, + ACTIONS(5803), 10, + sym_identifier, + 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_access_tuning_token4, + aux_sym_access_tuning_token5, + [246109] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(448), 1, + ACTIONS(615), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2633), 1, anon_sym_COMMA, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - ACTIONS(5591), 1, + ACTIONS(2637), 1, aux_sym_widget_field_token1, - STATE(2109), 1, + STATE(1550), 1, sym_do_block, - STATE(4026), 1, + STATE(4174), 1, aux_sym_on_statement_repeat2, - STATE(4296), 1, + STATE(4503), 1, aux_sym_on_statement_repeat1, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6368), 1, + STATE(6172), 1, sym_label, - STATE(3778), 2, + STATE(3901), 2, sym_comment, sym_include, - [237877] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [246153] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5500), 1, + ACTIONS(5739), 1, aux_sym_variable_tuning_token8, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(5593), 1, + ACTIONS(5805), 1, sym__terminator, - STATE(3771), 1, + STATE(4056), 1, aux_sym_workfile_definition_repeat2, - STATE(4503), 1, + STATE(4612), 1, sym_workfile_tuning, - STATE(4644), 1, + STATE(4648), 1, sym_type_tuning, - STATE(4646), 1, + STATE(4652), 1, aux_sym_workfile_definition_repeat3, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(3779), 2, + STATE(3902), 2, + sym_comment, + sym_include, + [246197] = 9, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5807), 1, + aux_sym__block_terminator_token1, + ACTIONS(5809), 1, + aux_sym_variable_definition_token1, + ACTIONS(5812), 1, + aux_sym_variable_definition_token2, + ACTIONS(5815), 1, + aux_sym_method_definition_token1, + STATE(3903), 3, sym_comment, sym_include, - [237921] = 14, - ACTIONS(65), 1, + aux_sym_interface_body_repeat1, + STATE(4934), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [246231] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4850), 1, + aux_sym_type_tuning_token1, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(4856), 1, + aux_sym__function_argument_with_mode_token4, + STATE(4130), 1, + sym_type_tuning, + STATE(5554), 1, + sym_argument_pass_type, + ACTIONS(4848), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3904), 2, + sym_comment, + sym_include, + ACTIONS(4854), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + [246269] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5500), 1, + ACTIONS(5739), 1, aux_sym_variable_tuning_token8, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(5595), 1, + ACTIONS(5818), 1, sym__terminator, - STATE(4079), 1, + STATE(3862), 1, aux_sym_workfile_definition_repeat2, - STATE(4503), 1, + STATE(4612), 1, sym_workfile_tuning, - STATE(5010), 1, + STATE(5173), 1, sym_type_tuning, - STATE(5055), 1, + STATE(5174), 1, aux_sym_workfile_definition_repeat3, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(3780), 2, + STATE(3905), 2, sym_comment, sym_include, - [237965] = 14, - ACTIONS(3), 1, + [246313] = 14, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(610), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2610), 1, - anon_sym_COMMA, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - ACTIONS(2653), 1, - aux_sym_widget_field_token1, - STATE(1838), 1, - sym_do_block, - STATE(4113), 1, - aux_sym_on_statement_repeat2, - STATE(4296), 1, - aux_sym_on_statement_repeat1, - STATE(5368), 1, - sym_widget_phrase, - STATE(6240), 1, - sym_label, - STATE(3781), 2, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + ACTIONS(5739), 1, + aux_sym_variable_tuning_token8, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(5820), 1, + sym__terminator, + STATE(4056), 1, + aux_sym_workfile_definition_repeat2, + STATE(4612), 1, + sym_workfile_tuning, + STATE(4793), 1, + sym_type_tuning, + STATE(4798), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(3906), 2, sym_comment, sym_include, - [238009] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [246357] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5204), 1, + ACTIONS(5236), 1, aux_sym__block_terminator_token1, - ACTIONS(5506), 1, + ACTIONS(5731), 1, aux_sym_on_error_phrase_token1, - STATE(3818), 1, + STATE(1955), 1, + sym__block_terminator, + STATE(3987), 1, sym_on_quit_phrase, - STATE(4115), 1, + STATE(4143), 1, aux_sym_repeat_statement_repeat1, - STATE(4116), 1, + STATE(4145), 1, sym_on_stop_phrase, - STATE(4776), 1, - sym__block_terminator, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5965), 1, + STATE(5565), 1, sym_body, - STATE(3782), 2, + STATE(3907), 2, sym_comment, sym_include, - [238053] = 14, - ACTIONS(65), 1, + [246401] = 14, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + ACTIONS(5731), 1, + aux_sym_on_error_phrase_token1, + STATE(1715), 1, + sym__block_terminator, + STATE(3983), 1, + sym_on_quit_phrase, + STATE(4153), 1, + aux_sym_repeat_statement_repeat1, + STATE(4173), 1, + sym_on_stop_phrase, + STATE(5323), 1, + sym_repeat_tuning, + STATE(6110), 1, + sym_body, + STATE(3908), 2, + sym_comment, + sym_include, + [246445] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5500), 1, + ACTIONS(5739), 1, aux_sym_variable_tuning_token8, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(5597), 1, + ACTIONS(5822), 1, sym__terminator, - STATE(4079), 1, + STATE(4056), 1, aux_sym_workfile_definition_repeat2, - STATE(4503), 1, + STATE(4612), 1, sym_workfile_tuning, - STATE(4684), 1, + STATE(4814), 1, sym_type_tuning, - STATE(4690), 1, + STATE(4815), 1, aux_sym_workfile_definition_repeat3, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(3783), 2, + STATE(3909), 2, sym_comment, sym_include, - [238097] = 13, - ACTIONS(65), 1, + [246489] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(3910), 2, + sym_comment, + sym_include, + ACTIONS(5824), 8, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_serialization_tuning_token1, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [246519] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3790), 1, + ACTIONS(3819), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + ACTIONS(3823), 1, aux_sym_sort_clause_token1, - ACTIONS(3796), 1, + ACTIONS(3825), 1, aux_sym_sort_clause_token2, - STATE(4036), 1, + STATE(4240), 1, aux_sym_for_phrase_repeat2, - STATE(4487), 1, + STATE(4603), 1, sym_sort_clause, - STATE(4521), 1, + STATE(4627), 1, sym_on_error_phrase, - STATE(4898), 1, + STATE(5154), 1, sym_on_quit_phrase, - STATE(5581), 1, + STATE(5942), 1, sym_on_stop_phrase, - ACTIONS(4372), 2, + ACTIONS(4436), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(3784), 2, + STATE(3911), 2, sym_comment, sym_include, - [238139] = 14, - ACTIONS(65), 1, + [246561] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(3912), 2, + sym_comment, + sym_include, + ACTIONS(5401), 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, + [246587] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - ACTIONS(5500), 1, + ACTIONS(5739), 1, aux_sym_variable_tuning_token8, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(5599), 1, + ACTIONS(5826), 1, sym__terminator, - STATE(4079), 1, + STATE(3899), 1, aux_sym_workfile_definition_repeat2, - STATE(4503), 1, + STATE(4612), 1, sym_workfile_tuning, - STATE(4565), 1, + STATE(4663), 1, sym_type_tuning, - STATE(4973), 1, + STATE(4665), 1, aux_sym_workfile_definition_repeat3, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(3785), 2, + STATE(3913), 2, + sym_comment, + sym_include, + [246631] = 5, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(3914), 2, sym_comment, sym_include, - [238183] = 14, + ACTIONS(5828), 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, + [246657] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(558), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2610), 1, + ACTIONS(2633), 1, anon_sym_COMMA, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - ACTIONS(2643), 1, + ACTIONS(2694), 1, aux_sym_widget_field_token1, - STATE(1550), 1, + STATE(2057), 1, sym_do_block, - STATE(3994), 1, + STATE(4121), 1, aux_sym_on_statement_repeat2, - STATE(4296), 1, + STATE(4503), 1, aux_sym_on_statement_repeat1, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6056), 1, + STATE(6198), 1, sym_label, - STATE(3786), 2, + STATE(3915), 2, sym_comment, sym_include, - [238227] = 14, - ACTIONS(3), 1, + [246701] = 13, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(558), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2610), 1, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4536), 1, + sym_on_error_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(5094), 1, + sym_on_quit_phrase, + STATE(5789), 1, + sym_on_stop_phrase, + ACTIONS(5830), 2, + anon_sym_COLON, anon_sym_COMMA, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - ACTIONS(2645), 1, - aux_sym_widget_field_token1, - STATE(1600), 1, - sym_do_block, - STATE(4013), 1, - aux_sym_on_statement_repeat2, - STATE(4296), 1, - aux_sym_on_statement_repeat1, - STATE(5368), 1, - sym_widget_phrase, - STATE(6056), 1, - sym_label, - STATE(3787), 2, + STATE(3916), 2, + sym_comment, + sym_include, + [246743] = 13, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4603), 1, + sym_sort_clause, + STATE(4613), 1, + sym_on_error_phrase, + STATE(4678), 1, + sym_on_quit_phrase, + STATE(5468), 1, + sym_on_stop_phrase, + ACTIONS(4534), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3917), 2, sym_comment, sym_include, - [238271] = 14, - ACTIONS(65), 1, + [246785] = 13, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4603), 1, + sym_sort_clause, + STATE(4624), 1, + sym_on_error_phrase, + STATE(5127), 1, + sym_on_quit_phrase, + STATE(5941), 1, + sym_on_stop_phrase, + ACTIONS(4478), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3918), 2, + sym_comment, + sym_include, + [246827] = 14, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5129), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - ACTIONS(5506), 1, + ACTIONS(5731), 1, aux_sym_on_error_phrase_token1, - STATE(2001), 1, - sym__block_terminator, - STATE(3871), 1, + STATE(3974), 1, sym_on_quit_phrase, - STATE(4119), 1, - sym_on_stop_phrase, - STATE(4132), 1, + STATE(4181), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(4186), 1, + sym_on_stop_phrase, + STATE(5113), 1, + sym__block_terminator, + STATE(5323), 1, sym_repeat_tuning, - STATE(5885), 1, + STATE(5503), 1, sym_body, - STATE(3788), 2, + STATE(3919), 2, + sym_comment, + sym_include, + [246871] = 13, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3819), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3823), 1, + aux_sym_sort_clause_token1, + ACTIONS(3825), 1, + aux_sym_sort_clause_token2, + STATE(4240), 1, + aux_sym_for_phrase_repeat2, + STATE(4586), 1, + sym_on_error_phrase, + STATE(4603), 1, + sym_sort_clause, + STATE(4644), 1, + sym_on_quit_phrase, + STATE(5488), 1, + sym_on_stop_phrase, + ACTIONS(4488), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(3920), 2, sym_comment, sym_include, - [238315] = 14, - ACTIONS(65), 1, + [246913] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5832), 1, + anon_sym_COMMA, + STATE(3921), 3, + sym_comment, + sym_include, + aux_sym_inherits_repeat1, + ACTIONS(5824), 7, + anon_sym_COLON, + aux_sym_serialization_tuning_token1, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [246940] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5506), 1, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + ACTIONS(5835), 1, aux_sym_on_error_phrase_token1, - STATE(1867), 1, + STATE(2092), 1, sym__block_terminator, - STATE(3812), 1, - sym_on_quit_phrase, - STATE(4080), 1, + STATE(4136), 1, aux_sym_repeat_statement_repeat1, - STATE(4081), 1, + STATE(4140), 1, sym_on_stop_phrase, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5547), 1, + STATE(5733), 1, sym_body, - STATE(3789), 2, + STATE(3922), 2, sym_comment, sym_include, - [238359] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [246981] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - ACTIONS(5500), 1, - aux_sym_variable_tuning_token8, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(5601), 1, - sym__terminator, - STATE(3722), 1, - aux_sym_workfile_definition_repeat2, - STATE(4503), 1, - sym_workfile_tuning, - STATE(4568), 1, - sym_type_tuning, - STATE(4630), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(3790), 2, - sym_comment, - sym_include, - [238403] = 14, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(610), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2610), 1, - anon_sym_COMMA, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - ACTIONS(2614), 1, - aux_sym_widget_field_token1, - STATE(1863), 1, - sym_do_block, - STATE(4083), 1, - aux_sym_on_statement_repeat2, - STATE(4296), 1, - aux_sym_on_statement_repeat1, - STATE(5368), 1, - sym_widget_phrase, - STATE(6240), 1, - sym_label, - STATE(3791), 2, + ACTIONS(3125), 1, + aux_sym_variable_definition_token2, + STATE(3923), 2, sym_comment, sym_include, - [238447] = 14, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3123), 8, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_variable_definition_token1, + aux_sym_else_statement_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + aux_sym_case_otherwise_branch_token1, + [247008] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5117), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - ACTIONS(5506), 1, + ACTIONS(5835), 1, aux_sym_on_error_phrase_token1, - STATE(1633), 1, - sym__block_terminator, - STATE(3806), 1, - sym_on_quit_phrase, - STATE(4014), 1, - sym_on_stop_phrase, - STATE(4018), 1, + STATE(4181), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(4186), 1, + sym_on_stop_phrase, + STATE(5113), 1, + sym__block_terminator, + STATE(5323), 1, sym_repeat_tuning, - STATE(5633), 1, + STATE(5503), 1, sym_body, - STATE(3792), 2, + STATE(3924), 2, sym_comment, sym_include, - [238491] = 13, - ACTIONS(65), 1, + [247049] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5425), 1, + anon_sym_COMMA, + STATE(3931), 1, + aux_sym_inherits_repeat1, + STATE(3925), 2, + sym_comment, + sym_include, + ACTIONS(5423), 7, + anon_sym_COLON, + aux_sym_serialization_tuning_token1, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [247078] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5603), 1, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + ACTIONS(5835), 1, aux_sym_on_error_phrase_token1, - STATE(1867), 1, + STATE(1607), 1, sym__block_terminator, - STATE(4080), 1, + STATE(4217), 1, aux_sym_repeat_statement_repeat1, - STATE(4081), 1, + STATE(4218), 1, sym_on_stop_phrase, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5547), 1, + STATE(5909), 1, sym_body, - STATE(3793), 2, + STATE(3926), 2, sym_comment, sym_include, - [238532] = 11, - ACTIONS(3), 1, + [247119] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5607), 1, - sym__terminator, - ACTIONS(5609), 1, - anon_sym_LBRACK, - STATE(3975), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3794), 2, + STATE(4235), 1, + sym_temp_table_tuning, + ACTIONS(5839), 2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + STATE(3927), 3, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [238569] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_temp_table_definition_repeat1, + ACTIONS(5837), 5, + sym__terminator, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [247148] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3093), 1, - aux_sym_variable_definition_token2, - STATE(3795), 2, + ACTIONS(5425), 1, + anon_sym_COMMA, + STATE(3932), 1, + aux_sym_inherits_repeat1, + STATE(3928), 2, sym_comment, sym_include, - ACTIONS(3091), 8, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_variable_definition_token1, - aux_sym_else_statement_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - aux_sym_case_otherwise_branch_token1, - [238596] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5431), 7, + anon_sym_COLON, + aux_sym_serialization_tuning_token1, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [247177] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3097), 1, - aux_sym_variable_definition_token2, - STATE(3796), 2, + ACTIONS(4472), 1, + sym__namedot, + STATE(3165), 1, + aux_sym_qualified_name_repeat1, + STATE(3929), 2, sym_comment, sym_include, - ACTIONS(3095), 8, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_variable_definition_token1, - aux_sym_else_statement_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - aux_sym_case_otherwise_branch_token1, - [238623] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4150), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_variable_tuning_token7, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [247206] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5117), 1, + ACTIONS(5236), 1, aux_sym__block_terminator_token1, - ACTIONS(5603), 1, + ACTIONS(5835), 1, aux_sym_on_error_phrase_token1, - STATE(1633), 1, + STATE(1866), 1, sym__block_terminator, - STATE(4014), 1, - sym_on_stop_phrase, - STATE(4018), 1, + STATE(4103), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(4104), 1, + sym_on_stop_phrase, + STATE(5323), 1, sym_repeat_tuning, - STATE(5633), 1, + STATE(6123), 1, sym_body, - STATE(3797), 2, + STATE(3930), 2, sym_comment, sym_include, - [238664] = 11, - ACTIONS(3), 1, + [247247] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5611), 1, - sym__terminator, - ACTIONS(5613), 1, - anon_sym_LBRACK, - STATE(3941), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3798), 2, + ACTIONS(5425), 1, + anon_sym_COMMA, + STATE(3921), 1, + aux_sym_inherits_repeat1, + STATE(3931), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [238701] = 13, - ACTIONS(65), 1, + ACTIONS(5842), 7, + anon_sym_COLON, + aux_sym_serialization_tuning_token1, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [247276] = 7, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5425), 1, + anon_sym_COMMA, + STATE(3921), 1, + aux_sym_inherits_repeat1, + STATE(3932), 2, + sym_comment, + sym_include, + ACTIONS(5844), 7, + anon_sym_COLON, + aux_sym_serialization_tuning_token1, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [247305] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4472), 1, + sym__namedot, + STATE(3165), 1, + aux_sym_qualified_name_repeat1, + STATE(3933), 2, + sym_comment, + sym_include, + ACTIONS(4085), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_variable_tuning_token7, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [247334] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5129), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - ACTIONS(5603), 1, + ACTIONS(5835), 1, aux_sym_on_error_phrase_token1, - STATE(2001), 1, + STATE(2153), 1, sym__block_terminator, - STATE(4119), 1, - sym_on_stop_phrase, - STATE(4132), 1, + STATE(4112), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(4115), 1, + sym_on_stop_phrase, + STATE(5323), 1, sym_repeat_tuning, - STATE(5885), 1, + STATE(5858), 1, sym_body, - STATE(3799), 2, + STATE(3934), 2, sym_comment, sym_include, - [238742] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [247375] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3101), 1, + ACTIONS(3039), 1, aux_sym_variable_definition_token2, - STATE(3800), 2, + STATE(3935), 2, sym_comment, sym_include, - ACTIONS(3099), 8, + ACTIONS(3037), 8, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_variable_definition_token1, @@ -249474,19 +257316,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, aux_sym_case_otherwise_branch_token1, - [238769] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [247402] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3067), 1, + ACTIONS(3043), 1, aux_sym_variable_definition_token2, - STATE(3801), 2, + STATE(3936), 2, sym_comment, sym_include, - ACTIONS(3065), 8, + ACTIONS(3041), 8, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_variable_definition_token1, @@ -249495,40 +257337,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, aux_sym_case_otherwise_branch_token1, - [238796] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [247429] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(2715), 1, - aux_sym_variable_tuning_token2, - STATE(3802), 2, - sym_comment, - sym_include, - ACTIONS(2713), 8, - sym__terminator, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - [238823] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3063), 1, + ACTIONS(2903), 1, aux_sym_variable_definition_token2, - STATE(3803), 2, + STATE(3937), 2, sym_comment, sym_include, - ACTIONS(3061), 8, + ACTIONS(2901), 8, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_variable_definition_token1, @@ -249537,19 +257358,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, aux_sym_case_otherwise_branch_token1, - [238850] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [247456] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3127), 1, + ACTIONS(2855), 1, aux_sym_variable_definition_token2, - STATE(3804), 2, + STATE(3938), 2, sym_comment, sym_include, - ACTIONS(3125), 8, + ACTIONS(2853), 8, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_variable_definition_token1, @@ -249558,155 +257379,117 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, aux_sym_case_otherwise_branch_token1, - [238877] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5615), 1, - sym__terminator, - ACTIONS(5617), 1, - anon_sym_LBRACK, - STATE(3979), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3805), 2, - sym_comment, - sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [238914] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [247483] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5117), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - ACTIONS(5603), 1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5835), 1, aux_sym_on_error_phrase_token1, - STATE(1552), 1, + STATE(2412), 1, sym__block_terminator, - STATE(3985), 1, + STATE(4107), 1, sym_on_stop_phrase, - STATE(3995), 1, + STATE(4113), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5688), 1, + STATE(5549), 1, sym_body, - STATE(3806), 2, + STATE(3939), 2, sym_comment, sym_include, - [238955] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [247524] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5204), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - ACTIONS(5603), 1, + ACTIONS(5835), 1, aux_sym_on_error_phrase_token1, - STATE(4115), 1, + STATE(4088), 1, aux_sym_repeat_statement_repeat1, - STATE(4116), 1, + STATE(4098), 1, sym_on_stop_phrase, - STATE(4776), 1, + STATE(4976), 1, sym__block_terminator, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5965), 1, + STATE(5686), 1, sym_body, - STATE(3807), 2, + STATE(3940), 2, sym_comment, sym_include, - [238996] = 11, - ACTIONS(3), 1, + [247565] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5619), 1, - sym__terminator, - ACTIONS(5621), 1, - anon_sym_LBRACK, - STATE(3911), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3808), 2, + ACTIONS(3117), 1, + aux_sym_variable_definition_token2, + STATE(3941), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [239033] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3115), 8, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_variable_definition_token1, + aux_sym_else_statement_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + aux_sym_case_otherwise_branch_token1, + [247592] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - ACTIONS(5603), 1, - aux_sym_on_error_phrase_token1, - STATE(2203), 1, - sym__block_terminator, - STATE(4154), 1, - sym_on_stop_phrase, - STATE(4156), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5998), 1, - sym_body, - STATE(3809), 2, + ACTIONS(3352), 1, + aux_sym_variable_definition_token2, + STATE(3942), 2, sym_comment, sym_include, - [239074] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3350), 8, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_variable_definition_token1, + aux_sym_else_statement_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + aux_sym_case_otherwise_branch_token1, + [247619] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3059), 1, + ACTIONS(3219), 1, aux_sym_variable_definition_token2, - STATE(3810), 2, + STATE(3943), 2, sym_comment, sym_include, - ACTIONS(3057), 8, + ACTIONS(3217), 8, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_variable_definition_token1, @@ -249715,173 +257498,117 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, aux_sym_case_otherwise_branch_token1, - [239101] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [247646] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - ACTIONS(5603), 1, - aux_sym_on_error_phrase_token1, - STATE(2337), 1, - sym__block_terminator, - STATE(4008), 1, - aux_sym_repeat_statement_repeat1, - STATE(4016), 1, - sym_on_stop_phrase, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5853), 1, - sym_body, - STATE(3811), 2, + ACTIONS(3047), 1, + aux_sym_variable_definition_token2, + STATE(3944), 2, sym_comment, sym_include, - [239142] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3045), 8, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_variable_definition_token1, + aux_sym_else_statement_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + aux_sym_case_otherwise_branch_token1, + [247673] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5109), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5603), 1, + ACTIONS(5835), 1, aux_sym_on_error_phrase_token1, - STATE(1840), 1, + STATE(2291), 1, sym__block_terminator, - STATE(4112), 1, + STATE(4102), 1, aux_sym_repeat_statement_repeat1, - STATE(4122), 1, + STATE(4106), 1, sym_on_stop_phrase, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5553), 1, + STATE(5963), 1, sym_body, - STATE(3812), 2, + STATE(3945), 2, sym_comment, sym_include, - [239183] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [247714] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5603), 1, - aux_sym_on_error_phrase_token1, - STATE(1954), 1, - sym__block_terminator, - STATE(4027), 1, - aux_sym_repeat_statement_repeat1, - STATE(4028), 1, - sym_on_stop_phrase, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5615), 1, - sym_body, - STATE(3813), 2, + ACTIONS(3141), 1, + aux_sym_variable_definition_token2, + STATE(3946), 2, sym_comment, sym_include, - [239224] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3139), 8, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_variable_definition_token1, + aux_sym_else_statement_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + aux_sym_case_otherwise_branch_token1, + [247741] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5117), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - ACTIONS(5603), 1, + ACTIONS(5835), 1, aux_sym_on_error_phrase_token1, - STATE(1682), 1, + STATE(1715), 1, sym__block_terminator, - STATE(4064), 1, - sym_on_stop_phrase, - STATE(4065), 1, + STATE(4153), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(4173), 1, + sym_on_stop_phrase, + STATE(5323), 1, sym_repeat_tuning, - STATE(5573), 1, + STATE(6110), 1, sym_body, - STATE(3814), 2, - sym_comment, - sym_include, - [239265] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5625), 1, - aux_sym_variable_tuning_token2, - STATE(3815), 2, + STATE(3947), 2, sym_comment, sym_include, - ACTIONS(5623), 8, - sym__terminator, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - [239292] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [247782] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5629), 1, - aux_sym_variable_tuning_token2, - STATE(3816), 2, - sym_comment, - sym_include, - ACTIONS(5627), 8, - sym__terminator, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_variable_tuning_token7, - aux_sym_variable_tuning_token8, - [239319] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3131), 1, + ACTIONS(3113), 1, aux_sym_variable_definition_token2, - STATE(3817), 2, + STATE(3948), 2, sym_comment, sym_include, - ACTIONS(3129), 8, + ACTIONS(3111), 8, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_variable_definition_token1, @@ -249890,47 +257617,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, aux_sym_case_otherwise_branch_token1, - [239346] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [247809] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5204), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - ACTIONS(5603), 1, + ACTIONS(5835), 1, aux_sym_on_error_phrase_token1, - STATE(4170), 1, - aux_sym_repeat_statement_repeat1, - STATE(4171), 1, - sym_on_stop_phrase, - STATE(4904), 1, + STATE(1554), 1, sym__block_terminator, - STATE(5189), 1, + STATE(4180), 1, + sym_on_stop_phrase, + STATE(4183), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, sym_repeat_tuning, - STATE(6014), 1, + STATE(5786), 1, sym_body, - STATE(3818), 2, + STATE(3949), 2, sym_comment, sym_include, - [239387] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [247850] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2991), 1, + ACTIONS(3057), 1, aux_sym_variable_definition_token2, - STATE(3819), 2, + STATE(3950), 2, sym_comment, sym_include, - ACTIONS(2989), 8, + ACTIONS(3055), 8, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_variable_definition_token1, @@ -249939,47 +257666,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, aux_sym_case_otherwise_branch_token1, - [239414] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [247877] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5129), 1, + ACTIONS(5236), 1, aux_sym__block_terminator_token1, - ACTIONS(5603), 1, + ACTIONS(5835), 1, aux_sym_on_error_phrase_token1, - STATE(2144), 1, + STATE(1835), 1, sym__block_terminator, - STATE(4070), 1, - sym_on_stop_phrase, - STATE(4103), 1, + STATE(4156), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(4157), 1, + sym_on_stop_phrase, + STATE(5323), 1, sym_repeat_tuning, - STATE(5959), 1, + STATE(5714), 1, sym_body, - STATE(3820), 2, + STATE(3951), 2, sym_comment, sym_include, - [239455] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [247918] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3149), 1, + ACTIONS(3137), 1, aux_sym_variable_definition_token2, - STATE(3821), 2, + STATE(3952), 2, sym_comment, sym_include, - ACTIONS(3147), 8, + ACTIONS(3135), 8, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_variable_definition_token1, @@ -249988,40 +257715,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, aux_sym_case_otherwise_branch_token1, - [239482] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [247945] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2973), 1, - aux_sym_variable_definition_token2, - STATE(3822), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5835), 1, + aux_sym_on_error_phrase_token1, + STATE(2381), 1, + sym__block_terminator, + STATE(4083), 1, + aux_sym_repeat_statement_repeat1, + STATE(4101), 1, + sym_on_stop_phrase, + STATE(5323), 1, + sym_repeat_tuning, + STATE(6097), 1, + sym_body, + STATE(3953), 2, sym_comment, sym_include, - ACTIONS(2971), 8, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_variable_definition_token1, - aux_sym_else_statement_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - aux_sym_case_otherwise_branch_token1, - [239509] = 6, - ACTIONS(65), 1, + [247986] = 13, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5835), 1, + aux_sym_on_error_phrase_token1, + STATE(2077), 1, + sym__block_terminator, + STATE(4205), 1, + sym_on_stop_phrase, + STATE(4209), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5642), 1, + sym_body, + STATE(3954), 2, + sym_comment, + sym_include, + [248027] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3161), 1, + ACTIONS(2959), 1, aux_sym_variable_definition_token2, - STATE(3823), 2, + STATE(3955), 2, sym_comment, sym_include, - ACTIONS(3159), 8, + ACTIONS(2957), 8, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_variable_definition_token1, @@ -250030,19 +257792,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, aux_sym_case_otherwise_branch_token1, - [239536] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [248054] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2995), 1, + ACTIONS(2965), 1, aux_sym_variable_definition_token2, - STATE(3824), 2, + STATE(3956), 2, sym_comment, sym_include, - ACTIONS(2993), 8, + ACTIONS(2963), 8, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_variable_definition_token1, @@ -250051,208 +257813,193 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, aux_sym_case_otherwise_branch_token1, - [239563] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [248081] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4448), 1, + ACTIONS(4472), 1, sym__namedot, - STATE(3103), 1, + ACTIONS(5848), 1, + aux_sym__function_argument_with_mode_token4, + STATE(3165), 1, aux_sym_qualified_name_repeat1, - STATE(3825), 2, - sym_comment, - sym_include, - ACTIONS(3926), 7, + STATE(5972), 1, + sym_argument_pass_type, + ACTIONS(5846), 2, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_variable_tuning_token7, + STATE(3957), 2, + sym_comment, + sym_include, + ACTIONS(4854), 3, aux_sym_argument_pass_type_token1, aux_sym_argument_pass_type_token2, aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [239592] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [248116] = 13, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3165), 1, - aux_sym_variable_definition_token2, - STATE(3826), 2, - sym_comment, - sym_include, - ACTIONS(3163), 8, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_variable_definition_token1, - aux_sym_else_statement_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - aux_sym_case_otherwise_branch_token1, - [239619] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3227), 1, - aux_sym_variable_definition_token2, - STATE(3827), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + ACTIONS(5835), 1, + aux_sym_on_error_phrase_token1, + STATE(1955), 1, + sym__block_terminator, + STATE(4143), 1, + aux_sym_repeat_statement_repeat1, + STATE(4145), 1, + sym_on_stop_phrase, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5565), 1, + sym_body, + STATE(3958), 2, sym_comment, sym_include, - ACTIONS(3225), 8, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_variable_definition_token1, - aux_sym_else_statement_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - aux_sym_case_otherwise_branch_token1, - [239646] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [248157] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2999), 1, - aux_sym_variable_definition_token2, - STATE(3828), 2, + ACTIONS(5852), 1, + aux_sym_variable_tuning_token2, + STATE(3959), 2, sym_comment, sym_include, - ACTIONS(2997), 8, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_variable_definition_token1, - aux_sym_else_statement_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - aux_sym_case_otherwise_branch_token1, - [239673] = 11, - ACTIONS(3), 1, + ACTIONS(5850), 8, + sym__terminator, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + [248184] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5631), 1, - sym__terminator, - ACTIONS(5633), 1, - anon_sym_LBRACK, - STATE(3937), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3829), 2, + ACTIONS(5854), 1, + sym__integer_literal, + STATE(4260), 1, + sym_number_literal, + STATE(4328), 1, + sym__decimal_literal, + STATE(3960), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [239710] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5856), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_variable_tuning_token7, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [248215] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5204), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - ACTIONS(5603), 1, + ACTIONS(5835), 1, aux_sym_on_error_phrase_token1, - STATE(4063), 1, + STATE(2225), 1, + sym__block_terminator, + STATE(4067), 1, sym_on_stop_phrase, - STATE(4128), 1, + STATE(4068), 1, aux_sym_repeat_statement_repeat1, - STATE(4986), 1, - sym__block_terminator, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(6008), 1, + STATE(5940), 1, sym_body, - STATE(3830), 2, + STATE(3961), 2, sym_comment, sym_include, - [239751] = 13, - ACTIONS(65), 1, + [248256] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2953), 1, + aux_sym_variable_definition_token2, + STATE(3962), 2, + sym_comment, + sym_include, + ACTIONS(2951), 8, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_variable_definition_token1, + aux_sym_else_statement_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + aux_sym_case_otherwise_branch_token1, + [248283] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5188), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - ACTIONS(5603), 1, + ACTIONS(5835), 1, aux_sym_on_error_phrase_token1, - STATE(2322), 1, + STATE(1590), 1, sym__block_terminator, - STATE(4095), 1, + STATE(4077), 1, sym_on_stop_phrase, - STATE(4167), 1, + STATE(4097), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5805), 1, + STATE(5693), 1, sym_body, - STATE(3831), 2, + STATE(3963), 2, sym_comment, sym_include, - [239792] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [248324] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4448), 1, - sym__namedot, - STATE(3103), 1, - aux_sym_qualified_name_repeat1, - STATE(3832), 2, - sym_comment, - sym_include, - ACTIONS(3916), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_variable_tuning_token7, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token2, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [239821] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3123), 1, + ACTIONS(3257), 1, aux_sym_variable_definition_token2, - STATE(3833), 2, + STATE(3964), 2, sym_comment, sym_include, - ACTIONS(3121), 8, + ACTIONS(3255), 8, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_variable_definition_token1, @@ -250261,146 +258008,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, aux_sym_case_otherwise_branch_token1, - [239848] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [248351] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5635), 1, - sym__integer_literal, - STATE(4263), 1, - sym_number_literal, - STATE(4359), 1, - sym__decimal_literal, - STATE(3834), 2, - sym_comment, - sym_include, - ACTIONS(5637), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_variable_tuning_token7, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [239879] = 7, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5478), 1, - anon_sym_COMMA, - STATE(3858), 1, - aux_sym_inherits_repeat1, - STATE(3835), 2, + ACTIONS(3051), 1, + aux_sym_variable_definition_token2, + STATE(3965), 2, sym_comment, sym_include, - ACTIONS(5484), 7, - anon_sym_COLON, - aux_sym_serialization_tuning_token1, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [239908] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3049), 8, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_variable_definition_token1, + aux_sym_else_statement_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + aux_sym_case_otherwise_branch_token1, + [248378] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5188), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - ACTIONS(5603), 1, + ACTIONS(5835), 1, aux_sym_on_error_phrase_token1, - STATE(2037), 1, + STATE(2313), 1, sym__block_terminator, - STATE(4169), 1, - sym_on_stop_phrase, - STATE(4174), 1, + STATE(4158), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(4164), 1, + sym_on_stop_phrase, + STATE(5323), 1, sym_repeat_tuning, - STATE(5437), 1, + STATE(6104), 1, sym_body, - STATE(3836), 2, + STATE(3966), 2, sym_comment, sym_include, - [239949] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [248419] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5117), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - ACTIONS(5603), 1, + ACTIONS(5835), 1, aux_sym_on_error_phrase_token1, - STATE(1722), 1, - sym__block_terminator, - STATE(4108), 1, + STATE(4187), 1, aux_sym_repeat_statement_repeat1, - STATE(4110), 1, + STATE(4251), 1, sym_on_stop_phrase, - STATE(5189), 1, + STATE(4721), 1, + sym__block_terminator, + STATE(5323), 1, sym_repeat_tuning, - STATE(5484), 1, + STATE(5797), 1, sym_body, - STATE(3837), 2, - sym_comment, - sym_include, - [239990] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5639), 1, - sym__terminator, - ACTIONS(5641), 1, - anon_sym_LBRACK, - STATE(3930), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3838), 2, + STATE(3967), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [240027] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [248460] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(2851), 1, aux_sym_variable_definition_token2, - STATE(3839), 2, + STATE(3968), 2, sym_comment, sym_include, - ACTIONS(3001), 8, + ACTIONS(2927), 8, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_variable_definition_token1, @@ -250409,19 +258106,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, aux_sym_case_otherwise_branch_token1, - [240054] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [248487] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3009), 1, + ACTIONS(2911), 1, aux_sym_variable_definition_token2, - STATE(3840), 2, + STATE(3969), 2, sym_comment, sym_include, - ACTIONS(3007), 8, + ACTIONS(2909), 8, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_variable_definition_token1, @@ -250430,19 +258127,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, aux_sym_case_otherwise_branch_token1, - [240081] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [248514] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3013), 1, + ACTIONS(3606), 1, aux_sym_variable_definition_token2, - STATE(3841), 2, + STATE(3970), 2, sym_comment, sym_include, - ACTIONS(3011), 8, + ACTIONS(3636), 8, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_variable_definition_token1, @@ -250451,19 +258148,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, aux_sym_case_otherwise_branch_token1, - [240108] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [248541] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3019), 1, + ACTIONS(3189), 1, aux_sym_variable_definition_token2, - STATE(3842), 2, + STATE(3971), 2, sym_comment, sym_include, - ACTIONS(3017), 8, + ACTIONS(3187), 8, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_variable_definition_token1, @@ -250472,45 +258169,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, aux_sym_case_otherwise_branch_token1, - [240135] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5643), 1, - sym__terminator, - ACTIONS(5645), 1, - anon_sym_LBRACK, - STATE(3966), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3843), 2, - sym_comment, - sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [240172] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [248568] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3023), 1, + ACTIONS(3199), 1, aux_sym_variable_definition_token2, - STATE(3844), 2, + STATE(3972), 2, sym_comment, sym_include, - ACTIONS(3021), 8, + ACTIONS(3197), 8, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_variable_definition_token1, @@ -250519,72 +258190,117 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, aux_sym_case_otherwise_branch_token1, - [240199] = 13, - ACTIONS(65), 1, + [248595] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2742), 1, + aux_sym_variable_tuning_token2, + STATE(3973), 2, + sym_comment, + sym_include, + ACTIONS(2740), 8, + sym__terminator, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + [248622] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5188), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - ACTIONS(5603), 1, + ACTIONS(5835), 1, aux_sym_on_error_phrase_token1, - STATE(2204), 1, - sym__block_terminator, - STATE(4180), 1, + STATE(4093), 1, sym_on_stop_phrase, - STATE(4181), 1, + STATE(4094), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5075), 1, + sym__block_terminator, + STATE(5323), 1, sym_repeat_tuning, - STATE(5541), 1, + STATE(5580), 1, sym_body, - STATE(3845), 2, + STATE(3974), 2, sym_comment, sym_include, - [240240] = 10, - ACTIONS(65), 1, + [248663] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3211), 1, + aux_sym_variable_definition_token2, + STATE(3975), 2, + sym_comment, + sym_include, + ACTIONS(3209), 8, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_variable_definition_token1, + aux_sym_else_statement_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + aux_sym_case_otherwise_branch_token1, + [248690] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4448), 1, - sym__namedot, - ACTIONS(5649), 1, - aux_sym__function_argument_with_mode_token4, - STATE(3103), 1, - aux_sym_qualified_name_repeat1, - STATE(5779), 1, - sym_argument_pass_type, - ACTIONS(5647), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3846), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + ACTIONS(5835), 1, + aux_sym_on_error_phrase_token1, + STATE(1810), 1, + sym__block_terminator, + STATE(4188), 1, + aux_sym_repeat_statement_repeat1, + STATE(4198), 1, + sym_on_stop_phrase, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5775), 1, + sym_body, + STATE(3976), 2, sym_comment, sym_include, - ACTIONS(5083), 3, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token2, - aux_sym_argument_pass_type_token3, - [240275] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [248731] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3177), 1, + ACTIONS(2935), 1, aux_sym_variable_definition_token2, - STATE(3847), 2, + STATE(3977), 2, sym_comment, sym_include, - ACTIONS(3175), 8, + ACTIONS(2933), 8, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_variable_definition_token1, @@ -250593,19 +258309,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, aux_sym_case_otherwise_branch_token1, - [240302] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [248758] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3185), 1, + ACTIONS(2925), 1, aux_sym_variable_definition_token2, - STATE(3848), 2, + STATE(3978), 2, sym_comment, sym_include, - ACTIONS(3183), 8, + ACTIONS(2923), 8, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_variable_definition_token1, @@ -250614,118 +258330,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, aux_sym_case_otherwise_branch_token1, - [240329] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [248785] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5204), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - ACTIONS(5603), 1, + ACTIONS(5835), 1, aux_sym_on_error_phrase_token1, - STATE(3997), 1, + STATE(4249), 1, sym_on_stop_phrase, - STATE(3999), 1, + STATE(4253), 1, aux_sym_repeat_statement_repeat1, - STATE(4670), 1, + STATE(4780), 1, sym__block_terminator, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5902), 1, + STATE(5726), 1, sym_body, - STATE(3849), 2, + STATE(3979), 2, sym_comment, sym_include, - [240370] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [248826] = 13, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3189), 1, - aux_sym_variable_definition_token2, - STATE(3850), 2, - sym_comment, - sym_include, - ACTIONS(3187), 8, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_variable_definition_token1, - aux_sym_else_statement_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - aux_sym_case_otherwise_branch_token1, - [240397] = 13, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5188), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - ACTIONS(5603), 1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5835), 1, aux_sym_on_error_phrase_token1, - STATE(2357), 1, + STATE(2091), 1, sym__block_terminator, - STATE(4003), 1, - aux_sym_repeat_statement_repeat1, - STATE(4074), 1, + STATE(4152), 1, sym_on_stop_phrase, - STATE(5189), 1, + STATE(4254), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5677), 1, + STATE(5646), 1, sym_body, - STATE(3851), 2, + STATE(3980), 2, sym_comment, sym_include, - [240438] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [248867] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5478), 1, - anon_sym_COMMA, - STATE(3866), 1, - aux_sym_inherits_repeat1, - STATE(3852), 2, - sym_comment, - sym_include, - ACTIONS(5651), 7, - anon_sym_COLON, - aux_sym_serialization_tuning_token1, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [240467] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3193), 1, + ACTIONS(2973), 1, aux_sym_variable_definition_token2, - STATE(3853), 2, + STATE(3981), 2, sym_comment, sym_include, - ACTIONS(3191), 8, + ACTIONS(2971), 8, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_variable_definition_token1, @@ -250734,40 +258407,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, aux_sym_case_otherwise_branch_token1, - [240494] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [248894] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3199), 1, - aux_sym_variable_definition_token2, - STATE(3854), 2, - sym_comment, - sym_include, - ACTIONS(3197), 8, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_variable_definition_token1, - aux_sym_else_statement_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - aux_sym_case_otherwise_branch_token1, - [240521] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3203), 1, + ACTIONS(2977), 1, aux_sym_variable_definition_token2, - STATE(3855), 2, + STATE(3982), 2, sym_comment, sym_include, - ACTIONS(3201), 8, + ACTIONS(2975), 8, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_variable_definition_token1, @@ -250776,202 +258428,149 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, aux_sym_case_otherwise_branch_token1, - [240548] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [248921] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5603), 1, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + ACTIONS(5835), 1, aux_sym_on_error_phrase_token1, - STATE(1943), 1, + STATE(1681), 1, sym__block_terminator, - STATE(4136), 1, - aux_sym_repeat_statement_repeat1, - STATE(4143), 1, + STATE(4051), 1, sym_on_stop_phrase, - STATE(5189), 1, + STATE(4149), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5795), 1, + STATE(6089), 1, sym_body, - STATE(3856), 2, + STATE(3983), 2, sym_comment, sym_include, - [240589] = 13, - ACTIONS(65), 1, + [248962] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5860), 1, + aux_sym_variable_tuning_token2, + STATE(3984), 2, + sym_comment, + sym_include, + ACTIONS(5858), 8, + sym__terminator, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_variable_tuning_token7, + aux_sym_variable_tuning_token8, + [248989] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5188), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - ACTIONS(5603), 1, + ACTIONS(5835), 1, aux_sym_on_error_phrase_token1, - STATE(2430), 1, + STATE(2280), 1, sym__block_terminator, - STATE(4141), 1, + STATE(4125), 1, aux_sym_repeat_statement_repeat1, - STATE(4144), 1, + STATE(4128), 1, sym_on_stop_phrase, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5786), 1, + STATE(6015), 1, sym_body, - STATE(3857), 2, - sym_comment, - sym_include, - [240630] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5478), 1, - anon_sym_COMMA, - STATE(3866), 1, - aux_sym_inherits_repeat1, - STATE(3858), 2, - sym_comment, - sym_include, - ACTIONS(5653), 7, - anon_sym_COLON, - aux_sym_serialization_tuning_token1, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [240659] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5655), 1, - sym__terminator, - ACTIONS(5657), 1, - anon_sym_LBRACK, - STATE(3880), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3859), 2, - sym_comment, - sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [240696] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5659), 1, - sym__terminator, - ACTIONS(5661), 1, - anon_sym_LBRACK, - STATE(3935), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3860), 2, + STATE(3985), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [240733] = 10, + [249030] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5751), 1, sym_identifier, - ACTIONS(5516), 1, + ACTIONS(5759), 1, aux_sym__function_argument_with_mode_token2, - STATE(4561), 1, + STATE(4594), 1, sym_function_parameter_mode, - STATE(5516), 1, + STATE(5685), 1, sym_function_parameter, - ACTIONS(5514), 2, + ACTIONS(5757), 2, aux_sym_input_expression_token1, aux_sym_argument_mode_token1, - STATE(3861), 2, + STATE(3986), 2, sym_comment, sym_include, - ACTIONS(5512), 3, + ACTIONS(5755), 3, aux_sym_dataset_expression_token1, aux_sym__function_argument_with_mode_token1, aux_sym__function_argument_with_mode_token3, - [240768] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [249065] = 13, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5204), 1, + ACTIONS(5236), 1, aux_sym__block_terminator_token1, - ACTIONS(5603), 1, + ACTIONS(5835), 1, aux_sym_on_error_phrase_token1, - STATE(4145), 1, + STATE(1925), 1, + sym__block_terminator, + STATE(4047), 1, sym_on_stop_phrase, - STATE(4148), 1, + STATE(4048), 1, aux_sym_repeat_statement_repeat1, - STATE(4577), 1, - sym__block_terminator, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5820), 1, + STATE(5512), 1, sym_body, - STATE(3862), 2, + STATE(3987), 2, sym_comment, sym_include, - [240809] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [249106] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3289), 1, + ACTIONS(2919), 1, aux_sym_variable_definition_token2, - STATE(3863), 2, + STATE(3988), 2, sym_comment, sym_include, - ACTIONS(3287), 8, + ACTIONS(2917), 8, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_variable_definition_token1, @@ -250980,19 +258579,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, aux_sym_case_otherwise_branch_token1, - [240836] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [249133] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3293), 1, + ACTIONS(3205), 1, aux_sym_variable_definition_token2, - STATE(3864), 2, + STATE(3989), 2, sym_comment, sym_include, - ACTIONS(3291), 8, + ACTIONS(3245), 8, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_variable_definition_token1, @@ -251001,62 +258600,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, aux_sym_case_otherwise_branch_token1, - [240863] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5478), 1, - anon_sym_COMMA, - STATE(3852), 1, - aux_sym_inherits_repeat1, - STATE(3865), 2, - sym_comment, - sym_include, - ACTIONS(5476), 7, - anon_sym_COLON, - aux_sym_serialization_tuning_token1, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [240892] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [249160] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5663), 1, - anon_sym_COMMA, - STATE(3866), 3, - sym_comment, - sym_include, - aux_sym_inherits_repeat1, - ACTIONS(5520), 7, - anon_sym_COLON, - aux_sym_serialization_tuning_token1, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [240919] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, + ACTIONS(2915), 1, aux_sym_variable_definition_token2, - STATE(3867), 2, + STATE(3990), 2, sym_comment, sym_include, - ACTIONS(3353), 8, + ACTIONS(2913), 8, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_variable_definition_token1, @@ -251065,35143 +258621,34218 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, aux_sym_case_otherwise_branch_token1, - [240946] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [249187] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5603), 1, - aux_sym_on_error_phrase_token1, - STATE(1978), 1, - sym__block_terminator, - STATE(4031), 1, - aux_sym_repeat_statement_repeat1, - STATE(4032), 1, - sym_on_stop_phrase, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5764), 1, - sym_body, - STATE(3868), 2, - sym_comment, - sym_include, - [240987] = 13, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5117), 1, - aux_sym__block_terminator_token1, - ACTIONS(5603), 1, - aux_sym_on_error_phrase_token1, - STATE(1752), 1, - sym__block_terminator, - STATE(4147), 1, - aux_sym_repeat_statement_repeat1, - STATE(4149), 1, - sym_on_stop_phrase, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5414), 1, - sym_body, - STATE(3869), 2, + ACTIONS(5862), 1, + sym__terminator, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(5868), 1, + aux_sym_query_definition_token2, + ACTIONS(5870), 1, + aux_sym_query_definition_token3, + STATE(4308), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(3991), 2, sym_comment, sym_include, - [241028] = 11, - ACTIONS(3), 1, + [249223] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5666), 1, - sym__terminator, - ACTIONS(5668), 1, - anon_sym_LBRACK, - STATE(3918), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3870), 2, + ACTIONS(5469), 1, + aux_sym_variable_tuning_token7, + STATE(4028), 1, + aux_sym_function_parameter_repeat1, + STATE(4384), 1, + sym_function_parameter_tuning, + ACTIONS(5872), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3992), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [241065] = 13, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5471), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [249255] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5129), 1, + ACTIONS(5876), 1, aux_sym__block_terminator_token1, - ACTIONS(5603), 1, - aux_sym_on_error_phrase_token1, - STATE(2261), 1, + ACTIONS(5878), 1, + anon_sym_LPAREN, + STATE(1677), 1, + sym__function_terminator, + STATE(1679), 1, sym__block_terminator, - STATE(4085), 1, - aux_sym_repeat_statement_repeat1, - STATE(4087), 1, - sym_on_stop_phrase, - STATE(5189), 1, - sym_repeat_tuning, - STATE(6000), 1, - sym_body, - STATE(3871), 2, + STATE(4381), 1, + sym_function_parameters, + STATE(5282), 1, + sym_dot_body, + ACTIONS(5874), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(3993), 2, sym_comment, sym_include, - [241106] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [249291] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4082), 1, - sym_temp_table_tuning, - ACTIONS(5672), 2, - aux_sym_variable_tuning_token8, - aux_sym_temp_table_tuning_token1, - STATE(3872), 3, + ACTIONS(5469), 1, + aux_sym_variable_tuning_token7, + STATE(4028), 1, + aux_sym_function_parameter_repeat1, + STATE(4384), 1, + sym_function_parameter_tuning, + ACTIONS(5880), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3994), 2, sym_comment, sym_include, - aux_sym_temp_table_definition_repeat1, - ACTIONS(5670), 5, - sym__terminator, - aux_sym_type_tuning_token1, - aux_sym_type_tuning_token2, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [241135] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5471), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [249323] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(4650), 1, - aux_sym_inherits_token1, - ACTIONS(5675), 1, + ACTIONS(5878), 1, + anon_sym_LPAREN, + ACTIONS(5882), 1, + aux_sym__block_terminator_token1, + STATE(2273), 1, + sym__function_terminator, + STATE(2275), 1, + sym__block_terminator, + STATE(4488), 1, + sym_function_parameters, + STATE(5263), 1, + sym_dot_body, + ACTIONS(5874), 2, anon_sym_COLON, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(4366), 1, - aux_sym_interface_statement_repeat1, - STATE(5463), 1, - sym_interface_tuning, - STATE(5465), 1, - sym_inherits, - STATE(6528), 1, - sym_interface_body, - STATE(3873), 2, + anon_sym_DOT, + STATE(3995), 2, sym_comment, sym_include, - [241173] = 10, + [249359] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, + ACTIONS(5884), 1, sym_identifier, - ACTIONS(5677), 1, - sym__terminator, - STATE(3960), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3874), 2, - sym_comment, - sym_include, - STATE(6134), 3, + STATE(3285), 1, sym_qualified_name, - sym_object_access, - sym_member_access, - [241207] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5679), 1, - sym__terminator, - STATE(3920), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3875), 2, + STATE(5605), 1, + sym__find_type, + STATE(3996), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [241241] = 8, + ACTIONS(5886), 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, + [249389] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5681), 1, + ACTIONS(5888), 1, sym_identifier, - STATE(4510), 1, + STATE(4606), 1, sym_function_parameter_mode, - ACTIONS(5514), 2, + ACTIONS(5757), 2, aux_sym_input_expression_token1, aux_sym_argument_mode_token1, - STATE(3876), 2, + STATE(3997), 2, sym_comment, sym_include, - ACTIONS(5683), 4, + ACTIONS(5890), 4, aux_sym_dataset_expression_token1, aux_sym__function_argument_with_mode_token1, aux_sym__function_argument_with_mode_token2, aux_sym__function_argument_with_mode_token3, - [241271] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5685), 1, - sym_identifier, - ACTIONS(5687), 1, - sym__terminator, - ACTIONS(5689), 1, - anon_sym_NO_DASHERROR, - STATE(3909), 1, - aux_sym_assign_statement_repeat1, - STATE(5335), 1, - sym_assignment, - STATE(3877), 2, - sym_comment, - sym_include, - STATE(6317), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [241305] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5691), 1, - sym__terminator, - STATE(3968), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3878), 2, - sym_comment, - sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [241339] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5693), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3879), 2, - sym_comment, - sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [241373] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5695), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3880), 2, - sym_comment, - sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [241407] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [249419] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5699), 1, - aux_sym__block_terminator_token1, - ACTIONS(5701), 1, + ACTIONS(5878), 1, anon_sym_LPAREN, - STATE(2422), 1, + ACTIONS(5892), 1, + aux_sym__block_terminator_token1, + STATE(1914), 1, sym__function_terminator, - STATE(2423), 1, + STATE(1915), 1, sym__block_terminator, - STATE(4399), 1, + STATE(4297), 1, sym_function_parameters, - STATE(5171), 1, + STATE(5414), 1, sym_dot_body, - ACTIONS(5697), 2, + ACTIONS(5874), 2, anon_sym_COLON, anon_sym_DOT, - STATE(3881), 2, - sym_comment, - sym_include, - [241443] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5703), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3882), 2, + STATE(3998), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [241477] = 10, - ACTIONS(3), 1, + [249455] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5705), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3883), 2, + ACTIONS(5469), 1, + aux_sym_variable_tuning_token7, + STATE(4028), 1, + aux_sym_function_parameter_repeat1, + STATE(4384), 1, + sym_function_parameter_tuning, + ACTIONS(5894), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3999), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [241511] = 10, - ACTIONS(3), 1, + ACTIONS(5471), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [249487] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5707), 1, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(5896), 1, sym__terminator, - STATE(3879), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3884), 2, + ACTIONS(5898), 1, + aux_sym_query_definition_token2, + ACTIONS(5900), 1, + aux_sym_query_definition_token3, + STATE(4498), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4000), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [241545] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [249523] = 12, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(3885), 2, - sym_comment, - sym_include, - ACTIONS(5520), 8, - anon_sym_COLON, - anon_sym_COMMA, - aux_sym_serialization_tuning_token1, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [241569] = 10, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5685), 1, - sym_identifier, - ACTIONS(5709), 1, - sym__terminator, - ACTIONS(5711), 1, - anon_sym_NO_DASHERROR, - STATE(3877), 1, - aux_sym_assign_statement_repeat1, - STATE(5335), 1, - sym_assignment, - STATE(3886), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(4626), 1, + anon_sym_LPAREN, + ACTIONS(4640), 1, + sym__namecolon, + ACTIONS(5902), 1, + anon_sym_COLON, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(3531), 1, + sym_function_arguments, + STATE(3536), 1, + aux_sym_object_access_repeat1, + STATE(5234), 1, + sym_case_body, + STATE(4001), 2, sym_comment, sym_include, - STATE(6317), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [241603] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [249561] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5360), 1, + ACTIONS(5469), 1, aux_sym_variable_tuning_token7, - STATE(3893), 1, + STATE(4017), 1, aux_sym_function_parameter_repeat1, - STATE(4346), 1, + STATE(4384), 1, sym_function_parameter_tuning, - ACTIONS(5713), 2, + ACTIONS(5904), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(3887), 2, + STATE(4002), 2, sym_comment, sym_include, - ACTIONS(5362), 3, + ACTIONS(5471), 3, aux_sym_argument_pass_type_token1, aux_sym_argument_pass_type_token3, aux_sym__function_argument_with_mode_token4, - [241635] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [249593] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5360), 1, + ACTIONS(5469), 1, aux_sym_variable_tuning_token7, - STATE(3976), 1, + STATE(4028), 1, aux_sym_function_parameter_repeat1, - STATE(4346), 1, + STATE(4384), 1, sym_function_parameter_tuning, - ACTIONS(5713), 2, + ACTIONS(5904), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(3888), 2, + STATE(4003), 2, sym_comment, sym_include, - ACTIONS(5362), 3, + ACTIONS(5471), 3, aux_sym_argument_pass_type_token1, aux_sym_argument_pass_type_token3, aux_sym__function_argument_with_mode_token4, - [241667] = 7, + [249625] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5715), 1, + ACTIONS(5906), 1, sym_identifier, - STATE(4218), 1, + STATE(4039), 1, + aux_sym_destructor_definition_repeat1, + STATE(4306), 1, sym_access_tuning, - STATE(3889), 3, + STATE(4004), 2, sym_comment, sym_include, - aux_sym_destructor_definition_repeat1, - ACTIONS(5717), 5, + ACTIONS(5908), 5, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, aux_sym_access_tuning_token4, aux_sym_access_tuning_token5, - [241695] = 10, + [249655] = 12, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(4626), 1, + anon_sym_LPAREN, + ACTIONS(4640), 1, + sym__namecolon, + ACTIONS(5902), 1, + anon_sym_COLON, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(3531), 1, + sym_function_arguments, + STATE(3536), 1, + aux_sym_object_access_repeat1, + STATE(5244), 1, + sym_case_body, + STATE(4005), 2, + sym_comment, + sym_include, + [249693] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5685), 1, + ACTIONS(5910), 1, sym_identifier, - ACTIONS(5720), 1, - sym__terminator, - ACTIONS(5722), 1, - anon_sym_NO_DASHERROR, - STATE(3909), 1, - aux_sym_assign_statement_repeat1, - STATE(5335), 1, - sym_assignment, - STATE(3890), 2, + STATE(3282), 1, + sym_qualified_name, + STATE(5816), 1, + sym__find_type, + STATE(4006), 2, sym_comment, sym_include, - STATE(6317), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [241729] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5886), 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, + [249723] = 12, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5360), 1, - aux_sym_variable_tuning_token7, - STATE(3893), 1, - aux_sym_function_parameter_repeat1, - STATE(4346), 1, - sym_function_parameter_tuning, - ACTIONS(5724), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3891), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(4652), 1, + aux_sym_inherits_token1, + ACTIONS(5912), 1, + anon_sym_COLON, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(4331), 1, + aux_sym_interface_statement_repeat1, + STATE(5615), 1, + sym_interface_tuning, + STATE(5620), 1, + sym_inherits, + STATE(6398), 1, + sym_interface_body, + STATE(4007), 2, sym_comment, sym_include, - ACTIONS(5362), 3, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [241761] = 9, - ACTIONS(65), 1, + [249761] = 12, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(4652), 1, + aux_sym_inherits_token1, + ACTIONS(5912), 1, + anon_sym_COLON, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(4437), 1, + aux_sym_interface_statement_repeat1, + STATE(5615), 1, + sym_interface_tuning, + STATE(5620), 1, + sym_inherits, + STATE(6240), 1, + sym_interface_body, + STATE(4008), 2, + sym_comment, + sym_include, + [249799] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5360), 1, + ACTIONS(5469), 1, aux_sym_variable_tuning_token7, - STATE(3893), 1, + STATE(4013), 1, aux_sym_function_parameter_repeat1, - STATE(4346), 1, + STATE(4384), 1, sym_function_parameter_tuning, - ACTIONS(5726), 2, + ACTIONS(5872), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(3892), 2, + STATE(4009), 2, sym_comment, sym_include, - ACTIONS(5362), 3, + ACTIONS(5471), 3, aux_sym_argument_pass_type_token1, aux_sym_argument_pass_type_token3, aux_sym__function_argument_with_mode_token4, - [241793] = 8, - ACTIONS(65), 1, + [249831] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(5914), 1, + sym__terminator, + ACTIONS(5916), 1, + aux_sym_query_definition_token2, + ACTIONS(5918), 1, + aux_sym_query_definition_token3, + STATE(4456), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4010), 2, + sym_comment, + sym_include, + [249867] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5730), 1, + ACTIONS(5469), 1, aux_sym_variable_tuning_token7, - STATE(4346), 1, + STATE(4029), 1, + aux_sym_function_parameter_repeat1, + STATE(4384), 1, sym_function_parameter_tuning, - ACTIONS(5728), 2, + ACTIONS(5894), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(5733), 3, + STATE(4011), 2, + sym_comment, + sym_include, + ACTIONS(5471), 3, aux_sym_argument_pass_type_token1, aux_sym_argument_pass_type_token3, aux_sym__function_argument_with_mode_token4, - STATE(3893), 3, - sym_comment, - sym_include, - aux_sym_function_parameter_repeat1, - [241823] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(4650), 1, - aux_sym_inherits_token1, - ACTIONS(5675), 1, - anon_sym_COLON, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(4237), 1, - aux_sym_interface_statement_repeat1, - STATE(5463), 1, - sym_interface_tuning, - STATE(5465), 1, - sym_inherits, - STATE(6585), 1, - sym_interface_body, - STATE(3894), 2, - sym_comment, - sym_include, - [241861] = 8, + [249899] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5736), 1, + ACTIONS(5920), 1, sym_identifier, - STATE(3229), 1, + STATE(3265), 1, sym_qualified_name, - STATE(5895), 1, + STATE(6023), 1, sym__find_type, - STATE(3895), 2, + STATE(4012), 2, sym_comment, sym_include, - ACTIONS(5738), 5, + ACTIONS(5886), 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, - [241891] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [249929] = 9, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5360), 1, - aux_sym_variable_tuning_token7, - STATE(3928), 1, - aux_sym_function_parameter_repeat1, - STATE(4346), 1, - sym_function_parameter_tuning, - ACTIONS(5740), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3896), 2, - sym_comment, - sym_include, - ACTIONS(5362), 3, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [241923] = 9, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5360), 1, + ACTIONS(5469), 1, aux_sym_variable_tuning_token7, - STATE(3893), 1, + STATE(4028), 1, aux_sym_function_parameter_repeat1, - STATE(4346), 1, + STATE(4384), 1, sym_function_parameter_tuning, - ACTIONS(5740), 2, + ACTIONS(5922), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(3897), 2, + STATE(4013), 2, sym_comment, sym_include, - ACTIONS(5362), 3, + ACTIONS(5471), 3, aux_sym_argument_pass_type_token1, aux_sym_argument_pass_type_token3, aux_sym__function_argument_with_mode_token4, - [241955] = 10, - ACTIONS(3), 1, + [249961] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5685), 1, - sym_identifier, - ACTIONS(5742), 1, - sym__terminator, - ACTIONS(5744), 1, - anon_sym_NO_DASHERROR, - STATE(3890), 1, - aux_sym_assign_statement_repeat1, - STATE(5335), 1, - sym_assignment, - STATE(3898), 2, + ACTIONS(5878), 1, + anon_sym_LPAREN, + ACTIONS(5924), 1, + aux_sym__block_terminator_token1, + STATE(2366), 1, + sym__function_terminator, + STATE(2367), 1, + sym__block_terminator, + STATE(4362), 1, + sym_function_parameters, + STATE(5267), 1, + sym_dot_body, + ACTIONS(5874), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(4014), 2, sym_comment, sym_include, - STATE(6317), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [241989] = 10, - ACTIONS(3), 1, + [249997] = 12, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5685), 1, - sym_identifier, - ACTIONS(5746), 1, - sym__terminator, - ACTIONS(5748), 1, - anon_sym_NO_DASHERROR, - STATE(3954), 1, - aux_sym_assign_statement_repeat1, - STATE(5335), 1, - sym_assignment, - STATE(3899), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(4626), 1, + anon_sym_LPAREN, + ACTIONS(4640), 1, + sym__namecolon, + ACTIONS(5902), 1, + anon_sym_COLON, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(3531), 1, + sym_function_arguments, + STATE(3536), 1, + aux_sym_object_access_repeat1, + STATE(5385), 1, + sym_case_body, + STATE(4015), 2, sym_comment, sym_include, - STATE(6317), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [242023] = 12, - ACTIONS(3), 1, + [250035] = 12, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(5750), 1, - sym_identifier, - ACTIONS(5752), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5754), 1, - anon_sym_RBRACE, - ACTIONS(5756), 1, - anon_sym_DQUOTE, - ACTIONS(5758), 1, - aux_sym_include_argument_token1, - STATE(3908), 1, - aux_sym_include_repeat2, - STATE(4788), 1, - sym_include_argument, - STATE(4801), 1, - sym_double_quoted_string, - STATE(4804), 1, - sym_constant, - STATE(3900), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(4652), 1, + aux_sym_inherits_token1, + ACTIONS(5912), 1, + anon_sym_COLON, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(4338), 1, + aux_sym_interface_statement_repeat1, + STATE(5615), 1, + sym_interface_tuning, + STATE(5620), 1, + sym_inherits, + STATE(6574), 1, + sym_interface_body, + STATE(4016), 2, sym_comment, sym_include, - [242061] = 10, - ACTIONS(3), 1, + [250073] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5685), 1, - sym_identifier, - ACTIONS(5760), 1, - sym__terminator, - ACTIONS(5762), 1, - anon_sym_NO_DASHERROR, - STATE(3909), 1, - aux_sym_assign_statement_repeat1, - STATE(5335), 1, - sym_assignment, - STATE(3901), 2, + ACTIONS(5469), 1, + aux_sym_variable_tuning_token7, + STATE(4028), 1, + aux_sym_function_parameter_repeat1, + STATE(4384), 1, + sym_function_parameter_tuning, + ACTIONS(5926), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4017), 2, sym_comment, sym_include, - STATE(6317), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [242095] = 11, - ACTIONS(65), 1, + ACTIONS(5471), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [250105] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(5928), 1, + sym_identifier, + ACTIONS(5931), 1, anon_sym_LBRACE, - ACTIONS(5764), 1, - sym__terminator, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(5770), 1, - aux_sym_query_definition_token2, - ACTIONS(5772), 1, - aux_sym_query_definition_token3, - STATE(4429), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(3902), 2, + ACTIONS(5934), 1, + anon_sym_RBRACE, + ACTIONS(5936), 1, + anon_sym_DQUOTE, + ACTIONS(5939), 1, + aux_sym_include_argument_token1, + STATE(4642), 1, + sym_include_argument, + STATE(4656), 1, + sym_constant, + STATE(5014), 1, + sym_double_quoted_string, + STATE(4018), 3, sym_comment, sym_include, - [242131] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_include_repeat2, + [250141] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, + ACTIONS(5864), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(5774), 1, + ACTIONS(5942), 1, sym__terminator, - ACTIONS(5776), 1, + ACTIONS(5944), 1, aux_sym_query_definition_token2, - ACTIONS(5778), 1, + ACTIONS(5946), 1, aux_sym_query_definition_token3, - STATE(4286), 1, + STATE(4518), 1, aux_sym_query_definition_repeat1, - STATE(5004), 1, + STATE(4830), 1, sym_query_definition_tuning, - ACTIONS(5768), 2, + ACTIONS(5866), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(3903), 2, - sym_comment, - sym_include, - [242167] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5780), 1, - sym__terminator, - STATE(3913), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3904), 2, + STATE(4019), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [242201] = 10, + [250177] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5605), 1, + ACTIONS(5948), 1, sym_identifier, - ACTIONS(5782), 1, - sym__terminator, - STATE(3882), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3905), 2, - sym_comment, - sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [242235] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(5950), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5784), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3906), 2, + ACTIONS(5952), 1, + anon_sym_RBRACE, + ACTIONS(5954), 1, + anon_sym_DQUOTE, + ACTIONS(5956), 1, + aux_sym_include_argument_token1, + STATE(4018), 1, + aux_sym_include_repeat2, + STATE(4642), 1, + sym_include_argument, + STATE(4656), 1, + sym_constant, + STATE(5014), 1, + sym_double_quoted_string, + STATE(4020), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [242269] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [250215] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5701), 1, + ACTIONS(5878), 1, anon_sym_LPAREN, - ACTIONS(5786), 1, + ACTIONS(5958), 1, aux_sym__block_terminator_token1, - STATE(4363), 1, + STATE(4262), 1, sym_function_parameters, - STATE(4694), 1, - sym__block_terminator, - STATE(4698), 1, + STATE(5165), 1, sym__function_terminator, - STATE(5285), 1, + STATE(5168), 1, + sym__block_terminator, + STATE(5176), 1, sym_dot_body, - ACTIONS(5697), 2, + ACTIONS(5874), 2, anon_sym_COLON, anon_sym_DOT, - STATE(3907), 2, + STATE(4021), 2, sym_comment, sym_include, - [242305] = 12, + [250251] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5750), 1, + ACTIONS(5948), 1, sym_identifier, - ACTIONS(5752), 1, + ACTIONS(5950), 1, anon_sym_LBRACE, - ACTIONS(5756), 1, + ACTIONS(5954), 1, anon_sym_DQUOTE, - ACTIONS(5758), 1, + ACTIONS(5956), 1, aux_sym_include_argument_token1, - ACTIONS(5788), 1, + ACTIONS(5960), 1, anon_sym_RBRACE, - STATE(3982), 1, + STATE(4034), 1, aux_sym_include_repeat2, - STATE(4788), 1, + STATE(4642), 1, sym_include_argument, - STATE(4801), 1, - sym_double_quoted_string, - STATE(4804), 1, + STATE(4656), 1, sym_constant, - STATE(3908), 2, - sym_comment, - sym_include, - [242343] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5790), 1, - sym_identifier, - STATE(5335), 1, - sym_assignment, - ACTIONS(5793), 2, - sym__terminator, - anon_sym_NO_DASHERROR, - STATE(3909), 3, - sym_comment, - sym_include, - aux_sym_assign_statement_repeat1, - STATE(6317), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [242373] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5795), 1, - sym_identifier, - STATE(3962), 1, - aux_sym_destructor_definition_repeat1, - STATE(4218), 1, - sym_access_tuning, - STATE(3910), 2, - sym_comment, - sym_include, - ACTIONS(5797), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - [242403] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5799), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3911), 2, + STATE(5014), 1, + sym_double_quoted_string, + STATE(4022), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [242437] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [250289] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5360), 1, + ACTIONS(5469), 1, aux_sym_variable_tuning_token7, - STATE(3893), 1, + STATE(4028), 1, aux_sym_function_parameter_repeat1, - STATE(4346), 1, + STATE(4384), 1, sym_function_parameter_tuning, - ACTIONS(5801), 2, + ACTIONS(5962), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(3912), 2, + STATE(4023), 2, sym_comment, sym_include, - ACTIONS(5362), 3, + ACTIONS(5471), 3, aux_sym_argument_pass_type_token1, aux_sym_argument_pass_type_token3, aux_sym__function_argument_with_mode_token4, - [242469] = 10, - ACTIONS(3), 1, + [250321] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5803), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3913), 2, + ACTIONS(5469), 1, + aux_sym_variable_tuning_token7, + STATE(3994), 1, + aux_sym_function_parameter_repeat1, + STATE(4384), 1, + sym_function_parameter_tuning, + ACTIONS(5962), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4024), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [242503] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5471), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [250353] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5701), 1, - anon_sym_LPAREN, - ACTIONS(5805), 1, - aux_sym__block_terminator_token1, - STATE(1718), 1, - sym__function_terminator, - STATE(1720), 1, - sym__block_terminator, - STATE(4288), 1, - sym_function_parameters, - STATE(5195), 1, - sym_dot_body, - ACTIONS(5697), 2, - anon_sym_COLON, - anon_sym_DOT, - STATE(3914), 2, - sym_comment, - sym_include, - [242539] = 10, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5807), 1, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(5964), 1, sym__terminator, - STATE(3940), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3915), 2, + ACTIONS(5966), 1, + aux_sym_query_definition_token2, + ACTIONS(5968), 1, + aux_sym_query_definition_token3, + STATE(4410), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4025), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [242573] = 8, + [250389] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5809), 1, + ACTIONS(5970), 1, sym_identifier, - STATE(3234), 1, + STATE(3270), 1, sym_qualified_name, - STATE(5915), 1, + STATE(6000), 1, sym__find_type, - STATE(3916), 2, + STATE(4026), 2, sym_comment, sym_include, - ACTIONS(5738), 5, + ACTIONS(5886), 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, - [242603] = 10, - ACTIONS(3), 1, + [250419] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5811), 1, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(5972), 1, sym__terminator, - STATE(3946), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3917), 2, + ACTIONS(5974), 1, + aux_sym_query_definition_token2, + ACTIONS(5976), 1, + aux_sym_query_definition_token3, + STATE(4326), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4027), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [242637] = 10, - ACTIONS(3), 1, + [250455] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5813), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3918), 2, + ACTIONS(5980), 1, + aux_sym_variable_tuning_token7, + STATE(4384), 1, + sym_function_parameter_tuning, + ACTIONS(5978), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(5983), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + STATE(4028), 3, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [242671] = 10, - ACTIONS(3), 1, + aux_sym_function_parameter_repeat1, + [250485] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5815), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3919), 2, + ACTIONS(5469), 1, + aux_sym_variable_tuning_token7, + STATE(4028), 1, + aux_sym_function_parameter_repeat1, + STATE(4384), 1, + sym_function_parameter_tuning, + ACTIONS(5986), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4029), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [242705] = 10, - ACTIONS(3), 1, + ACTIONS(5471), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [250517] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5817), 1, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(5988), 1, sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3920), 2, + ACTIONS(5990), 1, + aux_sym_query_definition_token2, + ACTIONS(5992), 1, + aux_sym_query_definition_token3, + STATE(4486), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4030), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [242739] = 10, - ACTIONS(3), 1, + [250553] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5819), 1, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(5994), 1, sym__terminator, - STATE(3949), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3921), 2, + ACTIONS(5996), 1, + aux_sym_query_definition_token2, + ACTIONS(5998), 1, + aux_sym_query_definition_token3, + STATE(4467), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4031), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [242773] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [250589] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5701), 1, - anon_sym_LPAREN, - ACTIONS(5821), 1, - aux_sym__block_terminator_token1, - STATE(1980), 1, - sym__block_terminator, - STATE(1981), 1, - sym__function_terminator, - STATE(4261), 1, - sym_function_parameters, - STATE(5372), 1, - sym_dot_body, - ACTIONS(5697), 2, - anon_sym_COLON, - anon_sym_DOT, - STATE(3922), 2, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6000), 1, + sym__terminator, + ACTIONS(6002), 1, + aux_sym_query_definition_token2, + ACTIONS(6004), 1, + aux_sym_query_definition_token3, + STATE(4512), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4032), 2, sym_comment, sym_include, - [242809] = 10, - ACTIONS(3), 1, + [250625] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5823), 1, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6006), 1, sym__terminator, - STATE(3883), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3923), 2, + ACTIONS(6008), 1, + aux_sym_query_definition_token2, + ACTIONS(6010), 1, + aux_sym_query_definition_token3, + STATE(4375), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4033), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [242843] = 10, + [250661] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5685), 1, + ACTIONS(5948), 1, sym_identifier, - ACTIONS(5825), 1, - sym__terminator, - ACTIONS(5827), 1, - anon_sym_NO_DASHERROR, - STATE(3901), 1, - aux_sym_assign_statement_repeat1, - STATE(5335), 1, - sym_assignment, - STATE(3924), 2, + ACTIONS(5950), 1, + anon_sym_LBRACE, + ACTIONS(5954), 1, + anon_sym_DQUOTE, + ACTIONS(5956), 1, + aux_sym_include_argument_token1, + ACTIONS(6012), 1, + anon_sym_RBRACE, + STATE(4018), 1, + aux_sym_include_repeat2, + STATE(4642), 1, + sym_include_argument, + STATE(4656), 1, + sym_constant, + STATE(5014), 1, + sym_double_quoted_string, + STATE(4034), 2, sym_comment, sym_include, - STATE(6317), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [242877] = 10, + [250699] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5605), 1, + ACTIONS(5948), 1, sym_identifier, - ACTIONS(5829), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3925), 2, + ACTIONS(5950), 1, + anon_sym_LBRACE, + ACTIONS(5954), 1, + anon_sym_DQUOTE, + ACTIONS(5956), 1, + aux_sym_include_argument_token1, + ACTIONS(6012), 1, + anon_sym_RBRACE, + STATE(4020), 1, + aux_sym_include_repeat2, + STATE(4642), 1, + sym_include_argument, + STATE(4656), 1, + sym_constant, + STATE(5014), 1, + sym_double_quoted_string, + STATE(4035), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [242911] = 10, - ACTIONS(3), 1, + [250737] = 12, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5831), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3926), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(4652), 1, + aux_sym_inherits_token1, + ACTIONS(5912), 1, + anon_sym_COLON, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(4337), 1, + aux_sym_interface_statement_repeat1, + STATE(5615), 1, + sym_interface_tuning, + STATE(5620), 1, + sym_inherits, + STATE(6583), 1, + sym_interface_body, + STATE(4036), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [242945] = 10, + [250775] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5685), 1, + ACTIONS(6014), 1, sym_identifier, - ACTIONS(5833), 1, - sym__terminator, - ACTIONS(5835), 1, - anon_sym_NO_DASHERROR, - STATE(3948), 1, - aux_sym_assign_statement_repeat1, - STATE(5335), 1, - sym_assignment, - STATE(3927), 2, + STATE(3272), 1, + sym_qualified_name, + STATE(6063), 1, + sym__find_type, + STATE(4037), 2, sym_comment, sym_include, - STATE(6317), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [242979] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5886), 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, + [250805] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5360), 1, - aux_sym_variable_tuning_token7, - STATE(3893), 1, - aux_sym_function_parameter_repeat1, - STATE(4346), 1, - sym_function_parameter_tuning, - ACTIONS(5837), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3928), 2, + STATE(4038), 2, sym_comment, sym_include, - ACTIONS(5362), 3, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [243011] = 10, + ACTIONS(5824), 8, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_serialization_tuning_token1, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [250829] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, + ACTIONS(6016), 1, sym_identifier, - ACTIONS(5839), 1, - sym__terminator, - STATE(3925), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3929), 2, + STATE(4306), 1, + sym_access_tuning, + STATE(4039), 3, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [243045] = 10, + aux_sym_destructor_definition_repeat1, + ACTIONS(6018), 5, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + [250857] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, + ACTIONS(6021), 1, sym_identifier, - ACTIONS(5841), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3930), 2, + STATE(4004), 1, + aux_sym_destructor_definition_repeat1, + STATE(4306), 1, + sym_access_tuning, + STATE(4040), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [243079] = 10, - ACTIONS(3), 1, + ACTIONS(5908), 5, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + [250887] = 12, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5843), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3931), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(4652), 1, + aux_sym_inherits_token1, + ACTIONS(5912), 1, + anon_sym_COLON, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(4444), 1, + aux_sym_interface_statement_repeat1, + STATE(5615), 1, + sym_interface_tuning, + STATE(5620), 1, + sym_inherits, + STATE(6242), 1, + sym_interface_body, + STATE(4041), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [243113] = 12, - ACTIONS(3), 1, + [250925] = 12, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(5750), 1, - sym_identifier, - ACTIONS(5752), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5756), 1, - anon_sym_DQUOTE, - ACTIONS(5758), 1, - aux_sym_include_argument_token1, - ACTIONS(5788), 1, - anon_sym_RBRACE, - STATE(3971), 1, - aux_sym_include_repeat2, - STATE(4788), 1, - sym_include_argument, - STATE(4801), 1, - sym_double_quoted_string, - STATE(4804), 1, - sym_constant, - STATE(3932), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(4626), 1, + anon_sym_LPAREN, + ACTIONS(4640), 1, + sym__namecolon, + ACTIONS(5902), 1, + anon_sym_COLON, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(3531), 1, + sym_function_arguments, + STATE(3536), 1, + aux_sym_object_access_repeat1, + STATE(5341), 1, + sym_case_body, + STATE(4042), 2, sym_comment, sym_include, - [243151] = 10, - ACTIONS(3), 1, + [250963] = 12, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5845), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3933), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(4626), 1, + anon_sym_LPAREN, + ACTIONS(4640), 1, + sym__namecolon, + ACTIONS(5902), 1, + anon_sym_COLON, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(3531), 1, + sym_function_arguments, + STATE(3536), 1, + aux_sym_object_access_repeat1, + STATE(5455), 1, + sym_case_body, + STATE(4043), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [243185] = 10, + [251001] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, + ACTIONS(511), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(5847), 1, - sym__terminator, - STATE(3963), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3934), 2, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + STATE(4105), 1, + aux_sym_on_statement_repeat2, + STATE(4972), 1, + sym_do_block, + STATE(5271), 1, + sym_widget_phrase, + STATE(6298), 1, + sym_label, + STATE(4044), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [243219] = 10, + [251036] = 11, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4353), 1, + sym_on_quit_phrase, + STATE(5053), 1, + aux_sym_for_statement_repeat1, + STATE(5054), 1, + sym_on_stop_phrase, + STATE(5939), 1, + sym_body, + STATE(4045), 2, + sym_comment, + sym_include, + [251071] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, + ACTIONS(615), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(5849), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3935), 2, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + STATE(1667), 1, + sym_do_block, + STATE(4597), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6172), 1, + sym_label, + STATE(4046), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [243253] = 12, - ACTIONS(65), 1, + [251106] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1866), 1, + sym__block_terminator, + STATE(4103), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(6123), 1, + sym_body, + STATE(4047), 2, + sym_comment, + sym_include, + [251141] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(4650), 1, - aux_sym_inherits_token1, - ACTIONS(5675), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(4321), 1, - aux_sym_interface_statement_repeat1, - STATE(5463), 1, - sym_interface_tuning, - STATE(5465), 1, - sym_inherits, - STATE(6104), 1, - sym_interface_body, - STATE(3936), 2, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1866), 1, + sym__block_terminator, + STATE(4596), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(6123), 1, + sym_body, + STATE(4048), 2, sym_comment, sym_include, - [243291] = 10, + [251176] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, + ACTIONS(615), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(5851), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3937), 2, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + STATE(1667), 1, + sym_do_block, + STATE(4053), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6172), 1, + sym_label, + STATE(4049), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [243325] = 8, - ACTIONS(3), 1, + [251211] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5853), 1, - sym_identifier, - STATE(3230), 1, - sym_qualified_name, - STATE(5501), 1, - sym__find_type, - STATE(3938), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + STATE(2412), 1, + sym__block_terminator, + STATE(4596), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5549), 1, + sym_body, + STATE(4050), 2, sym_comment, sym_include, - ACTIONS(5738), 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, - [243355] = 9, - ACTIONS(3), 1, + [251246] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5855), 1, - sym_identifier, - ACTIONS(5858), 1, - sym__terminator, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3939), 3, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1607), 1, + sym__block_terminator, + STATE(4217), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5909), 1, + sym_body, + STATE(4051), 2, sym_comment, sym_include, - aux_sym_var_statement_repeat1, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [243387] = 10, - ACTIONS(3), 1, + [251281] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5860), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3940), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1665), 1, + sym__block_terminator, + STATE(4596), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5633), 1, + sym_body, + STATE(4052), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [243421] = 10, + [251316] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, + ACTIONS(615), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(5862), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3941), 2, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + STATE(1684), 1, + sym_do_block, + STATE(4597), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6172), 1, + sym_label, + STATE(4053), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [243455] = 12, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [251351] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(4650), 1, - aux_sym_inherits_token1, - ACTIONS(5675), 1, + STATE(4054), 2, + sym_comment, + sym_include, + ACTIONS(6025), 7, anon_sym_COLON, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(4298), 1, - aux_sym_interface_statement_repeat1, - STATE(5463), 1, - sym_interface_tuning, - STATE(5465), 1, - sym_inherits, - STATE(6131), 1, - sym_interface_body, - STATE(3942), 2, + aux_sym_serialization_tuning_token1, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [251374] = 5, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(4055), 2, sym_comment, sym_include, - [243493] = 11, - ACTIONS(65), 1, + ACTIONS(6027), 7, + anon_sym_COLON, + aux_sym_serialization_tuning_token1, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [251397] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6031), 1, + aux_sym_variable_tuning_token8, + STATE(4612), 1, + sym_workfile_tuning, + STATE(4056), 3, + sym_comment, + sym_include, + aux_sym_workfile_definition_repeat2, + ACTIONS(6029), 4, + sym__terminator, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + aux_sym_field_definition_token1, + [251424] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(5864), 1, - sym__terminator, - ACTIONS(5866), 1, - aux_sym_query_definition_token2, - ACTIONS(5868), 1, - aux_sym_query_definition_token3, - STATE(4357), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(3943), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4508), 1, + sym_on_quit_phrase, + STATE(5111), 1, + sym_on_stop_phrase, + STATE(5112), 1, + aux_sym_for_statement_repeat1, + STATE(5760), 1, + sym_body, + STATE(4057), 2, sym_comment, sym_include, - [243529] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [251459] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5360), 1, - aux_sym_variable_tuning_token7, - STATE(3891), 1, - aux_sym_function_parameter_repeat1, - STATE(4346), 1, - sym_function_parameter_tuning, - ACTIONS(5870), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3944), 2, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4523), 1, + sym_on_quit_phrase, + STATE(4869), 1, + aux_sym_for_statement_repeat1, + STATE(4870), 1, + sym_on_stop_phrase, + STATE(5764), 1, + sym_body, + STATE(4058), 2, sym_comment, sym_include, - ACTIONS(5362), 3, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [243561] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [251494] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5360), 1, - aux_sym_variable_tuning_token7, - STATE(3893), 1, - aux_sym_function_parameter_repeat1, - STATE(4346), 1, - sym_function_parameter_tuning, - ACTIONS(5870), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3945), 2, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4495), 1, + sym_on_quit_phrase, + STATE(5124), 1, + aux_sym_for_statement_repeat1, + STATE(5126), 1, + sym_on_stop_phrase, + STATE(5772), 1, + sym_body, + STATE(4059), 2, sym_comment, sym_include, - ACTIONS(5362), 3, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [243593] = 10, + [251529] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, + ACTIONS(284), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(5872), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3946), 2, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + STATE(2143), 1, + sym_do_block, + STATE(4597), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6498), 1, + sym_label, + STATE(4060), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [243627] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [251564] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, + ACTIONS(5864), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(5874), 1, + ACTIONS(6034), 1, sym__terminator, - ACTIONS(5876), 1, - aux_sym_query_definition_token2, - ACTIONS(5878), 1, + ACTIONS(6036), 1, aux_sym_query_definition_token3, - STATE(4375), 1, + STATE(4479), 1, aux_sym_query_definition_repeat1, - STATE(5004), 1, + STATE(4830), 1, sym_query_definition_tuning, - ACTIONS(5768), 2, + ACTIONS(5866), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(3947), 2, + STATE(4061), 2, sym_comment, sym_include, - [243663] = 10, + [251597] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5685), 1, + ACTIONS(284), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(5880), 1, - sym__terminator, - ACTIONS(5882), 1, - anon_sym_NO_DASHERROR, - STATE(3909), 1, - aux_sym_assign_statement_repeat1, - STATE(5335), 1, - sym_assignment, - STATE(3948), 2, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + STATE(2143), 1, + sym_do_block, + STATE(4118), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6498), 1, + sym_label, + STATE(4062), 2, sym_comment, sym_include, - STATE(6317), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [243697] = 10, - ACTIONS(3), 1, + [251632] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5884), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3949), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4382), 1, + sym_on_quit_phrase, + STATE(4825), 1, + aux_sym_for_statement_repeat1, + STATE(4829), 1, + sym_on_stop_phrase, + STATE(5801), 1, + sym_body, + STATE(4063), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [243731] = 10, - ACTIONS(3), 1, + [251667] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5886), 1, - sym__terminator, - STATE(3926), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3950), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4468), 1, + sym_on_quit_phrase, + STATE(5164), 1, + aux_sym_for_statement_repeat1, + STATE(5169), 1, + sym_on_stop_phrase, + STATE(5808), 1, + sym_body, + STATE(4064), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [243765] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [251702] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, + ACTIONS(5864), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(5888), 1, + ACTIONS(6038), 1, sym__terminator, - ACTIONS(5890), 1, - aux_sym_query_definition_token2, - ACTIONS(5892), 1, + ACTIONS(6040), 1, aux_sym_query_definition_token3, - STATE(4379), 1, + STATE(4526), 1, aux_sym_query_definition_repeat1, - STATE(5004), 1, + STATE(4830), 1, sym_query_definition_tuning, - ACTIONS(5768), 2, + ACTIONS(5866), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(3951), 2, + STATE(4065), 2, sym_comment, sym_include, - [243801] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [251735] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(5894), 1, - sym__terminator, - ACTIONS(5896), 1, - aux_sym_query_definition_token2, - ACTIONS(5898), 1, - aux_sym_query_definition_token3, - STATE(4290), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(3952), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4509), 1, + sym_on_quit_phrase, + STATE(5102), 1, + aux_sym_for_statement_repeat1, + STATE(5105), 1, + sym_on_stop_phrase, + STATE(5712), 1, + sym_body, + STATE(4066), 2, sym_comment, sym_include, - [243837] = 10, - ACTIONS(3), 1, + [251770] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5900), 1, - sym__terminator, - STATE(3919), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3953), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2153), 1, + sym__block_terminator, + STATE(4112), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5858), 1, + sym_body, + STATE(4067), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [243871] = 10, - ACTIONS(3), 1, + [251805] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5685), 1, - sym_identifier, - ACTIONS(5902), 1, - sym__terminator, - ACTIONS(5904), 1, - anon_sym_NO_DASHERROR, - STATE(3909), 1, - aux_sym_assign_statement_repeat1, - STATE(5335), 1, - sym_assignment, - STATE(3954), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2153), 1, + sym__block_terminator, + STATE(4596), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5858), 1, + sym_body, + STATE(4068), 2, sym_comment, sym_include, - STATE(6317), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [243905] = 8, - ACTIONS(3), 1, + [251840] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5906), 1, - sym_identifier, - STATE(3231), 1, - sym_qualified_name, - STATE(5920), 1, - sym__find_type, - STATE(3955), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4452), 1, + sym_on_quit_phrase, + STATE(5170), 1, + sym_on_stop_phrase, + STATE(5171), 1, + aux_sym_for_statement_repeat1, + STATE(5847), 1, + sym_body, + STATE(4069), 2, sym_comment, sym_include, - ACTIONS(5738), 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, - [243935] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [251875] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(5908), 1, - sym__terminator, - ACTIONS(5910), 1, - aux_sym_query_definition_token2, - ACTIONS(5912), 1, - aux_sym_query_definition_token3, - STATE(4371), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(3956), 2, + ACTIONS(6042), 1, + aux_sym__block_terminator_token1, + ACTIONS(6044), 1, + aux_sym_access_tuning_token1, + STATE(5376), 1, + sym_dot_body, + ACTIONS(5874), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(2411), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(4070), 2, sym_comment, sym_include, - [243971] = 10, + [251906] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, + ACTIONS(511), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(5914), 1, - sym__terminator, - STATE(3931), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3957), 2, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + STATE(4597), 1, + aux_sym_on_statement_repeat2, + STATE(4972), 1, + sym_do_block, + STATE(5271), 1, + sym_widget_phrase, + STATE(6298), 1, + sym_label, + STATE(4071), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [244005] = 10, - ACTIONS(3), 1, + [251941] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5916), 1, - sym__terminator, - STATE(3933), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3958), 2, + STATE(4072), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [244039] = 12, - ACTIONS(65), 1, + ACTIONS(6046), 7, + anon_sym_COLON, + aux_sym_serialization_tuning_token1, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [251964] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(4073), 2, + sym_comment, + sym_include, + ACTIONS(6048), 7, + anon_sym_COLON, + aux_sym_serialization_tuning_token1, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [251987] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(4650), 1, - aux_sym_inherits_token1, - ACTIONS(5675), 1, - anon_sym_COLON, - STATE(340), 1, + ACTIONS(6050), 1, + sym__terminator, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(4347), 1, - aux_sym_interface_statement_repeat1, - STATE(5463), 1, - sym_interface_tuning, - STATE(5465), 1, - sym_inherits, - STATE(6286), 1, - sym_interface_body, - STATE(3959), 2, + STATE(4554), 1, + aux_sym_data_relation_repeat1, + STATE(6668), 1, + sym_data_relation, + STATE(4074), 2, sym_comment, sym_include, - [244077] = 10, - ACTIONS(3), 1, + [252022] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5918), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3960), 2, + STATE(4075), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [244111] = 11, - ACTIONS(65), 1, + ACTIONS(6056), 7, + anon_sym_COLON, + aux_sym_serialization_tuning_token1, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [252045] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4460), 1, + sym_on_quit_phrase, + STATE(4883), 1, + aux_sym_for_statement_repeat1, + STATE(4889), 1, + sym_on_stop_phrase, + STATE(5458), 1, + sym_body, + STATE(4076), 2, + sym_comment, + sym_include, + [252080] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(5920), 1, - sym__terminator, - ACTIONS(5922), 1, - aux_sym_query_definition_token2, - ACTIONS(5924), 1, - aux_sym_query_definition_token3, - STATE(4289), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(3961), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1630), 1, + sym__block_terminator, + STATE(4052), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5661), 1, + sym_body, + STATE(4077), 2, sym_comment, sym_include, - [244147] = 8, - ACTIONS(3), 1, + [252115] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5926), 1, - sym_identifier, - STATE(3889), 1, - aux_sym_destructor_definition_repeat1, - STATE(4218), 1, - sym_access_tuning, - STATE(3962), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4529), 1, + sym_on_quit_phrase, + STATE(4704), 1, + sym_on_stop_phrase, + STATE(4757), 1, + aux_sym_for_statement_repeat1, + STATE(5544), 1, + sym_body, + STATE(4078), 2, sym_comment, sym_include, - ACTIONS(5797), 5, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - [244177] = 10, - ACTIONS(3), 1, + [252150] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5928), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3963), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4434), 1, + sym_on_quit_phrase, + STATE(5162), 1, + sym_on_stop_phrase, + STATE(5163), 1, + aux_sym_for_statement_repeat1, + STATE(5857), 1, + sym_body, + STATE(4079), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [244211] = 10, - ACTIONS(3), 1, + [252185] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5930), 1, - sym__terminator, - STATE(3974), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3964), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4255), 1, + sym_on_quit_phrase, + STATE(4879), 1, + sym_on_stop_phrase, + STATE(4880), 1, + aux_sym_for_statement_repeat1, + STATE(5683), 1, + sym_body, + STATE(4080), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [244245] = 10, - ACTIONS(3), 1, + [252220] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5932), 1, - sym__terminator, - STATE(3981), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3965), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4364), 1, + sym_on_quit_phrase, + STATE(4634), 1, + aux_sym_for_statement_repeat1, + STATE(4707), 1, + sym_on_stop_phrase, + STATE(5491), 1, + sym_body, + STATE(4081), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [244279] = 10, - ACTIONS(3), 1, + [252255] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5934), 1, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + ACTIONS(6058), 1, sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3966), 2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(4602), 1, + aux_sym_data_relation_repeat1, + STATE(6537), 1, + sym_data_relation, + STATE(4082), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [244313] = 10, - ACTIONS(3), 1, + [252290] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5936), 1, - sym__terminator, - STATE(3906), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3967), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + STATE(2291), 1, + sym__block_terminator, + STATE(4596), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5963), 1, + sym_body, + STATE(4083), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [244347] = 10, - ACTIONS(3), 1, + [252325] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5938), 1, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + ACTIONS(6060), 1, sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3968), 2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(4550), 1, + aux_sym_data_relation_repeat1, + STATE(6432), 1, + sym_data_relation, + STATE(4084), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [244381] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [252360] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5360), 1, - aux_sym_variable_tuning_token7, - STATE(3892), 1, - aux_sym_function_parameter_repeat1, - STATE(4346), 1, - sym_function_parameter_tuning, - ACTIONS(5801), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3969), 2, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4432), 1, + sym_on_quit_phrase, + STATE(5158), 1, + sym_on_stop_phrase, + STATE(5159), 1, + aux_sym_for_statement_repeat1, + STATE(5862), 1, + sym_body, + STATE(4085), 2, sym_comment, sym_include, - ACTIONS(5362), 3, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [244413] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [252395] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(5940), 1, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + ACTIONS(6062), 1, sym__terminator, - ACTIONS(5942), 1, - aux_sym_query_definition_token2, - ACTIONS(5944), 1, - aux_sym_query_definition_token3, - STATE(4421), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(3970), 2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(4547), 1, + aux_sym_data_relation_repeat1, + STATE(6413), 1, + sym_data_relation, + STATE(4086), 2, sym_comment, sym_include, - [244449] = 12, - ACTIONS(3), 1, + [252430] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(5750), 1, - sym_identifier, - ACTIONS(5752), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5756), 1, - anon_sym_DQUOTE, - ACTIONS(5758), 1, - aux_sym_include_argument_token1, - ACTIONS(5946), 1, - anon_sym_RBRACE, - STATE(3982), 1, - aux_sym_include_repeat2, - STATE(4788), 1, - sym_include_argument, - STATE(4801), 1, - sym_double_quoted_string, - STATE(4804), 1, - sym_constant, - STATE(3971), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4440), 1, + sym_on_quit_phrase, + STATE(4856), 1, + sym_on_stop_phrase, + STATE(4858), 1, + aux_sym_for_statement_repeat1, + STATE(5828), 1, + sym_body, + STATE(4087), 2, sym_comment, sym_include, - [244487] = 11, - ACTIONS(65), 1, + [252465] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(4596), 1, + aux_sym_repeat_statement_repeat1, + STATE(4721), 1, + sym__block_terminator, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5797), 1, + sym_body, + STATE(4088), 2, + sym_comment, + sym_include, + [252500] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(5948), 1, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + ACTIONS(6064), 1, sym__terminator, - ACTIONS(5950), 1, - aux_sym_query_definition_token2, - ACTIONS(5952), 1, - aux_sym_query_definition_token3, - STATE(4344), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(3972), 2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(4535), 1, + aux_sym_data_relation_repeat1, + STATE(6364), 1, + sym_data_relation, + STATE(4089), 2, sym_comment, sym_include, - [244523] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [252535] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5701), 1, - anon_sym_LPAREN, - ACTIONS(5954), 1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - STATE(2305), 1, - sym__function_terminator, - STATE(2306), 1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + STATE(2412), 1, sym__block_terminator, - STATE(4299), 1, - sym_function_parameters, - STATE(5166), 1, - sym_dot_body, - ACTIONS(5697), 2, - anon_sym_COLON, - anon_sym_DOT, - STATE(3973), 2, + STATE(4113), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5549), 1, + sym_body, + STATE(4090), 2, sym_comment, sym_include, - [244559] = 10, + [252570] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, + ACTIONS(615), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(5956), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3974), 2, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + STATE(1632), 1, + sym_do_block, + STATE(4046), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6172), 1, + sym_label, + STATE(4091), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [244593] = 10, + [252605] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, + ACTIONS(615), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(5958), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3975), 2, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + STATE(1632), 1, + sym_do_block, + STATE(4597), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6172), 1, + sym_label, + STATE(4092), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [244627] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [252640] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5360), 1, - aux_sym_variable_tuning_token7, - STATE(3893), 1, - aux_sym_function_parameter_repeat1, - STATE(4346), 1, - sym_function_parameter_tuning, - ACTIONS(5960), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3976), 2, - sym_comment, - sym_include, - ACTIONS(5362), 3, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [244659] = 10, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5962), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3977), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(4088), 1, + aux_sym_repeat_statement_repeat1, + STATE(4976), 1, + sym__block_terminator, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5686), 1, + sym_body, + STATE(4093), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [244693] = 8, - ACTIONS(3), 1, + [252675] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5964), 1, - sym_identifier, - STATE(3225), 1, - sym_qualified_name, - STATE(5710), 1, - sym__find_type, - STATE(3978), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(4596), 1, + aux_sym_repeat_statement_repeat1, + STATE(4976), 1, + sym__block_terminator, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5686), 1, + sym_body, + STATE(4094), 2, sym_comment, sym_include, - ACTIONS(5738), 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, - [244723] = 10, + [252710] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, + ACTIONS(43), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(5966), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3979), 2, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + STATE(2344), 1, + sym_do_block, + STATE(4222), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6198), 1, + sym_label, + STATE(4095), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [244757] = 10, - ACTIONS(3), 1, + [252745] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5968), 1, - sym__terminator, - STATE(3977), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3980), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4418), 1, + sym_on_quit_phrase, + STATE(5152), 1, + sym_on_stop_phrase, + STATE(5156), 1, + aux_sym_for_statement_repeat1, + STATE(5876), 1, + sym_body, + STATE(4096), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [244791] = 10, - ACTIONS(3), 1, + [252780] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - sym_identifier, - ACTIONS(5970), 1, - sym__terminator, - STATE(3939), 1, - aux_sym_var_statement_repeat1, - STATE(5198), 1, - sym_variable, - STATE(5199), 1, - sym_assignment, - STATE(3981), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1630), 1, + sym__block_terminator, + STATE(4596), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5661), 1, + sym_body, + STATE(4097), 2, sym_comment, sym_include, - STATE(6134), 3, - sym_qualified_name, - sym_object_access, - sym_member_access, - [244825] = 11, - ACTIONS(3), 1, + [252815] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(5972), 1, - sym_identifier, - ACTIONS(5975), 1, - anon_sym_LBRACE, - ACTIONS(5978), 1, - anon_sym_RBRACE, - ACTIONS(5980), 1, - anon_sym_DQUOTE, - ACTIONS(5983), 1, - aux_sym_include_argument_token1, - STATE(4788), 1, - sym_include_argument, - STATE(4801), 1, - sym_double_quoted_string, - STATE(4804), 1, - sym_constant, - STATE(3982), 3, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(4187), 1, + aux_sym_repeat_statement_repeat1, + STATE(4721), 1, + sym__block_terminator, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5797), 1, + sym_body, + STATE(4098), 2, sym_comment, sym_include, - aux_sym_include_repeat2, - [244861] = 11, - ACTIONS(3), 1, + [252850] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(610), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - STATE(1863), 1, - sym_do_block, - STATE(4083), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6240), 1, - sym_label, - STATE(3983), 2, + STATE(4099), 2, sym_comment, sym_include, - [244896] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6066), 7, + anon_sym_COLON, + aux_sym_serialization_tuning_token1, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [252873] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(5986), 1, - sym__terminator, - ACTIONS(5988), 1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5990), 1, - aux_sym_data_relation_token1, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(4489), 1, - aux_sym_data_relation_repeat1, - STATE(6032), 1, - sym_data_relation, - STATE(3984), 2, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4514), 1, + sym_on_quit_phrase, + STATE(5074), 1, + sym_on_stop_phrase, + STATE(5079), 1, + aux_sym_for_statement_repeat1, + STATE(5464), 1, + sym_body, + STATE(4100), 2, sym_comment, sym_include, - [244931] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [252908] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5117), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - STATE(1608), 1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + STATE(2291), 1, sym__block_terminator, - STATE(4015), 1, + STATE(4102), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5724), 1, + STATE(5963), 1, sym_body, - STATE(3985), 2, + STATE(4101), 2, sym_comment, sym_include, - [244966] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [252943] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(3986), 2, - sym_comment, - sym_include, - ACTIONS(5992), 7, + ACTIONS(3815), 1, anon_sym_COLON, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - aux_sym_while_phrase_token1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - [244989] = 11, - ACTIONS(65), 1, + STATE(2077), 1, + sym__block_terminator, + STATE(4596), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5642), 1, + sym_body, + STATE(4102), 2, + sym_comment, + sym_include, + [252978] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1835), 1, + sym__block_terminator, + STATE(4596), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5714), 1, + sym_body, + STATE(4103), 2, + sym_comment, + sym_include, + [253013] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4345), 1, - sym_on_quit_phrase, - STATE(5063), 1, - sym_on_stop_phrase, - STATE(5064), 1, - aux_sym_for_statement_repeat1, - STATE(5879), 1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1835), 1, + sym__block_terminator, + STATE(4156), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5714), 1, sym_body, - STATE(3987), 2, + STATE(4104), 2, sym_comment, sym_include, - [245024] = 11, + [253048] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(558), 1, + ACTIONS(511), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - STATE(1609), 1, - sym_do_block, - STATE(4007), 1, + STATE(4597), 1, aux_sym_on_statement_repeat2, - STATE(5368), 1, + STATE(4682), 1, + sym_do_block, + STATE(5271), 1, sym_widget_phrase, - STATE(6056), 1, + STATE(6298), 1, sym_label, - STATE(3988), 2, + STATE(4105), 2, sym_comment, sym_include, - [245059] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [253083] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5188), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - STATE(2037), 1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + STATE(2077), 1, sym__block_terminator, - STATE(4545), 1, + STATE(4209), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5437), 1, + STATE(5642), 1, sym_body, - STATE(3989), 2, + STATE(4106), 2, sym_comment, sym_include, - [245094] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [253118] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4404), 1, - sym_on_quit_phrase, - STATE(4725), 1, - sym_on_stop_phrase, - STATE(4728), 1, - aux_sym_for_statement_repeat1, - STATE(5631), 1, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + STATE(2381), 1, + sym__block_terminator, + STATE(4083), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(6097), 1, sym_body, - STATE(3990), 2, + STATE(4107), 2, sym_comment, sym_include, - [245129] = 11, - ACTIONS(65), 1, + [253153] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4408), 1, - sym_on_quit_phrase, - STATE(4899), 1, - sym_on_stop_phrase, - STATE(4900), 1, - aux_sym_for_statement_repeat1, - STATE(5486), 1, - sym_body, - STATE(3991), 2, + ACTIONS(43), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + STATE(2344), 1, + sym_do_block, + STATE(4597), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6198), 1, + sym_label, + STATE(4108), 2, sym_comment, sym_include, - [245164] = 11, - ACTIONS(65), 1, + [253188] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4402), 1, - sym_on_quit_phrase, - STATE(4715), 1, - aux_sym_for_statement_repeat1, - STATE(4717), 1, - sym_on_stop_phrase, - STATE(5663), 1, - sym_body, - STATE(3992), 2, + ACTIONS(563), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + STATE(1831), 1, + sym_do_block, + STATE(4159), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6365), 1, + sym_label, + STATE(4109), 2, sym_comment, sym_include, - [245199] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [253223] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4197), 1, + STATE(4407), 1, sym_on_quit_phrase, - STATE(4849), 1, + STATE(5150), 1, sym_on_stop_phrase, - STATE(4872), 1, + STATE(5151), 1, aux_sym_for_statement_repeat1, - STATE(5574), 1, + STATE(5879), 1, sym_body, - STATE(3993), 2, + STATE(4110), 2, sym_comment, sym_include, - [245234] = 11, + [253258] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(558), 1, + ACTIONS(563), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - STATE(1609), 1, + STATE(1831), 1, sym_do_block, - STATE(4513), 1, + STATE(4597), 1, aux_sym_on_statement_repeat2, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6056), 1, + STATE(6365), 1, sym_label, - STATE(3994), 2, + STATE(4111), 2, sym_comment, sym_include, - [245269] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [253293] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5117), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(1608), 1, + STATE(2092), 1, sym__block_terminator, - STATE(4545), 1, + STATE(4596), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5724), 1, + STATE(5733), 1, sym_body, - STATE(3995), 2, + STATE(4112), 2, sym_comment, sym_include, - [245304] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [253328] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(5996), 1, - sym__terminator, - ACTIONS(5998), 1, - aux_sym_query_definition_token3, - STATE(4436), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(3996), 2, - sym_comment, - sym_include, - [245337] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5204), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - STATE(4115), 1, - aux_sym_repeat_statement_repeat1, - STATE(4776), 1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + STATE(2381), 1, sym__block_terminator, - STATE(5189), 1, + STATE(4596), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5965), 1, + STATE(6097), 1, sym_body, - STATE(3997), 2, + STATE(4113), 2, sym_comment, sym_include, - [245372] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [253363] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4450), 1, + STATE(4405), 1, sym_on_quit_phrase, - STATE(4782), 1, - aux_sym_for_statement_repeat1, - STATE(4785), 1, + STATE(5148), 1, sym_on_stop_phrase, - STATE(5972), 1, + STATE(5149), 1, + aux_sym_for_statement_repeat1, + STATE(5882), 1, sym_body, - STATE(3998), 2, + STATE(4114), 2, sym_comment, sym_include, - [245407] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [253398] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5204), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(4545), 1, - aux_sym_repeat_statement_repeat1, - STATE(4776), 1, + STATE(2092), 1, sym__block_terminator, - STATE(5189), 1, + STATE(4136), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5965), 1, + STATE(5733), 1, sym_body, - STATE(3999), 2, + STATE(4115), 2, + sym_comment, + sym_include, + [253433] = 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(2631), 1, + sym_identifier, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + STATE(2130), 1, + sym_do_block, + STATE(4175), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6198), 1, + sym_label, + STATE(4116), 2, + sym_comment, + sym_include, + [253468] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(511), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + STATE(4191), 1, + aux_sym_on_statement_repeat2, + STATE(4682), 1, + sym_do_block, + STATE(5271), 1, + sym_widget_phrase, + STATE(6298), 1, + sym_label, + STATE(4117), 2, sym_comment, sym_include, - [245442] = 11, - ACTIONS(65), 1, + [253503] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + STATE(2089), 1, + sym_do_block, + STATE(4597), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6498), 1, + sym_label, + STATE(4118), 2, + sym_comment, + sym_include, + [253538] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4374), 1, + STATE(4404), 1, sym_on_quit_phrase, - STATE(4705), 1, + STATE(5130), 1, sym_on_stop_phrase, - STATE(4708), 1, + STATE(5132), 1, aux_sym_for_statement_repeat1, - STATE(5680), 1, + STATE(5887), 1, sym_body, - STATE(4000), 2, + STATE(4119), 2, + sym_comment, + sym_include, + [253573] = 10, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6068), 1, + sym__terminator, + ACTIONS(6070), 1, + aux_sym_query_definition_token3, + STATE(4374), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4120), 2, sym_comment, sym_include, - [245477] = 11, + [253606] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(448), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - STATE(2077), 1, + STATE(2130), 1, sym_do_block, - STATE(4513), 1, + STATE(4597), 1, aux_sym_on_statement_repeat2, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6368), 1, + STATE(6198), 1, sym_label, - STATE(4001), 2, + STATE(4121), 2, sym_comment, sym_include, - [245512] = 11, + [253641] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(506), 1, + ACTIONS(284), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - STATE(4513), 1, - aux_sym_on_statement_repeat2, - STATE(4963), 1, + STATE(2089), 1, sym_do_block, - STATE(5368), 1, + STATE(4137), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, sym_widget_phrase, - STATE(6189), 1, + STATE(6498), 1, sym_label, - STATE(4002), 2, + STATE(4122), 2, sym_comment, sym_include, - [245547] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [253676] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2204), 1, - sym__block_terminator, - STATE(4545), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5541), 1, - sym_body, - STATE(4003), 2, - sym_comment, - sym_include, - [245582] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4353), 1, + STATE(4385), 1, sym_on_quit_phrase, - STATE(4686), 1, + STATE(4836), 1, sym_on_stop_phrase, - STATE(4691), 1, + STATE(4837), 1, aux_sym_for_statement_repeat1, - STATE(5711), 1, + STATE(5886), 1, sym_body, - STATE(4004), 2, + STATE(4123), 2, sym_comment, sym_include, - [245617] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [253711] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4343), 1, + STATE(4455), 1, sym_on_quit_phrase, - STATE(4673), 1, + STATE(4909), 1, sym_on_stop_phrase, - STATE(4674), 1, + STATE(5157), 1, aux_sym_for_statement_repeat1, - STATE(5723), 1, + STATE(5812), 1, sym_body, - STATE(4005), 2, + STATE(4124), 2, sym_comment, sym_include, - [245652] = 11, - ACTIONS(65), 1, + [253746] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2225), 1, + sym__block_terminator, + STATE(4596), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5940), 1, + sym_body, + STATE(4125), 2, + sym_comment, + sym_include, + [253781] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(5990), 1, - aux_sym_data_relation_token1, - ACTIONS(6000), 1, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6072), 1, sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(4509), 1, - aux_sym_data_relation_repeat1, - STATE(6315), 1, - sym_data_relation, - STATE(4006), 2, + ACTIONS(6074), 1, + aux_sym_query_definition_token3, + STATE(4270), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4126), 2, sym_comment, sym_include, - [245687] = 11, - ACTIONS(3), 1, + [253814] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(558), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - STATE(1621), 1, - sym_do_block, - STATE(4513), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6056), 1, - sym_label, - STATE(4007), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4402), 1, + sym_on_quit_phrase, + STATE(4990), 1, + aux_sym_for_statement_repeat1, + STATE(5000), 1, + sym_on_stop_phrase, + STATE(6093), 1, + sym_body, + STATE(4127), 2, sym_comment, sym_include, - [245722] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [253849] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5129), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(2001), 1, + STATE(2225), 1, sym__block_terminator, - STATE(4545), 1, + STATE(4068), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5885), 1, + STATE(5940), 1, sym_body, - STATE(4008), 2, + STATE(4128), 2, + sym_comment, + sym_include, + [253884] = 5, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(4129), 2, sym_comment, sym_include, - [245757] = 11, - ACTIONS(65), 1, + ACTIONS(3594), 7, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_buffer_definition_token2, + aux_sym_else_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym_do_block_token1, + aux_sym_case_otherwise_branch_token1, + [253907] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5848), 1, + aux_sym__function_argument_with_mode_token4, + STATE(5972), 1, + sym_argument_pass_type, + ACTIONS(5846), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4130), 2, + sym_comment, + sym_include, + ACTIONS(4854), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + [253936] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5204), 1, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4473), 1, + sym_on_quit_phrase, + STATE(4898), 1, + aux_sym_for_statement_repeat1, + STATE(4901), 1, + sym_on_stop_phrase, + STATE(5762), 1, + sym_body, + STATE(4131), 2, + sym_comment, + sym_include, + [253971] = 8, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6076), 1, + aux_sym_buffer_definition_token2, + ACTIONS(6078), 1, + aux_sym_repeat_statement_token1, + ACTIONS(6080), 1, + aux_sym_do_block_token1, + STATE(4132), 2, + sym_comment, + sym_include, + ACTIONS(3584), 4, aux_sym__block_terminator_token1, - STATE(4545), 1, - aux_sym_repeat_statement_repeat1, - STATE(4985), 1, - sym__block_terminator, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5977), 1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [254000] = 11, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4464), 1, + sym_on_quit_phrase, + STATE(4865), 1, + sym_on_stop_phrase, + STATE(4866), 1, + aux_sym_for_statement_repeat1, + STATE(5970), 1, sym_body, - STATE(4009), 2, + STATE(4133), 2, + sym_comment, + sym_include, + [254035] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6082), 1, + sym__namedot, + STATE(4134), 2, sym_comment, sym_include, - [245792] = 11, - ACTIONS(65), 1, + ACTIONS(150), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_variable_tuning_token7, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [254060] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + ACTIONS(6084), 1, + sym__terminator, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(4534), 1, + aux_sym_data_relation_repeat1, + STATE(6424), 1, + sym_data_relation, + STATE(4135), 2, + sym_comment, + sym_include, + [254095] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5129), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(2085), 1, + STATE(2059), 1, sym__block_terminator, - STATE(4545), 1, + STATE(4596), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5906), 1, + STATE(5756), 1, sym_body, - STATE(4010), 2, + STATE(4136), 2, sym_comment, sym_include, - [245827] = 11, + [254130] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(558), 1, + ACTIONS(284), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - STATE(1550), 1, + STATE(2055), 1, sym_do_block, - STATE(3994), 1, + STATE(4597), 1, aux_sym_on_statement_repeat2, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6056), 1, + STATE(6498), 1, sym_label, - STATE(4011), 2, + STATE(4137), 2, sym_comment, sym_include, - [245862] = 11, + [254165] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(558), 1, + ACTIONS(284), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - STATE(1621), 1, + STATE(2055), 1, sym_do_block, - STATE(4034), 1, + STATE(4161), 1, aux_sym_on_statement_repeat2, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6056), 1, + STATE(6498), 1, sym_label, - STATE(4012), 2, + STATE(4138), 2, sym_comment, sym_include, - [245897] = 11, - ACTIONS(3), 1, + [254200] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(558), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - STATE(1550), 1, - sym_do_block, - STATE(4513), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6056), 1, - sym_label, - STATE(4013), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4484), 1, + sym_on_quit_phrase, + STATE(4965), 1, + aux_sym_for_statement_repeat1, + STATE(4985), 1, + sym_on_stop_phrase, + STATE(5740), 1, + sym_body, + STATE(4139), 2, sym_comment, sym_include, - [245932] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [254235] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5117), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(1552), 1, + STATE(2059), 1, sym__block_terminator, - STATE(3995), 1, + STATE(4163), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5688), 1, + STATE(5756), 1, sym_body, - STATE(4014), 2, + STATE(4140), 2, + sym_comment, + sym_include, + [254270] = 10, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6086), 1, + sym__terminator, + ACTIONS(6088), 1, + aux_sym_query_definition_token3, + STATE(4513), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4141), 2, sym_comment, sym_include, - [245967] = 11, - ACTIONS(65), 1, + [254303] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4482), 1, + sym_on_quit_phrase, + STATE(4921), 1, + aux_sym_for_statement_repeat1, + STATE(4933), 1, + sym_on_stop_phrase, + STATE(5743), 1, + sym_body, + STATE(4142), 2, + sym_comment, + sym_include, + [254338] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5117), 1, + ACTIONS(5236), 1, aux_sym__block_terminator_token1, - STATE(1620), 1, + STATE(1925), 1, sym__block_terminator, - STATE(4545), 1, + STATE(4596), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5748), 1, + STATE(5512), 1, sym_body, - STATE(4015), 2, + STATE(4143), 2, sym_comment, sym_include, - [246002] = 11, - ACTIONS(65), 1, + [254373] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + ACTIONS(6090), 1, + sym__terminator, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(4608), 1, + aux_sym_data_relation_repeat1, + STATE(6448), 1, + sym_data_relation, + STATE(4144), 2, + sym_comment, + sym_include, + [254408] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5129), 1, + ACTIONS(5236), 1, aux_sym__block_terminator_token1, - STATE(2001), 1, + STATE(1925), 1, sym__block_terminator, - STATE(4132), 1, + STATE(4048), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5885), 1, + STATE(5512), 1, sym_body, - STATE(4016), 2, + STATE(4145), 2, sym_comment, sym_include, - [246037] = 11, - ACTIONS(3), 1, + [254443] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(448), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - STATE(2084), 1, - sym_do_block, - STATE(4001), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6368), 1, - sym_label, - STATE(4017), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4439), 1, + sym_on_quit_phrase, + STATE(4893), 1, + aux_sym_for_statement_repeat1, + STATE(4896), 1, + sym_on_stop_phrase, + STATE(5569), 1, + sym_body, + STATE(4146), 2, + sym_comment, + sym_include, + [254478] = 10, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6092), 1, + sym__terminator, + ACTIONS(6094), 1, + aux_sym_query_definition_token3, + STATE(4474), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4147), 2, sym_comment, sym_include, - [246072] = 11, - ACTIONS(65), 1, + [254511] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4386), 1, + sym_on_quit_phrase, + STATE(4842), 1, + sym_on_stop_phrase, + STATE(4843), 1, + aux_sym_for_statement_repeat1, + STATE(5871), 1, + sym_body, + STATE(4148), 2, + sym_comment, + sym_include, + [254546] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5117), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(1552), 1, + STATE(1607), 1, sym__block_terminator, - STATE(4545), 1, + STATE(4596), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5688), 1, + STATE(5909), 1, sym_body, - STATE(4018), 2, + STATE(4149), 2, sym_comment, sym_include, - [246107] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [254581] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6002), 1, - aux_sym_buffer_definition_token2, - ACTIONS(6004), 1, - aux_sym_repeat_statement_token1, - ACTIONS(6006), 1, - aux_sym_do_block_token1, - STATE(4019), 2, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6096), 1, + sym__terminator, + ACTIONS(6098), 1, + aux_sym_query_definition_token3, + STATE(4451), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4150), 2, sym_comment, sym_include, - ACTIONS(3578), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [246136] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [254614] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4459), 1, + STATE(4453), 1, sym_on_quit_phrase, - STATE(4763), 1, - aux_sym_for_statement_repeat1, - STATE(4766), 1, + STATE(4860), 1, sym_on_stop_phrase, - STATE(5975), 1, + STATE(4861), 1, + aux_sym_for_statement_repeat1, + STATE(5815), 1, sym_body, - STATE(4020), 2, + STATE(4151), 2, sym_comment, sym_include, - [246171] = 11, - ACTIONS(3), 1, + [254649] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(41), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - STATE(2376), 1, - sym_do_block, - STATE(4513), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6159), 1, - sym_label, - STATE(4021), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + STATE(2274), 1, + sym__block_terminator, + STATE(4246), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(6066), 1, + sym_body, + STATE(4152), 2, sym_comment, sym_include, - [246206] = 7, - ACTIONS(3), 1, + [254684] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6008), 1, - sym_identifier, - STATE(3773), 2, - sym_qualified_name, - sym_object_access, - STATE(4022), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1681), 1, + sym__block_terminator, + STATE(4596), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(6089), 1, + sym_body, + STATE(4153), 2, sym_comment, sym_include, - ACTIONS(6010), 4, - aux_sym_dataset_expression_token1, - aux_sym__function_argument_with_mode_token1, - aux_sym__function_argument_with_mode_token2, - aux_sym__function_argument_with_mode_token3, - [246233] = 11, - ACTIONS(65), 1, + [254719] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4342), 1, + sym_on_quit_phrase, + STATE(5024), 1, + sym_on_stop_phrase, + STATE(5038), 1, + aux_sym_for_statement_repeat1, + STATE(5798), 1, + sym_body, + STATE(4154), 2, + sym_comment, + sym_include, + [254754] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(5988), 1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5990), 1, - aux_sym_data_relation_token1, - ACTIONS(6012), 1, - sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(4477), 1, - aux_sym_data_relation_repeat1, - STATE(6323), 1, - sym_data_relation, - STATE(4023), 2, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4480), 1, + sym_on_quit_phrase, + STATE(4911), 1, + aux_sym_for_statement_repeat1, + STATE(4913), 1, + sym_on_stop_phrase, + STATE(5749), 1, + sym_body, + STATE(4155), 2, sym_comment, sym_include, - [246268] = 11, - ACTIONS(65), 1, + [254789] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1810), 1, + sym__block_terminator, + STATE(4596), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5775), 1, + sym_body, + STATE(4156), 2, + sym_comment, + sym_include, + [254824] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4338), 1, - sym_on_quit_phrase, - STATE(4667), 1, - sym_on_stop_phrase, - STATE(4668), 1, - aux_sym_for_statement_repeat1, - STATE(5737), 1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1810), 1, + sym__block_terminator, + STATE(4188), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5775), 1, sym_body, - STATE(4024), 2, + STATE(4157), 2, sym_comment, sym_include, - [246303] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [254859] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4462), 1, - sym_on_quit_phrase, - STATE(4757), 1, - aux_sym_for_statement_repeat1, - STATE(4762), 1, - sym_on_stop_phrase, - STATE(5976), 1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2280), 1, + sym__block_terminator, + STATE(4596), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(6015), 1, sym_body, - STATE(4025), 2, + STATE(4158), 2, sym_comment, sym_include, - [246338] = 11, + [254894] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(448), 1, + ACTIONS(563), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - STATE(2084), 1, + STATE(1808), 1, sym_do_block, - STATE(4513), 1, + STATE(4597), 1, aux_sym_on_statement_repeat2, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6368), 1, + STATE(6365), 1, sym_label, - STATE(4026), 2, + STATE(4159), 2, sym_comment, sym_include, - [246373] = 11, - ACTIONS(65), 1, + [254929] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - STATE(1867), 1, - sym__block_terminator, - STATE(4545), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5547), 1, - sym_body, - STATE(4027), 2, + ACTIONS(563), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + STATE(1808), 1, + sym_do_block, + STATE(4189), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6365), 1, + sym_label, + STATE(4160), 2, sym_comment, sym_include, - [246408] = 11, - ACTIONS(65), 1, + [254964] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - STATE(1867), 1, - sym__block_terminator, - STATE(4080), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5547), 1, - sym_body, - STATE(4028), 2, + ACTIONS(284), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + STATE(2043), 1, + sym_do_block, + STATE(4597), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6498), 1, + sym_label, + STATE(4161), 2, sym_comment, sym_include, - [246443] = 11, + [254999] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(506), 1, + ACTIONS(284), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - STATE(4002), 1, - aux_sym_on_statement_repeat2, - STATE(4980), 1, + STATE(2043), 1, sym_do_block, - STATE(5368), 1, + STATE(4182), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, sym_widget_phrase, - STATE(6189), 1, + STATE(6498), 1, sym_label, - STATE(4029), 2, + STATE(4162), 2, sym_comment, sym_include, - [246478] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [255034] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5188), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(2201), 1, + STATE(2044), 1, sym__block_terminator, - STATE(4545), 1, + STATE(4596), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5549), 1, + STATE(5744), 1, sym_body, - STATE(4030), 2, + STATE(4163), 2, sym_comment, sym_include, - [246513] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [255069] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - STATE(1954), 1, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2280), 1, sym__block_terminator, - STATE(4545), 1, + STATE(4125), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5615), 1, + STATE(6015), 1, sym_body, - STATE(4031), 2, + STATE(4164), 2, sym_comment, sym_include, - [246548] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [255104] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - STATE(1954), 1, - sym__block_terminator, - STATE(4027), 1, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(4253), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(4780), 1, + sym__block_terminator, + STATE(5323), 1, sym_repeat_tuning, - STATE(5615), 1, + STATE(5726), 1, sym_body, - STATE(4032), 2, + STATE(4165), 2, sym_comment, sym_include, - [246583] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [255139] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4306), 1, + STATE(4367), 1, sym_on_quit_phrase, - STATE(4965), 1, - aux_sym_for_statement_repeat1, - STATE(4967), 1, + STATE(4636), 1, sym_on_stop_phrase, - STATE(6005), 1, + STATE(4646), 1, + aux_sym_for_statement_repeat1, + STATE(5508), 1, sym_body, - STATE(4033), 2, + STATE(4166), 2, sym_comment, sym_include, - [246618] = 11, + [255174] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(558), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - STATE(1628), 1, + STATE(2279), 1, sym_do_block, - STATE(4513), 1, + STATE(4108), 1, aux_sym_on_statement_repeat2, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6056), 1, + STATE(6198), 1, sym_label, - STATE(4034), 2, + STATE(4167), 2, + sym_comment, + sym_include, + [255209] = 11, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4477), 1, + sym_on_quit_phrase, + STATE(4905), 1, + aux_sym_for_statement_repeat1, + STATE(4908), 1, + sym_on_stop_phrase, + STATE(5750), 1, + sym_body, + STATE(4168), 2, sym_comment, sym_include, - [246653] = 11, + [255244] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(610), 1, + ACTIONS(615), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - STATE(1863), 1, + STATE(1592), 1, sym_do_block, - STATE(4513), 1, + STATE(4092), 1, aux_sym_on_statement_repeat2, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6240), 1, + STATE(6172), 1, sym_label, - STATE(4035), 2, + STATE(4169), 2, sym_comment, sym_include, - [246688] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [255279] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6016), 1, - aux_sym_sort_clause_token1, - ACTIONS(6019), 1, - aux_sym_sort_clause_token2, - STATE(4487), 1, - sym_sort_clause, - ACTIONS(6014), 3, + ACTIONS(3815), 1, anon_sym_COLON, + ACTIONS(3817), 1, anon_sym_COMMA, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4036), 3, + STATE(4335), 1, + sym_on_quit_phrase, + STATE(5018), 1, + aux_sym_for_statement_repeat1, + STATE(5019), 1, + sym_on_stop_phrase, + STATE(5747), 1, + sym_body, + STATE(4170), 2, sym_comment, sym_include, - aux_sym_for_phrase_repeat2, - [246717] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [255314] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4451), 1, - sym_on_quit_phrase, - STATE(4753), 1, - aux_sym_for_statement_repeat1, - STATE(4755), 1, - sym_on_stop_phrase, - STATE(5566), 1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(4596), 1, + aux_sym_repeat_statement_repeat1, + STATE(4780), 1, + sym__block_terminator, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5726), 1, sym_body, - STATE(4037), 2, + STATE(4171), 2, sym_comment, sym_include, - [246752] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [255349] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6022), 1, + ACTIONS(6100), 1, aux_sym__block_terminator_token1, - ACTIONS(6024), 1, + ACTIONS(6102), 1, aux_sym_access_tuning_token1, - STATE(5303), 1, + STATE(5324), 1, sym_dot_body, - ACTIONS(5697), 2, + ACTIONS(5874), 2, anon_sym_COLON, anon_sym_DOT, - STATE(2022), 2, + STATE(4172), 2, + sym_comment, + sym_include, + STATE(4806), 2, sym__block_terminator, sym__procedure_terminator, - STATE(4038), 2, + [255380] = 11, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1681), 1, + sym__block_terminator, + STATE(4149), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(6089), 1, + sym_body, + STATE(4173), 2, sym_comment, sym_include, - [246783] = 10, - ACTIONS(65), 1, + [255415] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6026), 1, - sym__terminator, - ACTIONS(6028), 1, - aux_sym_query_definition_token3, - STATE(4205), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4039), 2, + ACTIONS(615), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + STATE(1592), 1, + sym_do_block, + STATE(4597), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6172), 1, + sym_label, + STATE(4174), 2, sym_comment, sym_include, - [246816] = 11, + [255450] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(506), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - STATE(4513), 1, - aux_sym_on_statement_repeat2, - STATE(4980), 1, + STATE(2279), 1, sym_do_block, - STATE(5368), 1, + STATE(4597), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, sym_widget_phrase, - STATE(6189), 1, + STATE(6198), 1, sym_label, - STATE(4040), 2, + STATE(4175), 2, sym_comment, sym_include, - [246851] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [255485] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4337), 1, + STATE(4322), 1, sym_on_quit_phrase, - STATE(5081), 1, + STATE(5006), 1, sym_on_stop_phrase, - STATE(5084), 1, + STATE(5012), 1, aux_sym_for_statement_repeat1, - STATE(5904), 1, + STATE(5698), 1, sym_body, - STATE(4041), 2, + STATE(4176), 2, sym_comment, sym_include, - [246886] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [255520] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(5990), 1, - aux_sym_data_relation_token1, - ACTIONS(6030), 1, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6104), 1, sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(4520), 1, - aux_sym_data_relation_repeat1, - STATE(6437), 1, - sym_data_relation, - STATE(4042), 2, + ACTIONS(6106), 1, + aux_sym_query_definition_token3, + STATE(4303), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4177), 2, sym_comment, sym_include, - [246921] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [255553] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4440), 1, + STATE(4436), 1, sym_on_quit_phrase, - STATE(4739), 1, - aux_sym_for_statement_repeat1, - STATE(4742), 1, + STATE(4804), 1, sym_on_stop_phrase, - STATE(5978), 1, + STATE(4827), 1, + aux_sym_for_statement_repeat1, + STATE(5697), 1, sym_body, - STATE(4043), 2, + STATE(4178), 2, sym_comment, sym_include, - [246956] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [255588] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4327), 1, + STATE(4487), 1, sym_on_quit_phrase, - STATE(4660), 1, + STATE(4744), 1, sym_on_stop_phrase, - STATE(4661), 1, + STATE(4899), 1, aux_sym_for_statement_repeat1, - STATE(5741), 1, + STATE(5981), 1, sym_body, - STATE(4044), 2, + STATE(4179), 2, sym_comment, sym_include, - [246991] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [255623] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4276), 1, - sym_on_quit_phrase, - STATE(4821), 1, - aux_sym_for_statement_repeat1, - STATE(4842), 1, - sym_on_stop_phrase, - STATE(5534), 1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1590), 1, + sym__block_terminator, + STATE(4097), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5693), 1, sym_body, - STATE(4045), 2, + STATE(4180), 2, sym_comment, sym_include, - [247026] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [255658] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4224), 1, - sym_on_quit_phrase, - STATE(4802), 1, - aux_sym_for_statement_repeat1, - STATE(4818), 1, - sym_on_stop_phrase, - STATE(5729), 1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(4596), 1, + aux_sym_repeat_statement_repeat1, + STATE(5075), 1, + sym__block_terminator, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5580), 1, sym_body, - STATE(4046), 2, + STATE(4181), 2, sym_comment, sym_include, - [247061] = 11, + [255693] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(41), 1, + ACTIONS(284), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - STATE(2335), 1, + STATE(2035), 1, sym_do_block, - STATE(4513), 1, + STATE(4597), 1, aux_sym_on_statement_repeat2, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6159), 1, + STATE(6498), 1, sym_label, - STATE(4047), 2, + STATE(4182), 2, sym_comment, sym_include, - [247096] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [255728] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4332), 1, - sym_on_quit_phrase, - STATE(5082), 1, - aux_sym_for_statement_repeat1, - STATE(5088), 1, - sym_on_stop_phrase, - STATE(5926), 1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1590), 1, + sym__block_terminator, + STATE(4596), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5693), 1, sym_body, - STATE(4048), 2, + STATE(4183), 2, sym_comment, sym_include, - [247131] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [255763] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4328), 1, + STATE(4321), 1, sym_on_quit_phrase, - STATE(5073), 1, - aux_sym_for_statement_repeat1, - STATE(5079), 1, + STATE(5002), 1, sym_on_stop_phrase, - STATE(5928), 1, + STATE(5004), 1, + aux_sym_for_statement_repeat1, + STATE(5678), 1, sym_body, - STATE(4049), 2, + STATE(4184), 2, sym_comment, sym_include, - [247166] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [255798] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6052), 1, anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4301), 1, - sym_on_quit_phrase, - STATE(4653), 1, - sym_on_stop_phrase, - STATE(4654), 1, - aux_sym_for_statement_repeat1, - STATE(5746), 1, - sym_body, - STATE(4050), 2, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + ACTIONS(6108), 1, + sym__terminator, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(4552), 1, + aux_sym_data_relation_repeat1, + STATE(6403), 1, + sym_data_relation, + STATE(4185), 2, sym_comment, sym_include, - [247201] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [255833] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4285), 1, - sym_on_quit_phrase, - STATE(4642), 1, - sym_on_stop_phrase, - STATE(4643), 1, - aux_sym_for_statement_repeat1, - STATE(5826), 1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(4094), 1, + aux_sym_repeat_statement_repeat1, + STATE(5075), 1, + sym__block_terminator, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5580), 1, sym_body, - STATE(4051), 2, + STATE(4186), 2, sym_comment, sym_include, - [247236] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [255868] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6032), 1, - sym__terminator, - ACTIONS(6034), 1, - aux_sym_query_definition_token3, - STATE(4252), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4052), 2, - sym_comment, - sym_include, - [247269] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4283), 1, - sym_on_quit_phrase, - STATE(4637), 1, - sym_on_stop_phrase, - STATE(4638), 1, - aux_sym_for_statement_repeat1, - STATE(5751), 1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(4596), 1, + aux_sym_repeat_statement_repeat1, + STATE(4725), 1, + sym__block_terminator, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5838), 1, sym_body, - STATE(4053), 2, + STATE(4187), 2, sym_comment, sym_include, - [247304] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [255903] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6036), 1, - sym__terminator, - ACTIONS(6038), 1, - aux_sym_query_definition_token3, - STATE(4463), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4054), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1791), 1, + sym__block_terminator, + STATE(4596), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5849), 1, + sym_body, + STATE(4188), 2, sym_comment, sym_include, - [247337] = 11, + [255938] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(41), 1, + ACTIONS(563), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - STATE(2205), 1, + STATE(1790), 1, sym_do_block, - STATE(4021), 1, + STATE(4597), 1, aux_sym_on_statement_repeat2, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6159), 1, + STATE(6365), 1, sym_label, - STATE(4055), 2, - sym_comment, - sym_include, - [247372] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4056), 2, - sym_comment, - sym_include, - ACTIONS(6040), 7, - anon_sym_COLON, - aux_sym_serialization_tuning_token1, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [247395] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4270), 1, - sym_on_quit_phrase, - STATE(4627), 1, - sym_on_stop_phrase, - STATE(4628), 1, - aux_sym_for_statement_repeat1, - STATE(5753), 1, - sym_body, - STATE(4057), 2, + STATE(4189), 2, sym_comment, sym_include, - [247430] = 11, + [255973] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(41), 1, + ACTIONS(563), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - STATE(2335), 1, + STATE(1790), 1, sym_do_block, - STATE(4137), 1, + STATE(4206), 1, aux_sym_on_statement_repeat2, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6159), 1, + STATE(6365), 1, sym_label, - STATE(4058), 2, + STATE(4190), 2, sym_comment, sym_include, - [247465] = 11, + [256008] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(558), 1, + ACTIONS(511), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - STATE(1600), 1, - sym_do_block, - STATE(4513), 1, + STATE(4597), 1, aux_sym_on_statement_repeat2, - STATE(5368), 1, + STATE(4728), 1, + sym_do_block, + STATE(5271), 1, sym_widget_phrase, - STATE(6056), 1, + STATE(6298), 1, sym_label, - STATE(4059), 2, + STATE(4191), 2, sym_comment, sym_include, - [247500] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [256043] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(4060), 2, - sym_comment, - sym_include, - ACTIONS(6042), 5, - sym__terminator, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_data_relation_token1, - aux_sym_data_relation_token2, - [247527] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4412), 1, + STATE(4339), 1, sym_on_quit_phrase, - STATE(4887), 1, - sym_on_stop_phrase, - STATE(4890), 1, + STATE(4748), 1, aux_sym_for_statement_repeat1, - STATE(5464), 1, + STATE(4749), 1, + sym_on_stop_phrase, + STATE(5602), 1, sym_body, - STATE(4061), 2, - sym_comment, - sym_include, - [247562] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(558), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - STATE(1600), 1, - sym_do_block, - STATE(4013), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6056), 1, - sym_label, - STATE(4062), 2, + STATE(4192), 2, sym_comment, sym_include, - [247597] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [256078] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4009), 1, - aux_sym_repeat_statement_repeat1, - STATE(5060), 1, - sym__block_terminator, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5989), 1, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4319), 1, + sym_on_quit_phrase, + STATE(4998), 1, + sym_on_stop_phrase, + STATE(4999), 1, + aux_sym_for_statement_repeat1, + STATE(5669), 1, sym_body, - STATE(4063), 2, + STATE(4193), 2, sym_comment, sym_include, - [247632] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [256113] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5117), 1, + ACTIONS(6110), 1, aux_sym__block_terminator_token1, - STATE(1633), 1, + ACTIONS(6112), 1, + aux_sym_access_tuning_token1, + STATE(5273), 1, + sym_dot_body, + ACTIONS(5874), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(2309), 2, sym__block_terminator, - STATE(4018), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5633), 1, - sym_body, - STATE(4064), 2, + sym__procedure_terminator, + STATE(4194), 2, sym_comment, sym_include, - [247667] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [256144] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5117), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(1633), 1, + STATE(2313), 1, sym__block_terminator, - STATE(4545), 1, + STATE(4596), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5633), 1, + STATE(6104), 1, sym_body, - STATE(4065), 2, + STATE(4195), 2, sym_comment, sym_include, - [247702] = 5, - ACTIONS(65), 1, + [256179] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4066), 2, + ACTIONS(511), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + STATE(4242), 1, + aux_sym_on_statement_repeat2, + STATE(4728), 1, + sym_do_block, + STATE(5271), 1, + sym_widget_phrase, + STATE(6298), 1, + sym_label, + STATE(4196), 2, sym_comment, sym_include, - ACTIONS(6044), 7, - anon_sym_COLON, - aux_sym_serialization_tuning_token1, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [247725] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [256214] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4326), 1, + STATE(4389), 1, sym_on_quit_phrase, - STATE(5050), 1, - aux_sym_for_statement_repeat1, - STATE(5054), 1, + STATE(4844), 1, sym_on_stop_phrase, - STATE(5930), 1, + STATE(4845), 1, + aux_sym_for_statement_repeat1, + STATE(5870), 1, sym_body, - STATE(4067), 2, + STATE(4197), 2, sym_comment, sym_include, - [247760] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [256249] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(5990), 1, - aux_sym_data_relation_token1, - ACTIONS(6046), 1, - sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(4519), 1, - aux_sym_data_relation_repeat1, - STATE(6536), 1, - sym_data_relation, - STATE(4068), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1791), 1, + sym__block_terminator, + STATE(4210), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5849), 1, + sym_body, + STATE(4198), 2, sym_comment, sym_include, - [247795] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [256284] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4287), 1, + STATE(4476), 1, sym_on_quit_phrase, - STATE(4886), 1, - sym_on_stop_phrase, - STATE(4891), 1, + STATE(4902), 1, aux_sym_for_statement_repeat1, - STATE(5981), 1, + STATE(4904), 1, + sym_on_stop_phrase, + STATE(5754), 1, sym_body, - STATE(4069), 2, + STATE(4199), 2, sym_comment, sym_include, - [247830] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [256319] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5129), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(2110), 1, + STATE(2313), 1, sym__block_terminator, - STATE(4010), 1, + STATE(4158), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5940), 1, + STATE(6104), 1, sym_body, - STATE(4070), 2, + STATE(4200), 2, sym_comment, sym_include, - [247865] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [256354] = 10, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4212), 1, - sym_on_quit_phrase, - STATE(4602), 1, - aux_sym_for_statement_repeat1, - STATE(4603), 1, - sym_on_stop_phrase, - STATE(5392), 1, - sym_body, - STATE(4071), 2, - sym_comment, - sym_include, - [247900] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4072), 2, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6114), 1, + sym__terminator, + ACTIONS(6116), 1, + aux_sym_query_definition_token3, + STATE(4293), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4201), 2, sym_comment, sym_include, - ACTIONS(6048), 7, - sym__terminator, - aux_sym_type_tuning_token1, - aux_sym_type_tuning_token2, - aux_sym_variable_tuning_token8, - aux_sym_temp_table_tuning_token1, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [247923] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [256387] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(5988), 1, + ACTIONS(6052), 1, anon_sym_COMMA, - ACTIONS(5990), 1, + ACTIONS(6054), 1, aux_sym_data_relation_token1, - ACTIONS(6050), 1, + ACTIONS(6118), 1, sym__terminator, - STATE(340), 1, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(4504), 1, + STATE(4544), 1, aux_sym_data_relation_repeat1, - STATE(6041), 1, + STATE(6472), 1, sym_data_relation, - STATE(4073), 2, + STATE(4202), 2, sym_comment, sym_include, - [247958] = 11, - ACTIONS(65), 1, + [256422] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6120), 1, + aux_sym__block_terminator_token1, + ACTIONS(6122), 1, + aux_sym_access_tuning_token1, + STATE(5448), 1, + sym_dot_body, + ACTIONS(5874), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(1956), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(4203), 2, + sym_comment, + sym_include, + [256453] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5188), 1, + ACTIONS(5236), 1, aux_sym__block_terminator_token1, - STATE(2204), 1, + STATE(1955), 1, sym__block_terminator, - STATE(4181), 1, + STATE(4596), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5541), 1, + STATE(5565), 1, sym_body, - STATE(4074), 2, + STATE(4204), 2, sym_comment, sym_include, - [247993] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [256488] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4075), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + STATE(2091), 1, + sym__block_terminator, + STATE(4254), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5646), 1, + sym_body, + STATE(4205), 2, sym_comment, sym_include, - ACTIONS(3588), 7, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_buffer_definition_token2, - aux_sym_else_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym_do_block_token1, - aux_sym_case_otherwise_branch_token1, - [248016] = 11, - ACTIONS(65), 1, + [256523] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4320), 1, - sym_on_quit_phrase, - STATE(5031), 1, - aux_sym_for_statement_repeat1, - STATE(5040), 1, - sym_on_stop_phrase, - STATE(5950), 1, - sym_body, - STATE(4076), 2, + ACTIONS(563), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + STATE(1781), 1, + sym_do_block, + STATE(4597), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6365), 1, + sym_label, + STATE(4206), 2, sym_comment, sym_include, - [248051] = 11, - ACTIONS(65), 1, + [256558] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(563), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + STATE(1781), 1, + sym_do_block, + STATE(4215), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6365), 1, + sym_label, + STATE(4207), 2, + sym_comment, + sym_include, + [256593] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4414), 1, + STATE(4483), 1, sym_on_quit_phrase, - STATE(4722), 1, + STATE(4941), 1, aux_sym_for_statement_repeat1, - STATE(4724), 1, + STATE(4948), 1, sym_on_stop_phrase, - STATE(5983), 1, + STATE(5742), 1, sym_body, - STATE(4077), 2, + STATE(4208), 2, sym_comment, sym_include, - [248086] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [256628] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(5990), 1, - aux_sym_data_relation_token1, - ACTIONS(6052), 1, - sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(4492), 1, - aux_sym_data_relation_repeat1, - STATE(6387), 1, - sym_data_relation, - STATE(4078), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + STATE(2091), 1, + sym__block_terminator, + STATE(4596), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5646), 1, + sym_body, + STATE(4209), 2, sym_comment, sym_include, - [248121] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [256663] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6056), 1, - aux_sym_variable_tuning_token8, - STATE(4503), 1, - sym_workfile_tuning, - STATE(4079), 3, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1782), 1, + sym__block_terminator, + STATE(4596), 1, + aux_sym_repeat_statement_repeat1, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5877), 1, + sym_body, + STATE(4210), 2, sym_comment, sym_include, - aux_sym_workfile_definition_repeat2, - ACTIONS(6054), 4, - sym__terminator, - aux_sym_type_tuning_token1, - aux_sym_type_tuning_token2, - aux_sym_field_definition_token1, - [248148] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [256698] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - STATE(1840), 1, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1955), 1, sym__block_terminator, - STATE(4545), 1, + STATE(4143), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5553), 1, + STATE(5565), 1, sym_body, - STATE(4080), 2, + STATE(4211), 2, sym_comment, sym_include, - [248183] = 11, - ACTIONS(65), 1, + [256733] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4301), 1, + sym_on_quit_phrase, + STATE(4992), 1, + sym_on_stop_phrase, + STATE(4993), 1, + aux_sym_for_statement_repeat1, + STATE(5655), 1, + sym_body, + STATE(4212), 2, + sym_comment, + sym_include, + [256768] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - STATE(1840), 1, - sym__block_terminator, - STATE(4112), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5553), 1, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4292), 1, + sym_on_quit_phrase, + STATE(4986), 1, + sym_on_stop_phrase, + STATE(4988), 1, + aux_sym_for_statement_repeat1, + STATE(5648), 1, sym_body, - STATE(4081), 2, + STATE(4213), 2, sym_comment, sym_include, - [248218] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [256803] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4082), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4421), 1, + sym_on_quit_phrase, + STATE(4785), 1, + sym_on_stop_phrase, + STATE(4789), 1, + aux_sym_for_statement_repeat1, + STATE(5947), 1, + sym_body, + STATE(4214), 2, sym_comment, sym_include, - ACTIONS(6059), 7, - sym__terminator, - aux_sym_type_tuning_token1, - aux_sym_type_tuning_token2, - aux_sym_variable_tuning_token8, - aux_sym_temp_table_tuning_token1, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [248241] = 11, + [256838] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(610), 1, + ACTIONS(563), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - STATE(1838), 1, + STATE(1772), 1, sym_do_block, - STATE(4513), 1, + STATE(4597), 1, aux_sym_on_statement_repeat2, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6240), 1, + STATE(6365), 1, sym_label, - STATE(4083), 2, + STATE(4215), 2, sym_comment, sym_include, - [248276] = 11, - ACTIONS(3), 1, + [256873] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(610), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - STATE(1838), 1, - sym_do_block, - STATE(4113), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6240), 1, - sym_label, - STATE(4084), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4481), 1, + sym_on_quit_phrase, + STATE(4847), 1, + sym_on_stop_phrase, + STATE(4848), 1, + aux_sym_for_statement_repeat1, + STATE(5866), 1, + sym_body, + STATE(4216), 2, sym_comment, sym_include, - [248311] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [256908] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5129), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(2203), 1, + STATE(1554), 1, sym__block_terminator, - STATE(4545), 1, + STATE(4596), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5998), 1, + STATE(5786), 1, sym_body, - STATE(4085), 2, + STATE(4217), 2, sym_comment, sym_include, - [248346] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [256943] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4315), 1, - sym_on_quit_phrase, - STATE(4999), 1, - aux_sym_for_statement_repeat1, - STATE(5000), 1, - sym_on_stop_phrase, - STATE(5956), 1, - sym_body, - STATE(4086), 2, - sym_comment, - sym_include, - [248381] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5129), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(2203), 1, + STATE(1554), 1, sym__block_terminator, - STATE(4156), 1, + STATE(4183), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5998), 1, + STATE(5786), 1, sym_body, - STATE(4087), 2, + STATE(4218), 2, sym_comment, sym_include, - [248416] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [256978] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6061), 1, + ACTIONS(6124), 1, aux_sym__block_terminator_token1, - ACTIONS(6063), 1, + ACTIONS(6126), 1, aux_sym_access_tuning_token1, - STATE(5149), 1, + STATE(5295), 1, sym_dot_body, - ACTIONS(5697), 2, + ACTIONS(5874), 2, anon_sym_COLON, anon_sym_DOT, - STATE(2333), 2, + STATE(1709), 2, sym__block_terminator, sym__procedure_terminator, - STATE(4088), 2, + STATE(4219), 2, sym_comment, sym_include, - [248447] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [257009] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5129), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(2337), 1, + STATE(1715), 1, sym__block_terminator, - STATE(4545), 1, + STATE(4596), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5853), 1, + STATE(6110), 1, sym_body, - STATE(4089), 2, + STATE(4220), 2, + sym_comment, + sym_include, + [257044] = 5, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(4221), 2, sym_comment, sym_include, - [248482] = 10, - ACTIONS(65), 1, + ACTIONS(6128), 7, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_while_phrase_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + [257067] = 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(2631), 1, + sym_identifier, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + STATE(2428), 1, + sym_do_block, + STATE(4597), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6198), 1, + sym_label, + STATE(4222), 2, + sym_comment, + sym_include, + [257102] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6065), 1, - sym__terminator, - ACTIONS(6067), 1, - aux_sym_query_definition_token3, - STATE(4449), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4090), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4290), 1, + sym_on_quit_phrase, + STATE(4983), 1, + sym_on_stop_phrase, + STATE(4984), 1, + aux_sym_for_statement_repeat1, + STATE(5652), 1, + sym_body, + STATE(4223), 2, sym_comment, sym_include, - [248515] = 11, - ACTIONS(65), 1, + [257137] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4256), 1, + sym_on_quit_phrase, + STATE(4841), 1, + aux_sym_for_statement_repeat1, + STATE(4851), 1, + sym_on_stop_phrase, + STATE(5865), 1, + sym_body, + STATE(4224), 2, + sym_comment, + sym_include, + [257172] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5129), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(2337), 1, + STATE(1715), 1, sym__block_terminator, - STATE(4008), 1, + STATE(4153), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5853), 1, + STATE(6110), 1, sym_body, - STATE(4091), 2, + STATE(4225), 2, sym_comment, sym_include, - [248550] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [257207] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4092), 2, - sym_comment, - sym_include, - ACTIONS(6069), 7, - anon_sym_COLON, - aux_sym_serialization_tuning_token1, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [248573] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4312), 1, + STATE(4283), 1, sym_on_quit_phrase, - STATE(4988), 1, - aux_sym_for_statement_repeat1, - STATE(4989), 1, + STATE(4966), 1, sym_on_stop_phrase, - STATE(5960), 1, + STATE(4970), 1, + aux_sym_for_statement_repeat1, + STATE(5466), 1, sym_body, - STATE(4093), 2, + STATE(4226), 2, sym_comment, sym_include, - [248608] = 11, - ACTIONS(65), 1, + [257242] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(615), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + STATE(1550), 1, + sym_do_block, + STATE(4174), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, + sym_widget_phrase, + STATE(6172), 1, + sym_label, + STATE(4227), 2, + sym_comment, + sym_include, + [257277] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(5988), 1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5990), 1, - aux_sym_data_relation_token1, - ACTIONS(6071), 1, - sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(4493), 1, - aux_sym_data_relation_repeat1, - STATE(6285), 1, - sym_data_relation, - STATE(4094), 2, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4415), 1, + sym_on_quit_phrase, + STATE(4849), 1, + sym_on_stop_phrase, + STATE(4850), 1, + aux_sym_for_statement_repeat1, + STATE(5864), 1, + sym_body, + STATE(4228), 2, sym_comment, sym_include, - [248643] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [257312] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2357), 1, - sym__block_terminator, - STATE(4003), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5677), 1, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4276), 1, + sym_on_quit_phrase, + STATE(4961), 1, + sym_on_stop_phrase, + STATE(4963), 1, + aux_sym_for_statement_repeat1, + STATE(5632), 1, sym_body, - STATE(4095), 2, + STATE(4229), 2, sym_comment, sym_include, - [248678] = 11, + [257347] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(41), 1, + ACTIONS(615), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - STATE(2098), 1, + STATE(1550), 1, sym_do_block, - STATE(4513), 1, + STATE(4597), 1, aux_sym_on_statement_repeat2, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6159), 1, + STATE(6172), 1, sym_label, - STATE(4096), 2, + STATE(4230), 2, + sym_comment, + sym_include, + [257382] = 11, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4275), 1, + sym_on_quit_phrase, + STATE(4949), 1, + sym_on_stop_phrase, + STATE(4951), 1, + aux_sym_for_statement_repeat1, + STATE(5614), 1, + sym_body, + STATE(4231), 2, sym_comment, sym_include, - [248713] = 11, + [257417] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(448), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - STATE(2109), 1, + STATE(2057), 1, sym_do_block, - STATE(4026), 1, + STATE(4121), 1, aux_sym_on_statement_repeat2, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6368), 1, + STATE(6198), 1, sym_label, - STATE(4097), 2, + STATE(4232), 2, sym_comment, sym_include, - [248748] = 11, + [257452] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(448), 1, + ACTIONS(511), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - STATE(2109), 1, - sym_do_block, - STATE(4513), 1, + STATE(4597), 1, aux_sym_on_statement_repeat2, - STATE(5368), 1, + STATE(4957), 1, + sym_do_block, + STATE(5271), 1, sym_widget_phrase, - STATE(6368), 1, + STATE(6298), 1, sym_label, - STATE(4098), 2, + STATE(4233), 2, sym_comment, sym_include, - [248783] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [257487] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(820), 1, - sym__namecolon, - ACTIONS(822), 1, - sym__namedoublecolon, - ACTIONS(6073), 1, - anon_sym_EQ, - STATE(340), 1, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + ACTIONS(6130), 1, + sym__terminator, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(3384), 1, - aux_sym_object_access_repeat1, - STATE(5090), 1, - aux_sym_member_access_repeat1, - STATE(4099), 2, + STATE(4581), 1, + aux_sym_data_relation_repeat1, + STATE(6369), 1, + sym_data_relation, + STATE(4234), 2, sym_comment, sym_include, - [248818] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [257522] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4100), 2, + STATE(4235), 2, sym_comment, sym_include, - ACTIONS(6075), 7, - anon_sym_COLON, - aux_sym_serialization_tuning_token1, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [248841] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6132), 7, + sym__terminator, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [257545] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6077), 1, - sym__terminator, - ACTIONS(6079), 1, - aux_sym_query_definition_token3, - STATE(4278), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4101), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(4596), 1, + aux_sym_repeat_statement_repeat1, + STATE(4809), 1, + sym__block_terminator, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5867), 1, + sym_body, + STATE(4236), 2, sym_comment, sym_include, - [248874] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [257580] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4385), 1, + STATE(4449), 1, sym_on_quit_phrase, - STATE(4564), 1, - aux_sym_for_statement_repeat1, - STATE(4709), 1, + STATE(4857), 1, sym_on_stop_phrase, - STATE(5986), 1, + STATE(4862), 1, + aux_sym_for_statement_repeat1, + STATE(5831), 1, sym_body, - STATE(4102), 2, + STATE(4237), 2, sym_comment, sym_include, - [248909] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [257615] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2110), 1, - sym__block_terminator, - STATE(4545), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5940), 1, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4307), 1, + sym_on_quit_phrase, + STATE(4784), 1, + sym_on_stop_phrase, + STATE(4788), 1, + aux_sym_for_statement_repeat1, + STATE(5713), 1, sym_body, - STATE(4103), 2, + STATE(4238), 2, sym_comment, sym_include, - [248944] = 5, - ACTIONS(65), 1, + [257650] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4104), 2, + ACTIONS(511), 1, + aux_sym_do_block_token1, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2635), 1, + aux_sym_input_expression_token2, + STATE(4233), 1, + aux_sym_on_statement_repeat2, + STATE(4873), 1, + sym_do_block, + STATE(5271), 1, + sym_widget_phrase, + STATE(6298), 1, + sym_label, + STATE(4239), 2, sym_comment, sym_include, - ACTIONS(6081), 7, - anon_sym_COLON, - aux_sym_serialization_tuning_token1, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [248967] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [257685] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(6136), 1, + aux_sym_sort_clause_token1, + ACTIONS(6139), 1, + aux_sym_sort_clause_token2, + STATE(4603), 1, + sym_sort_clause, + ACTIONS(6134), 3, anon_sym_COLON, - ACTIONS(3788), 1, anon_sym_COMMA, - ACTIONS(5994), 1, aux_sym_on_error_phrase_token1, - STATE(4368), 1, - sym_on_quit_phrase, - STATE(4700), 1, - aux_sym_for_statement_repeat1, - STATE(4701), 1, - sym_on_stop_phrase, - STATE(5990), 1, - sym_body, - STATE(4105), 2, + STATE(4240), 3, sym_comment, sym_include, - [249002] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_for_phrase_repeat2, + [257714] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2037), 1, - sym__block_terminator, - STATE(4174), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5437), 1, - sym_body, - STATE(4106), 2, + STATE(4241), 2, sym_comment, sym_include, - [249037] = 11, + ACTIONS(6142), 7, + sym__terminator, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + aux_sym_variable_tuning_token8, + aux_sym_temp_table_tuning_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [257737] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(506), 1, + ACTIONS(511), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - STATE(4040), 1, + STATE(4597), 1, aux_sym_on_statement_repeat2, - STATE(5047), 1, + STATE(4873), 1, sym_do_block, - STATE(5368), 1, + STATE(5271), 1, sym_widget_phrase, - STATE(6189), 1, + STATE(6298), 1, sym_label, - STATE(4107), 2, + STATE(4242), 2, sym_comment, sym_include, - [249072] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [257772] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5117), 1, - aux_sym__block_terminator_token1, - STATE(1682), 1, - sym__block_terminator, - STATE(4545), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5573), 1, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4459), 1, + sym_on_quit_phrase, + STATE(4885), 1, + aux_sym_for_statement_repeat1, + STATE(4887), 1, + sym_on_stop_phrase, + STATE(5794), 1, sym_body, - STATE(4108), 2, + STATE(4243), 2, sym_comment, sym_include, - [249107] = 11, + [257807] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(506), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(2612), 1, + ACTIONS(2635), 1, aux_sym_input_expression_token2, - STATE(4513), 1, - aux_sym_on_statement_repeat2, - STATE(5047), 1, + STATE(2057), 1, sym_do_block, - STATE(5368), 1, + STATE(4597), 1, + aux_sym_on_statement_repeat2, + STATE(5271), 1, sym_widget_phrase, - STATE(6189), 1, + STATE(6198), 1, sym_label, - STATE(4109), 2, + STATE(4244), 2, sym_comment, sym_include, - [249142] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [257842] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5117), 1, - aux_sym__block_terminator_token1, - STATE(1682), 1, - sym__block_terminator, - STATE(4065), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5573), 1, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4425), 1, + sym_on_quit_phrase, + STATE(4853), 1, + sym_on_stop_phrase, + STATE(4854), 1, + aux_sym_for_statement_repeat1, + STATE(5856), 1, sym_body, - STATE(4110), 2, + STATE(4245), 2, sym_comment, sym_include, - [249177] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [257877] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4111), 2, - sym_comment, - sym_include, - ACTIONS(6083), 7, - anon_sym_COLON, - aux_sym_serialization_tuning_token1, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [249200] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5109), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - STATE(1824), 1, + STATE(2343), 1, sym__block_terminator, - STATE(4545), 1, + STATE(4596), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5454), 1, + STATE(5991), 1, sym_body, - STATE(4112), 2, + STATE(4246), 2, sym_comment, sym_include, - [249235] = 11, - ACTIONS(3), 1, + [257912] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(610), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - STATE(1823), 1, - sym_do_block, - STATE(4513), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6240), 1, - sym_label, - STATE(4113), 2, + ACTIONS(1740), 1, + sym__namedot, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(4247), 2, sym_comment, sym_include, - [249270] = 11, - ACTIONS(3), 1, + ACTIONS(6144), 5, + sym__terminator, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_data_relation_token1, + aux_sym_data_relation_token2, + [257939] = 10, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(610), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - STATE(1823), 1, - sym_do_block, - STATE(4130), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6240), 1, - sym_label, - STATE(4114), 2, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6146), 1, + sym__terminator, + ACTIONS(6148), 1, + aux_sym_query_definition_token3, + STATE(4430), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4248), 2, sym_comment, sym_include, - [249305] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [257972] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4545), 1, - aux_sym_repeat_statement_repeat1, - STATE(4904), 1, - sym__block_terminator, - STATE(5189), 1, - sym_repeat_tuning, - STATE(6014), 1, - sym_body, - STATE(4115), 2, - sym_comment, - sym_include, - [249340] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5204), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - STATE(4170), 1, + STATE(4181), 1, aux_sym_repeat_statement_repeat1, - STATE(4904), 1, + STATE(5113), 1, sym__block_terminator, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(6014), 1, + STATE(5503), 1, sym_body, - STATE(4116), 2, + STATE(4249), 2, sym_comment, sym_include, - [249375] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [258007] = 11, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4354), 1, - sym_on_quit_phrase, - STATE(4683), 1, - aux_sym_for_statement_repeat1, - STATE(4687), 1, - sym_on_stop_phrase, - STATE(5996), 1, - sym_body, - STATE(4117), 2, - sym_comment, - sym_include, - [249410] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4314), 1, + STATE(4394), 1, sym_on_quit_phrase, - STATE(4784), 1, + STATE(4868), 1, aux_sym_for_statement_repeat1, - STATE(4787), 1, + STATE(4874), 1, sym_on_stop_phrase, - STATE(5506), 1, + STATE(5904), 1, sym_body, - STATE(4118), 2, + STATE(4250), 2, sym_comment, sym_include, - [249445] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [258042] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - ACTIONS(5129), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - STATE(2261), 1, - sym__block_terminator, - STATE(4085), 1, + STATE(4236), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(4725), 1, + sym__block_terminator, + STATE(5323), 1, sym_repeat_tuning, - STATE(6000), 1, + STATE(5838), 1, sym_body, - STATE(4119), 2, + STATE(4251), 2, sym_comment, sym_include, - [249480] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [258077] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4419), 1, + STATE(4462), 1, sym_on_quit_phrase, - STATE(4873), 1, - sym_on_stop_phrase, - STATE(4874), 1, + STATE(4892), 1, aux_sym_for_statement_repeat1, - STATE(5449), 1, + STATE(4894), 1, + sym_on_stop_phrase, + STATE(5770), 1, sym_body, - STATE(4120), 2, + STATE(4252), 2, sym_comment, sym_include, - [249515] = 11, - ACTIONS(3), 1, + [258112] = 11, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(506), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - STATE(4173), 1, - aux_sym_on_statement_repeat2, - STATE(4916), 1, - sym_do_block, - STATE(5368), 1, - sym_widget_phrase, - STATE(6189), 1, - sym_label, - STATE(4121), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5142), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(4596), 1, + aux_sym_repeat_statement_repeat1, + STATE(5113), 1, + sym__block_terminator, + STATE(5323), 1, + sym_repeat_tuning, + STATE(5503), 1, + sym_body, + STATE(4253), 2, sym_comment, sym_include, - [249550] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [258147] = 11, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5109), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - ACTIONS(5113), 1, + ACTIONS(5142), 1, aux_sym_repeat_tuning_token1, - STATE(1824), 1, + STATE(2274), 1, sym__block_terminator, - STATE(4134), 1, + STATE(4596), 1, aux_sym_repeat_statement_repeat1, - STATE(5189), 1, + STATE(5323), 1, sym_repeat_tuning, - STATE(5454), 1, + STATE(6066), 1, sym_body, - STATE(4122), 2, - sym_comment, - sym_include, - [249585] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6085), 1, - sym__terminator, - ACTIONS(6087), 1, - aux_sym_query_definition_token3, - STATE(4264), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4123), 2, - sym_comment, - sym_include, - [249618] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(506), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - STATE(4513), 1, - aux_sym_on_statement_repeat2, - STATE(4916), 1, - sym_do_block, - STATE(5368), 1, - sym_widget_phrase, - STATE(6189), 1, - sym_label, - STATE(4124), 2, + STATE(4254), 2, sym_comment, sym_include, - [249653] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [258182] = 10, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6089), 1, - sym__terminator, - ACTIONS(6091), 1, - aux_sym_query_definition_token3, - STATE(4256), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4125), 2, - sym_comment, - sym_include, - [249686] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4309), 1, - sym_on_quit_phrase, - STATE(4976), 1, + STATE(4865), 1, sym_on_stop_phrase, - STATE(4977), 1, + STATE(4866), 1, aux_sym_for_statement_repeat1, - STATE(5987), 1, + STATE(5970), 1, sym_body, - STATE(4126), 2, + STATE(4255), 2, sym_comment, sym_include, - [249721] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [258214] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4350), 1, - sym_on_quit_phrase, - STATE(4666), 1, + STATE(4885), 1, aux_sym_for_statement_repeat1, - STATE(4669), 1, + STATE(4887), 1, sym_on_stop_phrase, - STATE(6012), 1, + STATE(5794), 1, sym_body, - STATE(4127), 2, + STATE(4256), 2, sym_comment, sym_include, - [249756] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [258246] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4545), 1, - aux_sym_repeat_statement_repeat1, - STATE(5060), 1, - sym__block_terminator, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5989), 1, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + STATE(5670), 1, sym_body, - STATE(4128), 2, + STATE(4257), 2, sym_comment, sym_include, - [249791] = 11, - ACTIONS(3), 1, + STATE(5671), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [258274] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(448), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - STATE(2195), 1, - sym_do_block, - STATE(4151), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6368), 1, - sym_label, - STATE(4129), 2, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(5250), 1, + sym__terminator, + STATE(4419), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4258), 2, sym_comment, sym_include, - [249826] = 11, - ACTIONS(3), 1, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [258304] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(610), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - STATE(1814), 1, - sym_do_block, - STATE(4513), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6240), 1, - sym_label, - STATE(4130), 2, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(5250), 1, + sym__terminator, + STATE(4271), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4259), 2, + sym_comment, + sym_include, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [258334] = 5, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(4260), 2, sym_comment, sym_include, - [249861] = 11, + ACTIONS(6152), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_variable_tuning_token7, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [258356] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(610), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(6154), 1, sym_identifier, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - STATE(1814), 1, - sym_do_block, - STATE(4139), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6240), 1, - sym_label, - STATE(4131), 2, + STATE(5022), 1, + sym_object_access, + STATE(5814), 1, + sym_qualified_name, + STATE(4261), 2, sym_comment, sym_include, - [249896] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(6109), 2, + sym_function_call, + sym_new_expression, + [258386] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5129), 1, + ACTIONS(5958), 1, aux_sym__block_terminator_token1, - STATE(2261), 1, + STATE(5069), 1, + sym__function_terminator, + STATE(5168), 1, sym__block_terminator, - STATE(4545), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(6000), 1, - sym_body, - STATE(4132), 2, + STATE(5223), 1, + sym_dot_body, + ACTIONS(5874), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(4262), 2, sym_comment, sym_include, - [249931] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [258416] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4422), 1, - sym_on_quit_phrase, - STATE(4865), 1, - sym_on_stop_phrase, - STATE(4867), 1, - aux_sym_for_statement_repeat1, - STATE(5443), 1, - sym_body, - STATE(4133), 2, + ACTIONS(4858), 1, + sym__namedot, + STATE(3375), 1, + aux_sym_qualified_name_repeat1, + STATE(4263), 2, sym_comment, sym_include, - [249966] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4085), 4, + anon_sym_COLON, + anon_sym_DOT, + aux_sym__block_terminator_token1, + anon_sym_LPAREN, + [258442] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - STATE(1815), 1, - sym__block_terminator, - STATE(4545), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5432), 1, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + STATE(5463), 1, sym_body, - STATE(4134), 2, + STATE(4264), 2, sym_comment, sym_include, - [250001] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(6032), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [258470] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6093), 1, - sym__terminator, - ACTIONS(6095), 1, - aux_sym_query_definition_token3, - STATE(4245), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4135), 2, - sym_comment, - sym_include, - [250034] = 11, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - STATE(1978), 1, - sym__block_terminator, - STATE(4545), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5764), 1, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + STATE(5599), 1, sym_body, - STATE(4136), 2, + STATE(4265), 2, sym_comment, sym_include, - [250069] = 11, + STATE(5597), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [258498] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(41), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(6156), 1, sym_identifier, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - STATE(2188), 1, - sym_do_block, - STATE(4513), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6159), 1, - sym_label, - STATE(4137), 2, + STATE(3267), 1, + sym_function_call, + STATE(3361), 1, + sym_qualified_name, + STATE(5641), 1, + sym_object_access, + STATE(5673), 1, + sym_new_expression, + STATE(4266), 2, sym_comment, sym_include, - [250104] = 11, - ACTIONS(3), 1, + [258530] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(448), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - STATE(2195), 1, - sym_do_block, - STATE(4513), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6368), 1, - sym_label, - STATE(4138), 2, + ACTIONS(6160), 1, + aux_sym_variable_definition_token2, + STATE(4267), 2, sym_comment, sym_include, - [250139] = 11, - ACTIONS(3), 1, + ACTIONS(6158), 5, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [258554] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(610), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - STATE(1809), 1, - sym_do_block, - STATE(4513), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6240), 1, - sym_label, - STATE(4139), 2, + ACTIONS(6164), 1, + aux_sym_variable_definition_token2, + STATE(4268), 2, sym_comment, sym_include, - [250174] = 10, - ACTIONS(65), 1, + ACTIONS(6162), 5, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [258578] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(5178), 1, + sym__terminator, + STATE(4259), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4269), 2, + sym_comment, + sym_include, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [258608] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, + ACTIONS(5864), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6097), 1, + ACTIONS(6166), 1, sym__terminator, - ACTIONS(6099), 1, - aux_sym_query_definition_token3, - STATE(4441), 1, + STATE(4429), 1, aux_sym_query_definition_repeat1, - STATE(5004), 1, + STATE(4830), 1, sym_query_definition_tuning, - ACTIONS(5768), 2, + ACTIONS(5866), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4140), 2, + STATE(4270), 2, sym_comment, sym_include, - [250207] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [258638] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2322), 1, - sym__block_terminator, - STATE(4545), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5805), 1, - sym_body, - STATE(4141), 2, + ACTIONS(6168), 1, + sym__terminator, + ACTIONS(6170), 1, + aux_sym_field_definition_token1, + ACTIONS(6173), 1, + aux_sym_index_definition_token1, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + STATE(4271), 3, sym_comment, sym_include, - [250242] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_temp_table_definition_repeat2, + [258666] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4319), 1, - sym_on_quit_phrase, - STATE(5015), 1, - aux_sym_for_statement_repeat1, - STATE(5035), 1, - sym_on_stop_phrase, - STATE(5645), 1, - sym_body, - STATE(4142), 2, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(5178), 1, + sym__terminator, + STATE(4271), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4272), 2, sym_comment, sym_include, - [250277] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [258696] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5109), 1, + ACTIONS(6110), 1, aux_sym__block_terminator_token1, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - STATE(1978), 1, + STATE(5287), 1, + sym_dot_body, + ACTIONS(5874), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(2278), 2, sym__block_terminator, - STATE(4031), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5764), 1, - sym_body, - STATE(4143), 2, + sym__procedure_terminator, + STATE(4273), 2, sym_comment, sym_include, - [250312] = 11, - ACTIONS(65), 1, + [258724] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2322), 1, - sym__block_terminator, - STATE(4167), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5805), 1, - sym_body, - STATE(4144), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(6176), 1, + sym_identifier, + STATE(5047), 1, + sym_object_access, + STATE(6055), 1, + sym_qualified_name, + STATE(4274), 2, sym_comment, sym_include, - [250347] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(6109), 2, + sym_function_call, + sym_new_expression, + [258754] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(3999), 1, - aux_sym_repeat_statement_repeat1, - STATE(4670), 1, - sym__block_terminator, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5902), 1, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(4944), 1, + sym_on_stop_phrase, + STATE(4945), 1, + aux_sym_for_statement_repeat1, + STATE(5604), 1, sym_body, - STATE(4145), 2, + STATE(4275), 2, sym_comment, sym_include, - [250382] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [258786] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4203), 1, - sym_on_quit_phrase, - STATE(4584), 1, + STATE(4949), 1, sym_on_stop_phrase, - STATE(4652), 1, + STATE(4951), 1, aux_sym_for_statement_repeat1, - STATE(5378), 1, + STATE(5614), 1, sym_body, - STATE(4146), 2, + STATE(4276), 2, sym_comment, sym_include, - [250417] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [258818] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5117), 1, - aux_sym__block_terminator_token1, - STATE(1722), 1, - sym__block_terminator, - STATE(4545), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5484), 1, - sym_body, - STATE(4147), 2, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6178), 1, + sym__terminator, + STATE(4347), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4277), 2, sym_comment, sym_include, - [250452] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [258848] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + STATE(4278), 2, + sym_comment, + sym_include, + ACTIONS(6180), 6, anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5204), 1, + sym__terminator, aux_sym__block_terminator_token1, - STATE(4545), 1, - aux_sym_repeat_statement_repeat1, - STATE(4670), 1, - sym__block_terminator, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5902), 1, - sym_body, - STATE(4148), 2, + anon_sym_COMMA, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [258870] = 8, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6182), 1, + aux_sym_else_statement_token1, + STATE(4299), 1, + aux_sym_if_statement_repeat1, + STATE(4692), 1, + sym_else_statement, + STATE(4279), 2, sym_comment, sym_include, - [250487] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2795), 3, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_case_otherwise_branch_token1, + [258898] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5117), 1, - aux_sym__block_terminator_token1, - STATE(1722), 1, - sym__block_terminator, - STATE(4108), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5484), 1, - sym_body, - STATE(4149), 2, + ACTIONS(6184), 1, + aux_sym_else_statement_token1, + STATE(4299), 1, + aux_sym_if_statement_repeat1, + STATE(4692), 1, + sym_else_statement, + STATE(4280), 2, sym_comment, sym_include, - [250522] = 11, - ACTIONS(3), 1, + ACTIONS(2805), 3, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_case_otherwise_branch_token1, + [258926] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(448), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - STATE(2136), 1, - sym_do_block, - STATE(4098), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6368), 1, - sym_label, - STATE(4150), 2, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6187), 1, + sym__terminator, + STATE(4429), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4281), 2, sym_comment, sym_include, - [250557] = 11, - ACTIONS(3), 1, + [258956] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(448), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - STATE(2136), 1, - sym_do_block, - STATE(4513), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6368), 1, - sym_label, - STATE(4151), 2, + STATE(4454), 1, + aux_sym_if_statement_repeat1, + STATE(4692), 1, + sym_else_statement, + STATE(4282), 2, sym_comment, sym_include, - [250592] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2793), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [258982] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4148), 1, - aux_sym_repeat_statement_repeat1, - STATE(4577), 1, - sym__block_terminator, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5820), 1, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(4958), 1, + sym_on_stop_phrase, + STATE(4959), 1, + aux_sym_for_statement_repeat1, + STATE(5627), 1, sym_body, - STATE(4152), 2, + STATE(4283), 2, sym_comment, sym_include, - [250627] = 11, + [259014] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(41), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(6189), 1, sym_identifier, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - STATE(2205), 1, - sym_do_block, - STATE(4513), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6159), 1, - sym_label, - STATE(4153), 2, + STATE(3281), 1, + sym_function_call, + STATE(3380), 1, + sym_qualified_name, + STATE(5641), 1, + sym_object_access, + STATE(5673), 1, + sym_new_expression, + STATE(4284), 2, sym_comment, sym_include, - [250662] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [259046] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2144), 1, - sym__block_terminator, - STATE(4103), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5959), 1, - sym_body, - STATE(4154), 2, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6191), 1, + sym__terminator, + STATE(4281), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4285), 2, sym_comment, sym_include, - [250697] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [259076] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4364), 1, - sym_on_quit_phrase, - STATE(5037), 1, - aux_sym_for_statement_repeat1, - STATE(5038), 1, - sym_on_stop_phrase, - STATE(5689), 1, - sym_body, - STATE(4155), 2, + ACTIONS(4818), 1, + aux_sym_variable_definition_token2, + STATE(4286), 2, sym_comment, sym_include, - [250732] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4816), 5, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [259100] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5129), 1, + ACTIONS(6120), 1, aux_sym__block_terminator_token1, - STATE(2144), 1, + STATE(5428), 1, + sym_dot_body, + ACTIONS(5874), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(1924), 2, sym__block_terminator, - STATE(4545), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5959), 1, - sym_body, - STATE(4156), 2, + sym__procedure_terminator, + STATE(4287), 2, sym_comment, sym_include, - [250767] = 11, - ACTIONS(65), 1, + [259128] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6193), 1, + sym__terminator, + STATE(4429), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4288), 2, + sym_comment, + sym_include, + [259158] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(4652), 1, + aux_sym_inherits_token1, + ACTIONS(5912), 1, anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4545), 1, - aux_sym_repeat_statement_repeat1, - STATE(4577), 1, - sym__block_terminator, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5820), 1, - sym_body, - STATE(4157), 2, + STATE(4338), 1, + aux_sym_interface_statement_repeat1, + STATE(5615), 1, + sym_interface_tuning, + STATE(5620), 1, + sym_inherits, + STATE(6574), 1, + sym_interface_body, + STATE(4289), 2, sym_comment, sym_include, - [250802] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [259190] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4400), 1, - sym_on_quit_phrase, - STATE(4922), 1, + STATE(4961), 1, sym_on_stop_phrase, - STATE(4923), 1, + STATE(4963), 1, aux_sym_for_statement_repeat1, - STATE(5558), 1, + STATE(5632), 1, sym_body, - STATE(4158), 2, + STATE(4290), 2, sym_comment, sym_include, - [250837] = 11, - ACTIONS(65), 1, + [259222] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(5190), 1, + sym__terminator, + STATE(4392), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4291), 2, + sym_comment, + sym_include, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [259252] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4242), 1, - sym_on_quit_phrase, - STATE(4692), 1, + STATE(4966), 1, sym_on_stop_phrase, - STATE(4695), 1, + STATE(4970), 1, aux_sym_for_statement_repeat1, - STATE(5489), 1, + STATE(5466), 1, sym_body, - STATE(4159), 2, + STATE(4292), 2, sym_comment, sym_include, - [250872] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [259284] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6101), 1, - aux_sym__block_terminator_token1, - ACTIONS(6103), 1, - aux_sym_access_tuning_token1, - STATE(5358), 1, - sym_dot_body, - ACTIONS(5697), 2, - anon_sym_COLON, - anon_sym_DOT, - STATE(4160), 2, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6195), 1, + sym__terminator, + STATE(4429), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4293), 2, sym_comment, sym_include, - STATE(4586), 2, - sym__block_terminator, - sym__procedure_terminator, - [250903] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [259314] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(5990), 1, - aux_sym_data_relation_token1, - ACTIONS(6105), 1, - sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(4474), 1, - aux_sym_data_relation_repeat1, - STATE(6037), 1, - sym_data_relation, - STATE(4161), 2, + STATE(4294), 2, sym_comment, sym_include, - [250938] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(202), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_variable_tuning_token7, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [259336] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(820), 1, - sym__namecolon, - ACTIONS(822), 1, - sym__namedoublecolon, - ACTIONS(6107), 1, - anon_sym_EQ, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(3384), 1, - aux_sym_object_access_repeat1, - STATE(5090), 1, - aux_sym_member_access_repeat1, - STATE(4162), 2, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6197), 1, + sym__terminator, + STATE(4288), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4295), 2, sym_comment, sym_include, - [250973] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [259366] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(5990), 1, - aux_sym_data_relation_token1, - ACTIONS(6109), 1, - sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(4518), 1, - aux_sym_data_relation_repeat1, - STATE(6103), 1, - sym_data_relation, - STATE(4163), 2, + ACTIONS(6201), 1, + aux_sym_variable_definition_token2, + STATE(4296), 2, sym_comment, sym_include, - [251008] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6199), 5, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [259390] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(5892), 1, + aux_sym__block_terminator_token1, + STATE(1863), 1, + sym__function_terminator, + STATE(1915), 1, + sym__block_terminator, + STATE(5405), 1, + sym_dot_body, + ACTIONS(5874), 2, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4339), 1, - sym_on_quit_phrase, - STATE(5074), 1, - sym_on_stop_phrase, - STATE(5076), 1, - aux_sym_for_statement_repeat1, - STATE(5894), 1, - sym_body, - STATE(4164), 2, + anon_sym_DOT, + STATE(4297), 2, sym_comment, sym_include, - [251043] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [259420] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4280), 1, - sym_on_quit_phrase, - STATE(4633), 1, - sym_on_stop_phrase, - STATE(4641), 1, - aux_sym_for_statement_repeat1, - STATE(6019), 1, - sym_body, - STATE(4165), 2, + STATE(4454), 1, + aux_sym_if_statement_repeat1, + STATE(4692), 1, + sym_else_statement, + STATE(4298), 2, sym_comment, sym_include, - [251078] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2793), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [259446] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4432), 1, - sym_on_quit_phrase, - STATE(4737), 1, - sym_on_stop_phrase, - STATE(4738), 1, - aux_sym_for_statement_repeat1, - STATE(5999), 1, - sym_body, - STATE(4166), 2, + ACTIONS(6182), 1, + aux_sym_else_statement_token1, + STATE(4528), 1, + aux_sym_if_statement_repeat1, + STATE(4692), 1, + sym_else_statement, + STATE(4299), 2, sym_comment, sym_include, - [251113] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2779), 3, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_case_otherwise_branch_token1, + [259474] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2357), 1, - sym__block_terminator, - STATE(4545), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5677), 1, - sym_body, - STATE(4167), 2, + STATE(4300), 2, sym_comment, sym_include, - [251148] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5856), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_variable_tuning_token7, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token3, + aux_sym__function_argument_with_mode_token4, + [259496] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4431), 1, - sym_on_quit_phrase, - STATE(4837), 1, + STATE(4983), 1, sym_on_stop_phrase, - STATE(4838), 1, + STATE(4984), 1, aux_sym_for_statement_repeat1, - STATE(5422), 1, + STATE(5652), 1, sym_body, - STATE(4168), 2, + STATE(4301), 2, sym_comment, sym_include, - [251183] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [259528] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2430), 1, - sym__block_terminator, - STATE(4141), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5786), 1, - sym_body, - STATE(4169), 2, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6114), 1, + sym__terminator, + STATE(4293), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4302), 2, sym_comment, sym_include, - [251218] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [259558] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4545), 1, - aux_sym_repeat_statement_repeat1, - STATE(4986), 1, - sym__block_terminator, - STATE(5189), 1, - sym_repeat_tuning, - STATE(6008), 1, - sym_body, - STATE(4170), 2, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6203), 1, + sym__terminator, + STATE(4429), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4303), 2, sym_comment, sym_include, - [251253] = 11, - ACTIONS(65), 1, + [259588] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(6205), 1, + sym_identifier, + STATE(4741), 1, + sym_object_access, + STATE(5603), 1, + sym_qualified_name, + STATE(4304), 2, + sym_comment, + sym_include, + STATE(6109), 2, + sym_function_call, + sym_new_expression, + [259618] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + STATE(4305), 2, + sym_comment, + sym_include, + ACTIONS(6207), 6, anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5204), 1, + sym__terminator, aux_sym__block_terminator_token1, - STATE(4128), 1, - aux_sym_repeat_statement_repeat1, - STATE(4986), 1, - sym__block_terminator, - STATE(5189), 1, - sym_repeat_tuning, - STATE(6008), 1, - sym_body, - STATE(4171), 2, + anon_sym_COMMA, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [259640] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(4306), 2, sym_comment, sym_include, - [251288] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6209), 6, + sym_identifier, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + [259662] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4292), 1, - sym_on_quit_phrase, - STATE(4612), 1, - sym_on_stop_phrase, - STATE(4614), 1, + STATE(4748), 1, aux_sym_for_statement_repeat1, - STATE(5945), 1, + STATE(4749), 1, + sym_on_stop_phrase, + STATE(5602), 1, sym_body, - STATE(4172), 2, + STATE(4307), 2, + sym_comment, + sym_include, + [259694] = 9, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6211), 1, + sym__terminator, + STATE(4429), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4308), 2, sym_comment, sym_include, - [251323] = 11, + [259724] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(506), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(6215), 1, + aux_sym_field_definition_token1, + STATE(4323), 1, + aux_sym_widget_phrase_repeat1, + STATE(4782), 1, + sym_widget_field, + STATE(4309), 2, + sym_comment, + sym_include, + ACTIONS(6213), 3, sym_identifier, - ACTIONS(2612), 1, aux_sym_input_expression_token2, - STATE(4513), 1, - aux_sym_on_statement_repeat2, - STATE(4994), 1, - sym_do_block, - STATE(5368), 1, - sym_widget_phrase, - STATE(6189), 1, - sym_label, - STATE(4173), 2, + aux_sym_do_block_token1, + [259752] = 9, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(5190), 1, + sym__terminator, + STATE(4271), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4310), 2, sym_comment, sym_include, - [251358] = 11, - ACTIONS(65), 1, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [259782] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6217), 1, + sym_identifier, + STATE(3023), 1, + sym_qualified_name, + STATE(5692), 1, + sym_for_phrase, + STATE(4311), 2, + sym_comment, + sym_include, + ACTIONS(6219), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [259810] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2430), 1, - sym__block_terminator, - STATE(4545), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5786), 1, - sym_body, - STATE(4174), 2, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(6221), 1, + sym__terminator, + STATE(4271), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4312), 2, sym_comment, sym_include, - [251393] = 11, - ACTIONS(65), 1, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [259840] = 10, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4652), 1, + aux_sym_inherits_token1, + ACTIONS(5912), 1, + anon_sym_COLON, + STATE(4331), 1, + aux_sym_interface_statement_repeat1, + STATE(5615), 1, + sym_interface_tuning, + STATE(5620), 1, + sym_inherits, + STATE(6398), 1, + sym_interface_body, + STATE(4313), 2, + sym_comment, + sym_include, + [259872] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4265), 1, - sym_on_quit_phrase, - STATE(4622), 1, - aux_sym_for_statement_repeat1, - STATE(4626), 1, + STATE(4804), 1, sym_on_stop_phrase, - STATE(6013), 1, + STATE(4827), 1, + aux_sym_for_statement_repeat1, + STATE(5697), 1, sym_body, - STATE(4175), 2, + STATE(4314), 2, sym_comment, sym_include, - [251428] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [259904] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5649), 1, - aux_sym__function_argument_with_mode_token4, - STATE(5779), 1, - sym_argument_pass_type, - ACTIONS(5647), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4176), 2, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6104), 1, + sym__terminator, + STATE(4303), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4315), 2, sym_comment, sym_include, - ACTIONS(5083), 3, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token2, - aux_sym_argument_pass_type_token3, - [251457] = 11, + [259934] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(41), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - STATE(2098), 1, - sym_do_block, - STATE(4153), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6159), 1, - sym_label, - STATE(4177), 2, + ACTIONS(6223), 1, + sym__namedot, + STATE(4366), 1, + aux_sym_qualified_name_repeat1, + STATE(4316), 2, sym_comment, sym_include, - [251492] = 11, - ACTIONS(3), 1, + ACTIONS(4087), 4, + sym_identifier, + sym__terminator, + anon_sym_LBRACK, + aux_sym_scope_tuning_token1, + [259960] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(506), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2612), 1, - aux_sym_input_expression_token2, - STATE(4109), 1, - aux_sym_on_statement_repeat2, - STATE(4994), 1, - sym_do_block, - STATE(5368), 1, - sym_widget_phrase, - STATE(6189), 1, - sym_label, - STATE(4178), 2, + ACTIONS(6227), 1, + aux_sym_variable_definition_token2, + STATE(4317), 2, sym_comment, sym_include, - [251527] = 11, - ACTIONS(65), 1, + ACTIONS(6225), 5, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [259984] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6231), 1, + aux_sym_variable_definition_token2, + STATE(4318), 2, + sym_comment, + sym_include, + ACTIONS(6229), 5, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [260008] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4405), 1, - sym_on_quit_phrase, - STATE(4909), 1, - aux_sym_for_statement_repeat1, - STATE(4912), 1, + STATE(4986), 1, sym_on_stop_phrase, - STATE(5523), 1, + STATE(4988), 1, + aux_sym_for_statement_repeat1, + STATE(5648), 1, sym_body, - STATE(4179), 2, + STATE(4319), 2, sym_comment, sym_include, - [251562] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [260040] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5188), 1, + ACTIONS(6100), 1, aux_sym__block_terminator_token1, - STATE(2087), 1, - sym__block_terminator, - STATE(4030), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5384), 1, - sym_body, - STATE(4180), 2, + STATE(5187), 1, + sym_dot_body, + ACTIONS(5874), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(4320), 2, sym_comment, sym_include, - [251597] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5153), 2, + sym__block_terminator, + sym__procedure_terminator, + [260068] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2087), 1, - sym__block_terminator, - STATE(4545), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5384), 1, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(4992), 1, + sym_on_stop_phrase, + STATE(4993), 1, + aux_sym_for_statement_repeat1, + STATE(5655), 1, sym_body, - STATE(4181), 2, + STATE(4321), 2, sym_comment, sym_include, - [251632] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [260100] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4430), 1, - sym_on_quit_phrase, - STATE(4846), 1, + STATE(4998), 1, sym_on_stop_phrase, - STATE(4850), 1, + STATE(4999), 1, aux_sym_for_statement_repeat1, - STATE(5430), 1, + STATE(5669), 1, sym_body, - STATE(4182), 2, + STATE(4322), 2, sym_comment, sym_include, - [251667] = 11, + [260132] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(41), 1, - aux_sym_do_block_token1, - ACTIONS(2608), 1, + ACTIONS(6233), 1, sym_identifier, - ACTIONS(2612), 1, + ACTIONS(6238), 1, + aux_sym_field_definition_token1, + STATE(4782), 1, + sym_widget_field, + ACTIONS(6236), 2, aux_sym_input_expression_token2, - STATE(2188), 1, - sym_do_block, - STATE(4096), 1, - aux_sym_on_statement_repeat2, - STATE(5368), 1, - sym_widget_phrase, - STATE(6159), 1, - sym_label, - STATE(4183), 2, + aux_sym_do_block_token1, + STATE(4323), 3, sym_comment, sym_include, - [251702] = 11, - ACTIONS(65), 1, + aux_sym_widget_phrase_repeat1, + [260160] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(6241), 1, + sym__terminator, + STATE(4312), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4324), 2, + sym_comment, + sym_include, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [260190] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(6245), 1, + aux_sym_do_tuning_token1, + STATE(4926), 1, + sym_do_tuning, + ACTIONS(6243), 3, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, aux_sym_on_error_phrase_token1, - STATE(4425), 1, - sym_on_quit_phrase, - STATE(4852), 1, - sym_on_stop_phrase, - STATE(4854), 1, - aux_sym_for_statement_repeat1, - STATE(5431), 1, - sym_body, - STATE(4184), 2, + aux_sym_stop_after_phrase_token1, + STATE(4325), 3, sym_comment, sym_include, - [251737] = 11, - ACTIONS(65), 1, + aux_sym_do_block_repeat1, + [260216] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6248), 1, + sym__terminator, + STATE(4429), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4326), 2, + sym_comment, + sym_include, + [260246] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - STATE(4213), 1, - sym_on_quit_phrase, - STATE(4592), 1, - sym_on_stop_phrase, - STATE(4597), 1, - aux_sym_for_statement_repeat1, - STATE(5961), 1, + STATE(5688), 1, sym_body, - STATE(4185), 2, + STATE(4327), 2, sym_comment, sym_include, - [251772] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(6131), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [260274] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6111), 1, - sym__namedot, - STATE(4186), 2, + STATE(4328), 2, sym_comment, sym_include, - ACTIONS(132), 6, + ACTIONS(150), 6, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_variable_tuning_token7, aux_sym_argument_pass_type_token1, aux_sym_argument_pass_type_token3, aux_sym__function_argument_with_mode_token4, - [251797] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [260296] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5117), 1, - aux_sym__block_terminator_token1, - STATE(1752), 1, - sym__block_terminator, - STATE(4147), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5414), 1, - sym_body, - STATE(4187), 2, - sym_comment, - sym_include, - [251832] = 9, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6113), 1, - aux_sym__block_terminator_token1, - ACTIONS(6115), 1, - aux_sym_access_tuning_token1, - STATE(5329), 1, - sym_dot_body, - ACTIONS(5697), 2, - anon_sym_COLON, - anon_sym_DOT, - STATE(1947), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(4188), 2, + STATE(4329), 2, sym_comment, sym_include, - [251863] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6250), 6, + anon_sym_COLON, + sym__terminator, + aux_sym__block_terminator_token1, + anon_sym_COMMA, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [260318] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - STATE(1943), 1, - sym__block_terminator, - STATE(4545), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5795), 1, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + STATE(6018), 1, sym_body, - STATE(4189), 2, + STATE(4330), 2, sym_comment, sym_include, - [251898] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(6017), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [260346] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(4652), 1, + aux_sym_inherits_token1, + ACTIONS(5912), 1, anon_sym_COLON, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - ACTIONS(5117), 1, - aux_sym__block_terminator_token1, - STATE(1752), 1, - sym__block_terminator, - STATE(4545), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5414), 1, - sym_body, - STATE(4190), 2, + STATE(4583), 1, + aux_sym_interface_statement_repeat1, + STATE(5615), 1, + sym_interface_tuning, + STATE(5620), 1, + sym_inherits, + STATE(6381), 1, + sym_interface_body, + STATE(4331), 2, sym_comment, sym_include, - [251933] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [260378] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6117), 1, - aux_sym__block_terminator_token1, - ACTIONS(6119), 1, - aux_sym_access_tuning_token1, - STATE(5210), 1, - sym_dot_body, - ACTIONS(5697), 2, - anon_sym_COLON, - anon_sym_DOT, - STATE(1747), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(4191), 2, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(6241), 1, + sym__terminator, + STATE(4271), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4332), 2, sym_comment, sym_include, - [251964] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [260408] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(6252), 1, anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4394), 1, - sym_on_quit_phrase, - STATE(4949), 1, - aux_sym_for_statement_repeat1, - STATE(4953), 1, - sym_on_stop_phrase, - STATE(5632), 1, - sym_body, - STATE(4192), 2, + STATE(4333), 3, sym_comment, sym_include, - [251999] = 11, - ACTIONS(65), 1, + aux_sym_data_relation_repeat1, + ACTIONS(6144), 4, + sym__terminator, + anon_sym_RPAREN, + aux_sym_data_relation_token1, + aux_sym_data_relation_token2, + [260432] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - ACTIONS(5113), 1, - aux_sym_repeat_tuning_token1, - STATE(1943), 1, - sym__block_terminator, - STATE(4136), 1, - aux_sym_repeat_statement_repeat1, - STATE(5189), 1, - sym_repeat_tuning, - STATE(5795), 1, - sym_body, - STATE(4193), 2, + ACTIONS(6215), 1, + aux_sym_field_definition_token1, + STATE(4309), 1, + aux_sym_widget_phrase_repeat1, + STATE(4782), 1, + sym_widget_field, + STATE(4334), 2, sym_comment, sym_include, - [252034] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6255), 3, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + [260460] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5994), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4417), 1, - sym_on_quit_phrase, - STATE(4878), 1, + STATE(5002), 1, sym_on_stop_phrase, - STATE(4880), 1, + STATE(5004), 1, aux_sym_for_statement_repeat1, - STATE(5398), 1, + STATE(5678), 1, sym_body, - STATE(4194), 2, + STATE(4335), 2, sym_comment, sym_include, - [252069] = 11, - ACTIONS(65), 1, + [260492] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4858), 1, + sym__namedot, + STATE(3375), 1, + aux_sym_qualified_name_repeat1, + STATE(4336), 2, + sym_comment, + sym_include, + ACTIONS(4150), 4, + anon_sym_COLON, + anon_sym_DOT, + aux_sym__block_terminator_token1, + anon_sym_LPAREN, + [260518] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(4652), 1, + aux_sym_inherits_token1, + ACTIONS(5912), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4424), 1, - sym_on_quit_phrase, - STATE(4860), 1, - sym_on_stop_phrase, - STATE(4861), 1, - aux_sym_for_statement_repeat1, - STATE(5436), 1, - sym_body, - STATE(4195), 2, + STATE(4583), 1, + aux_sym_interface_statement_repeat1, + STATE(5615), 1, + sym_interface_tuning, + STATE(5620), 1, + sym_inherits, + STATE(6221), 1, + sym_interface_body, + STATE(4337), 2, sym_comment, sym_include, - [252104] = 11, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [260550] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(4652), 1, + aux_sym_inherits_token1, + ACTIONS(5912), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4233), 1, - sym_on_quit_phrase, - STATE(4656), 1, - sym_on_stop_phrase, - STATE(4664), 1, - aux_sym_for_statement_repeat1, - STATE(5408), 1, - sym_body, - STATE(4196), 2, + STATE(4583), 1, + aux_sym_interface_statement_repeat1, + STATE(5615), 1, + sym_interface_tuning, + STATE(5620), 1, + sym_inherits, + STATE(6531), 1, + sym_interface_body, + STATE(4338), 2, sym_comment, sym_include, - [252139] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [260582] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4584), 1, - sym_on_stop_phrase, - STATE(4652), 1, + STATE(4990), 1, aux_sym_for_statement_repeat1, - STATE(5378), 1, + STATE(5000), 1, + sym_on_stop_phrase, + STATE(6093), 1, sym_body, - STATE(4197), 2, + STATE(4339), 2, sym_comment, sym_include, - [252171] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [260614] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(6123), 1, - sym__terminator, - STATE(4384), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4198), 2, + STATE(4340), 2, sym_comment, sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [252201] = 8, - ACTIONS(3), 1, + ACTIONS(6257), 6, + anon_sym_COLON, + sym__terminator, + aux_sym__block_terminator_token1, + anon_sym_COMMA, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [260636] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6125), 1, - sym_identifier, - ACTIONS(6130), 1, - aux_sym_field_definition_token1, - STATE(4765), 1, - sym_widget_field, - ACTIONS(6128), 2, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - STATE(4199), 3, + ACTIONS(6042), 1, + aux_sym__block_terminator_token1, + STATE(5266), 1, + sym_dot_body, + ACTIONS(5874), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(2368), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(4341), 2, sym_comment, sym_include, - aux_sym_widget_phrase_repeat1, - [252229] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [260664] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4797), 1, - aux_sym_variable_definition_token2, - STATE(4200), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(5006), 1, + sym_on_stop_phrase, + STATE(5012), 1, + aux_sym_for_statement_repeat1, + STATE(5698), 1, + sym_body, + STATE(4342), 2, sym_comment, sym_include, - ACTIONS(4795), 5, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [252253] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [260696] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4201), 2, + STATE(4343), 2, sym_comment, sym_include, - ACTIONS(6133), 6, + ACTIONS(6259), 6, anon_sym_COLON, sym__terminator, aux_sym__block_terminator_token1, anon_sym_COMMA, aux_sym_repeat_tuning_token1, aux_sym_on_error_phrase_token1, - [252275] = 5, - ACTIONS(65), 1, + [260718] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4202), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(6261), 1, + sym_identifier, + STATE(5108), 1, + sym_object_access, + STATE(6021), 1, + sym_qualified_name, + STATE(4344), 2, sym_comment, sym_include, - ACTIONS(6135), 6, - anon_sym_COLON, - sym__terminator, - aux_sym__block_terminator_token1, - anon_sym_COMMA, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - [252297] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(6109), 2, + sym_function_call, + sym_new_expression, + [260748] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4784), 1, + STATE(5018), 1, aux_sym_for_statement_repeat1, - STATE(4787), 1, + STATE(5019), 1, sym_on_stop_phrase, - STATE(5506), 1, + STATE(5747), 1, sym_body, - STATE(4203), 2, + STATE(4345), 2, sym_comment, sym_include, - [252329] = 9, - ACTIONS(65), 1, + [260780] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6093), 1, - sym__terminator, - STATE(4245), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4204), 2, + ACTIONS(6263), 1, + sym__namedot, + STATE(4346), 3, sym_comment, sym_include, - [252359] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_qualified_name_repeat1, + ACTIONS(110), 4, + sym_identifier, + sym__terminator, + anon_sym_LBRACK, + aux_sym_scope_tuning_token1, + [260804] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, + ACTIONS(5864), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6137), 1, + ACTIONS(6266), 1, sym__terminator, - STATE(4294), 1, + STATE(4429), 1, aux_sym_query_definition_repeat1, - STATE(5004), 1, + STATE(4830), 1, sym_query_definition_tuning, - ACTIONS(5768), 2, + ACTIONS(5866), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4205), 2, + STATE(4347), 2, sym_comment, sym_include, - [252389] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [260834] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, + ACTIONS(5128), 1, + sym__terminator, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - ACTIONS(5147), 1, + ACTIONS(5136), 1, aux_sym_index_definition_token1, - ACTIONS(5214), 1, - sym__terminator, - STATE(4272), 1, + STATE(4399), 1, aux_sym_temp_table_definition_repeat2, - STATE(4206), 2, + STATE(4348), 2, sym_comment, sym_include, - STATE(5095), 2, + STATE(5184), 2, sym_field_definition, sym_index_definition, - [252419] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [260864] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(4592), 1, - sym_on_stop_phrase, - STATE(4597), 1, - aux_sym_for_statement_repeat1, - STATE(5961), 1, - sym_body, - STATE(4207), 2, - sym_comment, - sym_include, - [252451] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - STATE(6024), 1, + STATE(5774), 1, sym_body, - STATE(4208), 2, + STATE(4349), 2, sym_comment, sym_include, - STATE(5824), 3, + STATE(6118), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [252479] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [260892] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, + ACTIONS(5128), 1, + sym__terminator, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - ACTIONS(5147), 1, + ACTIONS(5136), 1, aux_sym_index_definition_token1, - ACTIONS(5214), 1, - sym__terminator, - STATE(4384), 1, + STATE(4271), 1, aux_sym_temp_table_definition_repeat2, - STATE(4209), 2, + STATE(4350), 2, sym_comment, sym_include, - STATE(5095), 2, + STATE(5184), 2, sym_field_definition, sym_index_definition, - [252509] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [260922] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, + ACTIONS(5864), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6139), 1, + ACTIONS(6268), 1, sym__terminator, - STATE(4294), 1, + STATE(4426), 1, aux_sym_query_definition_repeat1, - STATE(5004), 1, + STATE(4830), 1, sym_query_definition_tuning, - ACTIONS(5768), 2, + ACTIONS(5866), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4210), 2, + STATE(4351), 2, sym_comment, sym_include, - [252539] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [260952] = 9, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - STATE(5924), 1, - sym_body, - STATE(4211), 2, - sym_comment, - sym_include, - STATE(5851), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [252567] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(4821), 1, - aux_sym_for_statement_repeat1, - STATE(4842), 1, - sym_on_stop_phrase, - STATE(5534), 1, - sym_body, - STATE(4212), 2, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(5222), 1, + sym__terminator, + STATE(4355), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4352), 2, sym_comment, sym_include, - [252599] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [260982] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4622), 1, - aux_sym_for_statement_repeat1, - STATE(4626), 1, + STATE(5024), 1, sym_on_stop_phrase, - STATE(6013), 1, + STATE(5038), 1, + aux_sym_for_statement_repeat1, + STATE(5798), 1, sym_body, - STATE(4213), 2, + STATE(4353), 2, sym_comment, sym_include, - [252631] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [261014] = 9, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6143), 1, - aux_sym_variable_definition_token2, - STATE(4214), 2, - sym_comment, - sym_include, - ACTIONS(6141), 5, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [252655] = 9, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6145), 1, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(5202), 1, sym__terminator, - STATE(4210), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4215), 2, + STATE(4332), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4354), 2, sym_comment, sym_include, - [252685] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [261044] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6147), 1, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(5202), 1, sym__terminator, - STATE(4294), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4216), 2, + STATE(4271), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4355), 2, sym_comment, sym_include, - [252715] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [261074] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - STATE(6015), 1, + STATE(5523), 1, sym_body, - STATE(4217), 2, + STATE(4356), 2, sym_comment, sym_include, - STATE(5806), 3, + STATE(6001), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [252743] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(4218), 2, - sym_comment, - sym_include, - ACTIONS(6149), 6, - sym_identifier, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - [252765] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [261102] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6153), 1, + ACTIONS(6272), 1, aux_sym_variable_definition_token2, - STATE(4219), 2, + STATE(4357), 2, sym_comment, sym_include, - ACTIONS(6151), 5, + ACTIONS(6270), 5, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, - [252789] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [261126] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6113), 1, - aux_sym__block_terminator_token1, - STATE(5353), 1, - sym_dot_body, - ACTIONS(5697), 2, + ACTIONS(3815), 1, anon_sym_COLON, - anon_sym_DOT, - STATE(1979), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(4220), 2, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + STATE(5863), 1, + sym_body, + STATE(4358), 2, sym_comment, sym_include, - [252817] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(6101), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [261154] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4772), 1, - aux_sym_variable_definition_token2, - STATE(4221), 2, - sym_comment, - sym_include, - ACTIONS(4770), 5, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [252841] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6157), 1, + ACTIONS(6276), 1, aux_sym_variable_definition_token2, - STATE(4222), 2, + STATE(4359), 2, sym_comment, sym_include, - ACTIONS(6155), 5, + ACTIONS(6274), 5, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, - [252865] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [261178] = 10, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(820), 1, - sym__namecolon, - ACTIONS(6159), 1, - anon_sym_COLON, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(3384), 1, - aux_sym_object_access_repeat1, - STATE(5351), 1, - sym_case_body, - STATE(4223), 2, - sym_comment, - sym_include, - [252897] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(4652), 1, + aux_sym_inherits_token1, + ACTIONS(5912), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(5012), 1, - aux_sym_for_statement_repeat1, - STATE(5017), 1, - sym_on_stop_phrase, - STATE(5608), 1, - sym_body, - STATE(4224), 2, + STATE(4444), 1, + aux_sym_interface_statement_repeat1, + STATE(5615), 1, + sym_interface_tuning, + STATE(5620), 1, + sym_inherits, + STATE(6242), 1, + sym_interface_body, + STATE(4360), 2, sym_comment, sym_include, - [252929] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [261210] = 9, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6163), 1, - aux_sym_variable_definition_token2, - STATE(4225), 2, - sym_comment, - sym_include, - ACTIONS(6161), 5, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [252953] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4793), 1, - aux_sym_variable_definition_token2, - STATE(4226), 2, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(6278), 1, + sym__terminator, + STATE(4494), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4361), 2, sym_comment, sym_include, - ACTIONS(4791), 5, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [252977] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [261240] = 9, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - STATE(5834), 1, - sym_body, - STATE(4227), 2, - sym_comment, - sym_include, - STATE(5887), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [253005] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6022), 1, + ACTIONS(5924), 1, aux_sym__block_terminator_token1, - STATE(5168), 1, + STATE(2271), 1, + sym__function_terminator, + STATE(2367), 1, + sym__block_terminator, + STATE(5246), 1, sym_dot_body, - ACTIONS(5697), 2, + ACTIONS(5874), 2, anon_sym_COLON, anon_sym_DOT, - STATE(2426), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(4228), 2, - sym_comment, - sym_include, - [253033] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6167), 1, - aux_sym_variable_definition_token2, - STATE(4229), 2, - sym_comment, - sym_include, - ACTIONS(6165), 5, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [253057] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6171), 1, - aux_sym_variable_definition_token2, - STATE(4230), 2, + STATE(4362), 2, sym_comment, sym_include, - ACTIONS(6169), 5, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [253081] = 6, - ACTIONS(65), 1, + [261270] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6175), 1, - aux_sym_variable_definition_token2, - STATE(4231), 2, + STATE(4363), 2, sym_comment, sym_include, - ACTIONS(6173), 5, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [253105] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2847), 6, + sym_identifier, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_access_tuning_token4, + aux_sym_access_tuning_token5, + [261292] = 10, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6177), 1, - aux_sym_else_statement_token1, - STATE(4240), 1, - aux_sym_if_statement_repeat1, - STATE(4607), 1, - sym_else_statement, - STATE(4232), 2, - sym_comment, - sym_include, - ACTIONS(2743), 3, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_case_otherwise_branch_token1, - [253133] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(5037), 1, + STATE(4852), 1, aux_sym_for_statement_repeat1, - STATE(5038), 1, + STATE(4855), 1, sym_on_stop_phrase, - STATE(5689), 1, + STATE(5707), 1, sym_body, - STATE(4233), 2, + STATE(4364), 2, sym_comment, sym_include, - [253165] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [261324] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4633), 1, - sym_on_stop_phrase, - STATE(4641), 1, + STATE(5053), 1, aux_sym_for_statement_repeat1, - STATE(6019), 1, + STATE(5054), 1, + sym_on_stop_phrase, + STATE(5939), 1, sym_body, - STATE(4234), 2, + STATE(4365), 2, sym_comment, sym_include, - [253197] = 6, - ACTIONS(65), 1, + [261356] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6182), 1, - aux_sym_variable_definition_token2, - STATE(4235), 2, + ACTIONS(6223), 1, + sym__namedot, + STATE(4346), 1, + aux_sym_qualified_name_repeat1, + STATE(4366), 2, sym_comment, sym_include, - ACTIONS(6180), 5, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [253221] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(106), 4, + sym_identifier, + sym__terminator, + anon_sym_LBRACK, + aux_sym_scope_tuning_token1, + [261382] = 10, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6184), 1, - aux_sym_else_statement_token1, - STATE(4232), 1, - aux_sym_if_statement_repeat1, - STATE(4607), 1, - sym_else_statement, - STATE(4236), 2, - sym_comment, - sym_include, - ACTIONS(2767), 3, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_case_otherwise_branch_token1, - [253249] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4650), 1, - aux_sym_inherits_token1, - ACTIONS(5675), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(4480), 1, - aux_sym_interface_statement_repeat1, - STATE(5463), 1, - sym_interface_tuning, - STATE(5465), 1, - sym_inherits, - STATE(6206), 1, - sym_interface_body, - STATE(4237), 2, - sym_comment, - sym_include, - [253281] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6187), 1, - aux_sym_else_statement_token1, - STATE(4232), 1, - aux_sym_if_statement_repeat1, - STATE(4607), 1, - sym_else_statement, - STATE(4238), 2, - sym_comment, - sym_include, - ACTIONS(2769), 3, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_case_otherwise_branch_token1, - [253309] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6191), 1, - sym__terminator, - STATE(4393), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4239), 2, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(4883), 1, + aux_sym_for_statement_repeat1, + STATE(4889), 1, + sym_on_stop_phrase, + STATE(5458), 1, + sym_body, + STATE(4367), 2, sym_comment, sym_include, - [253339] = 7, - ACTIONS(65), 1, + [261414] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6193), 1, - aux_sym_else_statement_token1, - STATE(4607), 1, - sym_else_statement, - ACTIONS(2789), 3, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_case_otherwise_branch_token1, - STATE(4240), 3, + STATE(4368), 2, sym_comment, sym_include, - aux_sym_if_statement_repeat1, - [253365] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2837), 6, + sym_identifier, + aux_sym_dataset_expression_token1, + aux_sym_scope_tuning_token1, + aux_sym__function_argument_with_mode_token1, + aux_sym__function_argument_with_mode_token2, + aux_sym__function_argument_with_mode_token3, + [261436] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6196), 1, - sym__terminator, - STATE(4358), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4241), 2, - sym_comment, - sym_include, - [253395] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - STATE(4602), 1, - aux_sym_for_statement_repeat1, - STATE(4603), 1, - sym_on_stop_phrase, - STATE(5392), 1, + STATE(5717), 1, sym_body, - STATE(4242), 2, + STATE(4369), 2, sym_comment, sym_include, - [253427] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5881), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [261464] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6198), 1, - sym__terminator, - STATE(4294), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4243), 2, + ACTIONS(4652), 1, + aux_sym_inherits_token1, + ACTIONS(5912), 1, + anon_sym_COLON, + STATE(4337), 1, + aux_sym_interface_statement_repeat1, + STATE(5615), 1, + sym_interface_tuning, + STATE(5620), 1, + sym_inherits, + STATE(6583), 1, + sym_interface_body, + STATE(4370), 2, sym_comment, sym_include, - [253457] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [261496] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - STATE(5837), 1, + STATE(6072), 1, sym_body, - STATE(4244), 2, + STATE(4371), 2, sym_comment, sym_include, - STATE(5838), 3, + STATE(6069), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [253485] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [261524] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6200), 1, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(5222), 1, sym__terminator, - STATE(4294), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4245), 2, + STATE(4271), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4372), 2, sym_comment, sym_include, - [253515] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [261554] = 10, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6204), 1, - aux_sym_variable_definition_token2, - STATE(4246), 2, - sym_comment, - sym_include, - ACTIONS(6202), 5, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [253539] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6208), 1, - aux_sym_variable_definition_token2, - STATE(4247), 2, - sym_comment, - sym_include, - ACTIONS(6206), 5, + ACTIONS(6280), 1, aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [253563] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6212), 1, - aux_sym_do_tuning_token1, - STATE(4810), 1, - sym_do_tuning, - ACTIONS(6210), 3, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - STATE(4248), 3, + ACTIONS(6282), 1, + aux_sym_when_expression_token1, + ACTIONS(6284), 1, + aux_sym_case_otherwise_branch_token1, + STATE(4629), 1, + aux_sym_case_body_repeat1, + STATE(5280), 1, + sym_case_when_branch, + STATE(6219), 1, + sym_case_otherwise_branch, + STATE(4373), 2, sym_comment, sym_include, - aux_sym_do_block_repeat1, - [253589] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [261586] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, + ACTIONS(5864), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6215), 1, + ACTIONS(6286), 1, sym__terminator, - STATE(4243), 1, + STATE(4429), 1, aux_sym_query_definition_repeat1, - STATE(5004), 1, + STATE(4830), 1, sym_query_definition_tuning, - ACTIONS(5768), 2, + ACTIONS(5866), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4249), 2, + STATE(4374), 2, sym_comment, sym_include, - [253619] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [261616] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, + ACTIONS(5864), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6217), 1, + ACTIONS(6288), 1, sym__terminator, - STATE(4294), 1, + STATE(4429), 1, aux_sym_query_definition_repeat1, - STATE(5004), 1, + STATE(4830), 1, sym_query_definition_tuning, - ACTIONS(5768), 2, + ACTIONS(5866), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4250), 2, + STATE(4375), 2, sym_comment, sym_include, - [253649] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [261646] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(5855), 1, + STATE(4893), 1, + aux_sym_for_statement_repeat1, + STATE(4896), 1, + sym_on_stop_phrase, + STATE(5569), 1, sym_body, - STATE(4251), 2, + STATE(4376), 2, sym_comment, sym_include, - STATE(5527), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [253677] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [261678] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6219), 1, - sym__terminator, - STATE(4294), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4252), 2, + ACTIONS(6292), 1, + aux_sym_variable_definition_token2, + STATE(4377), 2, sym_comment, sym_include, - [253707] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6290), 5, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [261702] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(820), 1, - sym__namecolon, - ACTIONS(6159), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(3384), 1, - aux_sym_object_access_repeat1, - STATE(5207), 1, - sym_case_body, - STATE(4253), 2, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + STATE(6008), 1, + sym_body, + STATE(4378), 2, sym_comment, sym_include, - [253739] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(6078), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [261730] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6223), 1, + ACTIONS(6296), 1, aux_sym_variable_definition_token2, - STATE(4254), 2, + STATE(4379), 2, sym_comment, sym_include, - ACTIONS(6221), 5, + ACTIONS(6294), 5, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, - [253763] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6225), 1, - sym__terminator, - STATE(4216), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4255), 2, - sym_comment, - sym_include, - [253793] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [261754] = 9, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6227), 1, - sym__terminator, - STATE(4294), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4256), 2, - sym_comment, - sym_include, - [253823] = 8, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6231), 1, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - STATE(4199), 1, - aux_sym_widget_phrase_repeat1, - STATE(4765), 1, - sym_widget_field, - STATE(4257), 2, - sym_comment, - sym_include, - ACTIONS(6229), 3, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - [253851] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6233), 1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(5226), 1, sym__terminator, - STATE(4250), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4258), 2, - sym_comment, - sym_include, - [253881] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(820), 1, - sym__namecolon, - ACTIONS(6159), 1, - anon_sym_COLON, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(3384), 1, - aux_sym_object_access_repeat1, - STATE(5263), 1, - sym_case_body, - STATE(4259), 2, + STATE(4441), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4380), 2, sym_comment, sym_include, - [253913] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [261784] = 9, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6032), 1, - sym__terminator, - STATE(4252), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4260), 2, - sym_comment, - sym_include, - [253943] = 9, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5821), 1, + ACTIONS(5876), 1, aux_sym__block_terminator_token1, - STATE(1944), 1, + STATE(1604), 1, sym__function_terminator, - STATE(1980), 1, + STATE(1679), 1, sym__block_terminator, - STATE(5324), 1, + STATE(5249), 1, sym_dot_body, - ACTIONS(5697), 2, + ACTIONS(5874), 2, anon_sym_COLON, anon_sym_DOT, - STATE(4261), 2, + STATE(4381), 2, sym_comment, sym_include, - [253973] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [261814] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(5907), 1, + STATE(4909), 1, + sym_on_stop_phrase, + STATE(5157), 1, + aux_sym_for_statement_repeat1, + STATE(5812), 1, sym_body, - STATE(4262), 2, + STATE(4382), 2, sym_comment, sym_include, - STATE(5561), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [254001] = 5, - ACTIONS(65), 1, + [261846] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6300), 1, + aux_sym_variable_definition_token2, + STATE(4383), 2, + sym_comment, + sym_include, + ACTIONS(6298), 5, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [261870] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4263), 2, + STATE(4384), 2, sym_comment, sym_include, - ACTIONS(6235), 6, + ACTIONS(6302), 6, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_variable_tuning_token7, aux_sym_argument_pass_type_token1, aux_sym_argument_pass_type_token3, aux_sym__function_argument_with_mode_token4, - [254023] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [261892] = 10, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6237), 1, - sym__terminator, - STATE(4294), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4264), 2, - sym_comment, - sym_include, - [254053] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4666), 1, - aux_sym_for_statement_repeat1, - STATE(4669), 1, + STATE(4833), 1, sym_on_stop_phrase, - STATE(6012), 1, + STATE(4834), 1, + aux_sym_for_statement_repeat1, + STATE(5892), 1, sym_body, - STATE(4265), 2, + STATE(4385), 2, sym_comment, sym_include, - [254085] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [261924] = 10, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4232), 1, - aux_sym_if_statement_repeat1, - STATE(4607), 1, - sym_else_statement, - STATE(4266), 2, - sym_comment, - sym_include, - ACTIONS(2818), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [254111] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4267), 2, - sym_comment, - sym_include, - ACTIONS(6239), 6, + ACTIONS(3815), 1, anon_sym_COLON, - sym__terminator, - aux_sym__block_terminator_token1, + ACTIONS(3817), 1, anon_sym_COMMA, - aux_sym_repeat_tuning_token1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - [254133] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(4836), 1, + sym_on_stop_phrase, + STATE(4837), 1, + aux_sym_for_statement_repeat1, + STATE(5886), 1, + sym_body, + STATE(4386), 2, + sym_comment, + sym_include, + [261956] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4268), 2, + ACTIONS(6306), 1, + aux_sym_variable_definition_token2, + STATE(4387), 2, sym_comment, sym_include, - ACTIONS(6241), 6, - anon_sym_COLON, - sym__terminator, + ACTIONS(6304), 5, aux_sym__block_terminator_token1, - anon_sym_COMMA, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - [254155] = 5, - ACTIONS(65), 1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [261980] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4269), 2, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(6308), 1, + sym_identifier, + STATE(4930), 1, + sym_object_access, + STATE(6064), 1, + sym_qualified_name, + STATE(4388), 2, sym_comment, sym_include, - ACTIONS(6243), 6, - anon_sym_COLON, - sym__terminator, - aux_sym__block_terminator_token1, - anon_sym_COMMA, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - [254177] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(6109), 2, + sym_function_call, + sym_new_expression, + [262010] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4621), 1, + STATE(4838), 1, sym_on_stop_phrase, - STATE(4623), 1, + STATE(4839), 1, aux_sym_for_statement_repeat1, - STATE(5756), 1, + STATE(5878), 1, sym_body, - STATE(4270), 2, + STATE(4389), 2, sym_comment, sym_include, - [254209] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [262042] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - ACTIONS(5147), 1, + ACTIONS(5136), 1, aux_sym_index_definition_token1, ACTIONS(5226), 1, sym__terminator, - STATE(4322), 1, + STATE(4271), 1, aux_sym_temp_table_definition_repeat2, - STATE(4271), 2, + STATE(4390), 2, sym_comment, sym_include, - STATE(5095), 2, + STATE(5184), 2, sym_field_definition, sym_index_definition, - [254239] = 9, - ACTIONS(65), 1, + [262072] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4793), 1, + aux_sym_variable_definition_token2, + STATE(4391), 2, + sym_comment, + sym_include, + ACTIONS(4791), 5, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [262096] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - ACTIONS(5147), 1, + ACTIONS(5136), 1, aux_sym_index_definition_token1, - ACTIONS(5271), 1, + ACTIONS(5321), 1, sym__terminator, - STATE(4384), 1, + STATE(4271), 1, aux_sym_temp_table_definition_repeat2, - STATE(4272), 2, + STATE(4392), 2, sym_comment, sym_include, - STATE(5095), 2, + STATE(5184), 2, sym_field_definition, sym_index_definition, - [254269] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [262126] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - ACTIONS(5147), 1, + ACTIONS(5136), 1, aux_sym_index_definition_token1, - ACTIONS(5226), 1, + ACTIONS(5321), 1, sym__terminator, - STATE(4384), 1, + STATE(4524), 1, aux_sym_temp_table_definition_repeat2, - STATE(4273), 2, + STATE(4393), 2, sym_comment, sym_include, - STATE(5095), 2, + STATE(5184), 2, sym_field_definition, sym_index_definition, - [254299] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [262156] = 10, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6089), 1, - sym__terminator, - STATE(4256), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4274), 2, - sym_comment, - sym_include, - [254329] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4886), 1, + STATE(4636), 1, sym_on_stop_phrase, - STATE(4891), 1, + STATE(4646), 1, aux_sym_for_statement_repeat1, - STATE(5981), 1, + STATE(5508), 1, sym_body, - STATE(4275), 2, + STATE(4394), 2, sym_comment, sym_include, - [254361] = 10, - ACTIONS(65), 1, + [262188] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(6310), 1, + sym_identifier, + STATE(3294), 1, + sym_function_call, + STATE(3371), 1, + sym_qualified_name, + STATE(5641), 1, + sym_object_access, + STATE(5673), 1, + sym_new_expression, + STATE(4395), 2, + sym_comment, + sym_include, + [262220] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - STATE(4612), 1, - sym_on_stop_phrase, - STATE(4614), 1, - aux_sym_for_statement_repeat1, - STATE(5945), 1, + STATE(5589), 1, sym_body, - STATE(4276), 2, + STATE(4396), 2, sym_comment, sym_include, - [254393] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5976), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [262248] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6247), 1, - aux_sym_variable_definition_token2, - STATE(4277), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + STATE(6115), 1, + sym_body, + STATE(4397), 2, sym_comment, sym_include, - ACTIONS(6245), 5, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [254417] = 9, - ACTIONS(65), 1, + STATE(6047), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [262276] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(5972), 1, + sym_argument_pass_type, + ACTIONS(5846), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4398), 2, + sym_comment, + sym_include, + ACTIONS(4854), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + [262302] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6249), 1, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(5264), 1, sym__terminator, - STATE(4294), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4278), 2, + STATE(4271), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4399), 2, sym_comment, sym_include, - [254447] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [262332] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - ACTIONS(5147), 1, + ACTIONS(5136), 1, aux_sym_index_definition_token1, - ACTIONS(5271), 1, + ACTIONS(5264), 1, sym__terminator, - STATE(4352), 1, + STATE(4450), 1, aux_sym_temp_table_definition_repeat2, - STATE(4279), 2, + STATE(4400), 2, sym_comment, sym_include, - STATE(5095), 2, + STATE(5184), 2, sym_field_definition, sym_index_definition, - [254477] = 10, - ACTIONS(65), 1, + [262362] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + aux_sym_variable_definition_token2, + STATE(4401), 2, + sym_comment, + sym_include, + ACTIONS(6312), 5, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [262386] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4683), 1, - aux_sym_for_statement_repeat1, - STATE(4687), 1, + STATE(4744), 1, sym_on_stop_phrase, - STATE(5996), 1, + STATE(4899), 1, + aux_sym_for_statement_repeat1, + STATE(5981), 1, sym_body, - STATE(4280), 2, + STATE(4402), 2, sym_comment, sym_include, - [254509] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [262418] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6117), 1, - aux_sym__block_terminator_token1, - STATE(5196), 1, - sym_dot_body, - ACTIONS(5697), 2, - anon_sym_COLON, - anon_sym_DOT, - STATE(1721), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(4281), 2, - sym_comment, - sym_include, - [254537] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - STATE(6017), 1, + STATE(6096), 1, sym_body, - STATE(4282), 2, + STATE(4403), 2, sym_comment, sym_include, - STATE(5587), 3, + STATE(5631), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [254565] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [262446] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4627), 1, + STATE(5123), 1, sym_on_stop_phrase, - STATE(4628), 1, + STATE(5128), 1, aux_sym_for_statement_repeat1, - STATE(5753), 1, + STATE(5891), 1, sym_body, - STATE(4283), 2, + STATE(4404), 2, sym_comment, sym_include, - [254597] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [262478] = 10, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4232), 1, - aux_sym_if_statement_repeat1, - STATE(4607), 1, - sym_else_statement, - STATE(4284), 2, - sym_comment, - sym_include, - ACTIONS(2818), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [254623] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4629), 1, + STATE(5130), 1, sym_on_stop_phrase, - STATE(4632), 1, + STATE(5132), 1, aux_sym_for_statement_repeat1, - STATE(5752), 1, + STATE(5887), 1, sym_body, - STATE(4285), 2, + STATE(4405), 2, sym_comment, sym_include, - [254655] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [262510] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6251), 1, - sym__terminator, - STATE(4294), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4286), 2, + ACTIONS(6318), 1, + aux_sym_variable_definition_token2, + STATE(4406), 2, sym_comment, sym_include, - [254685] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6316), 5, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [262534] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4965), 1, - aux_sym_for_statement_repeat1, - STATE(4967), 1, + STATE(5135), 1, sym_on_stop_phrase, - STATE(6005), 1, + STATE(5145), 1, + aux_sym_for_statement_repeat1, + STATE(5885), 1, sym_body, - STATE(4287), 2, + STATE(4407), 2, sym_comment, sym_include, - [254717] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [262566] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5805), 1, - aux_sym__block_terminator_token1, - STATE(1679), 1, - sym__function_terminator, - STATE(1720), 1, - sym__block_terminator, - STATE(5160), 1, - sym_dot_body, - ACTIONS(5697), 2, + ACTIONS(4652), 1, + aux_sym_inherits_token1, + ACTIONS(5912), 1, anon_sym_COLON, - anon_sym_DOT, - STATE(4288), 2, + STATE(4437), 1, + aux_sym_interface_statement_repeat1, + STATE(5615), 1, + sym_interface_tuning, + STATE(5620), 1, + sym_inherits, + STATE(6240), 1, + sym_interface_body, + STATE(4408), 2, sym_comment, sym_include, - [254747] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [262598] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6253), 1, - sym__terminator, - STATE(4294), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4289), 2, + ACTIONS(6322), 1, + aux_sym_variable_definition_token2, + STATE(4409), 2, sym_comment, sym_include, - [254777] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6320), 5, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [262622] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, + ACTIONS(5864), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6255), 1, + ACTIONS(6324), 1, sym__terminator, - STATE(4294), 1, + STATE(4429), 1, aux_sym_query_definition_repeat1, - STATE(5004), 1, + STATE(4830), 1, sym_query_definition_tuning, - ACTIONS(5768), 2, + ACTIONS(5866), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4290), 2, + STATE(4410), 2, sym_comment, sym_include, - [254807] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [262652] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - STATE(5994), 1, + STATE(5562), 1, sym_body, - STATE(4291), 2, + STATE(4411), 2, sym_comment, sym_include, - STATE(5614), 3, + STATE(5841), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [254835] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [262680] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(4802), 1, - aux_sym_for_statement_repeat1, - STATE(4818), 1, - sym_on_stop_phrase, - STATE(5729), 1, - sym_body, - STATE(4292), 2, - sym_comment, - sym_include, - [254867] = 9, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(6257), 1, - sym__terminator, - STATE(4384), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4293), 2, + ACTIONS(6328), 1, + aux_sym_variable_definition_token2, + STATE(4412), 2, sym_comment, sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [254897] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6326), 5, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [262704] = 9, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6259), 1, - sym__terminator, - ACTIONS(6261), 1, - aux_sym_query_definition_tuning_token1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(6264), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4294), 3, - sym_comment, - sym_include, - aux_sym_query_definition_repeat1, - [254925] = 9, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, + ACTIONS(5864), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6026), 1, + ACTIONS(6068), 1, sym__terminator, - STATE(4205), 1, + STATE(4374), 1, aux_sym_query_definition_repeat1, - STATE(5004), 1, + STATE(4830), 1, sym_query_definition_tuning, - ACTIONS(5768), 2, + ACTIONS(5866), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4295), 2, + STATE(4413), 2, sym_comment, sym_include, - [254955] = 6, - ACTIONS(3), 1, + [262734] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6267), 1, - anon_sym_COMMA, - STATE(4296), 3, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + STATE(5980), 1, + sym_body, + STATE(4414), 2, sym_comment, sym_include, - aux_sym_on_statement_repeat1, - ACTIONS(2872), 4, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [254979] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5665), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [262762] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4976), 1, + STATE(4844), 1, sym_on_stop_phrase, - STATE(4977), 1, + STATE(4845), 1, aux_sym_for_statement_repeat1, - STATE(5987), 1, + STATE(5870), 1, sym_body, - STATE(4297), 2, + STATE(4415), 2, sym_comment, sym_include, - [255011] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [262794] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4650), 1, - aux_sym_inherits_token1, - ACTIONS(5675), 1, - anon_sym_COLON, - STATE(4480), 1, - aux_sym_interface_statement_repeat1, - STATE(5463), 1, - sym_interface_tuning, - STATE(5465), 1, - sym_inherits, - STATE(6164), 1, - sym_interface_body, - STATE(4298), 2, - sym_comment, - sym_include, - [255043] = 9, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5954), 1, - aux_sym__block_terminator_token1, - STATE(2257), 1, - sym__function_terminator, - STATE(2306), 1, - sym__block_terminator, - STATE(5208), 1, - sym_dot_body, - ACTIONS(5697), 2, - anon_sym_COLON, - anon_sym_DOT, - STATE(4299), 2, + ACTIONS(6332), 1, + aux_sym_variable_definition_token2, + STATE(4416), 2, sym_comment, sym_include, - [255073] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6330), 5, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [262818] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6270), 1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4300), 3, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(4785), 1, + sym_on_stop_phrase, + STATE(4789), 1, + aux_sym_for_statement_repeat1, + STATE(5947), 1, + sym_body, + STATE(4417), 2, sym_comment, sym_include, - aux_sym_data_relation_repeat1, - ACTIONS(6042), 4, - sym__terminator, - anon_sym_RPAREN, - aux_sym_data_relation_token1, - aux_sym_data_relation_token2, - [255097] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [262850] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4637), 1, + STATE(5148), 1, sym_on_stop_phrase, - STATE(4638), 1, + STATE(5149), 1, aux_sym_for_statement_repeat1, - STATE(5751), 1, + STATE(5882), 1, sym_body, - STATE(4301), 2, + STATE(4418), 2, sym_comment, sym_include, - [255129] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [262882] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - ACTIONS(5147), 1, + ACTIONS(5136), 1, aux_sym_index_definition_token1, - ACTIONS(6273), 1, + ACTIONS(6278), 1, sym__terminator, - STATE(4384), 1, + STATE(4271), 1, aux_sym_temp_table_definition_repeat2, - STATE(4302), 2, + STATE(4419), 2, sym_comment, sym_include, - STATE(5095), 2, + STATE(5184), 2, sym_field_definition, sym_index_definition, - [255159] = 9, - ACTIONS(65), 1, + [262912] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + STATE(5790), 1, + sym_body, + STATE(4420), 2, + sym_comment, + sym_include, + STATE(5691), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [262940] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(6275), 1, - sym__terminator, - STATE(4384), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4303), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(4841), 1, + aux_sym_for_statement_repeat1, + STATE(4851), 1, + sym_on_stop_phrase, + STATE(5865), 1, + sym_body, + STATE(4421), 2, sym_comment, sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [255189] = 9, - ACTIONS(65), 1, + [262972] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6336), 1, + aux_sym_variable_definition_token2, + STATE(4422), 2, + sym_comment, + sym_include, + ACTIONS(6334), 5, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [262996] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, + ACTIONS(5864), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6077), 1, + ACTIONS(6338), 1, sym__terminator, - STATE(4278), 1, + STATE(4429), 1, aux_sym_query_definition_repeat1, - STATE(5004), 1, + STATE(4830), 1, sym_query_definition_tuning, - ACTIONS(5768), 2, + ACTIONS(5866), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4304), 2, + STATE(4423), 2, sym_comment, sym_include, - [255219] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [263026] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4650), 1, - aux_sym_inherits_token1, - ACTIONS(5675), 1, - anon_sym_COLON, - STATE(4298), 1, - aux_sym_interface_statement_repeat1, - STATE(5463), 1, - sym_interface_tuning, - STATE(5465), 1, - sym_inherits, - STATE(6131), 1, - sym_interface_body, - STATE(4305), 2, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6340), 1, + sym__terminator, + STATE(4423), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4424), 2, sym_comment, sym_include, - [255251] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [263056] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4988), 1, - aux_sym_for_statement_repeat1, - STATE(4989), 1, + STATE(4847), 1, sym_on_stop_phrase, - STATE(5960), 1, + STATE(4848), 1, + aux_sym_for_statement_repeat1, + STATE(5866), 1, sym_body, - STATE(4306), 2, + STATE(4425), 2, sym_comment, sym_include, - [255283] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [263088] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, + ACTIONS(5864), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6085), 1, + ACTIONS(6342), 1, sym__terminator, - STATE(4264), 1, + STATE(4429), 1, aux_sym_query_definition_repeat1, - STATE(5004), 1, + STATE(4830), 1, sym_query_definition_tuning, - ACTIONS(5768), 2, + ACTIONS(5866), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4307), 2, + STATE(4426), 2, sym_comment, sym_include, - [255313] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [263118] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5075), 1, - sym__namedot, - STATE(3331), 1, - aux_sym_qualified_name_repeat1, - STATE(4308), 2, + ACTIONS(4797), 1, + aux_sym_variable_definition_token2, + STATE(4427), 2, sym_comment, sym_include, - ACTIONS(3926), 4, - anon_sym_COLON, - anon_sym_DOT, + ACTIONS(4795), 5, aux_sym__block_terminator_token1, - anon_sym_LPAREN, - [255339] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [263142] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(4999), 1, - aux_sym_for_statement_repeat1, - STATE(5000), 1, - sym_on_stop_phrase, - STATE(5956), 1, - sym_body, - STATE(4309), 2, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6344), 1, + sym__terminator, + STATE(4429), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4428), 2, sym_comment, sym_include, - [255371] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [263172] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5075), 1, - sym__namedot, - STATE(3331), 1, - aux_sym_qualified_name_repeat1, - STATE(4310), 2, + ACTIONS(6346), 1, + sym__terminator, + ACTIONS(6348), 1, + aux_sym_query_definition_tuning_token1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(6351), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4429), 3, sym_comment, sym_include, - ACTIONS(3916), 4, - anon_sym_COLON, - anon_sym_DOT, - aux_sym__block_terminator_token1, - anon_sym_LPAREN, - [255397] = 8, - ACTIONS(65), 1, + aux_sym_query_definition_repeat1, + [263200] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6354), 1, + sym__terminator, + STATE(4429), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4430), 2, + sym_comment, + sym_include, + [263230] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - STATE(5958), 1, - sym_body, - STATE(4311), 2, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6356), 1, + sym__terminator, + STATE(4428), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4431), 2, sym_comment, sym_include, - STATE(5641), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [255425] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [263260] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(5031), 1, - aux_sym_for_statement_repeat1, - STATE(5040), 1, + STATE(5150), 1, sym_on_stop_phrase, - STATE(5950), 1, + STATE(5151), 1, + aux_sym_for_statement_repeat1, + STATE(5879), 1, sym_body, - STATE(4312), 2, + STATE(4432), 2, sym_comment, sym_include, - [255457] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [263292] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6279), 1, + ACTIONS(4789), 1, aux_sym_variable_definition_token2, - STATE(4313), 2, + STATE(4433), 2, sym_comment, sym_include, - ACTIONS(6277), 5, + ACTIONS(4787), 5, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, - [255481] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [263316] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4737), 1, + STATE(5152), 1, sym_on_stop_phrase, - STATE(4738), 1, + STATE(5156), 1, aux_sym_for_statement_repeat1, - STATE(5999), 1, + STATE(5876), 1, sym_body, - STATE(4314), 2, + STATE(4434), 2, sym_comment, sym_include, - [255513] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [263348] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(5050), 1, - aux_sym_for_statement_repeat1, - STATE(5054), 1, - sym_on_stop_phrase, - STATE(5930), 1, - sym_body, - STATE(4315), 2, - sym_comment, - sym_include, - [255545] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - STATE(5507), 1, + STATE(5843), 1, sym_body, - STATE(4316), 2, + STATE(4435), 2, sym_comment, sym_include, - STATE(5459), 3, + STATE(5718), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [255573] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6061), 1, - aux_sym__block_terminator_token1, - STATE(5156), 1, - sym_dot_body, - ACTIONS(5697), 2, - anon_sym_COLON, - anon_sym_DOT, - STATE(2310), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(4317), 2, - sym_comment, - sym_include, - [255601] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [263376] = 10, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6283), 1, - aux_sym_variable_definition_token2, - STATE(4318), 2, - sym_comment, - sym_include, - ACTIONS(6281), 5, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [255625] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4692), 1, + STATE(4784), 1, sym_on_stop_phrase, - STATE(4695), 1, - aux_sym_for_statement_repeat1, - STATE(5489), 1, - sym_body, - STATE(4319), 2, - sym_comment, - sym_include, - [255657] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(5073), 1, + STATE(4788), 1, aux_sym_for_statement_repeat1, - STATE(5079), 1, - sym_on_stop_phrase, - STATE(5928), 1, + STATE(5713), 1, sym_body, - STATE(4320), 2, - sym_comment, - sym_include, - [255689] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4650), 1, - aux_sym_inherits_token1, - ACTIONS(5675), 1, - anon_sym_COLON, - STATE(4480), 1, - aux_sym_interface_statement_repeat1, - STATE(5463), 1, - sym_interface_tuning, - STATE(5465), 1, - sym_inherits, - STATE(6067), 1, - sym_interface_body, - STATE(4321), 2, - sym_comment, - sym_include, - [255721] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(5279), 1, - sym__terminator, - STATE(4384), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4322), 2, + STATE(4436), 2, sym_comment, sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [255751] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [263408] = 10, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(5279), 1, - sym__terminator, - STATE(4373), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4323), 2, - sym_comment, - sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [255781] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4650), 1, + ACTIONS(4652), 1, aux_sym_inherits_token1, - ACTIONS(5675), 1, + ACTIONS(5912), 1, anon_sym_COLON, - STATE(4321), 1, + STATE(4583), 1, aux_sym_interface_statement_repeat1, - STATE(5463), 1, + STATE(5615), 1, sym_interface_tuning, - STATE(5465), 1, + STATE(5620), 1, sym_inherits, - STATE(6104), 1, + STATE(6273), 1, sym_interface_body, - STATE(4324), 2, + STATE(4437), 2, sym_comment, sym_include, - [255813] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [263440] = 10, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - STATE(6004), 1, - sym_body, - STATE(4325), 2, - sym_comment, - sym_include, - STATE(5788), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [255841] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(5082), 1, - aux_sym_for_statement_repeat1, - STATE(5088), 1, + STATE(4857), 1, sym_on_stop_phrase, - STATE(5926), 1, + STATE(4862), 1, + aux_sym_for_statement_repeat1, + STATE(5831), 1, sym_body, - STATE(4326), 2, + STATE(4438), 2, sym_comment, sym_include, - [255873] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [263472] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4642), 1, + STATE(4879), 1, sym_on_stop_phrase, - STATE(4643), 1, + STATE(4880), 1, aux_sym_for_statement_repeat1, - STATE(5826), 1, + STATE(5683), 1, sym_body, - STATE(4327), 2, + STATE(4439), 2, sym_comment, sym_include, - [255905] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [263504] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(5081), 1, + STATE(4849), 1, sym_on_stop_phrase, - STATE(5084), 1, + STATE(4850), 1, aux_sym_for_statement_repeat1, - STATE(5904), 1, + STATE(5864), 1, sym_body, - STATE(4328), 2, + STATE(4440), 2, sym_comment, sym_include, - [255937] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [263536] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - ACTIONS(5147), 1, + ACTIONS(5136), 1, aux_sym_index_definition_token1, - ACTIONS(5248), 1, + ACTIONS(5266), 1, sym__terminator, - STATE(4378), 1, + STATE(4271), 1, aux_sym_temp_table_definition_repeat2, - STATE(4329), 2, + STATE(4441), 2, sym_comment, sym_include, - STATE(5095), 2, + STATE(5184), 2, sym_field_definition, sym_index_definition, - [255967] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [263566] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4330), 2, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6072), 1, + sym__terminator, + STATE(4270), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4442), 2, sym_comment, sym_include, - ACTIONS(210), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_variable_tuning_token7, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [255989] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [263596] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(5248), 1, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6146), 1, sym__terminator, - STATE(4384), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4331), 2, + STATE(4430), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4443), 2, sym_comment, sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [256019] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [263626] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(4652), 1, + aux_sym_inherits_token1, + ACTIONS(5912), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(5074), 1, - sym_on_stop_phrase, - STATE(5076), 1, - aux_sym_for_statement_repeat1, - STATE(5894), 1, - sym_body, - STATE(4332), 2, + STATE(4583), 1, + aux_sym_interface_statement_repeat1, + STATE(5615), 1, + sym_interface_tuning, + STATE(5620), 1, + sym_inherits, + STATE(6213), 1, + sym_interface_body, + STATE(4444), 2, sym_comment, sym_include, - [256051] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [263658] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4768), 1, - aux_sym_variable_definition_token2, - STATE(4333), 2, + ACTIONS(6358), 1, + aux_sym_else_statement_token1, + STATE(4454), 1, + aux_sym_if_statement_repeat1, + STATE(4692), 1, + sym_else_statement, + STATE(4445), 2, sym_comment, sym_include, - ACTIONS(4766), 5, + ACTIONS(2805), 3, aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [256075] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_case_otherwise_branch_token1, + [263686] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6285), 1, + ACTIONS(6362), 1, aux_sym_else_statement_token1, - STATE(4453), 1, + STATE(4454), 1, aux_sym_if_statement_repeat1, - STATE(4607), 1, + STATE(4692), 1, sym_else_statement, - STATE(4334), 2, + STATE(4446), 2, sym_comment, sym_include, - ACTIONS(2769), 3, + ACTIONS(2795), 3, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_case_otherwise_branch_token1, - [256103] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [263714] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6290), 1, + ACTIONS(6367), 1, aux_sym_variable_definition_token2, - STATE(4335), 2, + STATE(4447), 2, sym_comment, sym_include, - ACTIONS(6288), 5, + ACTIONS(6365), 5, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, - [256127] = 8, - ACTIONS(3), 1, + [263738] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6231), 1, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - STATE(4257), 1, - aux_sym_widget_phrase_repeat1, - STATE(4765), 1, - sym_widget_field, - STATE(4336), 2, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(5266), 1, + sym__terminator, + STATE(4520), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4448), 2, sym_comment, sym_include, - ACTIONS(6292), 3, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - [256155] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [263768] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(5065), 1, - sym_on_stop_phrase, - STATE(5066), 1, + STATE(4892), 1, aux_sym_for_statement_repeat1, - STATE(5882), 1, + STATE(4894), 1, + sym_on_stop_phrase, + STATE(5770), 1, sym_body, - STATE(4337), 2, + STATE(4449), 2, + sym_comment, + sym_include, + [263800] = 9, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(6369), 1, + sym__terminator, + STATE(4271), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4450), 2, sym_comment, sym_include, - [256187] = 10, - ACTIONS(65), 1, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [263830] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6371), 1, + sym__terminator, + STATE(4429), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4451), 2, + sym_comment, + sym_include, + [263860] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4653), 1, + STATE(5158), 1, sym_on_stop_phrase, - STATE(4654), 1, + STATE(5159), 1, aux_sym_for_statement_repeat1, - STATE(5746), 1, + STATE(5862), 1, sym_body, - STATE(4338), 2, + STATE(4452), 2, sym_comment, sym_include, - [256219] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [263892] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(5063), 1, + STATE(4853), 1, sym_on_stop_phrase, - STATE(5064), 1, + STATE(4854), 1, aux_sym_for_statement_repeat1, - STATE(5879), 1, + STATE(5856), 1, sym_body, - STATE(4339), 2, + STATE(4453), 2, sym_comment, sym_include, - [256251] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [263924] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6294), 1, + ACTIONS(6373), 1, aux_sym_else_statement_token1, - STATE(4453), 1, + STATE(4528), 1, aux_sym_if_statement_repeat1, - STATE(4607), 1, + STATE(4692), 1, sym_else_statement, - STATE(4340), 2, + STATE(4454), 2, sym_comment, sym_include, - ACTIONS(2767), 3, + ACTIONS(2779), 3, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_case_otherwise_branch_token1, - [256279] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6298), 1, - aux_sym_variable_definition_token2, - STATE(4341), 2, - sym_comment, - sym_include, - ACTIONS(6296), 5, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [256303] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [263952] = 10, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(6300), 1, - sym__terminator, - STATE(4303), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4342), 2, - sym_comment, - sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [256333] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4660), 1, - sym_on_stop_phrase, - STATE(4661), 1, + STATE(4868), 1, aux_sym_for_statement_repeat1, - STATE(5741), 1, + STATE(4874), 1, + sym_on_stop_phrase, + STATE(5904), 1, sym_body, - STATE(4343), 2, + STATE(4455), 2, sym_comment, sym_include, - [256365] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [263984] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, + ACTIONS(5864), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6302), 1, + ACTIONS(6376), 1, sym__terminator, - STATE(4294), 1, + STATE(4429), 1, aux_sym_query_definition_repeat1, - STATE(5004), 1, + STATE(4830), 1, sym_query_definition_tuning, - ACTIONS(5768), 2, + ACTIONS(5866), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4344), 2, + STATE(4456), 2, sym_comment, sym_include, - [256395] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [264014] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - STATE(5052), 1, - sym_on_stop_phrase, - STATE(5057), 1, - aux_sym_for_statement_repeat1, - STATE(5974), 1, + STATE(5779), 1, sym_body, - STATE(4345), 2, + STATE(4457), 2, sym_comment, sym_include, - [256427] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5745), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [264042] = 9, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4346), 2, - sym_comment, - sym_include, - ACTIONS(6304), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_variable_tuning_token7, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [256449] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4650), 1, - aux_sym_inherits_token1, - ACTIONS(5675), 1, - anon_sym_COLON, - STATE(4480), 1, - aux_sym_interface_statement_repeat1, - STATE(5463), 1, - sym_interface_tuning, - STATE(5465), 1, - sym_inherits, - STATE(6266), 1, - sym_interface_body, - STATE(4347), 2, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(6369), 1, + sym__terminator, + STATE(4493), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4458), 2, sym_comment, sym_include, - [256481] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [264072] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4650), 1, - aux_sym_inherits_token1, - ACTIONS(5675), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(4347), 1, - aux_sym_interface_statement_repeat1, - STATE(5463), 1, - sym_interface_tuning, - STATE(5465), 1, - sym_inherits, - STATE(6286), 1, - sym_interface_body, - STATE(4348), 2, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(4898), 1, + aux_sym_for_statement_repeat1, + STATE(4901), 1, + sym_on_stop_phrase, + STATE(5762), 1, + sym_body, + STATE(4459), 2, sym_comment, sym_include, - [256513] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [264104] = 10, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4349), 2, - sym_comment, - sym_include, - ACTIONS(5637), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_variable_tuning_token7, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [256535] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4700), 1, + STATE(5041), 1, aux_sym_for_statement_repeat1, - STATE(4701), 1, + STATE(5115), 1, sym_on_stop_phrase, - STATE(5990), 1, + STATE(5924), 1, sym_body, - STATE(4350), 2, + STATE(4460), 2, sym_comment, sym_include, - [256567] = 5, - ACTIONS(3), 1, + [264136] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4351), 2, + ACTIONS(6380), 1, + aux_sym_variable_definition_token2, + STATE(4461), 2, sym_comment, sym_include, - ACTIONS(2780), 6, - sym_identifier, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_access_tuning_token4, - aux_sym_access_tuning_token5, - [256589] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6378), 5, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [264160] = 10, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(6306), 1, - sym__terminator, - STATE(4384), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4352), 2, - sym_comment, - sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [256619] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4667), 1, - sym_on_stop_phrase, - STATE(4668), 1, + STATE(4902), 1, aux_sym_for_statement_repeat1, - STATE(5737), 1, + STATE(4904), 1, + sym_on_stop_phrase, + STATE(5754), 1, sym_body, - STATE(4353), 2, + STATE(4462), 2, sym_comment, sym_include, - [256651] = 10, - ACTIONS(65), 1, + [264192] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6382), 1, + sym__terminator, + STATE(4429), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4463), 2, + sym_comment, + sym_include, + [264222] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4564), 1, - aux_sym_for_statement_repeat1, - STATE(4709), 1, + STATE(4856), 1, sym_on_stop_phrase, - STATE(5986), 1, + STATE(4858), 1, + aux_sym_for_statement_repeat1, + STATE(5828), 1, sym_body, - STATE(4354), 2, + STATE(4464), 2, sym_comment, sym_include, - [256683] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [264254] = 9, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4355), 2, - sym_comment, - sym_include, - ACTIONS(6308), 6, - anon_sym_COLON, - sym__terminator, - aux_sym__block_terminator_token1, - anon_sym_COMMA, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - [256705] = 9, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(6300), 1, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6384), 1, sym__terminator, - STATE(4384), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4356), 2, + STATE(4463), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4465), 2, sym_comment, sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [256735] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [264284] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, + ACTIONS(5864), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6310), 1, + ACTIONS(6386), 1, sym__terminator, - STATE(4294), 1, + STATE(4429), 1, aux_sym_query_definition_repeat1, - STATE(5004), 1, + STATE(4830), 1, sym_query_definition_tuning, - ACTIONS(5768), 2, + ACTIONS(5866), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4357), 2, + STATE(4466), 2, sym_comment, sym_include, - [256765] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [264314] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, + ACTIONS(5864), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6312), 1, + ACTIONS(6388), 1, sym__terminator, - STATE(4294), 1, + STATE(4429), 1, aux_sym_query_definition_repeat1, - STATE(5004), 1, + STATE(4830), 1, sym_query_definition_tuning, - ACTIONS(5768), 2, + ACTIONS(5866), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4358), 2, + STATE(4467), 2, sym_comment, sym_include, - [256795] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [264344] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4359), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(5162), 1, + sym_on_stop_phrase, + STATE(5163), 1, + aux_sym_for_statement_repeat1, + STATE(5857), 1, + sym_body, + STATE(4468), 2, sym_comment, sym_include, - ACTIONS(132), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_variable_tuning_token7, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token3, - aux_sym__function_argument_with_mode_token4, - [256817] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [264376] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6316), 1, - aux_sym_variable_definition_token2, - STATE(4360), 2, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(6390), 1, + sym__terminator, + STATE(4271), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4469), 2, sym_comment, sym_include, - ACTIONS(6314), 5, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [256841] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [264406] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6320), 1, + ACTIONS(6394), 1, aux_sym_variable_definition_token2, - STATE(4361), 2, + STATE(4470), 2, sym_comment, sym_include, - ACTIONS(6318), 5, + ACTIONS(6392), 5, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, - [256865] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [264430] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(6306), 1, - sym__terminator, - STATE(4418), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4362), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5152), 1, + aux_sym_on_error_phrase_token1, + STATE(5807), 1, + sym_body, + STATE(4471), 2, sym_comment, sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [256895] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5912), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [264458] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5786), 1, - aux_sym__block_terminator_token1, - STATE(4694), 1, - sym__block_terminator, - STATE(4792), 1, - sym__function_terminator, - STATE(5242), 1, - sym_dot_body, - ACTIONS(5697), 2, - anon_sym_COLON, - anon_sym_DOT, - STATE(4363), 2, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6096), 1, + sym__terminator, + STATE(4451), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4472), 2, sym_comment, sym_include, - [256925] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [264488] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4849), 1, - sym_on_stop_phrase, - STATE(4872), 1, + STATE(4905), 1, aux_sym_for_statement_repeat1, - STATE(5574), 1, + STATE(4908), 1, + sym_on_stop_phrase, + STATE(5750), 1, sym_body, - STATE(4364), 2, + STATE(4473), 2, sym_comment, sym_include, - [256957] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [264520] = 9, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - STATE(5789), 1, - sym_body, - STATE(4365), 2, - sym_comment, - sym_include, - STATE(5735), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [256985] = 10, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4650), 1, - aux_sym_inherits_token1, - ACTIONS(5675), 1, - anon_sym_COLON, - STATE(4480), 1, - aux_sym_interface_statement_repeat1, - STATE(5463), 1, - sym_interface_tuning, - STATE(5465), 1, - sym_inherits, - STATE(6489), 1, - sym_interface_body, - STATE(4366), 2, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6396), 1, + sym__terminator, + STATE(4429), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4474), 2, sym_comment, sym_include, - [257017] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [264550] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(820), 1, - sym__namecolon, - ACTIONS(6159), 1, - anon_sym_COLON, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(3384), 1, - aux_sym_object_access_repeat1, - STATE(5271), 1, - sym_case_body, - STATE(4367), 2, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6398), 1, + sym__terminator, + STATE(4466), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4475), 2, sym_comment, sym_include, - [257049] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [264580] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4722), 1, + STATE(4911), 1, aux_sym_for_statement_repeat1, - STATE(4724), 1, + STATE(4913), 1, sym_on_stop_phrase, - STATE(5983), 1, + STATE(5749), 1, sym_body, - STATE(4368), 2, + STATE(4476), 2, sym_comment, sym_include, - [257081] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [264612] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4650), 1, - aux_sym_inherits_token1, - ACTIONS(5675), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(4366), 1, - aux_sym_interface_statement_repeat1, - STATE(5463), 1, - sym_interface_tuning, - STATE(5465), 1, - sym_inherits, - STATE(6528), 1, - sym_interface_body, - STATE(4369), 2, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(4921), 1, + aux_sym_for_statement_repeat1, + STATE(4933), 1, + sym_on_stop_phrase, + STATE(5743), 1, + sym_body, + STATE(4477), 2, sym_comment, sym_include, - [257113] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [264644] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(6123), 1, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6092), 1, sym__terminator, - STATE(4293), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4370), 2, + STATE(4474), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4478), 2, sym_comment, sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [257143] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [264674] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, + ACTIONS(5864), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6322), 1, + ACTIONS(6400), 1, sym__terminator, - STATE(4294), 1, + STATE(4429), 1, aux_sym_query_definition_repeat1, - STATE(5004), 1, + STATE(4830), 1, sym_query_definition_tuning, - ACTIONS(5768), 2, + ACTIONS(5866), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4371), 2, + STATE(4479), 2, sym_comment, sym_include, - [257173] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [264704] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(6324), 1, - sym__terminator, - STATE(4302), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4372), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(4941), 1, + aux_sym_for_statement_repeat1, + STATE(4948), 1, + sym_on_stop_phrase, + STATE(5742), 1, + sym_body, + STATE(4480), 2, sym_comment, sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [257203] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [264736] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(6326), 1, - sym__terminator, - STATE(4384), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4373), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(4842), 1, + sym_on_stop_phrase, + STATE(4843), 1, + aux_sym_for_statement_repeat1, + STATE(5871), 1, + sym_body, + STATE(4481), 2, sym_comment, sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [257233] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [264768] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4673), 1, - sym_on_stop_phrase, - STATE(4674), 1, + STATE(4953), 1, aux_sym_for_statement_repeat1, - STATE(5723), 1, + STATE(4955), 1, + sym_on_stop_phrase, + STATE(5741), 1, sym_body, - STATE(4374), 2, + STATE(4482), 2, sym_comment, sym_include, - [257265] = 9, - ACTIONS(65), 1, + [264800] = 10, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(4965), 1, + aux_sym_for_statement_repeat1, + STATE(4985), 1, + sym_on_stop_phrase, + STATE(5740), 1, + sym_body, + STATE(4483), 2, + sym_comment, + sym_include, + [264832] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6328), 1, - sym__terminator, - STATE(4294), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4375), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(4994), 1, + aux_sym_for_statement_repeat1, + STATE(4996), 1, + sym_on_stop_phrase, + STATE(5735), 1, + sym_body, + STATE(4484), 2, sym_comment, sym_include, - [257295] = 8, + [264864] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6330), 1, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(6402), 1, sym_identifier, - STATE(2923), 1, + STATE(3287), 1, + sym_function_call, + STATE(3386), 1, sym_qualified_name, - STATE(5405), 1, - sym_for_phrase, - STATE(4376), 2, + STATE(5641), 1, + sym_object_access, + STATE(5673), 1, + sym_new_expression, + STATE(4485), 2, sym_comment, sym_include, - ACTIONS(6332), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [257323] = 10, - ACTIONS(65), 1, + [264896] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6404), 1, + sym__terminator, + STATE(4429), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4486), 2, + sym_comment, + sym_include, + [264926] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4656), 1, - sym_on_stop_phrase, - STATE(4664), 1, + STATE(4634), 1, aux_sym_for_statement_repeat1, - STATE(5408), 1, + STATE(4707), 1, + sym_on_stop_phrase, + STATE(5491), 1, sym_body, - STATE(4377), 2, + STATE(4487), 2, sym_comment, sym_include, - [257355] = 9, - ACTIONS(65), 1, + [264958] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5882), 1, + aux_sym__block_terminator_token1, + STATE(2217), 1, + sym__function_terminator, + STATE(2275), 1, + sym__block_terminator, + STATE(5297), 1, + sym_dot_body, + ACTIONS(5874), 2, + anon_sym_COLON, + anon_sym_DOT, + STATE(4488), 2, + sym_comment, + sym_include, + [264988] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, - sym__terminator, - ACTIONS(5145), 1, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - ACTIONS(5147), 1, + ACTIONS(5136), 1, aux_sym_index_definition_token1, - STATE(4384), 1, + ACTIONS(6406), 1, + sym__terminator, + STATE(4271), 1, aux_sym_temp_table_definition_repeat2, - STATE(4378), 2, + STATE(4489), 2, sym_comment, sym_include, - STATE(5095), 2, + STATE(5184), 2, sym_field_definition, sym_index_definition, - [257385] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [265018] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, + ACTIONS(5864), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6334), 1, + ACTIONS(6034), 1, sym__terminator, - STATE(4294), 1, + STATE(4479), 1, aux_sym_query_definition_repeat1, - STATE(5004), 1, + STATE(4830), 1, sym_query_definition_tuning, - ACTIONS(5768), 2, + ACTIONS(5866), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4379), 2, + STATE(4490), 2, sym_comment, sym_include, - [257415] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [265048] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6101), 1, - aux_sym__block_terminator_token1, - STATE(5287), 1, - sym_dot_body, - ACTIONS(5697), 2, - anon_sym_COLON, - anon_sym_DOT, - STATE(4380), 2, + ACTIONS(6410), 1, + aux_sym_variable_definition_token2, + STATE(4491), 2, sym_comment, sym_include, - STATE(4679), 2, - sym__block_terminator, - sym__procedure_terminator, - [257443] = 9, - ACTIONS(65), 1, + ACTIONS(6408), 5, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_destructor_definition_token1, + [265072] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6086), 1, + sym__terminator, + STATE(4513), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4492), 2, + sym_comment, + sym_include, + [265102] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - ACTIONS(5147), 1, + ACTIONS(5136), 1, aux_sym_index_definition_token1, - ACTIONS(6326), 1, + ACTIONS(6412), 1, sym__terminator, - STATE(4416), 1, + STATE(4271), 1, aux_sym_temp_table_definition_repeat2, - STATE(4381), 2, + STATE(4493), 2, sym_comment, sym_include, - STATE(5095), 2, + STATE(5184), 2, sym_field_definition, sym_index_definition, - [257473] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [265132] = 9, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - STATE(5701), 1, - sym_body, - STATE(4382), 2, - sym_comment, - sym_include, - STATE(5768), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [257501] = 9, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, - sym__terminator, - ACTIONS(5145), 1, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - ACTIONS(5147), 1, + ACTIONS(5136), 1, aux_sym_index_definition_token1, - STATE(4198), 1, + ACTIONS(6414), 1, + sym__terminator, + STATE(4271), 1, aux_sym_temp_table_definition_repeat2, - STATE(4383), 2, + STATE(4494), 2, sym_comment, sym_include, - STATE(5095), 2, + STATE(5184), 2, sym_field_definition, sym_index_definition, - [257531] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [265162] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6336), 1, - sym__terminator, - ACTIONS(6338), 1, - aux_sym_field_definition_token1, - ACTIONS(6341), 1, - aux_sym_index_definition_token1, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - STATE(4384), 3, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(5170), 1, + sym_on_stop_phrase, + STATE(5171), 1, + aux_sym_for_statement_repeat1, + STATE(5847), 1, + sym_body, + STATE(4495), 2, sym_comment, sym_include, - aux_sym_temp_table_definition_repeat2, - [257559] = 10, - ACTIONS(65), 1, + [265194] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6223), 1, + sym__namedot, + STATE(4366), 1, + aux_sym_qualified_name_repeat1, + STATE(4496), 2, + sym_comment, + sym_include, + ACTIONS(4152), 4, + sym_identifier, + sym__terminator, + anon_sym_LBRACK, + aux_sym_scope_tuning_token1, + [265220] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - STATE(4739), 1, - aux_sym_for_statement_repeat1, - STATE(4742), 1, - sym_on_stop_phrase, - STATE(5978), 1, + STATE(5776), 1, sym_body, - STATE(4385), 2, + STATE(4497), 2, sym_comment, sym_include, - [257591] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5952), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [265248] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6346), 1, - aux_sym_variable_definition_token2, - STATE(4386), 2, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6416), 1, + sym__terminator, + STATE(4429), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4498), 2, sym_comment, sym_include, - ACTIONS(6344), 5, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [257615] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [265278] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - STATE(4949), 1, - aux_sym_for_statement_repeat1, - STATE(4953), 1, - sym_on_stop_phrase, - STATE(5632), 1, + STATE(5499), 1, sym_body, - STATE(4387), 2, + STATE(4499), 2, sym_comment, sym_include, - [257647] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5874), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [265306] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6350), 1, + ACTIONS(6420), 1, aux_sym_variable_definition_token2, - STATE(4388), 2, + STATE(4500), 2, sym_comment, sym_include, - ACTIONS(6348), 5, + ACTIONS(6418), 5, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, - [257671] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [265330] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(5600), 1, + STATE(4704), 1, + sym_on_stop_phrase, + STATE(4757), 1, + aux_sym_for_statement_repeat1, + STATE(5544), 1, sym_body, - STATE(4389), 2, + STATE(4501), 2, sym_comment, sym_include, - STATE(5793), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [257699] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [265362] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(5698), 1, + STATE(5074), 1, + sym_on_stop_phrase, + STATE(5079), 1, + aux_sym_for_statement_repeat1, + STATE(5464), 1, sym_body, - STATE(4390), 2, + STATE(4502), 2, sym_comment, sym_include, - STATE(6003), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [257727] = 7, - ACTIONS(65), 1, + [265394] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5637), 1, - sym_argument_pass_type, - ACTIONS(6352), 2, + ACTIONS(6422), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4391), 2, + STATE(4503), 3, sym_comment, sym_include, - ACTIONS(5083), 3, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token2, - aux_sym_argument_pass_type_token3, - [257753] = 6, - ACTIONS(65), 1, + aux_sym_on_statement_repeat1, + ACTIONS(3223), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [265418] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + aux_sym_scope_tuning_token1, + ACTIONS(6425), 1, + sym_identifier, + STATE(3269), 1, + sym_function_call, + STATE(3388), 1, + sym_qualified_name, + STATE(5641), 1, + sym_object_access, + STATE(5673), 1, + sym_new_expression, + STATE(4504), 2, + sym_comment, + sym_include, + [265450] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6356), 1, + ACTIONS(6429), 1, aux_sym_variable_definition_token2, - STATE(4392), 2, + STATE(4505), 2, sym_comment, sym_include, - ACTIONS(6354), 5, + ACTIONS(6427), 5, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_destructor_definition_token1, - [257777] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [265474] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6358), 1, - sym__terminator, - STATE(4294), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4393), 2, + STATE(5534), 1, + sym_argument_pass_type, + ACTIONS(6431), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4506), 2, sym_comment, sym_include, - [257807] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4854), 3, + aux_sym_argument_pass_type_token1, + aux_sym_argument_pass_type_token2, + aux_sym_argument_pass_type_token3, + [265500] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - STATE(4922), 1, - sym_on_stop_phrase, - STATE(4923), 1, - aux_sym_for_statement_repeat1, - STATE(5558), 1, + STATE(5591), 1, sym_body, - STATE(4394), 2, + STATE(4507), 2, sym_comment, sym_include, - [257839] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5899), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [265528] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6362), 1, - aux_sym_variable_definition_token2, - STATE(4395), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(5164), 1, + aux_sym_for_statement_repeat1, + STATE(5169), 1, + sym_on_stop_phrase, + STATE(5808), 1, + sym_body, + STATE(4508), 2, sym_comment, sym_include, - ACTIONS(6360), 5, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [257863] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [265560] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(5015), 1, + STATE(5124), 1, aux_sym_for_statement_repeat1, - STATE(5035), 1, + STATE(5126), 1, sym_on_stop_phrase, - STATE(5645), 1, + STATE(5772), 1, sym_body, - STATE(4396), 2, + STATE(4509), 2, sym_comment, sym_include, - [257895] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [265592] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - STATE(5537), 1, + STATE(5705), 1, sym_body, - STATE(4397), 2, + STATE(4510), 2, sym_comment, sym_include, - STATE(5819), 3, + STATE(5944), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [257923] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [265620] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(4909), 1, - aux_sym_for_statement_repeat1, - STATE(4912), 1, - sym_on_stop_phrase, - STATE(5523), 1, - sym_body, - STATE(4398), 2, + ACTIONS(5134), 1, + aux_sym_field_definition_token1, + ACTIONS(5136), 1, + aux_sym_index_definition_token1, + ACTIONS(6433), 1, + sym__terminator, + STATE(4489), 1, + aux_sym_temp_table_definition_repeat2, + STATE(4511), 2, sym_comment, sym_include, - [257955] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5184), 2, + sym_field_definition, + sym_index_definition, + [265650] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5699), 1, - aux_sym__block_terminator_token1, - STATE(2349), 1, - sym__function_terminator, - STATE(2423), 1, - sym__block_terminator, - STATE(5370), 1, - sym_dot_body, - ACTIONS(5697), 2, - anon_sym_COLON, - anon_sym_DOT, - STATE(4399), 2, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6435), 1, + sym__terminator, + STATE(4429), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4512), 2, sym_comment, sym_include, - [257985] = 10, - ACTIONS(65), 1, + [265680] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6437), 1, + sym__terminator, + STATE(4429), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4513), 2, + sym_comment, + sym_include, + [265710] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4899), 1, - sym_on_stop_phrase, - STATE(4900), 1, + STATE(5102), 1, aux_sym_for_statement_repeat1, - STATE(5486), 1, + STATE(5105), 1, + sym_on_stop_phrase, + STATE(5712), 1, sym_body, - STATE(4400), 2, + STATE(4514), 2, + sym_comment, + sym_include, + [265742] = 9, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6439), 1, + sym__terminator, + STATE(4429), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4515), 2, sym_comment, sym_include, - [258017] = 9, - ACTIONS(65), 1, + [265772] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6038), 1, + sym__terminator, + STATE(4526), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4516), 2, + sym_comment, + sym_include, + [265802] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - ACTIONS(5147), 1, + ACTIONS(5136), 1, aux_sym_index_definition_token1, - ACTIONS(6324), 1, + ACTIONS(6441), 1, sym__terminator, - STATE(4384), 1, + STATE(4469), 1, aux_sym_temp_table_definition_repeat2, - STATE(4401), 2, + STATE(4517), 2, sym_comment, sym_include, - STATE(5095), 2, + STATE(5184), 2, sym_field_definition, sym_index_definition, - [258047] = 10, - ACTIONS(65), 1, + [265832] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6443), 1, + sym__terminator, + STATE(4429), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4518), 2, + sym_comment, + sym_include, + [265862] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(6124), 1, + aux_sym__block_terminator_token1, + STATE(5283), 1, + sym_dot_body, + ACTIONS(5874), 2, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(4686), 1, - sym_on_stop_phrase, - STATE(4691), 1, - aux_sym_for_statement_repeat1, - STATE(5711), 1, - sym_body, - STATE(4402), 2, + anon_sym_DOT, + STATE(1680), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(4519), 2, sym_comment, sym_include, - [258079] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [265890] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - ACTIONS(5147), 1, + ACTIONS(5136), 1, aux_sym_index_definition_token1, - ACTIONS(5252), 1, + ACTIONS(6433), 1, sym__terminator, - STATE(4356), 1, + STATE(4271), 1, aux_sym_temp_table_definition_repeat2, - STATE(4403), 2, + STATE(4520), 2, sym_comment, sym_include, - STATE(5095), 2, + STATE(5184), 2, sym_field_definition, sym_index_definition, - [258109] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [265920] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(5152), 1, aux_sym_on_error_phrase_token1, - STATE(4705), 1, - sym_on_stop_phrase, - STATE(4708), 1, - aux_sym_for_statement_repeat1, - STATE(5680), 1, + STATE(5727), 1, sym_body, - STATE(4404), 2, + STATE(4521), 2, sym_comment, sym_include, - [258141] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5925), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [265948] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4887), 1, + STATE(5111), 1, sym_on_stop_phrase, - STATE(4890), 1, + STATE(5112), 1, aux_sym_for_statement_repeat1, - STATE(5464), 1, + STATE(5760), 1, sym_body, - STATE(4405), 2, + STATE(4522), 2, sym_comment, sym_include, - [258173] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [265980] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(5479), 1, + STATE(4860), 1, + sym_on_stop_phrase, + STATE(4861), 1, + aux_sym_for_statement_repeat1, + STATE(5815), 1, sym_body, - STATE(4406), 2, + STATE(4523), 2, sym_comment, sym_include, - STATE(5846), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [258201] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266012] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, + ACTIONS(5134), 1, aux_sym_field_definition_token1, - ACTIONS(5147), 1, + ACTIONS(5136), 1, aux_sym_index_definition_token1, - ACTIONS(5252), 1, + ACTIONS(6441), 1, sym__terminator, - STATE(4384), 1, + STATE(4271), 1, aux_sym_temp_table_definition_repeat2, - STATE(4407), 2, + STATE(4524), 2, sym_comment, sym_include, - STATE(5095), 2, + STATE(5184), 2, sym_field_definition, sym_index_definition, - [258231] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266042] = 9, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(4878), 1, - sym_on_stop_phrase, - STATE(4880), 1, - aux_sym_for_statement_repeat1, - STATE(5398), 1, - sym_body, - STATE(4408), 2, - sym_comment, - sym_include, - [258263] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - STATE(5988), 1, - sym_body, - STATE(4409), 2, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6445), 1, + sym__terminator, + STATE(4531), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4525), 2, sym_comment, sym_include, - STATE(5985), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [258291] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266072] = 9, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6364), 1, - aux_sym__block_terminator_token1, - ACTIONS(6366), 1, - aux_sym_when_expression_token1, - ACTIONS(6368), 1, - aux_sym_case_otherwise_branch_token1, - STATE(4472), 1, - aux_sym_case_body_repeat1, - STATE(5192), 1, - sym_case_when_branch, - STATE(6090), 1, - sym_case_otherwise_branch, - STATE(4410), 2, - sym_comment, - sym_include, - [258323] = 9, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, + ACTIONS(5864), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(6097), 1, + ACTIONS(6447), 1, sym__terminator, - STATE(4441), 1, + STATE(4429), 1, aux_sym_query_definition_repeat1, - STATE(5004), 1, + STATE(4830), 1, sym_query_definition_tuning, - ACTIONS(5768), 2, + ACTIONS(5866), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4411), 2, + STATE(4526), 2, sym_comment, sym_include, - [258353] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266102] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + STATE(4527), 2, + sym_comment, + sym_include, + ACTIONS(6449), 6, anon_sym_COLON, - ACTIONS(3788), 1, + sym__terminator, + aux_sym__block_terminator_token1, anon_sym_COMMA, - ACTIONS(6121), 1, + aux_sym_repeat_tuning_token1, aux_sym_on_error_phrase_token1, - STATE(4873), 1, - sym_on_stop_phrase, - STATE(4874), 1, - aux_sym_for_statement_repeat1, - STATE(5449), 1, - sym_body, - STATE(4412), 2, + [266124] = 7, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6451), 1, + aux_sym_else_statement_token1, + STATE(4692), 1, + sym_else_statement, + ACTIONS(2811), 3, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_case_otherwise_branch_token1, + STATE(4528), 3, sym_comment, sym_include, - [258385] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_if_statement_repeat1, + [266150] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6372), 1, - aux_sym_variable_definition_token2, - STATE(4413), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(4825), 1, + aux_sym_for_statement_repeat1, + STATE(4829), 1, + sym_on_stop_phrase, + STATE(5801), 1, + sym_body, + STATE(4529), 2, sym_comment, sym_include, - ACTIONS(6370), 5, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_destructor_definition_token1, - [258409] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266182] = 10, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(4757), 1, + STATE(4869), 1, aux_sym_for_statement_repeat1, - STATE(4762), 1, + STATE(4870), 1, sym_on_stop_phrase, - STATE(5976), 1, + STATE(5764), 1, sym_body, - STATE(4414), 2, + STATE(4530), 2, sym_comment, sym_include, - [258441] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266214] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, + ACTIONS(5864), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(5996), 1, + ACTIONS(6454), 1, sym__terminator, - STATE(4436), 1, + STATE(4429), 1, aux_sym_query_definition_repeat1, - STATE(5004), 1, + STATE(4830), 1, sym_query_definition_tuning, - ACTIONS(5768), 2, + ACTIONS(5866), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4415), 2, + STATE(4531), 2, sym_comment, sym_include, - [258471] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266244] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(6374), 1, + ACTIONS(5864), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(6456), 1, sym__terminator, - STATE(4384), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4416), 2, + STATE(4515), 1, + aux_sym_query_definition_repeat1, + STATE(4830), 1, + sym_query_definition_tuning, + ACTIONS(5866), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(4532), 2, sym_comment, sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [258501] = 10, - ACTIONS(65), 1, + [266274] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(6458), 1, + sym_identifier, + STATE(4533), 2, + sym_comment, + sym_include, + ACTIONS(6460), 4, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, aux_sym_on_error_phrase_token1, - STATE(4865), 1, - sym_on_stop_phrase, - STATE(4867), 1, - aux_sym_for_statement_repeat1, - STATE(5443), 1, - sym_body, - STATE(4417), 2, + [266297] = 9, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + ACTIONS(6462), 1, + sym__terminator, + STATE(4333), 1, + aux_sym_data_relation_repeat1, + STATE(6444), 1, + sym_data_relation, + STATE(4534), 2, sym_comment, sym_include, - [258533] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266326] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(6376), 1, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + ACTIONS(6464), 1, sym__terminator, - STATE(4384), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4418), 2, + STATE(4333), 1, + aux_sym_data_relation_repeat1, + STATE(6411), 1, + sym_data_relation, + STATE(4535), 2, sym_comment, sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [258563] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266355] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4860), 1, + STATE(5101), 1, + sym_on_quit_phrase, + STATE(6038), 1, sym_on_stop_phrase, - STATE(4861), 1, - aux_sym_for_statement_repeat1, - STATE(5436), 1, - sym_body, - STATE(4419), 2, + ACTIONS(6466), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4536), 2, sym_comment, sym_include, - [258595] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266382] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(5228), 1, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + ACTIONS(6062), 1, sym__terminator, - STATE(4407), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4420), 2, + STATE(4547), 1, + aux_sym_data_relation_repeat1, + STATE(6413), 1, + sym_data_relation, + STATE(4537), 2, sym_comment, sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [258625] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266411] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6378), 1, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + ACTIONS(6060), 1, sym__terminator, - STATE(4294), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4421), 2, + STATE(4550), 1, + aux_sym_data_relation_repeat1, + STATE(6432), 1, + sym_data_relation, + STATE(4538), 2, sym_comment, sym_include, - [258655] = 10, - ACTIONS(65), 1, + [266440] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6468), 1, + aux_sym_return_type_token2, + ACTIONS(6472), 1, + aux_sym_on_error_phrase_token8, + STATE(4539), 2, + sym_comment, + sym_include, + ACTIONS(6470), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [266465] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6052), 1, anon_sym_COMMA, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(4852), 1, - sym_on_stop_phrase, - STATE(4854), 1, - aux_sym_for_statement_repeat1, - STATE(5431), 1, - sym_body, - STATE(4422), 2, + ACTIONS(6474), 1, + anon_sym_RPAREN, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5195), 1, + aux_sym_data_relation_repeat1, + STATE(4540), 2, sym_comment, sym_include, - [258687] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266494] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4650), 1, - aux_sym_inherits_token1, - ACTIONS(5675), 1, - anon_sym_COLON, - STATE(4237), 1, - aux_sym_interface_statement_repeat1, - STATE(5463), 1, - sym_interface_tuning, - STATE(5465), 1, - sym_inherits, - STATE(6585), 1, - sym_interface_body, - STATE(4423), 2, + ACTIONS(6476), 1, + aux_sym_return_type_token2, + ACTIONS(6480), 1, + aux_sym_on_error_phrase_token8, + STATE(4541), 2, sym_comment, sym_include, - [258719] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6478), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [266519] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(4846), 1, - sym_on_stop_phrase, - STATE(4850), 1, - aux_sym_for_statement_repeat1, - STATE(5430), 1, - sym_body, - STATE(4424), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6482), 1, + sym__terminator, + ACTIONS(6484), 1, + aux_sym_input_expression_token2, + ACTIONS(6486), 1, + aux_sym_prompt_for_statement_token2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(4542), 2, sym_comment, sym_include, - [258751] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266548] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(4840), 1, - sym_on_stop_phrase, - STATE(4841), 1, - aux_sym_for_statement_repeat1, - STATE(5425), 1, - sym_body, - STATE(4425), 2, + ACTIONS(6488), 1, + aux_sym_return_type_token2, + ACTIONS(6492), 1, + aux_sym_on_error_phrase_token8, + STATE(4543), 2, sym_comment, sym_include, - [258783] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6490), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [266573] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(5186), 1, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + ACTIONS(6494), 1, sym__terminator, - STATE(4446), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4426), 2, + STATE(4333), 1, + aux_sym_data_relation_repeat1, + STATE(6527), 1, + sym_data_relation, + STATE(4544), 2, sym_comment, sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [258813] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266602] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(5186), 1, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6496), 1, sym__terminator, - STATE(4384), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4427), 2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5180), 1, + aux_sym_data_relation_repeat1, + STATE(4545), 2, sym_comment, sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [258843] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266631] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(5228), 1, - sym__terminator, - STATE(4384), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4428), 2, + ACTIONS(6498), 1, + aux_sym_return_type_token2, + ACTIONS(6502), 1, + aux_sym_on_error_phrase_token8, + STATE(4546), 2, sym_comment, sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [258873] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6500), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [266656] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6380), 1, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + ACTIONS(6504), 1, sym__terminator, - STATE(4294), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4429), 2, + STATE(4333), 1, + aux_sym_data_relation_repeat1, + STATE(6452), 1, + sym_data_relation, + STATE(4547), 2, sym_comment, sym_include, - [258903] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266685] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(4837), 1, - sym_on_stop_phrase, - STATE(4838), 1, - aux_sym_for_statement_repeat1, - STATE(5422), 1, - sym_body, - STATE(4430), 2, + ACTIONS(6498), 1, + aux_sym_return_type_token2, + ACTIONS(6502), 1, + aux_sym_on_error_phrase_token8, + STATE(4548), 2, sym_comment, sym_include, - [258935] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6506), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [266710] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(4831), 1, - sym_on_stop_phrase, - STATE(4834), 1, - aux_sym_for_statement_repeat1, - STATE(5420), 1, - sym_body, - STATE(4431), 2, + ACTIONS(6508), 1, + aux_sym_return_type_token2, + ACTIONS(6512), 1, + aux_sym_on_error_phrase_token8, + STATE(4549), 2, sym_comment, sym_include, - [258967] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6510), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [266735] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(6052), 1, anon_sym_COMMA, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(4726), 1, - aux_sym_for_statement_repeat1, - STATE(4750), 1, - sym_on_stop_phrase, - STATE(5774), 1, - sym_body, - STATE(4432), 2, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + ACTIONS(6514), 1, + sym__terminator, + STATE(4333), 1, + aux_sym_data_relation_repeat1, + STATE(6404), 1, + sym_data_relation, + STATE(4550), 2, sym_comment, sym_include, - [258999] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266764] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(6052), 1, anon_sym_COMMA, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(4715), 1, - aux_sym_for_statement_repeat1, - STATE(4717), 1, - sym_on_stop_phrase, - STATE(5663), 1, - sym_body, - STATE(4433), 2, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + ACTIONS(6118), 1, + sym__terminator, + STATE(4544), 1, + aux_sym_data_relation_repeat1, + STATE(6472), 1, + sym_data_relation, + STATE(4551), 2, sym_comment, sym_include, - [259031] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266793] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - STATE(5427), 1, - sym_body, - STATE(4434), 2, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + ACTIONS(6516), 1, + sym__terminator, + STATE(4333), 1, + aux_sym_data_relation_repeat1, + STATE(6464), 1, + sym_data_relation, + STATE(4552), 2, sym_comment, sym_include, - STATE(5939), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [259059] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266822] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - STATE(5478), 1, - sym_body, - STATE(4435), 2, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + ACTIONS(6064), 1, + sym__terminator, + STATE(4535), 1, + aux_sym_data_relation_repeat1, + STATE(6364), 1, + sym_data_relation, + STATE(4553), 2, sym_comment, sym_include, - STATE(5480), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [259087] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266851] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6382), 1, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + ACTIONS(6518), 1, sym__terminator, - STATE(4294), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4436), 2, + STATE(4333), 1, + aux_sym_data_relation_repeat1, + STATE(6247), 1, + sym_data_relation, + STATE(4554), 2, sym_comment, sym_include, - [259117] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266880] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(820), 1, - sym__namecolon, - ACTIONS(6159), 1, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(5094), 1, + sym_on_quit_phrase, + STATE(5789), 1, + sym_on_stop_phrase, + ACTIONS(5830), 2, anon_sym_COLON, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(3384), 1, - aux_sym_object_access_repeat1, - STATE(5272), 1, - sym_case_body, - STATE(4437), 2, + anon_sym_COMMA, + STATE(4555), 2, sym_comment, sym_include, - [259149] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266907] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - STATE(5635), 1, + ACTIONS(5878), 1, + anon_sym_LPAREN, + ACTIONS(6520), 1, + sym__terminator, + STATE(6116), 1, + sym_function_parameters, + STATE(6148), 1, sym_body, - STATE(4438), 2, + STATE(4556), 2, sym_comment, sym_include, - STATE(6018), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [259177] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266936] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6065), 1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(6522), 1, sym__terminator, - STATE(4449), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4439), 2, + ACTIONS(6524), 1, + anon_sym_LPAREN, + STATE(5421), 1, + sym_function_parameters, + STATE(6163), 1, + sym_body, + STATE(4557), 2, sym_comment, sym_include, - [259207] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266965] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4763), 1, - aux_sym_for_statement_repeat1, - STATE(4766), 1, + STATE(5080), 1, + sym_on_quit_phrase, + STATE(5894), 1, sym_on_stop_phrase, - STATE(5975), 1, - sym_body, - STATE(4440), 2, + ACTIONS(6526), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4558), 2, sym_comment, sym_include, - [259239] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [266992] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6384), 1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(5878), 1, + anon_sym_LPAREN, + ACTIONS(6528), 1, sym__terminator, - STATE(4294), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4441), 2, + STATE(5706), 1, + sym_function_parameters, + STATE(6482), 1, + sym_body, + STATE(4559), 2, sym_comment, sym_include, - [259269] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [267021] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - STATE(5512), 1, - sym_body, - STATE(4442), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6530), 1, + anon_sym_RPAREN, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5222), 1, + aux_sym_data_relation_repeat1, + STATE(4560), 2, sym_comment, sym_include, - STATE(5970), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [259297] = 7, - ACTIONS(65), 1, + [267050] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6532), 1, + aux_sym_return_type_token2, + ACTIONS(6536), 1, + aux_sym_on_error_phrase_token8, + STATE(4561), 2, + sym_comment, + sym_include, + ACTIONS(6534), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [267075] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5779), 1, - sym_argument_pass_type, - ACTIONS(5647), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6052), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4443), 2, + ACTIONS(6538), 1, + aux_sym_data_relation_token2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5420), 1, + aux_sym_data_relation_repeat1, + STATE(4562), 2, sym_comment, sym_include, - ACTIONS(5083), 3, - aux_sym_argument_pass_type_token1, - aux_sym_argument_pass_type_token2, - aux_sym_argument_pass_type_token3, - [259323] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [267104] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - STATE(5664), 1, - sym_body, - STATE(4444), 2, + ACTIONS(825), 1, + sym__namecolon, + STATE(4584), 1, + aux_sym_object_access_repeat1, + STATE(4563), 2, sym_comment, sym_include, - STATE(5662), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [259351] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(89), 3, + sym__augmented_assignment, + anon_sym_LPAREN, + anon_sym_EQ, + [267129] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6036), 1, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6540), 1, sym__terminator, - STATE(4463), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4445), 2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5207), 1, + aux_sym_data_relation_repeat1, + STATE(4564), 2, sym_comment, sym_include, - [259381] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [267158] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(5238), 1, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6542), 1, sym__terminator, - STATE(4384), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4446), 2, + ACTIONS(6544), 1, + aux_sym_input_expression_token2, + ACTIONS(6546), 1, + aux_sym_prompt_for_statement_token2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(4565), 2, sym_comment, sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [259411] = 9, - ACTIONS(65), 1, + [267187] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5145), 1, - aux_sym_field_definition_token1, - ACTIONS(5147), 1, - aux_sym_index_definition_token1, - ACTIONS(5238), 1, - sym__terminator, - STATE(4401), 1, - aux_sym_temp_table_definition_repeat2, - STATE(4447), 2, + ACTIONS(6550), 1, + aux_sym_widget_field_token1, + STATE(4566), 2, sym_comment, sym_include, - STATE(5095), 2, - sym_field_definition, - sym_index_definition, - [259441] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6548), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_field_definition_token1, + [267210] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6386), 1, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + ACTIONS(6084), 1, sym__terminator, - STATE(4454), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4448), 2, + STATE(4534), 1, + aux_sym_data_relation_repeat1, + STATE(6424), 1, + sym_data_relation, + STATE(4567), 2, sym_comment, sym_include, - [259471] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [267239] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6388), 1, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + ACTIONS(6108), 1, sym__terminator, - STATE(4294), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4449), 2, + STATE(4552), 1, + aux_sym_data_relation_repeat1, + STATE(6403), 1, + sym_data_relation, + STATE(4568), 2, sym_comment, sym_include, - [259501] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [267268] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(4790), 1, - aux_sym_for_statement_repeat1, - STATE(4791), 1, - sym_on_stop_phrase, - STATE(5967), 1, - sym_body, - STATE(4450), 2, + ACTIONS(6552), 1, + aux_sym_return_type_token2, + ACTIONS(6556), 1, + aux_sym_on_error_phrase_token8, + STATE(4569), 2, sym_comment, sym_include, - [259533] = 10, - ACTIONS(65), 1, + ACTIONS(6554), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [267293] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6558), 1, + aux_sym_return_type_token2, + ACTIONS(6562), 1, + aux_sym_on_error_phrase_token8, + STATE(4570), 2, + sym_comment, + sym_include, + ACTIONS(6560), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [267318] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6052), 1, anon_sym_COMMA, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(4725), 1, - sym_on_stop_phrase, - STATE(4728), 1, - aux_sym_for_statement_repeat1, - STATE(5631), 1, - sym_body, - STATE(4451), 2, + ACTIONS(6564), 1, + sym__terminator, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5241), 1, + aux_sym_data_relation_repeat1, + STATE(4571), 2, sym_comment, sym_include, - [259565] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [267347] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6052), 1, anon_sym_COMMA, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(4753), 1, - aux_sym_for_statement_repeat1, - STATE(4755), 1, - sym_on_stop_phrase, - STATE(5566), 1, - sym_body, - STATE(4452), 2, + ACTIONS(6566), 1, + sym__terminator, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5304), 1, + aux_sym_data_relation_repeat1, + STATE(4572), 2, sym_comment, sym_include, - [259597] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [267376] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6294), 1, - aux_sym_else_statement_token1, - STATE(4240), 1, - aux_sym_if_statement_repeat1, - STATE(4607), 1, - sym_else_statement, - STATE(4453), 2, + ACTIONS(825), 1, + sym__namecolon, + STATE(4584), 1, + aux_sym_object_access_repeat1, + STATE(4573), 2, sym_comment, sym_include, - ACTIONS(2743), 3, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_case_otherwise_branch_token1, - [259625] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(89), 3, + sym__augmented_assignment, + anon_sym_LPAREN, + anon_sym_EQ, + [267401] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6390), 1, + STATE(4574), 2, + sym_comment, + sym_include, + ACTIONS(6568), 5, sym__terminator, - STATE(4294), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, + aux_sym_query_definition_tuning_token1, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4454), 2, - sym_comment, - sym_include, - [259655] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_query_definition_token3, + [267422] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6392), 1, + STATE(4575), 2, + sym_comment, + sym_include, + ACTIONS(6570), 5, sym__terminator, - STATE(4458), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, + aux_sym_query_definition_tuning_token1, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(4455), 2, + aux_sym_query_definition_token3, + [267443] = 7, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6572), 1, + aux_sym_return_type_token2, + ACTIONS(6576), 1, + aux_sym_on_error_phrase_token8, + STATE(4576), 2, sym_comment, sym_include, - [259685] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6574), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [267468] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(5103), 1, - aux_sym_on_error_phrase_token1, - STATE(5593), 1, + ACTIONS(6524), 1, + anon_sym_LPAREN, + ACTIONS(6578), 1, + sym__terminator, + STATE(5312), 1, + sym_function_parameters, + STATE(6487), 1, sym_body, - STATE(4456), 2, + STATE(4577), 2, sym_comment, sym_include, - STATE(5993), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [259713] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [267497] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6394), 1, - sym__terminator, - STATE(4294), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4457), 2, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4931), 1, + sym_on_quit_phrase, + STATE(6035), 1, + sym_on_stop_phrase, + ACTIONS(4464), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4578), 2, sym_comment, sym_include, - [259743] = 9, - ACTIONS(65), 1, + [267524] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6396), 1, - sym__terminator, - STATE(4294), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4458), 2, + ACTIONS(6580), 1, + anon_sym_DQUOTE, + ACTIONS(6584), 1, + sym__special_character, + STATE(4610), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(6582), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(4579), 2, sym_comment, sym_include, - [259773] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [267551] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4782), 1, - aux_sym_for_statement_repeat1, - STATE(4785), 1, + STATE(4935), 1, + sym_on_quit_phrase, + STATE(6073), 1, sym_on_stop_phrase, - STATE(5972), 1, - sym_body, - STATE(4459), 2, + ACTIONS(4430), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4580), 2, sym_comment, sym_include, - [259805] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [267578] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6398), 1, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + ACTIONS(6586), 1, sym__terminator, - STATE(4457), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4460), 2, + STATE(4333), 1, + aux_sym_data_relation_repeat1, + STATE(6803), 1, + sym_data_relation, + STATE(4581), 2, sym_comment, sym_include, - [259835] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [267607] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6400), 1, - sym__terminator, - STATE(4294), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4461), 2, + ACTIONS(825), 1, + sym__namecolon, + STATE(4584), 1, + aux_sym_object_access_repeat1, + STATE(4582), 2, sym_comment, sym_include, - [259865] = 10, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(89), 3, + sym__augmented_assignment, + anon_sym_LPAREN, + anon_sym_EQ, + [267632] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(6588), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(4735), 1, - aux_sym_for_statement_repeat1, - STATE(4779), 1, - sym_on_stop_phrase, - STATE(5973), 1, - sym_body, - STATE(4462), 2, + ACTIONS(6590), 1, + aux_sym_inherits_token1, + STATE(5615), 1, + sym_interface_tuning, + STATE(5620), 1, + sym_inherits, + STATE(4583), 3, sym_comment, sym_include, - [259897] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_interface_statement_repeat1, + [267659] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6402), 1, - sym__terminator, - STATE(4294), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4463), 2, + ACTIONS(6593), 1, + sym__namecolon, + ACTIONS(93), 3, + sym__augmented_assignment, + anon_sym_LPAREN, + anon_sym_EQ, + STATE(4584), 3, sym_comment, sym_include, - [259927] = 9, - ACTIONS(65), 1, + aux_sym_object_access_repeat1, + [267682] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(6404), 1, - sym__terminator, - STATE(4461), 1, - aux_sym_query_definition_repeat1, - STATE(5004), 1, - sym_query_definition_tuning, - ACTIONS(5768), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(4464), 2, + ACTIONS(108), 1, + sym__namedot, + STATE(4585), 2, sym_comment, sym_include, - [259957] = 9, - ACTIONS(65), 1, + ACTIONS(110), 4, + sym_identifier, + sym__terminator, + anon_sym_LBRACK, + aux_sym_scope_tuning_token1, + [267705] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4824), 1, + sym_on_quit_phrase, + STATE(5700), 1, + sym_on_stop_phrase, + ACTIONS(4512), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4586), 2, + sym_comment, + sym_include, + [267732] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5986), 1, + ACTIONS(6050), 1, sym__terminator, - ACTIONS(5988), 1, + ACTIONS(6052), 1, anon_sym_COMMA, - ACTIONS(5990), 1, + ACTIONS(6054), 1, aux_sym_data_relation_token1, - STATE(4489), 1, + STATE(4554), 1, aux_sym_data_relation_repeat1, - STATE(6032), 1, + STATE(6668), 1, sym_data_relation, - STATE(4465), 2, + STATE(4587), 2, sym_comment, sym_include, - [259986] = 7, - ACTIONS(65), 1, + [267761] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(4588), 2, + sym_comment, + sym_include, + ACTIONS(6596), 5, + anon_sym_COLON, + aux_sym__block_terminator_token1, + anon_sym_COMMA, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [267782] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6406), 1, + ACTIONS(6598), 1, aux_sym_return_type_token2, - ACTIONS(6410), 1, + ACTIONS(6602), 1, aux_sym_on_error_phrase_token8, - STATE(4466), 2, + STATE(4589), 2, sym_comment, sym_include, - ACTIONS(6408), 3, + ACTIONS(6600), 3, aux_sym_on_error_phrase_token4, aux_sym_on_error_phrase_token5, aux_sym_on_error_phrase_token6, - [260011] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [267807] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(6412), 1, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + ACTIONS(6058), 1, sym__terminator, - ACTIONS(6414), 1, - aux_sym_input_expression_token2, - ACTIONS(6416), 1, - aux_sym_prompt_for_statement_token2, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(4467), 2, + STATE(4602), 1, + aux_sym_data_relation_repeat1, + STATE(6537), 1, + sym_data_relation, + STATE(4590), 2, sym_comment, sym_include, - [260040] = 7, - ACTIONS(65), 1, + [267836] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(4591), 2, + sym_comment, + sym_include, + ACTIONS(6604), 5, + sym_identifier, + aux_sym_dataset_expression_token1, + aux_sym__function_argument_with_mode_token1, + aux_sym__function_argument_with_mode_token2, + aux_sym__function_argument_with_mode_token3, + [267857] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6418), 1, + ACTIONS(6498), 1, aux_sym_return_type_token2, - ACTIONS(6422), 1, + ACTIONS(6502), 1, aux_sym_on_error_phrase_token8, - STATE(4468), 2, + STATE(4592), 2, sym_comment, sym_include, - ACTIONS(6420), 3, + ACTIONS(6606), 3, aux_sym_on_error_phrase_token4, aux_sym_on_error_phrase_token5, aux_sym_on_error_phrase_token6, - [260065] = 7, - ACTIONS(3), 1, + [267882] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, - anon_sym_DQUOTE, - ACTIONS(6429), 1, - sym__special_character, - ACTIONS(6426), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(4469), 3, + STATE(4593), 2, sym_comment, sym_include, - aux_sym_double_quoted_string_repeat1, - [260090] = 8, + ACTIONS(6608), 5, + anon_sym_COLON, + aux_sym__block_terminator_token1, + anon_sym_COMMA, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [267903] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3926), 1, + ACTIONS(5888), 1, sym_identifier, - ACTIONS(6432), 1, - sym__namedot, - STATE(4530), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(3928), 2, - sym__terminator, - anon_sym_LBRACK, - STATE(4470), 2, + STATE(4594), 2, sym_comment, sym_include, - [260117] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5890), 4, + aux_sym_dataset_expression_token1, + aux_sym__function_argument_with_mode_token1, + aux_sym__function_argument_with_mode_token2, + aux_sym__function_argument_with_mode_token3, + [267926] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6434), 1, - aux_sym_return_type_token2, - ACTIONS(6438), 1, - aux_sym_on_error_phrase_token8, - STATE(4471), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6610), 1, + sym__terminator, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5192), 1, + aux_sym_data_relation_repeat1, + STATE(4595), 2, sym_comment, sym_include, - ACTIONS(6436), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [260142] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [267955] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6442), 1, - aux_sym_when_expression_token1, - STATE(5192), 1, - sym_case_when_branch, - ACTIONS(6440), 2, + ACTIONS(6614), 1, + aux_sym_repeat_tuning_token1, + STATE(5323), 1, + sym_repeat_tuning, + ACTIONS(6612), 2, + anon_sym_COLON, aux_sym__block_terminator_token1, - aux_sym_case_otherwise_branch_token1, - STATE(4472), 3, + STATE(4596), 3, sym_comment, sym_include, - aux_sym_case_body_repeat1, - [260167] = 7, - ACTIONS(65), 1, + aux_sym_repeat_statement_repeat1, + [267980] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6445), 1, - aux_sym_return_type_token2, - ACTIONS(6449), 1, - aux_sym_on_error_phrase_token8, - STATE(4473), 2, + ACTIONS(6619), 1, + aux_sym_input_expression_token2, + STATE(5271), 1, + sym_widget_phrase, + ACTIONS(6617), 2, + sym_identifier, + aux_sym_do_block_token1, + STATE(4597), 3, sym_comment, sym_include, - ACTIONS(6447), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [260192] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_on_statement_repeat2, + [268005] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4727), 1, + sym_on_quit_phrase, + STATE(5574), 1, + sym_on_stop_phrase, + ACTIONS(4420), 2, + anon_sym_COLON, anon_sym_COMMA, - ACTIONS(5990), 1, - aux_sym_data_relation_token1, - ACTIONS(6451), 1, - sym__terminator, - STATE(4300), 1, - aux_sym_data_relation_repeat1, - STATE(6053), 1, - sym_data_relation, - STATE(4474), 2, + STATE(4598), 2, sym_comment, sym_include, - [260221] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [268032] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6406), 1, + ACTIONS(6622), 1, aux_sym_return_type_token2, - ACTIONS(6410), 1, + ACTIONS(6626), 1, aux_sym_on_error_phrase_token8, - STATE(4475), 2, + STATE(4599), 2, sym_comment, sym_include, - ACTIONS(6453), 3, + ACTIONS(6624), 3, aux_sym_on_error_phrase_token4, aux_sym_on_error_phrase_token5, aux_sym_on_error_phrase_token6, - [260246] = 8, - ACTIONS(65), 1, + [268057] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4704), 1, - sym_on_quit_phrase, - STATE(5780), 1, - sym_on_stop_phrase, - ACTIONS(4485), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4476), 2, + ACTIONS(6628), 1, + sym_identifier, + STATE(4600), 2, sym_comment, sym_include, - [260273] = 9, - ACTIONS(65), 1, + ACTIONS(6630), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [268080] = 9, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6632), 1, + sym__terminator, + ACTIONS(6634), 1, + aux_sym_input_expression_token2, + ACTIONS(6636), 1, + aux_sym_prompt_for_statement_token2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(4601), 2, + sym_comment, + sym_include, + [268109] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, + ACTIONS(6052), 1, anon_sym_COMMA, - ACTIONS(5990), 1, + ACTIONS(6054), 1, aux_sym_data_relation_token1, - ACTIONS(6455), 1, + ACTIONS(6638), 1, sym__terminator, - STATE(4300), 1, + STATE(4333), 1, aux_sym_data_relation_repeat1, - STATE(6293), 1, + STATE(6455), 1, sym_data_relation, - STATE(4477), 2, + STATE(4602), 2, sym_comment, sym_include, - [260302] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [268138] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4699), 1, - sym_on_quit_phrase, - STATE(5790), 1, - sym_on_stop_phrase, - ACTIONS(5528), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4478), 2, + STATE(4603), 2, sym_comment, sym_include, - [260329] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6640), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_on_error_phrase_token1, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [268159] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(6457), 1, + ACTIONS(6642), 1, sym__terminator, - ACTIONS(6459), 1, + ACTIONS(6644), 1, aux_sym_input_expression_token2, - ACTIONS(6461), 1, + ACTIONS(6646), 1, aux_sym_prompt_for_statement_token2, - STATE(340), 1, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(4479), 2, + STATE(4604), 2, sym_comment, sym_include, - [260358] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [268188] = 9, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6463), 1, - anon_sym_COLON, - ACTIONS(6465), 1, - aux_sym_inherits_token1, - STATE(5463), 1, - sym_interface_tuning, - STATE(5465), 1, - sym_inherits, - STATE(4480), 3, - sym_comment, - sym_include, - aux_sym_interface_statement_repeat1, - [260385] = 9, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, + ACTIONS(6052), 1, anon_sym_COMMA, - ACTIONS(5990), 1, + ACTIONS(6054), 1, aux_sym_data_relation_token1, - ACTIONS(6000), 1, + ACTIONS(6090), 1, sym__terminator, - STATE(4509), 1, + STATE(4608), 1, aux_sym_data_relation_repeat1, - STATE(6315), 1, + STATE(6448), 1, sym_data_relation, - STATE(4481), 2, + STATE(4605), 2, sym_comment, sym_include, - [260414] = 6, + [268217] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6468), 1, + ACTIONS(6648), 1, sym_identifier, - STATE(4482), 2, + STATE(4606), 2, sym_comment, sym_include, - ACTIONS(6470), 4, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - [260437] = 9, - ACTIONS(65), 1, + ACTIONS(6650), 4, + aux_sym_dataset_expression_token1, + aux_sym__function_argument_with_mode_token1, + aux_sym__function_argument_with_mode_token2, + aux_sym__function_argument_with_mode_token3, + [268240] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6476), 1, + aux_sym_return_type_token2, + ACTIONS(6480), 1, + aux_sym_on_error_phrase_token8, + STATE(4607), 2, + sym_comment, + sym_include, + ACTIONS(6652), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [268265] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(5988), 1, + ACTIONS(6052), 1, anon_sym_COMMA, - ACTIONS(6472), 1, + ACTIONS(6054), 1, + aux_sym_data_relation_token1, + ACTIONS(6654), 1, sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(5111), 1, + STATE(4333), 1, aux_sym_data_relation_repeat1, - STATE(4483), 2, + STATE(6399), 1, + sym_data_relation, + STATE(4608), 2, + sym_comment, + sym_include, + [268294] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6658), 1, + aux_sym_widget_field_token1, + STATE(4609), 2, sym_comment, sym_include, - [260466] = 9, - ACTIONS(65), 1, + ACTIONS(6656), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_field_definition_token1, + [268317] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6584), 1, + sym__special_character, + ACTIONS(6660), 1, + anon_sym_DQUOTE, + STATE(4618), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(6582), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(4610), 2, + sym_comment, + sym_include, + [268344] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(6474), 1, - anon_sym_RPAREN, - STATE(340), 1, + ACTIONS(6662), 1, + sym__terminator, + ACTIONS(6664), 1, + aux_sym_input_expression_token2, + ACTIONS(6666), 1, + aux_sym_prompt_for_statement_token2, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(5108), 1, - aux_sym_data_relation_repeat1, - STATE(4484), 2, + STATE(4611), 2, sym_comment, sym_include, - [260495] = 8, - ACTIONS(65), 1, + [268373] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(4612), 2, + sym_comment, + sym_include, + ACTIONS(6668), 5, + sym__terminator, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + aux_sym_variable_tuning_token8, + aux_sym_field_definition_token1, + [268394] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5994), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(5005), 1, + STATE(4796), 1, sym_on_quit_phrase, - STATE(5616), 1, + STATE(5684), 1, sym_on_stop_phrase, - ACTIONS(5553), 2, + ACTIONS(5767), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(4485), 2, + STATE(4613), 2, sym_comment, sym_include, - [260522] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [268421] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(5990), 1, - aux_sym_data_relation_token1, - ACTIONS(6071), 1, - sym__terminator, - STATE(4493), 1, - aux_sym_data_relation_repeat1, - STATE(6285), 1, - sym_data_relation, - STATE(4486), 2, + STATE(4614), 2, sym_comment, sym_include, - [260551] = 5, - ACTIONS(65), 1, + ACTIONS(6670), 5, + sym__terminator, + aux_sym_type_tuning_token1, + aux_sym_type_tuning_token2, + aux_sym_variable_tuning_token8, + aux_sym_field_definition_token1, + [268442] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4487), 2, + ACTIONS(6672), 1, + sym_identifier, + STATE(4615), 2, sym_comment, sym_include, - ACTIONS(6476), 5, + ACTIONS(6674), 4, anon_sym_COLON, - anon_sym_COMMA, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, aux_sym_on_error_phrase_token1, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [260572] = 9, - ACTIONS(65), 1, + [268465] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(5990), 1, - aux_sym_data_relation_token1, - ACTIONS(6012), 1, - sym__terminator, - STATE(4477), 1, - aux_sym_data_relation_repeat1, - STATE(6323), 1, - sym_data_relation, - STATE(4488), 2, + ACTIONS(6676), 1, + sym_identifier, + STATE(4616), 2, sym_comment, sym_include, - [260601] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6678), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [268488] = 9, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, + ACTIONS(6052), 1, anon_sym_COMMA, - ACTIONS(5990), 1, + ACTIONS(6054), 1, aux_sym_data_relation_token1, - ACTIONS(6478), 1, + ACTIONS(6130), 1, sym__terminator, - STATE(4300), 1, + STATE(4581), 1, aux_sym_data_relation_repeat1, - STATE(6062), 1, + STATE(6369), 1, sym_data_relation, - STATE(4489), 2, + STATE(4617), 2, sym_comment, sym_include, - [260630] = 7, - ACTIONS(65), 1, + [268517] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6406), 1, - aux_sym_return_type_token2, - ACTIONS(6410), 1, - aux_sym_on_error_phrase_token8, - STATE(4490), 2, + ACTIONS(6680), 1, + anon_sym_DQUOTE, + ACTIONS(6685), 1, + sym__special_character, + ACTIONS(6682), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(4618), 3, sym_comment, sym_include, - ACTIONS(6480), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [260655] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_double_quoted_string_repeat1, + [268542] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6482), 1, - aux_sym_return_type_token2, - ACTIONS(6486), 1, - aux_sym_on_error_phrase_token8, - STATE(4491), 2, + STATE(4619), 2, sym_comment, sym_include, - ACTIONS(6484), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [260680] = 9, - ACTIONS(65), 1, + ACTIONS(6688), 5, + anon_sym_COLON, + aux_sym__block_terminator_token1, + anon_sym_COMMA, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [268563] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(5990), 1, - aux_sym_data_relation_token1, - ACTIONS(6488), 1, - sym__terminator, - STATE(4300), 1, - aux_sym_data_relation_repeat1, - STATE(6328), 1, - sym_data_relation, - STATE(4492), 2, + ACTIONS(6690), 1, + sym_identifier, + STATE(4620), 2, sym_comment, sym_include, - [260709] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6692), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [268586] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(5990), 1, - aux_sym_data_relation_token1, - ACTIONS(6490), 1, - sym__terminator, - STATE(4300), 1, - aux_sym_data_relation_repeat1, - STATE(6413), 1, - sym_data_relation, - STATE(4493), 2, + STATE(4621), 2, sym_comment, sym_include, - [260738] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6694), 5, + anon_sym_COLON, + aux_sym__block_terminator_token1, + anon_sym_COMMA, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [268607] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5994), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(5058), 1, + STATE(5154), 1, sym_on_quit_phrase, - STATE(5589), 1, + STATE(5942), 1, sym_on_stop_phrase, - ACTIONS(6492), 2, + ACTIONS(4436), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(4494), 2, + STATE(4622), 2, sym_comment, sym_include, - [260765] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [268634] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(5990), 1, - aux_sym_data_relation_token1, - ACTIONS(6030), 1, - sym__terminator, - STATE(4520), 1, - aux_sym_data_relation_repeat1, - STATE(6437), 1, - sym_data_relation, - STATE(4495), 2, - sym_comment, - sym_include, - [260794] = 7, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6494), 1, - aux_sym_return_type_token2, - ACTIONS(6498), 1, - aux_sym_on_error_phrase_token8, - STATE(4496), 2, + STATE(4623), 2, sym_comment, sym_include, - ACTIONS(6496), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [260819] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5988), 1, + ACTIONS(6144), 5, + sym__terminator, anon_sym_COMMA, - ACTIONS(5990), 1, + anon_sym_RPAREN, aux_sym_data_relation_token1, - ACTIONS(6109), 1, - sym__terminator, - STATE(4518), 1, - aux_sym_data_relation_repeat1, - STATE(6103), 1, - sym_data_relation, - STATE(4497), 2, - sym_comment, - sym_include, - [260848] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_data_relation_token2, + [268655] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5994), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4991), 1, + STATE(4678), 1, sym_on_quit_phrase, - STATE(5621), 1, + STATE(5468), 1, sym_on_stop_phrase, - ACTIONS(6500), 2, + ACTIONS(4534), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(4498), 2, + STATE(4624), 2, sym_comment, sym_include, - [260875] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [268682] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(5990), 1, - aux_sym_data_relation_token1, - ACTIONS(6105), 1, - sym__terminator, - STATE(4474), 1, - aux_sym_data_relation_repeat1, - STATE(6037), 1, - sym_data_relation, - STATE(4499), 2, - sym_comment, - sym_include, - [260904] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5994), 1, + ACTIONS(6023), 1, aux_sym_on_error_phrase_token1, - STATE(4898), 1, + STATE(5127), 1, sym_on_quit_phrase, - STATE(5581), 1, + STATE(5941), 1, sym_on_stop_phrase, - ACTIONS(4372), 2, + ACTIONS(4478), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(4500), 2, + STATE(4625), 2, sym_comment, sym_include, - [260931] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [268709] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6502), 1, + ACTIONS(6696), 1, aux_sym_return_type_token2, - ACTIONS(6506), 1, + ACTIONS(6700), 1, aux_sym_on_error_phrase_token8, - STATE(4501), 2, + STATE(4626), 2, sym_comment, sym_include, - ACTIONS(6504), 3, + ACTIONS(6698), 3, aux_sym_on_error_phrase_token4, aux_sym_on_error_phrase_token5, aux_sym_on_error_phrase_token6, - [260956] = 6, - ACTIONS(3), 1, + [268734] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6508), 1, - sym_identifier, - STATE(4502), 2, + ACTIONS(6023), 1, + aux_sym_on_error_phrase_token1, + STATE(4644), 1, + sym_on_quit_phrase, + STATE(5488), 1, + sym_on_stop_phrase, + ACTIONS(4488), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4627), 2, sym_comment, sym_include, - ACTIONS(6510), 4, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - [260979] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [268761] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4503), 2, + ACTIONS(6476), 1, + aux_sym_return_type_token2, + ACTIONS(6480), 1, + aux_sym_on_error_phrase_token8, + STATE(4628), 2, sym_comment, sym_include, - ACTIONS(6512), 5, - sym__terminator, - aux_sym_type_tuning_token1, - aux_sym_type_tuning_token2, - aux_sym_variable_tuning_token8, - aux_sym_field_definition_token1, - [261000] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6702), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [268786] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(5990), 1, - aux_sym_data_relation_token1, - ACTIONS(6514), 1, - sym__terminator, - STATE(4300), 1, - aux_sym_data_relation_repeat1, - STATE(6033), 1, - sym_data_relation, - STATE(4504), 2, + ACTIONS(6706), 1, + aux_sym_when_expression_token1, + STATE(5280), 1, + sym_case_when_branch, + ACTIONS(6704), 2, + aux_sym__block_terminator_token1, + aux_sym_case_otherwise_branch_token1, + STATE(4629), 3, sym_comment, sym_include, - [261029] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_case_body_repeat1, + [268811] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4505), 2, + STATE(4630), 2, sym_comment, sym_include, - ACTIONS(6516), 5, + ACTIONS(6709), 5, anon_sym_COLON, aux_sym__block_terminator_token1, anon_sym_COMMA, aux_sym_repeat_tuning_token1, aux_sym_on_error_phrase_token1, - [261050] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [268832] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4506), 2, + STATE(4631), 2, sym_comment, sym_include, - ACTIONS(6518), 5, + ACTIONS(6711), 5, anon_sym_COLON, aux_sym__block_terminator_token1, anon_sym_COMMA, aux_sym_repeat_tuning_token1, aux_sym_on_error_phrase_token1, - [261071] = 6, - ACTIONS(3), 1, + [268853] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6520), 1, - sym_identifier, - STATE(4507), 2, + STATE(4632), 2, sym_comment, sym_include, - ACTIONS(6522), 4, - anon_sym_COLON, + ACTIONS(3538), 4, aux_sym__block_terminator_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - [261094] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [268873] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6502), 1, - aux_sym_return_type_token2, - ACTIONS(6506), 1, - aux_sym_on_error_phrase_token8, - STATE(4508), 2, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(6713), 1, + sym__terminator, + STATE(4658), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4633), 2, sym_comment, sym_include, - ACTIONS(6524), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [261119] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [268899] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5990), 1, - aux_sym_data_relation_token1, - ACTIONS(6526), 1, - sym__terminator, - STATE(4300), 1, - aux_sym_data_relation_repeat1, - STATE(6535), 1, - sym_data_relation, - STATE(4509), 2, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5707), 1, + sym_body, + STATE(4634), 2, sym_comment, sym_include, - [261148] = 6, - ACTIONS(3), 1, + [268925] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6528), 1, - sym_identifier, - STATE(4510), 2, + ACTIONS(6715), 1, + aux_sym_using_statement_token2, + ACTIONS(6717), 1, + aux_sym_stream_definition_token1, + ACTIONS(6719), 1, + aux_sym_input_close_statement_token1, + ACTIONS(6721), 1, + aux_sym_input_close_statement_token2, + STATE(4635), 2, sym_comment, sym_include, - ACTIONS(6530), 4, - aux_sym_dataset_expression_token1, - aux_sym__function_argument_with_mode_token1, - aux_sym__function_argument_with_mode_token2, - aux_sym__function_argument_with_mode_token3, - [261171] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [268951] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5990), 1, - aux_sym_data_relation_token1, - ACTIONS(6046), 1, - sym__terminator, - STATE(4519), 1, - aux_sym_data_relation_repeat1, - STATE(6536), 1, - sym_data_relation, - STATE(4511), 2, + STATE(4883), 1, + aux_sym_for_statement_repeat1, + STATE(5458), 1, + sym_body, + STATE(4636), 2, sym_comment, sym_include, - [261200] = 5, - ACTIONS(65), 1, + [268977] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4512), 2, + ACTIONS(6723), 1, + sym_identifier, + ACTIONS(6725), 1, + sym__escaped_string, + STATE(3286), 2, + sym_qualified_name, + sym_string_literal, + STATE(4637), 2, sym_comment, sym_include, - ACTIONS(6532), 5, - sym__terminator, - aux_sym_type_tuning_token1, - aux_sym_type_tuning_token2, - aux_sym_variable_tuning_token8, - aux_sym_field_definition_token1, - [261221] = 7, + [269001] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6536), 1, - aux_sym_input_expression_token2, - STATE(5368), 1, - sym_widget_phrase, - ACTIONS(6534), 2, + ACTIONS(6727), 1, sym_identifier, - aux_sym_do_block_token1, - STATE(4513), 3, + STATE(4638), 2, sym_comment, sym_include, - aux_sym_on_statement_repeat2, - [261246] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6729), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [269021] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6502), 1, - aux_sym_return_type_token2, - ACTIONS(6506), 1, - aux_sym_on_error_phrase_token8, - STATE(4514), 2, + STATE(4639), 2, sym_comment, sym_include, - ACTIONS(6539), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [261271] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3458), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [269041] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(5990), 1, - aux_sym_data_relation_token1, - ACTIONS(6052), 1, - sym__terminator, - STATE(4492), 1, - aux_sym_data_relation_repeat1, - STATE(6387), 1, - sym_data_relation, - STATE(4515), 2, + STATE(4640), 2, sym_comment, sym_include, - [261300] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3438), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [269061] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4516), 2, + STATE(4641), 2, sym_comment, sym_include, - ACTIONS(6042), 5, - sym__terminator, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_data_relation_token1, - aux_sym_data_relation_token2, - [261321] = 8, + ACTIONS(3434), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [269081] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(6731), 1, + sym_identifier, + STATE(4642), 2, + sym_comment, + sym_include, + ACTIONS(6733), 4, anon_sym_LBRACE, - ACTIONS(6541), 1, + anon_sym_RBRACE, anon_sym_DQUOTE, - ACTIONS(6545), 1, - sym__special_character, - STATE(4469), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(6543), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(4517), 2, + aux_sym_include_argument_token1, + [269101] = 8, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6735), 1, + aux_sym_stream_definition_token1, + ACTIONS(6737), 1, + aux_sym_input_close_statement_token1, + ACTIONS(6739), 1, + aux_sym_input_close_statement_token2, + ACTIONS(6741), 1, + aux_sym_output_stream_statement_token1, + STATE(4643), 2, sym_comment, sym_include, - [261348] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [269127] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(5700), 1, + sym_on_stop_phrase, + ACTIONS(4512), 2, + anon_sym_COLON, anon_sym_COMMA, - ACTIONS(5990), 1, - aux_sym_data_relation_token1, - ACTIONS(6547), 1, - sym__terminator, - STATE(4300), 1, - aux_sym_data_relation_repeat1, - STATE(6081), 1, - sym_data_relation, - STATE(4518), 2, + STATE(4644), 2, sym_comment, sym_include, - [261377] = 9, - ACTIONS(65), 1, + [269151] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(5990), 1, - aux_sym_data_relation_token1, - ACTIONS(6549), 1, - sym__terminator, - STATE(4300), 1, - aux_sym_data_relation_repeat1, - STATE(6586), 1, - sym_data_relation, - STATE(4519), 2, + ACTIONS(6725), 1, + sym__escaped_string, + ACTIONS(6743), 1, + sym_identifier, + STATE(4370), 2, + sym_qualified_name, + sym_string_literal, + STATE(4645), 2, sym_comment, sym_include, - [261406] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [269175] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(5990), 1, - aux_sym_data_relation_token1, - ACTIONS(6551), 1, - sym__terminator, - STATE(4300), 1, - aux_sym_data_relation_repeat1, - STATE(6575), 1, - sym_data_relation, - STATE(4520), 2, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5458), 1, + sym_body, + STATE(4646), 2, sym_comment, sym_include, - [261435] = 8, - ACTIONS(65), 1, + [269201] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4595), 1, - sym_on_quit_phrase, - STATE(5382), 1, - sym_on_stop_phrase, - ACTIONS(4423), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4521), 2, + ACTIONS(6725), 1, + sym__escaped_string, + ACTIONS(6745), 1, + sym_identifier, + STATE(3925), 2, + sym_qualified_name, + sym_string_literal, + STATE(4647), 2, sym_comment, sym_include, - [261462] = 8, - ACTIONS(65), 1, + [269225] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(6747), 1, + sym__terminator, + STATE(4822), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4648), 2, + sym_comment, + sym_include, + [269251] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4589), 1, - sym_on_quit_phrase, - STATE(5388), 1, - sym_on_stop_phrase, - ACTIONS(4407), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4522), 2, + ACTIONS(4626), 1, + anon_sym_LPAREN, + STATE(3531), 1, + sym_function_arguments, + ACTIONS(829), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(4649), 2, sym_comment, sym_include, - [261489] = 8, + [269275] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3916), 1, + STATE(4650), 2, + sym_comment, + sym_include, + ACTIONS(6749), 4, sym_identifier, - ACTIONS(6432), 1, - sym__namedot, - STATE(4530), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(3918), 2, sym__terminator, - anon_sym_LBRACK, - STATE(4523), 2, + anon_sym_COMMA, + aux_sym_scope_tuning_token1, + [269295] = 5, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(4651), 2, sym_comment, sym_include, - [261516] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3440), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [269315] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(6553), 1, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(6747), 1, sym__terminator, - ACTIONS(6555), 1, - aux_sym_input_expression_token2, - ACTIONS(6557), 1, - aux_sym_prompt_for_statement_token2, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(4524), 2, + STATE(4658), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4652), 2, sym_comment, sym_include, - [261545] = 9, - ACTIONS(65), 1, + [269341] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6751), 1, + sym__integer_literal, + ACTIONS(6753), 1, + anon_sym_RBRACK, + STATE(185), 1, + sym__decimal_literal, + STATE(6293), 1, + sym_number_literal, + STATE(4653), 2, + sym_comment, + sym_include, + [269367] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(5990), 1, - aux_sym_data_relation_token1, - ACTIONS(6050), 1, - sym__terminator, - STATE(4504), 1, - aux_sym_data_relation_repeat1, - STATE(6041), 1, - sym_data_relation, - STATE(4525), 2, + STATE(4654), 2, sym_comment, sym_include, - [261574] = 7, + ACTIONS(3444), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [269387] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(117), 1, + ACTIONS(6755), 1, sym_identifier, - ACTIONS(6559), 1, - sym__namedot, - ACTIONS(119), 2, - sym__terminator, - anon_sym_LBRACK, - STATE(4526), 3, + STATE(129), 1, + sym_qualified_name, + ACTIONS(6757), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(4655), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - [261599] = 8, + [269411] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6545), 1, - sym__special_character, - ACTIONS(6562), 1, - anon_sym_DQUOTE, - STATE(4517), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(6543), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(4527), 2, + ACTIONS(6759), 1, + sym_identifier, + STATE(4656), 2, sym_comment, sym_include, - [261626] = 6, + ACTIONS(6761), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [269431] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6564), 1, - sym_identifier, - STATE(4528), 2, + STATE(4657), 2, sym_comment, sym_include, - ACTIONS(6566), 4, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - [261649] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6763), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_field_definition_token1, + [269451] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(6568), 1, + ACTIONS(6765), 1, sym__terminator, - ACTIONS(6570), 1, - aux_sym_input_expression_token2, - ACTIONS(6572), 1, - aux_sym_prompt_for_statement_token2, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(4529), 2, + ACTIONS(6767), 1, + aux_sym_field_definition_token1, + STATE(6029), 1, + sym_field_definition, + STATE(4658), 3, sym_comment, sym_include, - [261678] = 8, + aux_sym_workfile_definition_repeat3, + [269475] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(98), 1, + ACTIONS(6725), 1, + sym__escaped_string, + ACTIONS(6770), 1, sym_identifier, - ACTIONS(6432), 1, - sym__namedot, - STATE(4526), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(100), 2, - sym__terminator, - anon_sym_LBRACK, - STATE(4530), 2, + STATE(4408), 2, + sym_qualified_name, + sym_string_literal, + STATE(4659), 2, sym_comment, sym_include, - [261705] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [269499] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(6772), 1, sym__namedot, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(6574), 1, - anon_sym_RPAREN, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(5159), 1, - aux_sym_data_relation_repeat1, - STATE(4531), 2, + ACTIONS(108), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(4660), 3, sym_comment, sym_include, - [261734] = 6, - ACTIONS(3), 1, + aux_sym_qualified_name_repeat1, + [269521] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6576), 1, - sym_identifier, - STATE(4532), 2, + STATE(4661), 2, sym_comment, sym_include, - ACTIONS(6578), 4, - anon_sym_COLON, + ACTIONS(3432), 4, aux_sym__block_terminator_token1, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - [261757] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [269541] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4533), 2, + STATE(4662), 2, sym_comment, sym_include, - ACTIONS(6580), 5, - anon_sym_COLON, + ACTIONS(3430), 4, aux_sym__block_terminator_token1, - anon_sym_COMMA, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - [261778] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [269561] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6582), 1, - aux_sym_return_type_token2, - ACTIONS(6586), 1, - aux_sym_on_error_phrase_token8, - STATE(4534), 2, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(5801), 1, + sym__terminator, + STATE(4719), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4663), 2, sym_comment, sym_include, - ACTIONS(6584), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [261803] = 6, + [269587] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6590), 1, - aux_sym_widget_field_token1, - STATE(4535), 2, + ACTIONS(6725), 1, + sym__escaped_string, + ACTIONS(6775), 1, + sym_identifier, + STATE(3292), 2, + sym_qualified_name, + sym_string_literal, + STATE(4664), 2, sym_comment, sym_include, - ACTIONS(6588), 4, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_field_definition_token1, - [261826] = 5, - ACTIONS(65), 1, + [269611] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(5801), 1, + sym__terminator, + STATE(4658), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4665), 2, + sym_comment, + sym_include, + [269637] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4536), 2, + STATE(4666), 2, sym_comment, sym_include, - ACTIONS(6592), 5, - anon_sym_COLON, + ACTIONS(3446), 4, aux_sym__block_terminator_token1, - anon_sym_COMMA, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - [261847] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [269657] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4869), 1, - sym_on_quit_phrase, - STATE(5856), 1, - sym_on_stop_phrase, - ACTIONS(4450), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4537), 2, + STATE(4667), 2, sym_comment, sym_include, - [261874] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3448), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [269677] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4885), 1, - sym_on_quit_phrase, - STATE(5842), 1, - sym_on_stop_phrase, - ACTIONS(4491), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4538), 2, + ACTIONS(6777), 1, + sym__namedoublecolon, + ACTIONS(127), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(4668), 3, sym_comment, sym_include, - [261901] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_member_access_repeat1, + [269699] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6594), 1, - aux_sym_return_type_token2, - ACTIONS(6598), 1, - aux_sym_on_error_phrase_token8, - STATE(4539), 2, + STATE(4669), 2, sym_comment, sym_include, - ACTIONS(6596), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [261926] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(100), 4, + sym__namecolon, + sym__augmented_assignment, + anon_sym_LPAREN, + anon_sym_EQ, + [269719] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(6600), 1, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(6780), 1, sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(5340), 1, - aux_sym_data_relation_repeat1, - STATE(4540), 2, + STATE(4658), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4670), 2, sym_comment, sym_include, - [261955] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [269745] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6602), 1, - aux_sym_return_type_token2, - ACTIONS(6606), 1, - aux_sym_on_error_phrase_token8, - STATE(4541), 2, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(6780), 1, + sym__terminator, + STATE(4783), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4671), 2, sym_comment, sym_include, - ACTIONS(6604), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [261980] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [269771] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6608), 1, - aux_sym_return_type_token2, - ACTIONS(6612), 1, - aux_sym_on_error_phrase_token8, - STATE(4542), 2, + ACTIONS(5737), 1, + sym__terminator, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + STATE(4670), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4672), 2, sym_comment, sym_include, - ACTIONS(6610), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [262005] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [269797] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4543), 2, + STATE(4673), 2, sym_comment, sym_include, - ACTIONS(6614), 5, - sym__terminator, - aux_sym_query_definition_tuning_token1, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - aux_sym_query_definition_token3, - [262026] = 9, - ACTIONS(65), 1, + ACTIONS(3450), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [269817] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(6616), 1, - sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(5373), 1, - aux_sym_data_relation_repeat1, - STATE(4544), 2, + ACTIONS(6725), 1, + sym__escaped_string, + ACTIONS(6782), 1, + sym_identifier, + STATE(4360), 2, + sym_qualified_name, + sym_string_literal, + STATE(4674), 2, sym_comment, sym_include, - [262055] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [269841] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6620), 1, - aux_sym_repeat_tuning_token1, - STATE(5189), 1, - sym_repeat_tuning, - ACTIONS(6618), 2, - anon_sym_COLON, - aux_sym__block_terminator_token1, - STATE(4545), 3, + ACTIONS(5737), 1, + sym__terminator, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + STATE(4658), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4675), 2, sym_comment, sym_include, - aux_sym_repeat_statement_repeat1, - [262080] = 9, - ACTIONS(65), 1, + [269867] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5701), 1, - anon_sym_LPAREN, - ACTIONS(6623), 1, - sym__terminator, - STATE(5406), 1, - sym_function_parameters, - STATE(6662), 1, - sym_body, - STATE(4546), 2, + ACTIONS(6725), 1, + sym__escaped_string, + ACTIONS(6784), 1, + sym_identifier, + STATE(3277), 2, + sym_qualified_name, + sym_string_literal, + STATE(4676), 2, sym_comment, sym_include, - [262109] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [269891] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(6625), 1, - sym__terminator, - ACTIONS(6627), 1, - anon_sym_LPAREN, - STATE(5334), 1, - sym_function_parameters, - STATE(6656), 1, - sym_body, - STATE(4547), 2, + STATE(4677), 2, sym_comment, sym_include, - [262138] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3620), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [269911] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(5988), 1, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(5684), 1, + sym_on_stop_phrase, + ACTIONS(5767), 2, + anon_sym_COLON, anon_sym_COMMA, - ACTIONS(6629), 1, - sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(5191), 1, - aux_sym_data_relation_repeat1, - STATE(4548), 2, + STATE(4678), 2, sym_comment, sym_include, - [262167] = 5, + [269935] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4549), 2, + ACTIONS(6725), 1, + sym__escaped_string, + ACTIONS(6786), 1, + sym_identifier, + STATE(4313), 2, + sym_qualified_name, + sym_string_literal, + STATE(4679), 2, sym_comment, sym_include, - ACTIONS(2874), 5, - sym_identifier, - aux_sym_dataset_expression_token1, - aux_sym__function_argument_with_mode_token1, - aux_sym__function_argument_with_mode_token2, - aux_sym__function_argument_with_mode_token3, - [262188] = 9, - ACTIONS(65), 1, + [269959] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(6627), 1, - anon_sym_LPAREN, - ACTIONS(6631), 1, - sym__terminator, - STATE(5154), 1, - sym_function_parameters, - STATE(6427), 1, - sym_body, - STATE(4550), 2, + ACTIONS(6788), 1, + sym_identifier, + STATE(4680), 2, sym_comment, sym_include, - [262217] = 9, - ACTIONS(65), 1, + ACTIONS(6790), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [269979] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(5701), 1, - anon_sym_LPAREN, - ACTIONS(6633), 1, - sym__terminator, - STATE(5611), 1, - sym_function_parameters, - STATE(6470), 1, - sym_body, - STATE(4551), 2, + ACTIONS(6725), 1, + sym__escaped_string, + ACTIONS(6792), 1, + sym_identifier, + STATE(3263), 2, + sym_qualified_name, + sym_string_literal, + STATE(4681), 2, sym_comment, sym_include, - [262246] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [270003] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(6635), 1, - sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(5188), 1, - aux_sym_data_relation_repeat1, - STATE(4552), 2, + STATE(4682), 2, sym_comment, sym_include, - [262275] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3452), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [270023] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(6637), 1, - aux_sym_data_relation_token2, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(5293), 1, - aux_sym_data_relation_repeat1, - STATE(4553), 2, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(5777), 1, + sym__terminator, + STATE(4916), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4683), 2, sym_comment, sym_include, - [262304] = 9, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [270049] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(6639), 1, - sym__terminator, - ACTIONS(6641), 1, - aux_sym_input_expression_token2, - ACTIONS(6643), 1, - aux_sym_prompt_for_statement_token2, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(4554), 2, + STATE(4684), 2, sym_comment, sym_include, - [262333] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3622), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [270069] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6645), 1, + ACTIONS(6794), 1, aux_sym_return_type_token2, - ACTIONS(6649), 1, - aux_sym_on_error_phrase_token8, - STATE(4555), 2, + STATE(4685), 2, sym_comment, sym_include, - ACTIONS(6647), 3, + ACTIONS(6796), 3, aux_sym_on_error_phrase_token4, aux_sym_on_error_phrase_token5, aux_sym_on_error_phrase_token6, - [262358] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [270091] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4556), 2, - sym_comment, - sym_include, - ACTIONS(6651), 5, - sym__terminator, - aux_sym_query_definition_tuning_token1, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - aux_sym_query_definition_token3, - [262379] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4707), 1, - sym_on_quit_phrase, - STATE(5490), 1, - sym_on_stop_phrase, - ACTIONS(4469), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4557), 2, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(5777), 1, + sym__terminator, + STATE(4658), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4686), 2, sym_comment, sym_include, - [262406] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [270117] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5994), 1, - aux_sym_on_error_phrase_token1, - STATE(4754), 1, - sym_on_quit_phrase, - STATE(5498), 1, - sym_on_stop_phrase, - ACTIONS(4421), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4558), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6798), 1, + sym__terminator, + ACTIONS(6800), 1, + aux_sym_using_statement_token2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(4687), 2, sym_comment, sym_include, - [262433] = 5, - ACTIONS(65), 1, + [270143] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4559), 2, + ACTIONS(6725), 1, + sym__escaped_string, + ACTIONS(6802), 1, + sym_identifier, + STATE(4289), 2, + sym_qualified_name, + sym_string_literal, + STATE(4688), 2, sym_comment, sym_include, - ACTIONS(6653), 5, - anon_sym_COLON, - aux_sym__block_terminator_token1, - anon_sym_COMMA, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - [262454] = 5, + [270167] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4560), 2, + ACTIONS(6725), 1, + sym__escaped_string, + ACTIONS(6804), 1, + sym_identifier, + STATE(3928), 2, + sym_qualified_name, + sym_string_literal, + STATE(4689), 2, sym_comment, sym_include, - ACTIONS(6655), 5, - sym_identifier, - aux_sym_dataset_expression_token1, - aux_sym__function_argument_with_mode_token1, - aux_sym__function_argument_with_mode_token2, - aux_sym__function_argument_with_mode_token3, - [262475] = 6, + [270191] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5681), 1, + ACTIONS(6725), 1, + sym__escaped_string, + ACTIONS(6806), 1, sym_identifier, - STATE(4561), 2, + STATE(3264), 2, + sym_qualified_name, + sym_string_literal, + STATE(4690), 2, sym_comment, sym_include, - ACTIONS(5683), 4, - aux_sym_dataset_expression_token1, - aux_sym__function_argument_with_mode_token1, - aux_sym__function_argument_with_mode_token2, - aux_sym__function_argument_with_mode_token3, - [262498] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [270215] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4562), 2, + STATE(4691), 2, sym_comment, sym_include, - ACTIONS(6657), 5, - anon_sym_COLON, + ACTIONS(3624), 4, aux_sym__block_terminator_token1, - anon_sym_COMMA, - aux_sym_repeat_tuning_token1, - aux_sym_on_error_phrase_token1, - [262519] = 6, - ACTIONS(3), 1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [270235] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6661), 1, - aux_sym_widget_field_token1, - STATE(4563), 2, + STATE(4692), 2, sym_comment, sym_include, - ACTIONS(6659), 4, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_field_definition_token1, - [262542] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3249), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [270255] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5978), 1, - sym_body, - STATE(4564), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6808), 1, + anon_sym_LPAREN, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5601), 1, + sym_function_arguments, + STATE(4693), 2, sym_comment, sym_include, - [262568] = 8, - ACTIONS(65), 1, + [270281] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(6663), 1, - sym__terminator, - STATE(4868), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4565), 2, + ACTIONS(6458), 1, + sym_identifier, + STATE(4694), 2, sym_comment, sym_include, - [262594] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6460), 3, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_on_error_phrase_token1, + [270303] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4566), 2, + STATE(4695), 2, sym_comment, sym_include, - ACTIONS(6665), 4, - anon_sym_COLON, + ACTIONS(3632), 4, aux_sym__block_terminator_token1, - anon_sym_COMMA, - aux_sym_repeat_tuning_token1, - [262614] = 8, - ACTIONS(65), 1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [270323] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6667), 1, - sym__integer_literal, - ACTIONS(6669), 1, - anon_sym_RBRACK, - STATE(176), 1, - sym__decimal_literal, - STATE(6196), 1, - sym_number_literal, - STATE(4567), 2, + ACTIONS(6810), 1, + sym_identifier, + ACTIONS(6812), 1, + sym__terminator, + ACTIONS(6814), 1, + aux_sym_query_definition_token1, + STATE(5307), 1, + sym_qualified_name, + STATE(4696), 2, sym_comment, sym_include, - [262640] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [270349] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(5518), 1, - sym__terminator, - STATE(5022), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4568), 2, + STATE(4697), 2, sym_comment, sym_include, - [262666] = 7, - ACTIONS(3), 1, + ACTIONS(6816), 4, + sym__terminator, + aux_sym_query_definition_tuning_token1, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + [270369] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6671), 1, - sym_identifier, - ACTIONS(6673), 1, - sym__escaped_string, - STATE(3865), 2, - sym_qualified_name, - sym_string_literal, - STATE(4569), 2, + ACTIONS(6818), 1, + aux_sym_return_type_token2, + STATE(4698), 2, sym_comment, sym_include, - [262690] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6820), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [270391] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4570), 2, + STATE(4699), 2, sym_comment, sym_include, - ACTIONS(3645), 4, + ACTIONS(3634), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [262710] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [270411] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4571), 2, + STATE(4700), 2, sym_comment, sym_include, - ACTIONS(3647), 4, + ACTIONS(3596), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [262730] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [270431] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5961), 1, - sym_body, - STATE(4572), 2, - sym_comment, - sym_include, - [262756] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4573), 2, + STATE(4701), 2, sym_comment, sym_include, - ACTIONS(3649), 4, + ACTIONS(3618), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [262776] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [270451] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4574), 2, + STATE(4702), 2, sym_comment, sym_include, - ACTIONS(3651), 4, + ACTIONS(3454), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [262796] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [270471] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4575), 2, + STATE(4703), 2, sym_comment, sym_include, - ACTIONS(3653), 4, + ACTIONS(3618), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [262816] = 7, + [270491] = 8, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(4825), 1, + aux_sym_for_statement_repeat1, + STATE(5801), 1, + sym_body, + STATE(4704), 2, + sym_comment, + sym_include, + [270517] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6673), 1, - sym__escaped_string, - ACTIONS(6675), 1, + ACTIONS(6676), 1, sym_identifier, - STATE(3835), 2, - sym_qualified_name, - sym_string_literal, - STATE(4576), 2, + STATE(4705), 2, + sym_comment, + sym_include, + ACTIONS(6678), 3, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_on_error_phrase_token1, + [270539] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6690), 1, + sym_identifier, + STATE(4706), 2, sym_comment, sym_include, - [262840] = 5, - ACTIONS(65), 1, + ACTIONS(6692), 3, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_on_error_phrase_token1, + [270561] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(4852), 1, + aux_sym_for_statement_repeat1, + STATE(5707), 1, + sym_body, + STATE(4707), 2, + sym_comment, + sym_include, + [270587] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4577), 2, + STATE(4708), 2, sym_comment, sym_include, - ACTIONS(3655), 4, + ACTIONS(3592), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [262860] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [270607] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6677), 1, - aux_sym_using_statement_token2, - ACTIONS(6679), 1, - aux_sym_stream_definition_token1, - ACTIONS(6681), 1, - aux_sym_input_close_statement_token1, - ACTIONS(6683), 1, - aux_sym_input_close_statement_token2, - STATE(4578), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(6327), 1, + sym_body, + STATE(4709), 2, sym_comment, sym_include, - [262886] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [270633] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(4597), 1, - aux_sym_for_statement_repeat1, - STATE(5961), 1, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(6302), 1, sym_body, - STATE(4579), 2, + STATE(4710), 2, sym_comment, sym_include, - [262912] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [270659] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4580), 2, + STATE(4711), 2, sym_comment, sym_include, - ACTIONS(6685), 4, - anon_sym_COLON, + ACTIONS(3584), 4, aux_sym__block_terminator_token1, - anon_sym_COMMA, - aux_sym_repeat_tuning_token1, - [262932] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [270679] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(6687), 1, - sym__terminator, - ACTIONS(6689), 1, - aux_sym_using_statement_token2, - STATE(340), 1, + ACTIONS(6822), 1, + anon_sym_LPAREN, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(4581), 2, + STATE(1342), 1, + sym_function_arguments, + STATE(4712), 2, sym_comment, sym_include, - [262958] = 7, - ACTIONS(3), 1, + [270705] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6673), 1, - sym__escaped_string, - ACTIONS(6691), 1, - sym_identifier, - STATE(3224), 2, - sym_qualified_name, - sym_string_literal, - STATE(4582), 2, + ACTIONS(6824), 1, + aux_sym_using_statement_token2, + ACTIONS(6826), 1, + aux_sym_stream_definition_token1, + ACTIONS(6828), 1, + aux_sym_input_close_statement_token1, + ACTIONS(6830), 1, + aux_sym_input_close_statement_token2, + STATE(4713), 2, sym_comment, sym_include, - [262982] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [270731] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(5581), 1, - sym__terminator, - STATE(4639), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4583), 2, + ACTIONS(3759), 1, + anon_sym_COMMA, + ACTIONS(6832), 1, + aux_sym_of_token1, + ACTIONS(6834), 1, + aux_sym_on_statement_token1, + STATE(4925), 1, + aux_sym_on_statement_repeat1, + STATE(4714), 2, sym_comment, sym_include, - [263008] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [270757] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(4784), 1, - aux_sym_for_statement_repeat1, - STATE(5506), 1, - sym_body, - STATE(4584), 2, + ACTIONS(6836), 1, + aux_sym_stream_definition_token1, + ACTIONS(6838), 1, + aux_sym_input_close_statement_token1, + ACTIONS(6840), 1, + aux_sym_input_close_statement_token2, + ACTIONS(6842), 1, + aux_sym_output_stream_statement_token1, + STATE(4715), 2, sym_comment, sym_include, - [263034] = 8, - ACTIONS(65), 1, + [270783] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4626), 1, + anon_sym_LPAREN, + STATE(3531), 1, + sym_function_arguments, + ACTIONS(5775), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(4716), 2, + sym_comment, + sym_include, + [270807] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(5581), 1, + ACTIONS(6844), 1, sym__terminator, - STATE(4997), 1, + STATE(4658), 1, aux_sym_workfile_definition_repeat3, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(4585), 2, + STATE(4717), 2, sym_comment, sym_include, - [263060] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [270833] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4586), 2, + STATE(4718), 2, sym_comment, sym_include, - ACTIONS(3663), 4, + ACTIONS(3706), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [263080] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [270853] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6667), 1, - sym__integer_literal, - ACTIONS(6693), 1, - anon_sym_RBRACK, - STATE(176), 1, - sym__decimal_literal, - STATE(6172), 1, - sym_number_literal, - STATE(4587), 2, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(6846), 1, + sym__terminator, + STATE(4658), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4719), 2, sym_comment, sym_include, - [263106] = 5, - ACTIONS(65), 1, + [270879] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(6846), 1, + sym__terminator, + STATE(4768), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4720), 2, + sym_comment, + sym_include, + [270905] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4588), 2, + STATE(4721), 2, sym_comment, sym_include, - ACTIONS(3665), 4, + ACTIONS(3456), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [263126] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [270925] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(5498), 1, - sym_on_stop_phrase, - ACTIONS(4421), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4589), 2, - sym_comment, - sym_include, - [263150] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4590), 2, + STATE(4722), 2, sym_comment, sym_include, - ACTIONS(3667), 4, + ACTIONS(3428), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [263170] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [270945] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6695), 1, - aux_sym_stream_definition_token1, - ACTIONS(6697), 1, - aux_sym_input_close_statement_token1, - ACTIONS(6699), 1, - aux_sym_input_close_statement_token2, - ACTIONS(6701), 1, - aux_sym_output_stream_statement_token1, - STATE(4591), 2, + STATE(4723), 2, sym_comment, sym_include, - [263196] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3426), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [270965] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(4622), 1, - aux_sym_for_statement_repeat1, - STATE(6013), 1, - sym_body, - STATE(4592), 2, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(5781), 1, + sym__terminator, + STATE(4776), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4724), 2, sym_comment, sym_include, - [263222] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [270991] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4593), 2, + STATE(4725), 2, sym_comment, sym_include, - ACTIONS(3669), 4, + ACTIONS(3424), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [263242] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [271011] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4594), 2, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(5781), 1, + sym__terminator, + STATE(4658), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4726), 2, sym_comment, sym_include, - ACTIONS(3671), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [263262] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [271037] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(5490), 1, + STATE(6035), 1, sym_on_stop_phrase, - ACTIONS(4469), 2, + ACTIONS(4464), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(4595), 2, + STATE(4727), 2, sym_comment, sym_include, - [263286] = 7, - ACTIONS(3), 1, + [271061] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6673), 1, - sym__escaped_string, - ACTIONS(6703), 1, - sym_identifier, - STATE(4423), 2, - sym_qualified_name, - sym_string_literal, - STATE(4596), 2, + STATE(4728), 2, sym_comment, sym_include, - [263310] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3422), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [271081] = 7, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(6013), 1, - sym_body, - STATE(4597), 2, - sym_comment, - sym_include, - [263336] = 7, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6705), 1, - sym_identifier, - STATE(125), 1, - sym_qualified_name, - ACTIONS(6707), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(4598), 2, + ACTIONS(823), 1, + sym__namedot, + STATE(4660), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(104), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(4729), 2, sym_comment, sym_include, - [263360] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [271105] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4599), 2, + STATE(4730), 2, sym_comment, sym_include, - ACTIONS(3673), 4, + ACTIONS(3420), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [263380] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [271125] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4600), 2, + STATE(4731), 2, sym_comment, sym_include, - ACTIONS(3675), 4, + ACTIONS(3418), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [263400] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [271145] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4601), 2, + STATE(4732), 2, sym_comment, sym_include, - ACTIONS(3683), 4, + ACTIONS(3416), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [263420] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [271165] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5534), 1, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(6144), 1, sym_body, - STATE(4602), 2, + STATE(4733), 2, sym_comment, sym_include, - [263446] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [271191] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(4821), 1, - aux_sym_for_statement_repeat1, - STATE(5534), 1, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(6153), 1, sym_body, - STATE(4603), 2, + STATE(4734), 2, sym_comment, sym_include, - [263472] = 5, - ACTIONS(65), 1, + [271217] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(6073), 1, + sym_on_stop_phrase, + ACTIONS(4430), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4735), 2, + sym_comment, + sym_include, + [271241] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4604), 2, + STATE(4736), 2, sym_comment, sym_include, - ACTIONS(3685), 4, + ACTIONS(3414), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [263492] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [271261] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(5565), 1, - sym__terminator, - STATE(4997), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4605), 2, - sym_comment, - sym_include, - [263518] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(4641), 1, - aux_sym_for_statement_repeat1, - STATE(6019), 1, - sym_body, - STATE(4606), 2, + STATE(4737), 2, sym_comment, sym_include, - [263544] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3412), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [271281] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4607), 2, + STATE(4738), 2, sym_comment, sym_include, - ACTIONS(3687), 4, + ACTIONS(3410), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [263564] = 7, - ACTIONS(3), 1, + [271301] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6673), 1, - sym__escaped_string, - ACTIONS(6709), 1, - sym_identifier, - STATE(3885), 2, - sym_qualified_name, - sym_string_literal, - STATE(4608), 2, + STATE(4739), 2, sym_comment, sym_include, - [263588] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3225), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [271321] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(6711), 1, - sym__terminator, - ACTIONS(6713), 1, - aux_sym_using_statement_token2, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(4609), 2, + ACTIONS(3759), 1, + anon_sym_COMMA, + ACTIONS(6848), 1, + aux_sym_of_token1, + ACTIONS(6850), 1, + aux_sym_on_statement_token1, + STATE(4925), 1, + aux_sym_on_statement_repeat1, + STATE(4740), 2, sym_comment, sym_include, - [263614] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [271347] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(4626), 1, + anon_sym_LPAREN, + ACTIONS(5902), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(6019), 1, - sym_body, - STATE(4610), 2, + STATE(3531), 1, + sym_function_arguments, + STATE(5234), 1, + sym_case_body, + STATE(4741), 2, sym_comment, sym_include, - [263640] = 7, + [271373] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6715), 1, + ACTIONS(6852), 1, sym_identifier, - STATE(127), 1, + STATE(114), 1, sym_qualified_name, - ACTIONS(6717), 2, + ACTIONS(6854), 2, aux_sym_for_phrase_token2, aux_sym_for_phrase_token3, - STATE(4611), 2, + STATE(4742), 2, sym_comment, sym_include, - [263664] = 8, - ACTIONS(65), 1, + [271397] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(4802), 1, - aux_sym_for_statement_repeat1, - STATE(5729), 1, - sym_body, - STATE(4612), 2, + ACTIONS(6628), 1, + sym_identifier, + STATE(4743), 2, sym_comment, sym_include, - [263690] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6630), 3, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_on_error_phrase_token1, + [271419] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(6719), 1, - anon_sym_LPAREN, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(1044), 1, - sym_function_arguments, - STATE(4613), 2, - sym_comment, - sym_include, - [263716] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(4634), 1, aux_sym_for_statement_repeat1, - STATE(5729), 1, + STATE(5491), 1, sym_body, - STATE(4614), 2, + STATE(4744), 2, sym_comment, sym_include, - [263742] = 6, - ACTIONS(3), 1, + [271445] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6468), 1, - sym_identifier, - STATE(4615), 2, + STATE(4745), 2, sym_comment, sym_include, - ACTIONS(6470), 3, - anon_sym_COLON, - anon_sym_COMMA, - aux_sym_on_error_phrase_token1, - [263764] = 7, + ACTIONS(3436), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [271465] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6721), 1, + ACTIONS(6672), 1, sym_identifier, - STATE(5745), 1, - sym_object_access, - STATE(3328), 2, - sym_qualified_name, - sym_function_call, - STATE(4616), 2, + STATE(4746), 2, sym_comment, sym_include, - [263788] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6674), 3, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_on_error_phrase_token1, + [271487] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_LPAREN, - ACTIONS(818), 1, - sym__namedot, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(1437), 1, - sym_function_arguments, - STATE(4617), 2, - sym_comment, - sym_include, - [263814] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6723), 1, - aux_sym_stream_definition_token1, - ACTIONS(6725), 1, - aux_sym_input_close_statement_token1, - ACTIONS(6727), 1, - aux_sym_input_close_statement_token2, - ACTIONS(6729), 1, - aux_sym_output_stream_statement_token1, - STATE(4618), 2, + STATE(4747), 2, sym_comment, sym_include, - [263840] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3708), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [271507] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6731), 1, - aux_sym_using_statement_token2, - ACTIONS(6733), 1, - aux_sym_stream_definition_token1, - ACTIONS(6735), 1, - aux_sym_input_close_statement_token1, - ACTIONS(6737), 1, - aux_sym_input_close_statement_token2, - STATE(4619), 2, - sym_comment, - sym_include, - [263866] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5761), 1, + STATE(6093), 1, sym_body, - STATE(4620), 2, + STATE(4748), 2, sym_comment, sym_include, - [263892] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [271533] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4620), 1, + STATE(4990), 1, aux_sym_for_statement_repeat1, - STATE(5758), 1, + STATE(6093), 1, sym_body, - STATE(4621), 2, + STATE(4749), 2, sym_comment, sym_include, - [263918] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [271559] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(6012), 1, - sym_body, - STATE(4622), 2, + ACTIONS(6725), 1, + sym__escaped_string, + STATE(4340), 1, + sym_string_literal, + ACTIONS(6856), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(4750), 2, sym_comment, sym_include, - [263944] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [271583] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5758), 1, - sym_body, - STATE(4623), 2, + ACTIONS(827), 1, + sym__namedoublecolon, + STATE(4668), 1, + aux_sym_member_access_repeat1, + ACTIONS(119), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(4751), 2, sym_comment, sym_include, - [263970] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [271607] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5757), 1, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(6342), 1, sym_body, - STATE(4624), 2, + STATE(4752), 2, sym_comment, sym_include, - [263996] = 7, - ACTIONS(3), 1, + [271633] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6739), 1, - sym_identifier, - STATE(5745), 1, - sym_object_access, - STATE(3315), 2, - sym_qualified_name, - sym_function_call, - STATE(4625), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(6363), 1, + sym_body, + STATE(4753), 2, sym_comment, sym_include, - [264020] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [271659] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3759), 1, anon_sym_COMMA, - STATE(4666), 1, - aux_sym_for_statement_repeat1, - STATE(6012), 1, - sym_body, - STATE(4626), 2, + ACTIONS(6858), 1, + aux_sym_of_token1, + ACTIONS(6860), 1, + aux_sym_on_statement_token1, + STATE(4925), 1, + aux_sym_on_statement_repeat1, + STATE(4754), 2, sym_comment, sym_include, - [264046] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [271685] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + STATE(4755), 2, + sym_comment, + sym_include, + ACTIONS(6862), 4, anon_sym_COLON, - ACTIONS(3788), 1, + aux_sym__block_terminator_token1, anon_sym_COMMA, - STATE(4623), 1, - aux_sym_for_statement_repeat1, - STATE(5756), 1, - sym_body, - STATE(4627), 2, + aux_sym_repeat_tuning_token1, + [271705] = 5, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(4756), 2, sym_comment, sym_include, - [264072] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3710), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [271725] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5756), 1, + STATE(5801), 1, sym_body, - STATE(4628), 2, + STATE(4757), 2, sym_comment, sym_include, - [264098] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [271751] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(4624), 1, - aux_sym_for_statement_repeat1, - STATE(5755), 1, - sym_body, - STATE(4629), 2, + STATE(4758), 2, sym_comment, sym_include, - [264124] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6864), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + anon_sym_COMMA, + aux_sym_repeat_tuning_token1, + [271771] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(5518), 1, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6866), 1, sym__terminator, - STATE(4997), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4630), 2, + ACTIONS(6868), 1, + aux_sym_using_statement_token2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(4759), 2, sym_comment, sym_include, - [264150] = 8, + [271797] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6741), 1, + ACTIONS(6870), 1, sym_identifier, - ACTIONS(6743), 1, - sym__terminator, - ACTIONS(6745), 1, - aux_sym_query_definition_token1, - STATE(5315), 1, - sym_qualified_name, - STATE(4631), 2, + STATE(4760), 2, sym_comment, sym_include, - [264176] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6872), 3, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + [271819] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5755), 1, - sym_body, - STATE(4632), 2, + ACTIONS(6874), 1, + aux_sym_return_type_token2, + STATE(4761), 2, sym_comment, sym_include, - [264202] = 8, - ACTIONS(65), 1, + ACTIONS(6876), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [271841] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(4683), 1, - aux_sym_for_statement_repeat1, - STATE(5996), 1, - sym_body, - STATE(4633), 2, + ACTIONS(6878), 1, + sym_identifier, + STATE(4762), 2, sym_comment, sym_include, - [264228] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6880), 3, + anon_sym_COLON, + aux_sym__block_terminator_token1, + aux_sym_repeat_tuning_token1, + [271863] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4634), 2, + ACTIONS(6751), 1, + sym__integer_literal, + ACTIONS(6882), 1, + anon_sym_RBRACK, + STATE(185), 1, + sym__decimal_literal, + STATE(6530), 1, + sym_number_literal, + STATE(4763), 2, sym_comment, sym_include, - ACTIONS(3714), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [264248] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [271889] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4635), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6884), 1, + anon_sym_LPAREN, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5482), 1, + sym_function_arguments, + STATE(4764), 2, sym_comment, sym_include, - ACTIONS(3728), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [264268] = 8, - ACTIONS(3), 1, + [271915] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6747), 1, - sym_identifier, - ACTIONS(6749), 1, - sym__terminator, - ACTIONS(6751), 1, - aux_sym_query_definition_token1, - STATE(5206), 1, - sym_qualified_name, - STATE(4636), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6886), 1, + anon_sym_LPAREN, + STATE(59), 1, + sym_function_arguments, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(4765), 2, sym_comment, sym_include, - [264294] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [271941] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(4628), 1, - aux_sym_for_statement_repeat1, - STATE(5753), 1, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(6471), 1, sym_body, - STATE(4637), 2, + STATE(4766), 2, sym_comment, sym_include, - [264320] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [271967] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5753), 1, - sym_body, - STATE(4638), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6888), 1, + anon_sym_LPAREN, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(2599), 1, + sym_function_arguments, + STATE(4767), 2, sym_comment, sym_include, - [264346] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [271993] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(6753), 1, + ACTIONS(6890), 1, sym__terminator, - STATE(4997), 1, + STATE(4658), 1, aux_sym_workfile_definition_repeat3, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(4639), 2, + STATE(4768), 2, + sym_comment, + sym_include, + [272019] = 8, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(4789), 1, + aux_sym_for_statement_repeat1, + STATE(5947), 1, + sym_body, + STATE(4769), 2, sym_comment, sym_include, - [264372] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272045] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(6753), 1, - sym__terminator, - STATE(4688), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4640), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(6496), 1, + sym_body, + STATE(4770), 2, sym_comment, sym_include, - [264398] = 8, - ACTIONS(65), 1, + [272071] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6892), 1, + aux_sym_return_type_token2, + STATE(4771), 2, + sym_comment, + sym_include, + ACTIONS(6894), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [272093] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3759), 1, anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5996), 1, - sym_body, - STATE(4641), 2, + ACTIONS(6896), 1, + aux_sym_of_token1, + ACTIONS(6898), 1, + aux_sym_on_statement_token1, + STATE(4925), 1, + aux_sym_on_statement_repeat1, + STATE(4772), 2, sym_comment, sym_include, - [264424] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272119] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3759), 1, anon_sym_COMMA, - STATE(4632), 1, - aux_sym_for_statement_repeat1, - STATE(5752), 1, - sym_body, - STATE(4642), 2, + ACTIONS(6900), 1, + aux_sym_of_token1, + ACTIONS(6902), 1, + aux_sym_on_statement_token1, + STATE(4925), 1, + aux_sym_on_statement_repeat1, + STATE(4773), 2, sym_comment, sym_include, - [264450] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272145] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5752), 1, + STATE(5947), 1, sym_body, - STATE(4643), 2, + STATE(4774), 2, sym_comment, sym_include, - [264476] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272171] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(5583), 1, - sym__terminator, - STATE(4696), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4644), 2, + ACTIONS(6725), 1, + sym__escaped_string, + STATE(4329), 1, + sym_string_literal, + ACTIONS(6904), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(4775), 2, sym_comment, sym_include, - [264502] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272195] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(6755), 1, + ACTIONS(6906), 1, sym__terminator, - STATE(4997), 1, + STATE(4658), 1, aux_sym_workfile_definition_repeat3, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(4645), 2, + STATE(4776), 2, sym_comment, sym_include, - [264528] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272221] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(5583), 1, + ACTIONS(6906), 1, sym__terminator, - STATE(4997), 1, + STATE(4810), 1, aux_sym_workfile_definition_repeat3, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(4646), 2, - sym_comment, - sym_include, - [264554] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(4647), 2, + STATE(4777), 2, sym_comment, sym_include, - ACTIONS(6757), 4, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_field_definition_token1, - [264574] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272247] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(6759), 1, - anon_sym_LPAREN, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(5474), 1, - sym_function_arguments, - STATE(4648), 2, - sym_comment, - sym_include, - [264600] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4649), 2, + STATE(4778), 2, sym_comment, sym_include, - ACTIONS(3620), 4, + ACTIONS(3712), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [264620] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272267] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4650), 2, + STATE(4779), 2, sym_comment, sym_include, - ACTIONS(3618), 4, + ACTIONS(3464), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [264640] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272287] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4651), 2, + STATE(4780), 2, sym_comment, sym_include, - ACTIONS(3728), 4, + ACTIONS(3714), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [264660] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272307] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5506), 1, - sym_body, - STATE(4652), 2, + ACTIONS(6751), 1, + sym__integer_literal, + ACTIONS(6908), 1, + anon_sym_RBRACK, + STATE(185), 1, + sym__decimal_literal, + STATE(6493), 1, + sym_number_literal, + STATE(4781), 2, sym_comment, sym_include, - [264686] = 8, - ACTIONS(65), 1, + [272333] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(4638), 1, - aux_sym_for_statement_repeat1, - STATE(5751), 1, - sym_body, - STATE(4653), 2, + STATE(4782), 2, sym_comment, sym_include, - [264712] = 8, - ACTIONS(65), 1, + ACTIONS(6910), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_field_definition_token1, + [272353] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(6912), 1, + sym__terminator, + STATE(4658), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4783), 2, + sym_comment, + sym_include, + [272379] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(4748), 1, aux_sym_for_statement_repeat1, - STATE(5751), 1, + STATE(5602), 1, sym_body, - STATE(4654), 2, + STATE(4784), 2, sym_comment, sym_include, - [264738] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272405] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4655), 2, - sym_comment, - sym_include, - ACTIONS(3718), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [264758] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5037), 1, + STATE(4841), 1, aux_sym_for_statement_repeat1, - STATE(5689), 1, + STATE(5865), 1, sym_body, - STATE(4656), 2, + STATE(4785), 2, sym_comment, sym_include, - [264784] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272431] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4657), 2, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(6914), 1, + sym__terminator, + STATE(4658), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4786), 2, sym_comment, sym_include, - ACTIONS(3610), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [264804] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272457] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4658), 2, + STATE(4787), 2, sym_comment, sym_include, - ACTIONS(3608), 4, + ACTIONS(3460), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [264824] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272477] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(6761), 1, - sym__terminator, - ACTIONS(6763), 1, - aux_sym_using_statement_token2, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(4659), 2, - sym_comment, - sym_include, - [264850] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4643), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5826), 1, + STATE(5602), 1, sym_body, - STATE(4660), 2, + STATE(4788), 2, sym_comment, sym_include, - [264876] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272503] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5826), 1, + STATE(5865), 1, sym_body, - STATE(4661), 2, + STATE(4789), 2, sym_comment, sym_include, - [264902] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272529] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4662), 2, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(5820), 1, + sym__terminator, + STATE(4798), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4790), 2, sym_comment, sym_include, - ACTIONS(3720), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [264922] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272555] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4663), 2, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(5820), 1, + sym__terminator, + STATE(4658), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4791), 2, sym_comment, sym_include, - ACTIONS(3722), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [264942] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272581] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(5574), 1, + sym_on_stop_phrase, + ACTIONS(4420), 2, anon_sym_COLON, - ACTIONS(3788), 1, anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5689), 1, - sym_body, - STATE(4664), 2, + STATE(4792), 2, sym_comment, sym_include, - [264968] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272605] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(6765), 1, - anon_sym_LPAREN, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(2441), 1, - sym_function_arguments, - STATE(4665), 2, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(6916), 1, + sym__terminator, + STATE(4717), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4793), 2, sym_comment, sym_include, - [264994] = 8, - ACTIONS(65), 1, + [272631] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5990), 1, - sym_body, - STATE(4666), 2, + STATE(4794), 2, sym_comment, sym_include, - [265020] = 8, - ACTIONS(65), 1, + ACTIONS(248), 4, + sym_identifier, + sym__terminator, + anon_sym_LBRACK, + aux_sym_scope_tuning_token1, + [272651] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(4654), 1, - aux_sym_for_statement_repeat1, - STATE(5746), 1, - sym_body, - STATE(4667), 2, + ACTIONS(6918), 1, + sym_identifier, + ACTIONS(6920), 1, + aux_sym_input_expression_token2, + STATE(3229), 1, + sym_using_field, + STATE(3261), 1, + sym_qualified_name, + STATE(4795), 2, sym_comment, sym_include, - [265046] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272677] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(5894), 1, + sym_on_stop_phrase, + ACTIONS(6526), 2, anon_sym_COLON, - ACTIONS(3788), 1, anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5746), 1, - sym_body, - STATE(4668), 2, + STATE(4796), 2, sym_comment, sym_include, - [265072] = 8, - ACTIONS(65), 1, + [272701] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(4700), 1, - aux_sym_for_statement_repeat1, - STATE(5990), 1, - sym_body, - STATE(4669), 2, + ACTIONS(6922), 1, + sym_identifier, + STATE(124), 1, + sym_qualified_name, + ACTIONS(6924), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(4797), 2, sym_comment, sym_include, - [265098] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272725] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4670), 2, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(6916), 1, + sym__terminator, + STATE(4658), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4798), 2, sym_comment, sym_include, - ACTIONS(3730), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [265118] = 7, - ACTIONS(3), 1, + [272751] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6673), 1, - sym__escaped_string, - ACTIONS(6767), 1, - sym_identifier, - STATE(4305), 2, - sym_qualified_name, - sym_string_literal, - STATE(4671), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6888), 1, + anon_sym_LPAREN, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(2694), 1, + sym_function_arguments, + STATE(4799), 2, sym_comment, sym_include, - [265142] = 7, + [272777] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6673), 1, - sym__escaped_string, - ACTIONS(6769), 1, + ACTIONS(6926), 1, sym_identifier, - STATE(3237), 2, + STATE(120), 1, sym_qualified_name, - sym_string_literal, - STATE(4672), 2, + ACTIONS(6928), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(4800), 2, sym_comment, sym_include, - [265166] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272801] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(4661), 1, - aux_sym_for_statement_repeat1, - STATE(5741), 1, - sym_body, - STATE(4673), 2, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(6930), 1, + sym__terminator, + STATE(4936), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4801), 2, sym_comment, sym_include, - [265192] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272827] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(4862), 1, aux_sym_for_statement_repeat1, - STATE(5741), 1, + STATE(5831), 1, sym_body, - STATE(4674), 2, + STATE(4802), 2, sym_comment, sym_include, - [265218] = 7, + [272853] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6673), 1, - sym__escaped_string, - ACTIONS(6771), 1, + ACTIONS(6932), 1, sym_identifier, - STATE(4324), 2, + STATE(112), 1, sym_qualified_name, - sym_string_literal, - STATE(4675), 2, + ACTIONS(6934), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(4803), 2, sym_comment, sym_include, - [265242] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272877] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6773), 1, - aux_sym_return_type_token2, - STATE(4676), 2, - sym_comment, - sym_include, - ACTIONS(6775), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [265264] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6777), 1, - aux_sym_return_type_token2, - STATE(4677), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(4788), 1, + aux_sym_for_statement_repeat1, + STATE(5713), 1, + sym_body, + STATE(4804), 2, sym_comment, sym_include, - ACTIONS(6779), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [265286] = 6, - ACTIONS(65), 1, + [272903] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6781), 1, - aux_sym_return_type_token2, - STATE(4678), 2, + ACTIONS(6936), 1, + sym_identifier, + STATE(111), 1, + sym_qualified_name, + ACTIONS(6938), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(4805), 2, sym_comment, sym_include, - ACTIONS(6783), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [265308] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272927] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4679), 2, + STATE(4806), 2, sym_comment, sym_include, - ACTIONS(3732), 4, + ACTIONS(3716), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [265328] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272947] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3303), 1, - anon_sym_COMMA, - ACTIONS(6785), 1, - aux_sym_of_token1, - ACTIONS(6787), 1, - aux_sym_on_statement_token1, - STATE(4905), 1, - aux_sym_on_statement_repeat1, - STATE(4680), 2, - sym_comment, - sym_include, - [265354] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4681), 2, + STATE(4807), 2, sym_comment, sym_include, - ACTIONS(3606), 4, + ACTIONS(3718), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [265374] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [272967] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6789), 1, - aux_sym_using_statement_token2, - ACTIONS(6791), 1, - aux_sym_stream_definition_token1, - ACTIONS(6793), 1, - aux_sym_input_close_statement_token1, - ACTIONS(6795), 1, - aux_sym_input_close_statement_token2, - STATE(4682), 2, + STATE(4808), 2, sym_comment, sym_include, - [265400] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3720), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [272987] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5986), 1, - sym_body, - STATE(4683), 2, + STATE(4809), 2, sym_comment, sym_include, - [265426] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3406), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [273007] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(6797), 1, + ACTIONS(6940), 1, sym__terminator, - STATE(4645), 1, + STATE(4658), 1, aux_sym_workfile_definition_repeat3, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(4684), 2, + STATE(4810), 2, sym_comment, sym_include, - [265452] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273033] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6799), 1, - aux_sym_stream_definition_token1, - ACTIONS(6801), 1, - aux_sym_input_close_statement_token1, - ACTIONS(6803), 1, - aux_sym_input_close_statement_token2, - ACTIONS(6805), 1, - aux_sym_output_stream_statement_token1, - STATE(4685), 2, + STATE(4811), 2, sym_comment, sym_include, - [265478] = 8, - ACTIONS(65), 1, + ACTIONS(3722), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [273053] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(4668), 1, - aux_sym_for_statement_repeat1, - STATE(5737), 1, - sym_body, - STATE(4686), 2, + ACTIONS(6942), 1, + sym_identifier, + STATE(113), 1, + sym_qualified_name, + ACTIONS(6944), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(4812), 2, sym_comment, sym_include, - [265504] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273077] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(4564), 1, - aux_sym_for_statement_repeat1, - STATE(5986), 1, - sym_body, - STATE(4687), 2, + STATE(4813), 2, sym_comment, sym_include, - [265530] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3724), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [273097] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(6807), 1, + ACTIONS(6946), 1, sym__terminator, - STATE(4997), 1, + STATE(4786), 1, aux_sym_workfile_definition_repeat3, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(4688), 2, - sym_comment, - sym_include, - [265556] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6673), 1, - sym__escaped_string, - ACTIONS(6809), 1, - sym_identifier, - STATE(3227), 2, - sym_qualified_name, - sym_string_literal, - STATE(4689), 2, + STATE(4814), 2, sym_comment, sym_include, - [265580] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273123] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(6797), 1, + ACTIONS(6946), 1, sym__terminator, - STATE(4997), 1, + STATE(4658), 1, aux_sym_workfile_definition_repeat3, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(4690), 2, + STATE(4815), 2, sym_comment, sym_include, - [265606] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273149] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5737), 1, - sym_body, - STATE(4691), 2, - sym_comment, - sym_include, - [265632] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(4602), 1, - aux_sym_for_statement_repeat1, - STATE(5392), 1, - sym_body, - STATE(4692), 2, + STATE(4816), 2, sym_comment, sym_include, - [265658] = 7, + ACTIONS(3726), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [273169] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6811), 1, + ACTIONS(6948), 1, sym_identifier, - STATE(5745), 1, - sym_object_access, - STATE(3307), 2, + STATE(122), 1, sym_qualified_name, - sym_function_call, - STATE(4693), 2, + ACTIONS(6950), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(4817), 2, sym_comment, sym_include, - [265682] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273193] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4694), 2, + STATE(4818), 2, sym_comment, sym_include, - ACTIONS(3734), 4, + ACTIONS(3728), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [265702] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273213] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5392), 1, - sym_body, - STATE(4695), 2, + STATE(4819), 2, sym_comment, sym_include, - [265728] = 8, - ACTIONS(65), 1, + ACTIONS(3730), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [273233] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(4820), 2, + sym_comment, + sym_include, + ACTIONS(3732), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [273253] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(6813), 1, + ACTIONS(6952), 1, sym__terminator, - STATE(4997), 1, + STATE(4658), 1, aux_sym_workfile_definition_repeat3, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(4696), 2, + STATE(4821), 2, sym_comment, sym_include, - [265754] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273279] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(6813), 1, + ACTIONS(6954), 1, sym__terminator, - STATE(4730), 1, + STATE(4658), 1, aux_sym_workfile_definition_repeat3, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(4697), 2, + STATE(4822), 2, sym_comment, sym_include, - [265780] = 5, - ACTIONS(65), 1, + [273305] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4698), 2, + ACTIONS(6956), 1, + sym_identifier, + STATE(128), 1, + sym_qualified_name, + ACTIONS(6958), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(4823), 2, sym_comment, sym_include, - ACTIONS(3736), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [265800] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273329] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(5621), 1, + STATE(5789), 1, sym_on_stop_phrase, - ACTIONS(6500), 2, + ACTIONS(5830), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(4699), 2, + STATE(4824), 2, sym_comment, sym_include, - [265824] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273353] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5983), 1, - sym_body, - STATE(4700), 2, - sym_comment, - sym_include, - [265850] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4722), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5983), 1, + STATE(5812), 1, sym_body, - STATE(4701), 2, + STATE(4825), 2, sym_comment, sym_include, - [265876] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273379] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(6815), 1, - sym__terminator, - STATE(4997), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4702), 2, - sym_comment, - sym_include, - [265902] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(6817), 1, - anon_sym_LPAREN, - STATE(340), 1, + ACTIONS(6960), 1, + sym__terminator, + ACTIONS(6962), 1, + aux_sym_using_statement_token2, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(1371), 1, - sym_function_arguments, - STATE(4703), 2, + STATE(4826), 2, sym_comment, sym_include, - [265928] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273405] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(5616), 1, - sym_on_stop_phrase, - ACTIONS(5553), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4704), 2, - sym_comment, - sym_include, - [265952] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4674), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5723), 1, + STATE(5713), 1, sym_body, - STATE(4705), 2, + STATE(4827), 2, sym_comment, sym_include, - [265978] = 6, + [273431] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6508), 1, + ACTIONS(6964), 1, sym_identifier, - STATE(4706), 2, + STATE(134), 1, + sym_qualified_name, + ACTIONS(6966), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(4828), 2, sym_comment, sym_include, - ACTIONS(6510), 3, - anon_sym_COLON, - anon_sym_COMMA, - aux_sym_on_error_phrase_token1, - [266000] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273455] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(5842), 1, - sym_on_stop_phrase, - ACTIONS(4491), 2, + ACTIONS(3815), 1, anon_sym_COLON, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4707), 2, + STATE(5157), 1, + aux_sym_for_statement_repeat1, + STATE(5812), 1, + sym_body, + STATE(4829), 2, sym_comment, sym_include, - [266024] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273481] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5723), 1, - sym_body, - STATE(4708), 2, + STATE(4830), 2, sym_comment, sym_include, - [266050] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6968), 4, + sym__terminator, + aux_sym_query_definition_tuning_token1, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + [273501] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4739), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5978), 1, + STATE(5831), 1, sym_body, - STATE(4709), 2, + STATE(4831), 2, sym_comment, sym_include, - [266076] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273527] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4710), 2, - sym_comment, - sym_include, - ACTIONS(3590), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [266096] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4711), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5902), 1, + sym_body, + STATE(4832), 2, sym_comment, sym_include, - ACTIONS(3738), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [266116] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273553] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4712), 2, - sym_comment, - sym_include, - ACTIONS(3740), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [266136] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4713), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(4832), 1, + aux_sym_for_statement_repeat1, + STATE(5900), 1, + sym_body, + STATE(4833), 2, sym_comment, sym_include, - ACTIONS(3742), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [266156] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273579] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4714), 2, - sym_comment, - sym_include, - ACTIONS(3744), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [266176] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5711), 1, + STATE(5900), 1, sym_body, - STATE(4715), 2, + STATE(4834), 2, sym_comment, sym_include, - [266202] = 6, - ACTIONS(3), 1, + [273605] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6520), 1, - sym_identifier, - STATE(4716), 2, - sym_comment, - sym_include, - ACTIONS(6522), 3, + ACTIONS(3815), 1, anon_sym_COLON, + ACTIONS(3817), 1, anon_sym_COMMA, - aux_sym_on_error_phrase_token1, - [266224] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5895), 1, + sym_body, + STATE(4835), 2, + sym_comment, + sym_include, + [273631] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4691), 1, + STATE(4834), 1, aux_sym_for_statement_repeat1, - STATE(5711), 1, + STATE(5892), 1, sym_body, - STATE(4717), 2, + STATE(4836), 2, sym_comment, sym_include, - [266250] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273657] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4718), 2, - sym_comment, - sym_include, - ACTIONS(3746), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [266270] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4719), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5892), 1, + sym_body, + STATE(4837), 2, sym_comment, sym_include, - ACTIONS(3748), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [266290] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273683] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4720), 2, - sym_comment, - sym_include, - ACTIONS(3750), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [266310] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4721), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(4835), 1, + aux_sym_for_statement_repeat1, + STATE(5890), 1, + sym_body, + STATE(4838), 2, sym_comment, sym_include, - ACTIONS(3752), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [266330] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273709] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5976), 1, + STATE(5890), 1, sym_body, - STATE(4722), 2, + STATE(4839), 2, sym_comment, sym_include, - [266356] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273735] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6819), 1, - aux_sym_return_type_token2, - STATE(4723), 2, + STATE(4840), 2, sym_comment, sym_include, - ACTIONS(6821), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [266378] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6970), 4, + sym__terminator, + aux_sym_query_definition_tuning_token1, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + [273755] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4757), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5976), 1, + STATE(5794), 1, sym_body, - STATE(4724), 2, + STATE(4841), 2, sym_comment, sym_include, - [266404] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273781] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4708), 1, + STATE(4837), 1, aux_sym_for_statement_repeat1, - STATE(5680), 1, + STATE(5886), 1, sym_body, - STATE(4725), 2, + STATE(4842), 2, sym_comment, sym_include, - [266430] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273807] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5612), 1, + STATE(5886), 1, sym_body, - STATE(4726), 2, - sym_comment, - sym_include, - [266456] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6564), 1, - sym_identifier, - STATE(4727), 2, + STATE(4843), 2, sym_comment, sym_include, - ACTIONS(6566), 3, - anon_sym_COLON, - anon_sym_COMMA, - aux_sym_on_error_phrase_token1, - [266478] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273833] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(4839), 1, aux_sym_for_statement_repeat1, - STATE(5680), 1, + STATE(5878), 1, sym_body, - STATE(4728), 2, + STATE(4844), 2, sym_comment, sym_include, - [266504] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273859] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(5565), 1, - sym__terminator, - STATE(4950), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4729), 2, - sym_comment, - sym_include, - [266530] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(6823), 1, - sym__terminator, - STATE(4997), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4730), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5878), 1, + sym_body, + STATE(4845), 2, sym_comment, sym_include, - [266556] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273885] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4731), 2, + ACTIONS(6874), 1, + aux_sym_return_type_token2, + STATE(4846), 2, sym_comment, sym_include, - ACTIONS(3754), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [266576] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6972), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [273907] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(4843), 1, aux_sym_for_statement_repeat1, - STATE(5663), 1, + STATE(5871), 1, sym_body, - STATE(4732), 2, + STATE(4847), 2, sym_comment, sym_include, - [266602] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273933] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4733), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5871), 1, + sym_body, + STATE(4848), 2, sym_comment, sym_include, - ACTIONS(3756), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [266622] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273959] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4734), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(4845), 1, + aux_sym_for_statement_repeat1, + STATE(5870), 1, + sym_body, + STATE(4849), 2, sym_comment, sym_include, - ACTIONS(3758), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [266642] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [273985] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5971), 1, + STATE(5870), 1, sym_body, - STATE(4735), 2, + STATE(4850), 2, sym_comment, sym_include, - [266668] = 6, - ACTIONS(3), 1, + [274011] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6576), 1, - sym_identifier, - STATE(4736), 2, - sym_comment, - sym_include, - ACTIONS(6578), 3, + ACTIONS(3815), 1, anon_sym_COLON, + ACTIONS(3817), 1, anon_sym_COMMA, - aux_sym_on_error_phrase_token1, - [266690] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + STATE(4885), 1, + aux_sym_for_statement_repeat1, + STATE(5794), 1, + sym_body, + STATE(4851), 2, + sym_comment, + sym_include, + [274037] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4726), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5774), 1, + STATE(5911), 1, sym_body, - STATE(4737), 2, + STATE(4852), 2, sym_comment, sym_include, - [266716] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274063] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(4848), 1, aux_sym_for_statement_repeat1, - STATE(5774), 1, + STATE(5866), 1, sym_body, - STATE(4738), 2, + STATE(4853), 2, sym_comment, sym_include, - [266742] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274089] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5975), 1, + STATE(5866), 1, sym_body, - STATE(4739), 2, + STATE(4854), 2, sym_comment, sym_include, - [266768] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274115] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4715), 1, + STATE(5106), 1, aux_sym_for_statement_repeat1, - STATE(5663), 1, + STATE(5911), 1, sym_body, - STATE(4740), 2, + STATE(4855), 2, sym_comment, sym_include, - [266794] = 8, - ACTIONS(3), 1, + [274141] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6825), 1, - sym_identifier, - ACTIONS(6827), 1, - aux_sym_input_expression_token2, - STATE(3183), 1, - sym_using_field, - STATE(3205), 1, - sym_qualified_name, - STATE(4741), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(4850), 1, + aux_sym_for_statement_repeat1, + STATE(5864), 1, + sym_body, + STATE(4856), 2, sym_comment, sym_include, - [266820] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274167] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4763), 1, + STATE(4892), 1, aux_sym_for_statement_repeat1, - STATE(5975), 1, + STATE(5770), 1, sym_body, - STATE(4742), 2, + STATE(4857), 2, sym_comment, sym_include, - [266846] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274193] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6781), 1, - aux_sym_return_type_token2, - STATE(4743), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5864), 1, + sym_body, + STATE(4858), 2, sym_comment, sym_include, - ACTIONS(6829), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [266868] = 7, + [274219] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6673), 1, - sym__escaped_string, - ACTIONS(6831), 1, - sym_identifier, - STATE(4348), 2, - sym_qualified_name, - sym_string_literal, - STATE(4744), 2, + STATE(4859), 2, sym_comment, sym_include, - [266892] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6749), 4, + sym_identifier, + sym__terminator, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [274239] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4745), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(4854), 1, + aux_sym_for_statement_repeat1, + STATE(5856), 1, + sym_body, + STATE(4860), 2, sym_comment, sym_include, - ACTIONS(3762), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [266912] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274265] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6819), 1, - aux_sym_return_type_token2, - STATE(4746), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5856), 1, + sym_body, + STATE(4861), 2, sym_comment, sym_include, - ACTIONS(6833), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [266934] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274291] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6835), 1, - aux_sym_return_type_token2, - STATE(4747), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5770), 1, + sym_body, + STATE(4862), 2, sym_comment, sym_include, - ACTIONS(6837), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [266956] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274317] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4748), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(6974), 1, + anon_sym_LPAREN, + STATE(333), 1, + sym_function_arguments, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(4863), 2, sym_comment, sym_include, - ACTIONS(3764), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [266976] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274343] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4749), 2, + STATE(4864), 2, sym_comment, sym_include, - ACTIONS(3766), 4, + ACTIONS(3462), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [266996] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274363] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5009), 1, + STATE(4858), 1, aux_sym_for_statement_repeat1, - STATE(5612), 1, + STATE(5828), 1, sym_body, - STATE(4750), 2, + STATE(4865), 2, sym_comment, sym_include, - [267022] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274389] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4751), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5828), 1, + sym_body, + STATE(4866), 2, sym_comment, sym_include, - ACTIONS(3768), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [267042] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274415] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4752), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(6253), 1, + sym_body, + STATE(4867), 2, sym_comment, sym_include, - ACTIONS(3770), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [267062] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274441] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5631), 1, + STATE(5508), 1, sym_body, - STATE(4753), 2, + STATE(4868), 2, sym_comment, sym_include, - [267088] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274467] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(5856), 1, - sym_on_stop_phrase, - ACTIONS(4450), 2, + ACTIONS(3815), 1, anon_sym_COLON, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4754), 2, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5815), 1, + sym_body, + STATE(4869), 2, sym_comment, sym_include, - [267112] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274493] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4728), 1, + STATE(4861), 1, aux_sym_for_statement_repeat1, - STATE(5631), 1, + STATE(5815), 1, sym_body, - STATE(4755), 2, + STATE(4870), 2, sym_comment, sym_include, - [267138] = 5, - ACTIONS(65), 1, + [274519] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(5822), 1, + sym__terminator, + STATE(4658), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4871), 2, + sym_comment, + sym_include, + [274545] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4756), 2, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(5822), 1, + sym__terminator, + STATE(4815), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4872), 2, + sym_comment, + sym_include, + [274571] = 5, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(4873), 2, sym_comment, sym_include, - ACTIONS(3586), 4, + ACTIONS(3404), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [267158] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274591] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(4646), 1, aux_sym_for_statement_repeat1, - STATE(5973), 1, + STATE(5508), 1, sym_body, - STATE(4757), 2, + STATE(4874), 2, + sym_comment, + sym_include, + [274617] = 8, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(6976), 1, + sym__terminator, + STATE(4821), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4875), 2, + sym_comment, + sym_include, + [274643] = 8, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(6976), 1, + sym__terminator, + STATE(4658), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4876), 2, sym_comment, sym_include, - [267184] = 7, + [274669] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6673), 1, - sym__escaped_string, - ACTIONS(6839), 1, - sym_identifier, - STATE(3241), 2, - sym_qualified_name, - sym_string_literal, - STATE(4758), 2, + STATE(4877), 2, sym_comment, sym_include, - [267208] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6978), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_field_definition_token1, + [274689] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4759), 2, + STATE(4878), 2, sym_comment, sym_include, - ACTIONS(3772), 4, + ACTIONS(3400), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [267228] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274709] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4760), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(4866), 1, + aux_sym_for_statement_repeat1, + STATE(5970), 1, + sym_body, + STATE(4879), 2, sym_comment, sym_include, - ACTIONS(3760), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [267248] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274735] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4761), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5970), 1, + sym_body, + STATE(4880), 2, sym_comment, sym_include, - ACTIONS(3700), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [267268] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274761] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4735), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5973), 1, + STATE(5764), 1, sym_body, - STATE(4762), 2, + STATE(4881), 2, sym_comment, sym_include, - [267294] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274787] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5972), 1, + STATE(5544), 1, sym_body, - STATE(4763), 2, + STATE(4882), 2, sym_comment, sym_include, - [267320] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274813] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6667), 1, - sym__integer_literal, - ACTIONS(6841), 1, - anon_sym_RBRACK, - STATE(176), 1, - sym__decimal_literal, - STATE(6048), 1, - sym_number_literal, - STATE(4764), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5924), 1, + sym_body, + STATE(4883), 2, sym_comment, sym_include, - [267346] = 5, + [274839] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(4765), 2, + ACTIONS(178), 1, + sym_identifier, + STATE(4884), 2, sym_comment, sym_include, - ACTIONS(6843), 4, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_field_definition_token1, - [267366] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(180), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [274859] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4782), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5972), 1, + STATE(5762), 1, sym_body, - STATE(4766), 2, + STATE(4885), 2, sym_comment, sym_include, - [267392] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274885] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4767), 2, + ACTIONS(77), 1, + anon_sym_LPAREN, + ACTIONS(1740), 1, + sym__namedot, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(1444), 1, + sym_function_arguments, + STATE(4886), 2, sym_comment, sym_include, - ACTIONS(3698), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [267412] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274911] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4768), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(4898), 1, + aux_sym_for_statement_repeat1, + STATE(5762), 1, + sym_body, + STATE(4887), 2, sym_comment, sym_include, - ACTIONS(3578), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [267432] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274937] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4769), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(4869), 1, + aux_sym_for_statement_repeat1, + STATE(5764), 1, + sym_body, + STATE(4888), 2, sym_comment, sym_include, - ACTIONS(3696), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [267452] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274963] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5041), 1, aux_sym_for_statement_repeat1, - STATE(5566), 1, + STATE(5924), 1, sym_body, - STATE(4770), 2, + STATE(4889), 2, sym_comment, sym_include, - [267478] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [274989] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4771), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(4757), 1, + aux_sym_for_statement_repeat1, + STATE(5544), 1, + sym_body, + STATE(4890), 2, sym_comment, sym_include, - ACTIONS(3694), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [267498] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [275015] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4772), 2, + STATE(4891), 2, sym_comment, sym_include, - ACTIONS(3692), 4, + ACTIONS(3402), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [267518] = 7, - ACTIONS(3), 1, + [275035] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6845), 1, - sym_identifier, - STATE(115), 1, - sym_qualified_name, - ACTIONS(6847), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(4773), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5754), 1, + sym_body, + STATE(4892), 2, sym_comment, sym_include, - [267542] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [275061] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(5597), 1, - sym__terminator, - STATE(4997), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4774), 2, - sym_comment, - sym_include, - [267568] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(5597), 1, - sym__terminator, - STATE(4690), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4775), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5683), 1, + sym_body, + STATE(4893), 2, sym_comment, sym_include, - [267594] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [275087] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4776), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(4902), 1, + aux_sym_for_statement_repeat1, + STATE(5754), 1, + sym_body, + STATE(4894), 2, sym_comment, sym_include, - ACTIONS(3677), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [267614] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [275113] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4777), 2, + STATE(4895), 2, sym_comment, sym_include, - ACTIONS(3661), 4, + ACTIONS(3396), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [267634] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [275133] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(6849), 1, - sym__terminator, - STATE(4702), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4778), 2, - sym_comment, - sym_include, - [267660] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4786), 1, + STATE(4880), 1, aux_sym_for_statement_repeat1, - STATE(5971), 1, + STATE(5683), 1, sym_body, - STATE(4779), 2, + STATE(4896), 2, sym_comment, sym_include, - [267686] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [275159] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(6849), 1, - sym__terminator, - STATE(4997), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4780), 2, + STATE(4897), 2, sym_comment, sym_include, - [267712] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3466), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [275179] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4753), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5566), 1, + STATE(5750), 1, sym_body, - STATE(4781), 2, + STATE(4898), 2, sym_comment, sym_include, - [267738] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [275205] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5967), 1, + STATE(5491), 1, sym_body, - STATE(4782), 2, + STATE(4899), 2, sym_comment, sym_include, - [267764] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [275231] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4783), 2, + STATE(4900), 2, sym_comment, sym_include, - ACTIONS(3659), 4, + ACTIONS(3468), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [267784] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [275251] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(4905), 1, aux_sym_for_statement_repeat1, - STATE(5999), 1, + STATE(5750), 1, sym_body, - STATE(4784), 2, + STATE(4901), 2, sym_comment, sym_include, - [267810] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [275277] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4790), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5967), 1, + STATE(5749), 1, sym_body, - STATE(4785), 2, + STATE(4902), 2, sym_comment, sym_include, - [267836] = 8, - ACTIONS(65), 1, + [275303] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6751), 1, + sym__integer_literal, + ACTIONS(6980), 1, + anon_sym_RBRACK, + STATE(185), 1, + sym__decimal_literal, + STATE(6305), 1, + sym_number_literal, + STATE(4903), 2, + sym_comment, + sym_include, + [275329] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(4911), 1, aux_sym_for_statement_repeat1, - STATE(5964), 1, + STATE(5749), 1, sym_body, - STATE(4786), 2, + STATE(4904), 2, sym_comment, sym_include, - [267862] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [275355] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4738), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5999), 1, + STATE(5743), 1, sym_body, - STATE(4787), 2, + STATE(4905), 2, sym_comment, sym_include, - [267888] = 5, - ACTIONS(3), 1, + [275381] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(6851), 1, - sym_identifier, - STATE(4788), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(4906), 2, sym_comment, sym_include, - ACTIONS(6853), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [267908] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6982), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + [275401] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(6855), 1, - anon_sym_LPAREN, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(2871), 1, - sym_function_arguments, - STATE(4789), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5569), 1, + sym_body, + STATE(4907), 2, sym_comment, sym_include, - [267934] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [275427] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(4921), 1, aux_sym_for_statement_repeat1, - STATE(5963), 1, + STATE(5743), 1, sym_body, - STATE(4790), 2, + STATE(4908), 2, sym_comment, sym_include, - [267960] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [275453] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4795), 1, + STATE(4868), 1, aux_sym_for_statement_repeat1, - STATE(5963), 1, + STATE(5904), 1, sym_body, - STATE(4791), 2, + STATE(4909), 2, sym_comment, sym_include, - [267986] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [275479] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4792), 2, + STATE(4910), 2, sym_comment, sym_include, - ACTIONS(3657), 4, + ACTIONS(3470), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [268006] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [275499] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6667), 1, - sym__integer_literal, - ACTIONS(6857), 1, - anon_sym_RBRACK, - STATE(176), 1, - sym__decimal_literal, - STATE(6031), 1, - sym_number_literal, - STATE(4793), 2, - sym_comment, - sym_include, - [268032] = 7, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6673), 1, - sym__escaped_string, - ACTIONS(6859), 1, - sym_identifier, - STATE(4369), 2, - sym_qualified_name, - sym_string_literal, - STATE(4794), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5742), 1, + sym_body, + STATE(4911), 2, sym_comment, sym_include, - [268056] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [275525] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(4893), 1, aux_sym_for_statement_repeat1, - STATE(5962), 1, + STATE(5569), 1, sym_body, - STATE(4795), 2, + STATE(4912), 2, sym_comment, sym_include, - [268082] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [275551] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4796), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(4941), 1, + aux_sym_for_statement_repeat1, + STATE(5742), 1, + sym_body, + STATE(4913), 2, sym_comment, sym_include, - ACTIONS(3716), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [268102] = 8, - ACTIONS(65), 1, + [275577] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6667), 1, - sym__integer_literal, - ACTIONS(6861), 1, - anon_sym_RBRACK, - STATE(176), 1, - sym__decimal_literal, - STATE(6475), 1, - sym_number_literal, - STATE(4797), 2, + ACTIONS(6984), 1, + sym_identifier, + ACTIONS(6986), 1, + sym__terminator, + ACTIONS(6988), 1, + aux_sym_query_definition_token1, + STATE(5264), 1, + sym_qualified_name, + STATE(4914), 2, sym_comment, sym_include, - [268128] = 5, + [275603] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4798), 2, + STATE(4915), 2, sym_comment, sym_include, - ACTIONS(6863), 4, + ACTIONS(4087), 4, sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, + sym__terminator, + anon_sym_LBRACK, + aux_sym_scope_tuning_token1, + [275623] = 8, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - [268148] = 5, - ACTIONS(65), 1, + ACTIONS(6930), 1, + sym__terminator, + STATE(4658), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4916), 2, + sym_comment, + sym_include, + [275649] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(6634), 1, + sym_body, + STATE(4917), 2, + sym_comment, + sym_include, + [275675] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4799), 2, + STATE(4918), 2, sym_comment, sym_include, - ACTIONS(3634), 4, + ACTIONS(3472), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [268168] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [275695] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4800), 2, + STATE(4919), 2, sym_comment, sym_include, - ACTIONS(3632), 4, + ACTIONS(3474), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [268188] = 5, - ACTIONS(3), 1, + [275715] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(6865), 1, - sym_identifier, - STATE(4801), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6751), 1, + sym__integer_literal, + ACTIONS(6990), 1, + anon_sym_RBRACK, + STATE(185), 1, + sym__decimal_literal, + STATE(6281), 1, + sym_number_literal, + STATE(4920), 2, sym_comment, sym_include, - ACTIONS(6867), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [268208] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [275741] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5608), 1, + STATE(5741), 1, sym_body, - STATE(4802), 2, + STATE(4921), 2, sym_comment, sym_include, - [268234] = 7, + [275767] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6869), 1, + ACTIONS(6918), 1, sym_identifier, - STATE(130), 1, + ACTIONS(6920), 1, + aux_sym_input_expression_token2, + STATE(3254), 1, + sym_using_field, + STATE(3261), 1, sym_qualified_name, - ACTIONS(6871), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(4803), 2, + STATE(4922), 2, sym_comment, sym_include, - [268258] = 5, - ACTIONS(3), 1, + [275793] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(6873), 1, - sym_identifier, - STATE(4804), 2, - sym_comment, - sym_include, - ACTIONS(6875), 4, + ACTIONS(73), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [268278] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6877), 1, - sym_identifier, - STATE(4805), 2, + ACTIONS(6751), 1, + sym__integer_literal, + ACTIONS(6992), 1, + anon_sym_RBRACK, + STATE(185), 1, + sym__decimal_literal, + STATE(6355), 1, + sym_number_literal, + STATE(4923), 2, sym_comment, sym_include, - ACTIONS(6879), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [268298] = 7, + [275819] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6881), 1, + ACTIONS(6994), 1, sym_identifier, - STATE(114), 1, + STATE(127), 1, sym_qualified_name, - ACTIONS(6883), 2, + ACTIONS(6996), 2, aux_sym_for_phrase_token2, aux_sym_for_phrase_token3, - STATE(4806), 2, - sym_comment, - sym_include, - [268322] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4807), 2, + STATE(4924), 2, sym_comment, sym_include, - ACTIONS(3630), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [268342] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [275843] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4808), 2, - sym_comment, - sym_include, - ACTIONS(3628), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [268362] = 7, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6673), 1, - sym__escaped_string, - ACTIONS(6885), 1, - sym_identifier, - STATE(3239), 2, - sym_qualified_name, - sym_string_literal, - STATE(4809), 2, + ACTIONS(6998), 1, + anon_sym_COMMA, + ACTIONS(3829), 2, + aux_sym_of_token1, + aux_sym_on_statement_token1, + STATE(4925), 3, sym_comment, sym_include, - [268386] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_on_statement_repeat1, + [275865] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4810), 2, + STATE(4926), 2, sym_comment, sym_include, - ACTIONS(6887), 4, + ACTIONS(7001), 4, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_stop_after_phrase_token1, aux_sym_do_tuning_token1, - [268406] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(6889), 1, - anon_sym_LPAREN, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(2786), 1, - sym_function_arguments, - STATE(4811), 2, - sym_comment, - sym_include, - [268432] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [275885] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4812), 2, - sym_comment, - sym_include, - ACTIONS(3626), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [268452] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4813), 2, + STATE(4927), 2, sym_comment, sym_include, - ACTIONS(3622), 4, + ACTIONS(3476), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [268472] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [275905] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4814), 2, - sym_comment, - sym_include, - ACTIONS(6891), 4, - anon_sym_COLON, - aux_sym__block_terminator_token1, - anon_sym_COMMA, - aux_sym_repeat_tuning_token1, - [268492] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4815), 2, + STATE(4928), 2, sym_comment, sym_include, - ACTIONS(3616), 4, + ACTIONS(3408), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [268512] = 7, + [275925] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6893), 1, + ACTIONS(242), 1, sym_identifier, - STATE(109), 1, - sym_qualified_name, - ACTIONS(6895), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(4816), 2, + STATE(4929), 2, sym_comment, sym_include, - [268536] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(244), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [275945] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4817), 2, + ACTIONS(4626), 1, + anon_sym_LPAREN, + ACTIONS(5902), 1, + anon_sym_COLON, + STATE(3531), 1, + sym_function_arguments, + STATE(5455), 1, + sym_case_body, + STATE(4930), 2, sym_comment, sym_include, - ACTIONS(6897), 4, - anon_sym_COLON, - aux_sym__block_terminator_token1, - anon_sym_COMMA, - aux_sym_repeat_tuning_token1, - [268556] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [275971] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(5941), 1, + sym_on_stop_phrase, + ACTIONS(4478), 2, anon_sym_COLON, - ACTIONS(3788), 1, anon_sym_COMMA, - STATE(5012), 1, - aux_sym_for_statement_repeat1, - STATE(5608), 1, - sym_body, - STATE(4818), 2, + STATE(4931), 2, sym_comment, sym_include, - [268582] = 6, + [275995] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6899), 1, - sym_identifier, - STATE(4819), 2, + STATE(4932), 2, sym_comment, sym_include, - ACTIONS(6901), 3, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_repeat_tuning_token1, - [268604] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7003), 4, + sym_identifier, + sym__terminator, + anon_sym_COMMA, + aux_sym_scope_tuning_token1, + [276015] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4820), 2, - sym_comment, - sym_include, - ACTIONS(3614), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [268624] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(4953), 1, aux_sym_for_statement_repeat1, - STATE(5945), 1, + STATE(5741), 1, sym_body, - STATE(4821), 2, + STATE(4933), 2, sym_comment, sym_include, - [268650] = 8, - ACTIONS(65), 1, + [276041] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(7007), 1, + aux_sym_variable_definition_token2, + STATE(4934), 2, + sym_comment, + sym_include, + ACTIONS(7005), 3, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + [276063] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(5942), 1, + sym_on_stop_phrase, + ACTIONS(4436), 2, anon_sym_COLON, - ACTIONS(3788), 1, anon_sym_COMMA, - STATE(4891), 1, - aux_sym_for_statement_repeat1, - STATE(5981), 1, - sym_body, - STATE(4822), 2, + STATE(4935), 2, sym_comment, sym_include, - [268676] = 6, - ACTIONS(3), 1, + [276087] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(117), 2, - sym__namedot, - sym_identifier, - ACTIONS(119), 2, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(7009), 1, sym__terminator, - anon_sym_LBRACK, - STATE(4823), 2, + STATE(4658), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4936), 2, sym_comment, sym_include, - [268698] = 7, + [276113] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6903), 1, - sym_identifier, - STATE(5745), 1, - sym_object_access, - STATE(3322), 2, - sym_qualified_name, - sym_function_call, - STATE(4824), 2, + ACTIONS(7013), 1, + anon_sym_COMMA, + STATE(4937), 2, sym_comment, sym_include, - [268722] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(5571), 1, + ACTIONS(7011), 3, + sym_identifier, sym__terminator, - STATE(5080), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4825), 2, - sym_comment, - sym_include, - [268748] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_scope_tuning_token1, + [276135] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4826), 2, + ACTIONS(7015), 1, + aux_sym_stream_definition_token1, + ACTIONS(7017), 1, + aux_sym_input_close_statement_token1, + ACTIONS(7019), 1, + aux_sym_input_close_statement_token2, + ACTIONS(7021), 1, + aux_sym_output_stream_statement_token1, + STATE(4938), 2, sym_comment, sym_include, - ACTIONS(3612), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [268768] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [276161] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4827), 2, + STATE(4939), 2, sym_comment, sym_include, - ACTIONS(3604), 4, + ACTIONS(3478), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [268788] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [276181] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6905), 1, - aux_sym_stream_definition_token1, - ACTIONS(6907), 1, - aux_sym_input_close_statement_token1, - ACTIONS(6909), 1, - aux_sym_input_close_statement_token2, - ACTIONS(6911), 1, - aux_sym_output_stream_statement_token1, - STATE(4828), 2, - sym_comment, - sym_include, - [268814] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6913), 1, + ACTIONS(7023), 1, aux_sym_using_statement_token2, - ACTIONS(6915), 1, + ACTIONS(7025), 1, aux_sym_stream_definition_token1, - ACTIONS(6917), 1, + ACTIONS(7027), 1, aux_sym_input_close_statement_token1, - ACTIONS(6919), 1, + ACTIONS(7029), 1, aux_sym_input_close_statement_token2, - STATE(4829), 2, + STATE(4940), 2, sym_comment, sym_include, - [268840] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [276207] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5410), 1, - sym_body, - STATE(4830), 2, - sym_comment, - sym_include, - [268866] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4830), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5412), 1, + STATE(5740), 1, sym_body, - STATE(4831), 2, + STATE(4941), 2, sym_comment, sym_include, - [268892] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [276233] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, - aux_sym_return_type_token2, - STATE(4832), 2, - sym_comment, - sym_include, - ACTIONS(6921), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [268914] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6667), 1, - sym__integer_literal, - ACTIONS(6923), 1, - anon_sym_RBRACK, - STATE(176), 1, - sym__decimal_literal, - STATE(6239), 1, - sym_number_literal, - STATE(4833), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(7031), 1, + anon_sym_LPAREN, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(2531), 1, + sym_function_arguments, + STATE(4942), 2, sym_comment, sym_include, - [268940] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [276259] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5412), 1, + STATE(5590), 1, sym_body, - STATE(4834), 2, + STATE(4943), 2, sym_comment, sym_include, - [268966] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [276285] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(4943), 1, aux_sym_for_statement_repeat1, - STATE(5416), 1, + STATE(5592), 1, sym_body, - STATE(4835), 2, + STATE(4944), 2, sym_comment, sym_include, - [268992] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [276311] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6673), 1, - sym__escaped_string, - STATE(4202), 1, - sym_string_literal, - ACTIONS(6925), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(4836), 2, - sym_comment, - sym_include, - [269016] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4834), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5420), 1, + STATE(5592), 1, sym_body, - STATE(4837), 2, + STATE(4945), 2, sym_comment, sym_include, - [269042] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [276337] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5420), 1, + STATE(5594), 1, sym_body, - STATE(4838), 2, + STATE(4946), 2, sym_comment, sym_include, - [269068] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [276363] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(5555), 1, - sym__terminator, - STATE(4997), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4839), 2, + STATE(4947), 2, sym_comment, sym_include, - [269094] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3480), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276383] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4835), 1, + STATE(4965), 1, aux_sym_for_statement_repeat1, - STATE(5421), 1, + STATE(5740), 1, sym_body, - STATE(4840), 2, + STATE(4948), 2, sym_comment, sym_include, - [269120] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [276409] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(4945), 1, aux_sym_for_statement_repeat1, - STATE(5421), 1, + STATE(5604), 1, sym_body, - STATE(4841), 2, + STATE(4949), 2, sym_comment, sym_include, - [269146] = 8, - ACTIONS(65), 1, + [276435] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(4950), 2, + sym_comment, + sym_include, + ACTIONS(3482), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276455] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4614), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5945), 1, + STATE(5604), 1, sym_body, - STATE(4842), 2, + STATE(4951), 2, sym_comment, sym_include, - [269172] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [276481] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4843), 2, + STATE(4952), 2, sym_comment, sym_include, - ACTIONS(3602), 4, + ACTIONS(3484), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [269192] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [276501] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(5555), 1, - sym__terminator, - STATE(4780), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4844), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5737), 1, + sym_body, + STATE(4953), 2, sym_comment, sym_include, - [269218] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [276527] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4845), 2, + STATE(4954), 2, sym_comment, sym_include, - ACTIONS(6927), 4, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - [269238] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3486), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276547] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4838), 1, + STATE(4989), 1, aux_sym_for_statement_repeat1, - STATE(5422), 1, + STATE(5737), 1, sym_body, - STATE(4846), 2, + STATE(4955), 2, sym_comment, sym_include, - [269264] = 7, - ACTIONS(3), 1, + [276573] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6929), 1, - sym_identifier, - STATE(117), 1, - sym_qualified_name, - ACTIONS(6931), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(4847), 2, + STATE(4956), 2, sym_comment, sym_include, - [269288] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3488), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276593] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(6169), 1, - sym_body, - STATE(4848), 2, + STATE(4957), 2, sym_comment, sym_include, - [269314] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3392), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276613] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4652), 1, + STATE(4946), 1, aux_sym_for_statement_repeat1, - STATE(5378), 1, + STATE(5608), 1, sym_body, - STATE(4849), 2, + STATE(4958), 2, sym_comment, sym_include, - [269340] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [276639] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5422), 1, + STATE(5608), 1, sym_body, - STATE(4850), 2, + STATE(4959), 2, sym_comment, sym_include, - [269366] = 7, - ACTIONS(3), 1, + [276665] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6933), 1, - sym_identifier, - STATE(116), 1, - sym_qualified_name, - ACTIONS(6935), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(4851), 2, + STATE(4960), 2, sym_comment, sym_include, - [269390] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7033), 4, + anon_sym_COLON, + anon_sym_DOT, + aux_sym__block_terminator_token1, + anon_sym_LPAREN, + [276685] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4841), 1, + STATE(4951), 1, aux_sym_for_statement_repeat1, - STATE(5425), 1, + STATE(5614), 1, sym_body, - STATE(4852), 2, + STATE(4961), 2, sym_comment, sym_include, - [269416] = 8, - ACTIONS(3), 1, + [276711] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6825), 1, - sym_identifier, - ACTIONS(6827), 1, - aux_sym_input_expression_token2, - STATE(3203), 1, - sym_using_field, - STATE(3205), 1, - sym_qualified_name, - STATE(4853), 2, + STATE(4962), 2, sym_comment, sym_include, - [269442] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3490), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276731] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5425), 1, + STATE(5614), 1, sym_body, - STATE(4854), 2, + STATE(4963), 2, sym_comment, sym_include, - [269468] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [276757] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4855), 2, - sym_comment, - sym_include, - ACTIONS(3600), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [269488] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4856), 2, + STATE(4964), 2, sym_comment, sym_include, - ACTIONS(3596), 4, + ACTIONS(3388), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [269508] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(5571), 1, - sym__terminator, - STATE(4997), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4857), 2, - sym_comment, - sym_include, - [269534] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(6937), 1, - sym__terminator, - ACTIONS(6939), 1, - aux_sym_using_statement_token2, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(4858), 2, - sym_comment, - sym_include, - [269560] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [276777] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(6855), 1, - anon_sym_LPAREN, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(2914), 1, - sym_function_arguments, - STATE(4859), 2, - sym_comment, - sym_include, - [269586] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4850), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5430), 1, + STATE(5735), 1, sym_body, - STATE(4860), 2, + STATE(4965), 2, sym_comment, sym_include, - [269612] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [276803] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(4959), 1, aux_sym_for_statement_repeat1, - STATE(5430), 1, + STATE(5627), 1, sym_body, - STATE(4861), 2, + STATE(4966), 2, sym_comment, sym_include, - [269638] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [276829] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4862), 2, + STATE(4967), 2, sym_comment, sym_include, - ACTIONS(3594), 4, + ACTIONS(3384), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [269658] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [276849] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6781), 1, - aux_sym_return_type_token2, - STATE(4863), 2, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(5769), 1, + sym__terminator, + STATE(4658), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4968), 2, sym_comment, sym_include, - ACTIONS(6941), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [269680] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [276875] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5981), 1, - sym_body, - STATE(4864), 2, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(5769), 1, + sym__terminator, + STATE(4876), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(4969), 2, sym_comment, sym_include, - [269706] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [276901] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4854), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5431), 1, + STATE(5627), 1, sym_body, - STATE(4865), 2, + STATE(4970), 2, sym_comment, sym_include, - [269732] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [276927] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(6943), 1, - anon_sym_LPAREN, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(1146), 1, - sym_function_arguments, - STATE(4866), 2, + STATE(4971), 2, sym_comment, sym_include, - [269758] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3492), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276947] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5431), 1, - sym_body, - STATE(4867), 2, + STATE(4972), 2, sym_comment, sym_include, - [269784] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3494), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276967] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(6945), 1, - sym__terminator, - STATE(4997), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4868), 2, + STATE(4973), 2, sym_comment, sym_include, - [269810] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3496), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [276987] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(5780), 1, - sym_on_stop_phrase, - ACTIONS(4485), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4869), 2, + STATE(4974), 2, sym_comment, sym_include, - [269834] = 7, - ACTIONS(3), 1, + ACTIONS(3498), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277007] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6947), 1, - sym_identifier, - STATE(126), 1, - sym_qualified_name, - ACTIONS(6949), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(4870), 2, + STATE(4975), 2, sym_comment, sym_include, - [269858] = 5, - ACTIONS(3), 1, + ACTIONS(3500), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277027] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(198), 1, - sym_identifier, - STATE(4871), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(4976), 2, sym_comment, sym_include, - ACTIONS(200), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [269878] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3502), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277047] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5378), 1, - sym_body, - STATE(4872), 2, + STATE(4977), 2, sym_comment, sym_include, - [269904] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3504), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277067] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(4861), 1, - aux_sym_for_statement_repeat1, - STATE(5436), 1, - sym_body, - STATE(4873), 2, + STATE(4978), 2, sym_comment, sym_include, - [269930] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3506), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277087] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5436), 1, - sym_body, - STATE(4874), 2, + STATE(4979), 2, sym_comment, sym_include, - [269956] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3508), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277107] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4875), 2, + STATE(4980), 2, sym_comment, sym_include, - ACTIONS(3592), 4, + ACTIONS(3704), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [269976] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277127] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4876), 2, + STATE(4981), 2, sym_comment, sym_include, - ACTIONS(3576), 4, + ACTIONS(3510), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [269996] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277147] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6667), 1, - sym__integer_literal, - ACTIONS(6951), 1, - anon_sym_RBRACK, - STATE(176), 1, - sym__decimal_literal, - STATE(6443), 1, - sym_number_literal, - STATE(4877), 2, + STATE(4982), 2, sym_comment, sym_include, - [270022] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3512), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277167] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4867), 1, + STATE(4963), 1, aux_sym_for_statement_repeat1, - STATE(5443), 1, + STATE(5632), 1, sym_body, - STATE(4878), 2, + STATE(4983), 2, sym_comment, sym_include, - [270048] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277193] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(6953), 1, - anon_sym_LPAREN, - STATE(49), 1, - sym_function_arguments, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(4879), 2, - sym_comment, - sym_include, - [270074] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5443), 1, + STATE(5632), 1, sym_body, - STATE(4880), 2, + STATE(4984), 2, sym_comment, sym_include, - [270100] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277219] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(5388), 1, - sym_on_stop_phrase, - ACTIONS(4407), 2, + ACTIONS(3815), 1, anon_sym_COLON, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4881), 2, + STATE(4994), 1, + aux_sym_for_statement_repeat1, + STATE(5735), 1, + sym_body, + STATE(4985), 2, sym_comment, sym_include, - [270124] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277245] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(6348), 1, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(4970), 1, + aux_sym_for_statement_repeat1, + STATE(5466), 1, sym_body, - STATE(4882), 2, + STATE(4986), 2, sym_comment, sym_include, - [270150] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277271] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6667), 1, - sym__integer_literal, - ACTIONS(6955), 1, - anon_sym_RBRACK, - STATE(176), 1, - sym__decimal_literal, - STATE(6145), 1, - sym_number_literal, - STATE(4883), 2, - sym_comment, - sym_include, - [270176] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4884), 2, + ACTIONS(6794), 1, + aux_sym_return_type_token2, + STATE(4987), 2, sym_comment, sym_include, - ACTIONS(3574), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [270196] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7035), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [277293] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(5790), 1, - sym_on_stop_phrase, - ACTIONS(5528), 2, + ACTIONS(3815), 1, anon_sym_COLON, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4885), 2, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5466), 1, + sym_body, + STATE(4988), 2, sym_comment, sym_include, - [270220] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277319] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4965), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(6005), 1, + STATE(5734), 1, sym_body, - STATE(4886), 2, + STATE(4989), 2, sym_comment, sym_include, - [270246] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277345] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4874), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5449), 1, + STATE(5981), 1, sym_body, - STATE(4887), 2, + STATE(4990), 2, sym_comment, sym_include, - [270272] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277371] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(6957), 1, - sym__terminator, - STATE(4997), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4888), 2, + STATE(4991), 2, sym_comment, sym_include, - [270298] = 7, - ACTIONS(3), 1, + ACTIONS(3442), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [277391] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6959), 1, - sym_identifier, - STATE(118), 1, - sym_qualified_name, - ACTIONS(6961), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(4889), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(4984), 1, + aux_sym_for_statement_repeat1, + STATE(5652), 1, + sym_body, + STATE(4992), 2, sym_comment, sym_include, - [270322] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277417] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5449), 1, + STATE(5652), 1, sym_body, - STATE(4890), 2, + STATE(4993), 2, sym_comment, sym_include, - [270348] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277443] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(6005), 1, + STATE(5666), 1, sym_body, - STATE(4891), 2, + STATE(4994), 2, sym_comment, sym_include, - [270374] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277469] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4892), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(7037), 1, + anon_sym_LPAREN, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(1057), 1, + sym_function_arguments, + STATE(4995), 2, sym_comment, sym_include, - ACTIONS(3432), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [270394] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277495] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4893), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5003), 1, + aux_sym_for_statement_repeat1, + STATE(5666), 1, + sym_body, + STATE(4996), 2, sym_comment, sym_include, - ACTIONS(3572), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [270414] = 7, - ACTIONS(3), 1, + [277521] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6963), 1, - sym_identifier, - STATE(122), 1, - sym_qualified_name, - ACTIONS(6965), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(4894), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(7039), 1, + anon_sym_LPAREN, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(1169), 1, + sym_function_arguments, + STATE(4997), 2, sym_comment, sym_include, - [270438] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277547] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4895), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(4988), 1, + aux_sym_for_statement_repeat1, + STATE(5648), 1, + sym_body, + STATE(4998), 2, sym_comment, sym_include, - ACTIONS(3570), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [270458] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277573] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4896), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5648), 1, + sym_body, + STATE(4999), 2, sym_comment, sym_include, - ACTIONS(3434), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [270478] = 5, - ACTIONS(65), 1, + [277599] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(4899), 1, + aux_sym_for_statement_repeat1, + STATE(5981), 1, + sym_body, + STATE(5000), 2, + sym_comment, + sym_include, + [277625] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4897), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(7041), 1, + sym__terminator, + ACTIONS(7043), 1, + aux_sym_using_statement_token2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5001), 2, sym_comment, sym_include, - ACTIONS(3568), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [270498] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277651] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(5382), 1, - sym_on_stop_phrase, - ACTIONS(4423), 2, + ACTIONS(3815), 1, anon_sym_COLON, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4898), 2, + STATE(4993), 1, + aux_sym_for_statement_repeat1, + STATE(5655), 1, + sym_body, + STATE(5002), 2, sym_comment, sym_include, - [270522] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277677] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4880), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5398), 1, + STATE(5728), 1, sym_body, - STATE(4899), 2, + STATE(5003), 2, sym_comment, sym_include, - [270548] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277703] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5398), 1, + STATE(5655), 1, sym_body, - STATE(4900), 2, + STATE(5004), 2, sym_comment, sym_include, - [270574] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277729] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4901), 2, + STATE(5005), 2, sym_comment, sym_include, - ACTIONS(3436), 4, + ACTIONS(3514), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [270594] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277749] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4902), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(4999), 1, + aux_sym_for_statement_repeat1, + STATE(5669), 1, + sym_body, + STATE(5006), 2, sym_comment, sym_include, - ACTIONS(3566), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [270614] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277775] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4903), 2, + STATE(5007), 2, sym_comment, sym_include, - ACTIONS(3564), 4, + ACTIONS(3522), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [270634] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277795] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4904), 2, + ACTIONS(7045), 1, + aux_sym_using_statement_token2, + ACTIONS(7047), 1, + aux_sym_stream_definition_token1, + ACTIONS(7049), 1, + aux_sym_input_close_statement_token1, + ACTIONS(7051), 1, + aux_sym_input_close_statement_token2, + STATE(5008), 2, sym_comment, sym_include, - ACTIONS(3562), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [270654] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277821] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6967), 1, - anon_sym_COMMA, - ACTIONS(3828), 2, - aux_sym_of_token1, - aux_sym_on_statement_token1, - STATE(4905), 3, + ACTIONS(7053), 1, + aux_sym_stream_definition_token1, + ACTIONS(7055), 1, + aux_sym_input_close_statement_token1, + ACTIONS(7057), 1, + aux_sym_input_close_statement_token2, + ACTIONS(7059), 1, + aux_sym_output_stream_statement_token1, + STATE(5009), 2, sym_comment, sym_include, - aux_sym_on_statement_repeat1, - [270676] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277847] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4906), 2, + STATE(5010), 2, sym_comment, sym_include, - ACTIONS(3560), 4, + ACTIONS(3516), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [270696] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277867] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(6970), 1, - sym__terminator, - ACTIONS(6972), 1, - aux_sym_using_statement_token2, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(4907), 2, - sym_comment, - sym_include, - [270722] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4908), 2, + STATE(5011), 2, sym_comment, sym_include, - ACTIONS(3558), 4, + ACTIONS(3518), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [270742] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277887] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5464), 1, + STATE(5669), 1, sym_body, - STATE(4909), 2, + STATE(5012), 2, sym_comment, sym_include, - [270768] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [277913] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4910), 2, + ACTIONS(4626), 1, + anon_sym_LPAREN, + STATE(3531), 1, + sym_function_arguments, + ACTIONS(5779), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(5013), 2, sym_comment, sym_include, - ACTIONS(3438), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [270788] = 8, - ACTIONS(65), 1, + [277937] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7061), 1, + sym_identifier, + STATE(5014), 2, + sym_comment, + sym_include, + ACTIONS(7063), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [277957] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(6974), 1, + ACTIONS(7065), 1, + sym_identifier, + ACTIONS(7067), 1, sym__terminator, - STATE(4997), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4911), 2, + ACTIONS(7069), 1, + aux_sym_query_definition_token1, + STATE(5374), 1, + sym_qualified_name, + STATE(5015), 2, sym_comment, sym_include, - [270814] = 8, - ACTIONS(65), 1, + [277983] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(7071), 1, + anon_sym_LPAREN, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(2522), 1, + sym_function_arguments, + STATE(5016), 2, + sym_comment, + sym_include, + [278009] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4890), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5464), 1, + STATE(5697), 1, sym_body, - STATE(4912), 2, + STATE(5017), 2, sym_comment, sym_include, - [270840] = 5, - ACTIONS(3), 1, + [278035] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(186), 1, - sym_identifier, - STATE(4913), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5678), 1, + sym_body, + STATE(5018), 2, sym_comment, sym_include, - ACTIONS(188), 4, + [278061] = 8, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [270860] = 7, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5004), 1, + aux_sym_for_statement_repeat1, + STATE(5678), 1, + sym_body, + STATE(5019), 2, + sym_comment, + sym_include, + [278087] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6976), 1, + STATE(5020), 2, + sym_comment, + sym_include, + ACTIONS(4152), 4, sym_identifier, - STATE(111), 1, - sym_qualified_name, - ACTIONS(6978), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(4914), 2, + sym__terminator, + anon_sym_LBRACK, + aux_sym_scope_tuning_token1, + [278107] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(7073), 1, + aux_sym_return_type_token2, + STATE(5021), 2, sym_comment, sym_include, - [270884] = 5, - ACTIONS(65), 1, + ACTIONS(7075), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [278129] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4626), 1, + anon_sym_LPAREN, + ACTIONS(5902), 1, + anon_sym_COLON, + STATE(3531), 1, + sym_function_arguments, + STATE(5385), 1, + sym_case_body, + STATE(5022), 2, + sym_comment, + sym_include, + [278155] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4915), 2, + STATE(5023), 2, sym_comment, sym_include, - ACTIONS(3556), 4, + ACTIONS(3382), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [270904] = 5, - ACTIONS(65), 1, + [278175] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5012), 1, + aux_sym_for_statement_repeat1, + STATE(5698), 1, + sym_body, + STATE(5024), 2, + sym_comment, + sym_include, + [278201] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4916), 2, + STATE(5025), 2, sym_comment, sym_include, - ACTIONS(3554), 4, + ACTIONS(3520), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [270924] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [278221] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4917), 2, + STATE(5026), 2, sym_comment, sym_include, - ACTIONS(3552), 4, + ACTIONS(3582), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [270944] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [278241] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4918), 2, + STATE(5027), 2, sym_comment, sym_include, - ACTIONS(3440), 4, + ACTIONS(3524), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [270964] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [278261] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4919), 2, + STATE(5028), 2, sym_comment, sym_include, - ACTIONS(3550), 4, + ACTIONS(3526), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [270984] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [278281] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(840), 1, - anon_sym_LPAREN, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(1396), 1, - sym_function_arguments, - STATE(4920), 2, - sym_comment, - sym_include, - [271010] = 5, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(6980), 1, - sym_identifier, - STATE(4921), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(5029), 2, sym_comment, sym_include, - ACTIONS(6982), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [271030] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3528), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [278301] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(4900), 1, - aux_sym_for_statement_repeat1, - STATE(5486), 1, - sym_body, - STATE(4922), 2, + STATE(5030), 2, sym_comment, sym_include, - [271056] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3530), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [278321] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5486), 1, - sym_body, - STATE(4923), 2, + STATE(5031), 2, sym_comment, sym_include, - [271082] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3532), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [278341] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4924), 2, + STATE(5032), 2, sym_comment, sym_include, - ACTIONS(3639), 4, + ACTIONS(3534), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [271102] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [278361] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4925), 2, + STATE(5033), 2, sym_comment, sym_include, - ACTIONS(3442), 4, + ACTIONS(3536), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [271122] = 8, - ACTIONS(65), 1, + [278381] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5523), 1, - sym_body, - STATE(4926), 2, + STATE(5034), 2, sym_comment, sym_include, - [271148] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4355), 4, + sym_identifier, + sym__terminator, + anon_sym_LBRACK, + aux_sym_scope_tuning_token1, + [278401] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4927), 2, + STATE(5035), 2, sym_comment, sym_include, - ACTIONS(3546), 4, + ACTIONS(3540), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [271168] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [278421] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4928), 2, + STATE(5036), 2, sym_comment, sym_include, - ACTIONS(3544), 4, + ACTIONS(3542), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [271188] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [278441] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6986), 1, - aux_sym_variable_definition_token2, - STATE(4929), 2, + STATE(5037), 2, sym_comment, sym_include, - ACTIONS(6984), 3, + ACTIONS(3544), 4, aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - [271210] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [278461] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4977), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5987), 1, + STATE(5698), 1, sym_body, - STATE(4930), 2, + STATE(5038), 2, sym_comment, sym_include, - [271236] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [278487] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(6218), 1, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5747), 1, sym_body, - STATE(4931), 2, + STATE(5039), 2, sym_comment, sym_include, - [271262] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [278513] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(6193), 1, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(4827), 1, + aux_sym_for_statement_repeat1, + STATE(5697), 1, sym_body, - STATE(4932), 2, + STATE(5040), 2, sym_comment, sym_include, - [271288] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [278539] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4933), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(6068), 1, + sym_body, + STATE(5041), 2, sym_comment, sym_include, - ACTIONS(3542), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [271308] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [278565] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4934), 2, + STATE(5042), 2, sym_comment, sym_include, - ACTIONS(3540), 4, + ACTIONS(7077), 4, + anon_sym_COLON, aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [271328] = 5, - ACTIONS(65), 1, + anon_sym_COMMA, + aux_sym_repeat_tuning_token1, + [278585] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4935), 2, + ACTIONS(7079), 1, + sym_identifier, + STATE(110), 1, + sym_qualified_name, + ACTIONS(7081), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(5043), 2, sym_comment, sym_include, - ACTIONS(3538), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [271348] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [278609] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3303), 1, - anon_sym_COMMA, - ACTIONS(6988), 1, - aux_sym_of_token1, - ACTIONS(6990), 1, - aux_sym_on_statement_token1, - STATE(4905), 1, - aux_sym_on_statement_repeat1, - STATE(4936), 2, + ACTIONS(6751), 1, + sym__integer_literal, + ACTIONS(7083), 1, + anon_sym_RBRACK, + STATE(185), 1, + sym__decimal_literal, + STATE(6375), 1, + sym_number_literal, + STATE(5044), 2, sym_comment, sym_include, - [271374] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [278635] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4909), 1, + STATE(5018), 1, aux_sym_for_statement_repeat1, - STATE(5523), 1, + STATE(5747), 1, sym_body, - STATE(4937), 2, + STATE(5045), 2, sym_comment, sym_include, - [271400] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [278661] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4938), 2, - sym_comment, - sym_include, - ACTIONS(3444), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [271420] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4939), 2, + STATE(5046), 2, sym_comment, sym_include, - ACTIONS(3536), 4, + ACTIONS(3680), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [271440] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [278681] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4940), 2, - sym_comment, - sym_include, - ACTIONS(3446), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [271460] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4941), 2, + ACTIONS(4626), 1, + anon_sym_LPAREN, + ACTIONS(5902), 1, + anon_sym_COLON, + STATE(3531), 1, + sym_function_arguments, + STATE(5341), 1, + sym_case_body, + STATE(5047), 2, sym_comment, sym_include, - ACTIONS(6992), 4, - anon_sym_COLON, - anon_sym_DOT, - aux_sym__block_terminator_token1, - anon_sym_LPAREN, - [271480] = 8, - ACTIONS(65), 1, + [278707] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(6994), 1, - anon_sym_LPAREN, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(861), 1, - sym_function_arguments, - STATE(4942), 2, + ACTIONS(7087), 1, + sym__special_character, + STATE(5048), 2, sym_comment, sym_include, - [271506] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7085), 3, + anon_sym_DQUOTE, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + [278729] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4943), 2, + STATE(5049), 2, sym_comment, sym_include, - ACTIONS(3448), 4, + ACTIONS(3380), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [271526] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [278749] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4944), 2, + STATE(5050), 2, sym_comment, sym_include, - ACTIONS(3534), 4, + ACTIONS(3378), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [271546] = 5, - ACTIONS(65), 1, + [278769] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4945), 2, + ACTIONS(7089), 1, + sym_identifier, + STATE(5051), 2, sym_comment, sym_include, - ACTIONS(3532), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [271566] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7091), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [278789] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4946), 2, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(1740), 1, + sym__namedot, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(1408), 1, + sym_function_arguments, + STATE(5052), 2, sym_comment, sym_include, - ACTIONS(3530), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [271586] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [278815] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4947), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5798), 1, + sym_body, + STATE(5053), 2, sym_comment, sym_include, - ACTIONS(3450), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [271606] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [278841] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5015), 1, + STATE(5038), 1, aux_sym_for_statement_repeat1, - STATE(5645), 1, + STATE(5798), 1, sym_body, - STATE(4948), 2, + STATE(5054), 2, sym_comment, sym_include, - [271632] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [278867] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5079), 1, aux_sym_for_statement_repeat1, - STATE(5558), 1, + STATE(5464), 1, sym_body, - STATE(4949), 2, + STATE(5055), 2, sym_comment, sym_include, - [271658] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [278893] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(6996), 1, - sym__terminator, - STATE(4997), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4950), 2, + ACTIONS(6751), 1, + sym__integer_literal, + ACTIONS(7093), 1, + anon_sym_RBRACK, + STATE(185), 1, + sym__decimal_literal, + STATE(6154), 1, + sym_number_literal, + STATE(5056), 2, sym_comment, sym_include, - [271684] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [278919] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(6996), 1, - sym__terminator, - STATE(5070), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4951), 2, + ACTIONS(6874), 1, + aux_sym_return_type_token2, + STATE(5057), 2, sym_comment, sym_include, - [271710] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7095), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [278941] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6835), 1, + ACTIONS(6892), 1, aux_sym_return_type_token2, - STATE(4952), 2, + STATE(5058), 2, sym_comment, sym_include, - ACTIONS(6998), 3, + ACTIONS(7097), 3, aux_sym_on_error_phrase_token4, aux_sym_on_error_phrase_token5, aux_sym_on_error_phrase_token6, - [271732] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [278963] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4923), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5558), 1, + STATE(5939), 1, sym_body, - STATE(4953), 2, + STATE(5059), 2, sym_comment, sym_include, - [271758] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [278989] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5987), 1, - sym_body, - STATE(4954), 2, + STATE(5060), 2, sym_comment, sym_include, - [271784] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3546), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [279009] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5645), 1, + STATE(5464), 1, sym_body, - STATE(4955), 2, + STATE(5061), 2, sym_comment, sym_include, - [271810] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279035] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5498), 1, - sym__terminator, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - STATE(5085), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4956), 2, + STATE(5062), 2, sym_comment, sym_include, - [271836] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3548), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [279055] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5498), 1, - sym__terminator, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - STATE(4997), 1, + ACTIONS(7099), 1, + sym__terminator, + STATE(4633), 1, aux_sym_workfile_definition_repeat3, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(4957), 2, + STATE(5063), 2, sym_comment, sym_include, - [271862] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279081] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4958), 2, - sym_comment, - sym_include, - ACTIONS(3528), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [271882] = 5, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7000), 1, - sym_identifier, - STATE(4959), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(6107), 1, + sym_body, + STATE(5064), 2, sym_comment, sym_include, - ACTIONS(7002), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [271902] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279107] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4960), 2, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(7099), 1, + sym__terminator, + STATE(4658), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(5065), 2, sym_comment, sym_include, - ACTIONS(3526), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [271922] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279133] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6667), 1, + ACTIONS(6751), 1, sym__integer_literal, - ACTIONS(7004), 1, + ACTIONS(7101), 1, anon_sym_RBRACK, - STATE(176), 1, + STATE(185), 1, sym__decimal_literal, - STATE(6231), 1, + STATE(6361), 1, sym_number_literal, - STATE(4961), 2, + STATE(5066), 2, sym_comment, sym_include, - [271948] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279159] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4962), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5053), 1, + aux_sym_for_statement_repeat1, + STATE(5939), 1, + sym_body, + STATE(5067), 2, sym_comment, sym_include, - ACTIONS(3452), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [271968] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279185] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4963), 2, + STATE(5068), 2, sym_comment, sym_include, - ACTIONS(3454), 4, + ACTIONS(3678), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [271988] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279205] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4964), 2, + STATE(5069), 2, sym_comment, sym_include, - ACTIONS(3524), 4, + ACTIONS(3550), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [272008] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279225] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5960), 1, - sym_body, - STATE(4965), 2, - sym_comment, - sym_include, - [272034] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5632), 1, - sym_body, - STATE(4966), 2, + STATE(5070), 2, sym_comment, sym_include, - [272060] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3552), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [279245] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(4988), 1, - aux_sym_for_statement_repeat1, - STATE(5960), 1, - sym_body, - STATE(4967), 2, - sym_comment, - sym_include, - [272086] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4968), 2, + STATE(5071), 2, sym_comment, sym_include, - ACTIONS(3522), 4, + ACTIONS(3676), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [272106] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279265] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4969), 2, + STATE(5072), 2, sym_comment, sym_include, - ACTIONS(3456), 4, + ACTIONS(3554), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [272126] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279285] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4970), 2, + STATE(5073), 2, sym_comment, sym_include, - ACTIONS(3548), 4, + ACTIONS(3674), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [272146] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279305] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5102), 1, aux_sym_for_statement_repeat1, - STATE(5408), 1, + STATE(5712), 1, sym_body, - STATE(4971), 2, + STATE(5074), 2, sym_comment, sym_include, - [272172] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279331] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4972), 2, + STATE(5075), 2, sym_comment, sym_include, - ACTIONS(3458), 4, + ACTIONS(3556), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [272192] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279351] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(6663), 1, + ACTIONS(7103), 1, sym__terminator, - STATE(4997), 1, + STATE(4658), 1, aux_sym_workfile_definition_repeat3, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(4973), 2, + STATE(5076), 2, sym_comment, sym_include, - [272218] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279377] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(7006), 1, - anon_sym_LPAREN, - STATE(275), 1, - sym_function_arguments, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(4974), 2, + STATE(5077), 2, sym_comment, sym_include, - [272244] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3376), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [279397] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(4949), 1, - aux_sym_for_statement_repeat1, - STATE(5632), 1, - sym_body, - STATE(4975), 2, + STATE(5078), 2, sym_comment, sym_include, - [272270] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3558), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [279417] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4999), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5956), 1, + STATE(5712), 1, sym_body, - STATE(4976), 2, + STATE(5079), 2, sym_comment, sym_include, - [272296] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279443] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(5908), 1, + sym_on_stop_phrase, + ACTIONS(7105), 2, anon_sym_COLON, - ACTIONS(3788), 1, anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5956), 1, - sym_body, - STATE(4977), 2, + STATE(5080), 2, sym_comment, sym_include, - [272322] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279467] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4978), 2, - sym_comment, - sym_include, - ACTIONS(3460), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [272342] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4979), 2, + STATE(5081), 2, sym_comment, sym_include, - ACTIONS(3462), 4, + ACTIONS(3560), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [272362] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279487] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(4980), 2, - sym_comment, - sym_include, - ACTIONS(3464), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [272382] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4981), 2, + STATE(5082), 2, sym_comment, sym_include, - ACTIONS(3520), 4, + ACTIONS(3562), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [272402] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279507] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4982), 2, + STATE(5083), 2, sym_comment, sym_include, - ACTIONS(3518), 4, + ACTIONS(3564), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [272422] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279527] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6667), 1, - sym__integer_literal, - ACTIONS(7008), 1, - anon_sym_RBRACK, - STATE(176), 1, - sym__decimal_literal, - STATE(6256), 1, - sym_number_literal, - STATE(4983), 2, - sym_comment, - sym_include, - [272448] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4984), 2, + STATE(5084), 2, sym_comment, sym_include, - ACTIONS(3516), 4, + ACTIONS(3566), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [272468] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279547] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4985), 2, + STATE(5085), 2, sym_comment, sym_include, - ACTIONS(3466), 4, + ACTIONS(3568), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [272488] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279567] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4986), 2, + STATE(5086), 2, sym_comment, sym_include, - ACTIONS(3514), 4, + ACTIONS(3570), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [272508] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279587] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4987), 2, + STATE(5087), 2, sym_comment, sym_include, - ACTIONS(3468), 4, + ACTIONS(3572), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [272528] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279607] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5950), 1, - sym_body, - STATE(4988), 2, + STATE(5088), 2, sym_comment, sym_include, - [272554] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3374), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [279627] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5031), 1, + STATE(5112), 1, aux_sym_for_statement_repeat1, - STATE(5950), 1, + STATE(5760), 1, sym_body, - STATE(4989), 2, + STATE(5089), 2, sym_comment, sym_include, - [272580] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279653] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(7010), 1, - sym__terminator, - STATE(4997), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(4990), 2, - sym_comment, - sym_include, - [272606] = 7, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(5682), 1, - sym_on_stop_phrase, - ACTIONS(7012), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4991), 2, + STATE(5090), 2, sym_comment, sym_include, - [272630] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3574), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [279673] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(4664), 1, - aux_sym_for_statement_repeat1, - STATE(5408), 1, - sym_body, - STATE(4992), 2, - sym_comment, - sym_include, - [272656] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4993), 2, + STATE(5091), 2, sym_comment, sym_include, - ACTIONS(3512), 4, + ACTIONS(3576), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [272676] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279693] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4994), 2, + STATE(5092), 2, sym_comment, sym_include, - ACTIONS(3510), 4, + ACTIONS(3578), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [272696] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279713] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4995), 2, + STATE(5093), 2, sym_comment, sym_include, - ACTIONS(3508), 4, + ACTIONS(3372), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [272716] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279733] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(3786), 1, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(6038), 1, + sym_on_stop_phrase, + ACTIONS(6466), 2, anon_sym_COLON, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(6029), 1, - sym_body, - STATE(4996), 2, + anon_sym_COMMA, + STATE(5094), 2, sym_comment, sym_include, - [272742] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279757] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7014), 1, - sym__terminator, - ACTIONS(7016), 1, - aux_sym_field_definition_token1, - STATE(5672), 1, - sym_field_definition, - STATE(4997), 3, + ACTIONS(6751), 1, + sym__integer_literal, + ACTIONS(7107), 1, + anon_sym_RBRACK, + STATE(185), 1, + sym__decimal_literal, + STATE(6200), 1, + sym_number_literal, + STATE(5095), 2, sym_comment, sym_include, - aux_sym_workfile_definition_repeat3, - [272766] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279783] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(4998), 2, + STATE(5096), 2, sym_comment, sym_include, - ACTIONS(3470), 4, + ACTIONS(3580), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [272786] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279803] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5930), 1, - sym_body, - STATE(4999), 2, - sym_comment, - sym_include, - [272812] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5050), 1, - aux_sym_for_statement_repeat1, - STATE(5930), 1, - sym_body, - STATE(5000), 2, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(5805), 1, + sym__terminator, + STATE(4658), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(5097), 2, sym_comment, sym_include, - [272838] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279829] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5001), 2, + STATE(5098), 2, sym_comment, sym_include, - ACTIONS(7019), 4, - sym__terminator, - aux_sym_query_definition_tuning_token1, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - [272858] = 7, - ACTIONS(3), 1, + ACTIONS(7109), 4, + anon_sym_COLON, + aux_sym__block_terminator_token1, + anon_sym_COMMA, + aux_sym_repeat_tuning_token1, + [279849] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7021), 1, - sym_identifier, - STATE(131), 1, - sym_qualified_name, - ACTIONS(7023), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(5002), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5760), 1, + sym_body, + STATE(5099), 2, sym_comment, sym_include, - [272882] = 8, - ACTIONS(3), 1, + [279875] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7025), 1, - sym_identifier, - ACTIONS(7027), 1, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(5785), 1, sym__terminator, - ACTIONS(7029), 1, - aux_sym_query_definition_token1, - STATE(5302), 1, - sym_qualified_name, - STATE(5003), 2, + STATE(4658), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(5100), 2, sym_comment, sym_include, - [272908] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279901] = 7, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(5004), 2, - sym_comment, - sym_include, - ACTIONS(7031), 4, - sym__terminator, - aux_sym_query_definition_tuning_token1, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - [272928] = 7, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(5589), 1, + STATE(6098), 1, sym_on_stop_phrase, - ACTIONS(6492), 2, + ACTIONS(7111), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(5005), 2, + STATE(5101), 2, sym_comment, sym_include, - [272952] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279925] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(7033), 1, - sym__terminator, - STATE(4997), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(5006), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5772), 1, + sym_body, + STATE(5102), 2, sym_comment, sym_include, - [272978] = 5, - ACTIONS(65), 1, + [279951] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5007), 2, + ACTIONS(7113), 1, + sym_identifier, + STATE(125), 1, + sym_qualified_name, + ACTIONS(7115), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(5103), 2, sym_comment, sym_include, - ACTIONS(3506), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [272998] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [279975] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(340), 1, + ACTIONS(7031), 1, + anon_sym_LPAREN, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(6051), 1, - sym_body, - STATE(5008), 2, + STATE(2437), 1, + sym_function_arguments, + STATE(5104), 2, sym_comment, sym_include, - [273024] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280001] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5124), 1, aux_sym_for_statement_repeat1, - STATE(5583), 1, + STATE(5772), 1, sym_body, - STATE(5009), 2, + STATE(5105), 2, sym_comment, sym_include, - [273050] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280027] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(7035), 1, - sym__terminator, - STATE(5006), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(5010), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(6067), 1, + sym_body, + STATE(5106), 2, sym_comment, sym_include, - [273076] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280053] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5011), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(7117), 1, + anon_sym_LPAREN, + STATE(244), 1, + sym_function_arguments, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5107), 2, sym_comment, sym_include, - ACTIONS(3504), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [273096] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280079] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(4626), 1, + anon_sym_LPAREN, + ACTIONS(5902), 1, anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5578), 1, - sym_body, - STATE(5012), 2, + STATE(3531), 1, + sym_function_arguments, + STATE(5244), 1, + sym_case_body, + STATE(5108), 2, sym_comment, sym_include, - [273122] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280105] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5013), 2, + ACTIONS(5741), 1, + aux_sym_field_definition_token1, + ACTIONS(5805), 1, + sym__terminator, + STATE(4652), 1, + aux_sym_workfile_definition_repeat3, + STATE(6029), 1, + sym_field_definition, + STATE(5109), 2, sym_comment, sym_include, - ACTIONS(3502), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [273142] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280131] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5014), 2, + ACTIONS(6794), 1, + aux_sym_return_type_token2, + STATE(5110), 2, sym_comment, sym_include, - ACTIONS(3472), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [273162] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7119), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [280153] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5164), 1, aux_sym_for_statement_repeat1, - STATE(5489), 1, + STATE(5808), 1, sym_body, - STATE(5015), 2, + STATE(5111), 2, sym_comment, sym_include, - [273188] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280179] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(5016), 2, - sym_comment, - sym_include, - ACTIONS(3500), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [273208] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5067), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5578), 1, + STATE(5808), 1, sym_body, - STATE(5017), 2, + STATE(5112), 2, sym_comment, sym_include, - [273234] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280205] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5018), 2, + STATE(5113), 2, sym_comment, sym_include, - ACTIONS(3498), 4, + ACTIONS(3669), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [273254] = 8, - ACTIONS(65), 1, + [280225] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3303), 1, - anon_sym_COMMA, - ACTIONS(7037), 1, - aux_sym_of_token1, - ACTIONS(7039), 1, - aux_sym_on_statement_token1, - STATE(4905), 1, - aux_sym_on_statement_repeat1, - STATE(5019), 2, + STATE(5114), 2, sym_comment, sym_include, - [273280] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7121), 4, + sym_identifier, + sym__terminator, + aux_sym_scope_tuning_token1, + anon_sym_NO_DASHERROR, + [280245] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(6445), 1, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5064), 1, + aux_sym_for_statement_repeat1, + STATE(6068), 1, sym_body, - STATE(5020), 2, + STATE(5115), 2, sym_comment, sym_include, - [273306] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280271] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5021), 2, + STATE(5116), 2, sym_comment, sym_include, - ACTIONS(3474), 4, + ACTIONS(3394), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [273326] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280291] = 7, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(7041), 1, - sym__terminator, - STATE(4997), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(5022), 2, - sym_comment, - sym_include, - [273352] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(7043), 1, + ACTIONS(4626), 1, anon_sym_LPAREN, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(2752), 1, + STATE(3531), 1, sym_function_arguments, - STATE(5023), 2, + ACTIONS(5075), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(5117), 2, sym_comment, sym_include, - [273378] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280315] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(5024), 2, - sym_comment, - sym_include, - ACTIONS(3496), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [273398] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(7041), 1, + ACTIONS(5785), 1, sym__terminator, - STATE(4911), 1, + STATE(5167), 1, aux_sym_workfile_definition_repeat3, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(5025), 2, + STATE(5118), 2, sym_comment, sym_include, - [273424] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280341] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5026), 2, + STATE(5119), 2, sym_comment, sym_include, - ACTIONS(3476), 4, + ACTIONS(3370), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [273444] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280361] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5027), 2, + ACTIONS(7123), 1, + aux_sym_stream_definition_token1, + ACTIONS(7125), 1, + aux_sym_input_close_statement_token1, + ACTIONS(7127), 1, + aux_sym_input_close_statement_token2, + ACTIONS(7129), 1, + aux_sym_output_stream_statement_token1, + STATE(5120), 2, sym_comment, sym_include, - ACTIONS(3494), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [273464] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280387] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(7045), 1, - anon_sym_LPAREN, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(1071), 1, - sym_function_arguments, - STATE(5028), 2, + ACTIONS(7131), 1, + aux_sym_using_statement_token2, + ACTIONS(7133), 1, + aux_sym_stream_definition_token1, + ACTIONS(7135), 1, + aux_sym_input_close_statement_token1, + ACTIONS(7137), 1, + aux_sym_input_close_statement_token2, + STATE(5121), 2, sym_comment, sym_include, - [273490] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280413] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5029), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5918), 1, + sym_body, + STATE(5122), 2, sym_comment, sym_include, - ACTIONS(3492), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [273510] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280439] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5030), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5122), 1, + aux_sym_for_statement_repeat1, + STATE(5906), 1, + sym_body, + STATE(5123), 2, sym_comment, sym_include, - ACTIONS(3478), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [273530] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280465] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5928), 1, + STATE(5847), 1, sym_body, - STATE(5031), 2, + STATE(5124), 2, sym_comment, sym_include, - [273556] = 7, - ACTIONS(3), 1, + [280491] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7047), 1, - sym_identifier, - STATE(5745), 1, - sym_object_access, - STATE(3326), 2, - sym_qualified_name, - sym_function_call, - STATE(5032), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(7139), 1, + sym__terminator, + ACTIONS(7141), 1, + aux_sym_using_statement_token2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5125), 2, sym_comment, sym_include, - [273580] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280517] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3303), 1, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(7049), 1, - aux_sym_of_token1, - ACTIONS(7051), 1, - aux_sym_on_statement_token1, - STATE(4905), 1, - aux_sym_on_statement_repeat1, - STATE(5033), 2, + STATE(5171), 1, + aux_sym_for_statement_repeat1, + STATE(5847), 1, + sym_body, + STATE(5126), 2, sym_comment, sym_include, - [273606] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280543] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6121), 1, + ACTIONS(6150), 1, aux_sym_on_error_phrase_token1, - STATE(5581), 1, + STATE(5468), 1, sym_on_stop_phrase, - ACTIONS(4372), 2, + ACTIONS(4534), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(5034), 2, + STATE(5127), 2, sym_comment, sym_include, - [273630] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280567] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4695), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5489), 1, + STATE(5906), 1, sym_body, - STATE(5035), 2, + STATE(5128), 2, sym_comment, sym_include, - [273656] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280593] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5036), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5898), 1, + sym_body, + STATE(5129), 2, sym_comment, sym_include, - ACTIONS(3490), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [273676] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280619] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5128), 1, aux_sym_for_statement_repeat1, - STATE(5574), 1, + STATE(5891), 1, sym_body, - STATE(5037), 2, + STATE(5130), 2, sym_comment, sym_include, - [273702] = 8, - ACTIONS(65), 1, + [280645] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(5131), 2, + sym_comment, + sym_include, + ACTIONS(3368), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [280665] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(4872), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5574), 1, + STATE(5891), 1, sym_body, - STATE(5038), 2, + STATE(5132), 2, sym_comment, sym_include, - [273728] = 6, - ACTIONS(3), 1, + [280691] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7055), 1, - sym__special_character, - STATE(5039), 2, + ACTIONS(6818), 1, + aux_sym_return_type_token2, + STATE(5133), 2, sym_comment, sym_include, - ACTIONS(7053), 3, - anon_sym_DQUOTE, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - [273750] = 8, - ACTIONS(65), 1, + ACTIONS(7143), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [280713] = 8, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(7145), 1, + anon_sym_LPAREN, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(2516), 1, + sym_function_arguments, + STATE(5134), 2, + sym_comment, + sym_include, + [280739] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5073), 1, + STATE(5129), 1, aux_sym_for_statement_repeat1, - STATE(5928), 1, + STATE(5889), 1, sym_body, - STATE(5040), 2, + STATE(5135), 2, sym_comment, sym_include, - [273776] = 8, - ACTIONS(65), 1, + [280765] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(6388), 1, - sym_body, - STATE(5041), 2, + ACTIONS(6725), 1, + sym__escaped_string, + ACTIONS(7147), 1, + sym_identifier, + STATE(4038), 2, + sym_qualified_name, + sym_string_literal, + STATE(5136), 2, sym_comment, sym_include, - [273802] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280789] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6773), 1, - aux_sym_return_type_token2, - STATE(5042), 2, + STATE(5137), 2, sym_comment, sym_include, - ACTIONS(7057), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [273824] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3598), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [280809] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5043), 2, + STATE(5138), 2, sym_comment, sym_include, - ACTIONS(3480), 4, + ACTIONS(3600), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [273844] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280829] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7059), 1, - aux_sym_stream_definition_token1, - ACTIONS(7061), 1, - aux_sym_input_close_statement_token1, - ACTIONS(7063), 1, - aux_sym_input_close_statement_token2, - ACTIONS(7065), 1, - aux_sym_output_stream_statement_token1, - STATE(5044), 2, + STATE(5139), 2, sym_comment, sym_include, - [273870] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3602), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [280849] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7067), 1, - aux_sym_using_statement_token2, - ACTIONS(7069), 1, - aux_sym_stream_definition_token1, - ACTIONS(7071), 1, - aux_sym_input_close_statement_token1, - ACTIONS(7073), 1, - aux_sym_input_close_statement_token2, - STATE(5045), 2, + STATE(5140), 2, sym_comment, sym_include, - [273896] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3604), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [280869] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5863), 1, - sym_body, - STATE(5046), 2, + STATE(5141), 2, sym_comment, sym_include, - [273922] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3608), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [280889] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5047), 2, + STATE(5142), 2, sym_comment, sym_include, - ACTIONS(3482), 4, + ACTIONS(3610), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [273942] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280909] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(5595), 1, - sym__terminator, - STATE(4997), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(5048), 2, + STATE(5143), 2, sym_comment, sym_include, - [273968] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3612), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [280929] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5049), 2, + STATE(5144), 2, sym_comment, sym_include, - ACTIONS(7075), 4, - sym__terminator, - aux_sym_query_definition_tuning_token1, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - [273988] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3614), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [280949] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5926), 1, + STATE(5889), 1, sym_body, - STATE(5050), 2, + STATE(5145), 2, sym_comment, sym_include, - [274014] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [280975] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6777), 1, - aux_sym_return_type_token2, - STATE(5051), 2, - sym_comment, - sym_include, - ACTIONS(7077), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [274036] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5046), 1, - aux_sym_for_statement_repeat1, - STATE(5867), 1, - sym_body, - STATE(5052), 2, + STATE(5146), 2, sym_comment, sym_include, - [274062] = 6, - ACTIONS(3), 1, + ACTIONS(3616), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [280995] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7079), 1, - sym_identifier, - STATE(5053), 2, + STATE(5147), 2, sym_comment, sym_include, - ACTIONS(7081), 3, - anon_sym_COLON, + ACTIONS(3626), 4, aux_sym__block_terminator_token1, - aux_sym_repeat_tuning_token1, - [274084] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [281015] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5082), 1, + STATE(5132), 1, aux_sym_for_statement_repeat1, - STATE(5926), 1, + STATE(5887), 1, sym_body, - STATE(5054), 2, + STATE(5148), 2, sym_comment, sym_include, - [274110] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281041] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(7035), 1, - sym__terminator, - STATE(4997), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(5055), 2, - sym_comment, - sym_include, - [274136] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6773), 1, - aux_sym_return_type_token2, - STATE(5056), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5887), 1, + sym_body, + STATE(5149), 2, sym_comment, sym_include, - ACTIONS(7083), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [274158] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281067] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5145), 1, aux_sym_for_statement_repeat1, - STATE(5867), 1, + STATE(5885), 1, sym_body, - STATE(5057), 2, + STATE(5150), 2, sym_comment, sym_include, - [274184] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281093] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6121), 1, - aux_sym_on_error_phrase_token1, - STATE(5563), 1, - sym_on_stop_phrase, - ACTIONS(7085), 2, + ACTIONS(3815), 1, anon_sym_COLON, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5058), 2, + STATE(5298), 1, + aux_sym_for_statement_repeat1, + STATE(5885), 1, + sym_body, + STATE(5151), 2, sym_comment, sym_include, - [274208] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281119] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5149), 1, aux_sym_for_statement_repeat1, - STATE(5868), 1, + STATE(5882), 1, sym_body, - STATE(5059), 2, + STATE(5152), 2, sym_comment, sym_include, - [274234] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281145] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(5060), 2, - sym_comment, - sym_include, - ACTIONS(3484), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [274254] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5061), 2, + STATE(5153), 2, sym_comment, sym_include, - ACTIONS(3486), 4, + ACTIONS(3667), 4, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_else_statement_token1, aux_sym_case_otherwise_branch_token1, - [274274] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281165] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3303), 1, + ACTIONS(6150), 1, + aux_sym_on_error_phrase_token1, + STATE(5488), 1, + sym_on_stop_phrase, + ACTIONS(4488), 2, + anon_sym_COLON, anon_sym_COMMA, - ACTIONS(7087), 1, - aux_sym_of_token1, - ACTIONS(7089), 1, - aux_sym_on_statement_token1, - STATE(4905), 1, - aux_sym_on_statement_repeat1, - STATE(5062), 2, + STATE(5154), 2, sym_comment, sym_include, - [274300] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281189] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5057), 1, - aux_sym_for_statement_repeat1, - STATE(5974), 1, - sym_body, - STATE(5063), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(7149), 1, + anon_sym_LPAREN, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(1066), 1, + sym_function_arguments, + STATE(5155), 2, sym_comment, sym_include, - [274326] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281215] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5974), 1, + STATE(5882), 1, sym_body, - STATE(5064), 2, + STATE(5156), 2, sym_comment, sym_include, - [274352] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281241] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5059), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5876), 1, + STATE(5904), 1, sym_body, - STATE(5065), 2, + STATE(5157), 2, sym_comment, sym_include, - [274378] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281267] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5151), 1, aux_sym_for_statement_repeat1, - STATE(5876), 1, + STATE(5879), 1, sym_body, - STATE(5066), 2, + STATE(5158), 2, sym_comment, sym_include, - [274404] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281293] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5562), 1, + STATE(5879), 1, sym_body, - STATE(5067), 2, - sym_comment, - sym_include, - [274430] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(5068), 2, + STATE(5159), 2, sym_comment, sym_include, - ACTIONS(3488), 4, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_else_statement_token1, - aux_sym_case_otherwise_branch_token1, - [274450] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281319] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(5595), 1, - sym__terminator, - STATE(5055), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(5069), 2, - sym_comment, - sym_include, - [274476] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(7091), 1, - sym__terminator, - STATE(4997), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(5070), 2, + ACTIONS(7073), 1, + aux_sym_return_type_token2, + STATE(5160), 2, sym_comment, sym_include, - [274502] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7151), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [281341] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(6234), 1, - sym_body, - STATE(5071), 2, + ACTIONS(6818), 1, + aux_sym_return_type_token2, + STATE(5161), 2, sym_comment, sym_include, - [274528] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7153), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [281363] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(6202), 1, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(5156), 1, + aux_sym_for_statement_repeat1, + STATE(5876), 1, sym_body, - STATE(5072), 2, + STATE(5162), 2, sym_comment, sym_include, - [274554] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281389] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5904), 1, + STATE(5876), 1, sym_body, - STATE(5073), 2, + STATE(5163), 2, sym_comment, sym_include, - [274580] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281415] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5064), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5879), 1, + STATE(5857), 1, sym_body, - STATE(5074), 2, + STATE(5164), 2, sym_comment, sym_include, - [274606] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281441] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(6889), 1, - anon_sym_LPAREN, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(2555), 1, - sym_function_arguments, - STATE(5075), 2, - sym_comment, - sym_include, - [274632] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5879), 1, - sym_body, - STATE(5076), 2, + STATE(5165), 2, sym_comment, sym_include, - [274658] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3628), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [281461] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6673), 1, - sym__escaped_string, - STATE(4268), 1, - sym_string_literal, - ACTIONS(7093), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(5077), 2, + STATE(5166), 2, sym_comment, sym_include, - [274682] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3366), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [281481] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(5599), 1, + ACTIONS(7155), 1, sym__terminator, - STATE(4997), 1, + STATE(4658), 1, aux_sym_workfile_definition_repeat3, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(5078), 2, + STATE(5167), 2, sym_comment, sym_include, - [274708] = 8, - ACTIONS(65), 1, + [281507] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(5168), 2, + sym_comment, + sym_include, + ACTIONS(3630), 4, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_else_statement_token1, + aux_sym_case_otherwise_branch_token1, + [281527] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5084), 1, + STATE(5163), 1, aux_sym_for_statement_repeat1, - STATE(5904), 1, + STATE(5857), 1, sym_body, - STATE(5079), 2, + STATE(5169), 2, sym_comment, sym_include, - [274734] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281553] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(7095), 1, - sym__terminator, - STATE(4997), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(5080), 2, - sym_comment, - sym_include, - [274760] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5066), 1, + STATE(5159), 1, aux_sym_for_statement_repeat1, - STATE(5882), 1, + STATE(5862), 1, sym_body, - STATE(5081), 2, + STATE(5170), 2, sym_comment, sym_include, - [274786] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281579] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(3788), 1, + ACTIONS(3817), 1, anon_sym_COMMA, - STATE(5152), 1, + STATE(5298), 1, aux_sym_for_statement_repeat1, - STATE(5894), 1, + STATE(5862), 1, sym_body, - STATE(5082), 2, + STATE(5171), 2, sym_comment, sym_include, - [274812] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281605] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(5599), 1, + ACTIONS(7155), 1, sym__terminator, - STATE(4973), 1, + STATE(5076), 1, aux_sym_workfile_definition_repeat3, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(5083), 2, + STATE(5172), 2, sym_comment, sym_include, - [274838] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281631] = 8, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5152), 1, - aux_sym_for_statement_repeat1, - STATE(5882), 1, - sym_body, - STATE(5084), 2, - sym_comment, - sym_include, - [274864] = 8, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(7097), 1, + ACTIONS(5765), 1, sym__terminator, - STATE(4997), 1, + STATE(5065), 1, aux_sym_workfile_definition_repeat3, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(5085), 2, + STATE(5173), 2, sym_comment, sym_include, - [274890] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281657] = 8, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, + ACTIONS(5741), 1, aux_sym_field_definition_token1, - ACTIONS(7095), 1, + ACTIONS(5765), 1, sym__terminator, - STATE(4990), 1, + STATE(4658), 1, aux_sym_workfile_definition_repeat3, - STATE(5672), 1, + STATE(6029), 1, sym_field_definition, - STATE(5086), 2, + STATE(5174), 2, sym_comment, sym_include, - [274916] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281683] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, - aux_sym_field_definition_token1, - ACTIONS(7097), 1, + ACTIONS(825), 1, + sym__namecolon, + ACTIONS(7157), 1, sym__terminator, - STATE(4888), 1, - aux_sym_workfile_definition_repeat3, - STATE(5672), 1, - sym_field_definition, - STATE(5087), 2, + STATE(4563), 1, + aux_sym_object_access_repeat1, + STATE(5175), 2, sym_comment, sym_include, - [274942] = 8, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281706] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3788), 1, - anon_sym_COMMA, - STATE(5076), 1, - aux_sym_for_statement_repeat1, - STATE(5894), 1, - sym_body, - STATE(5088), 2, + ACTIONS(5958), 1, + aux_sym__block_terminator_token1, + STATE(5069), 1, + sym__function_terminator, + STATE(5168), 1, + sym__block_terminator, + STATE(5176), 2, sym_comment, sym_include, - [274968] = 6, - ACTIONS(3), 1, + [281729] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7099), 1, - sym_identifier, - ACTIONS(6901), 2, - anon_sym_COLON, + ACTIONS(7159), 1, anon_sym_COMMA, - STATE(5089), 2, + ACTIONS(7161), 1, + anon_sym_RPAREN, + STATE(5375), 1, + aux_sym_function_arguments_repeat1, + STATE(5177), 2, sym_comment, sym_include, - [274989] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281752] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(128), 1, - anon_sym_EQ, - ACTIONS(822), 1, - sym__namedoublecolon, - STATE(5346), 1, - aux_sym_member_access_repeat1, - STATE(5090), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(7163), 1, + sym__terminator, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5178), 2, sym_comment, sym_include, - [275012] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281775] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5091), 2, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7165), 1, + anon_sym_RPAREN, + STATE(5177), 1, + aux_sym_function_arguments_repeat1, + STATE(5179), 2, sym_comment, sym_include, - ACTIONS(7101), 3, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_case_otherwise_branch_token1, - [275031] = 5, - ACTIONS(65), 1, + [281798] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(7167), 1, + sym__terminator, + STATE(4333), 1, + aux_sym_data_relation_repeat1, + STATE(5180), 2, + sym_comment, + sym_include, + [281821] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5092), 2, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + STATE(3200), 1, + sym_type_tuning, + STATE(5181), 2, sym_comment, sym_include, - ACTIONS(7103), 3, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_case_otherwise_branch_token1, - [275050] = 7, + [281844] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7105), 1, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(7169), 1, sym_identifier, - ACTIONS(7107), 1, - aux_sym_temp_table_expression_token1, - STATE(6398), 1, - sym_qualified_name, - STATE(5093), 2, + STATE(2909), 1, + sym_parenthesized_expression, + STATE(5182), 2, sym_comment, sym_include, - [275073] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281867] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(7109), 1, + ACTIONS(7171), 1, sym__terminator, - STATE(340), 1, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(5094), 2, + STATE(5183), 2, sym_comment, sym_include, - [275096] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281890] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5095), 2, + STATE(5184), 2, sym_comment, sym_include, - ACTIONS(7111), 3, + ACTIONS(7173), 3, sym__terminator, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [275115] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281909] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, - anon_sym_COMMA, - ACTIONS(7115), 1, - anon_sym_RPAREN, - STATE(5244), 1, - aux_sym_function_arguments_repeat1, - STATE(5096), 2, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + STATE(3594), 1, + sym_type_tuning, + STATE(5185), 2, sym_comment, sym_include, - [275138] = 6, + [281932] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7117), 1, + ACTIONS(1852), 1, + anon_sym_LPAREN, + ACTIONS(7175), 1, sym_identifier, - STATE(5097), 2, + STATE(2865), 1, + sym_parenthesized_expression, + STATE(5186), 2, sym_comment, sym_include, - STATE(5914), 2, - sym_qualified_name, - sym_object_access, - [275159] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281955] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6667), 1, - sym__integer_literal, - STATE(176), 1, - sym__decimal_literal, - STATE(3020), 1, - sym_number_literal, - STATE(5098), 2, - sym_comment, - sym_include, - [275182] = 7, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7119), 1, - anon_sym_COMMA, - ACTIONS(7121), 1, - anon_sym_RPAREN, - STATE(5250), 1, - aux_sym_function_parameters_repeat1, - STATE(5099), 2, + ACTIONS(6100), 1, + aux_sym__block_terminator_token1, + STATE(5070), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(5187), 2, sym_comment, sym_include, - [275205] = 5, - ACTIONS(65), 1, + [281976] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5100), 2, + ACTIONS(7177), 1, + sym_identifier, + ACTIONS(7179), 1, + aux_sym_temp_table_expression_token1, + STATE(6809), 1, + sym_qualified_name, + STATE(5188), 2, sym_comment, sym_include, - ACTIONS(7123), 3, - anon_sym_COLON, - anon_sym_DOT, - aux_sym__block_terminator_token1, - [275224] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [281999] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(7125), 1, + ACTIONS(7181), 1, anon_sym_RPAREN, - STATE(5096), 1, + STATE(5375), 1, aux_sym_function_arguments_repeat1, - STATE(5101), 2, + STATE(5189), 2, sym_comment, sym_include, - [275247] = 7, + [282022] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2077), 1, - anon_sym_LPAREN, - ACTIONS(7127), 1, + ACTIONS(7183), 1, sym_identifier, - STATE(2917), 1, - sym_parenthesized_expression, - STATE(5102), 2, + ACTIONS(7185), 1, + anon_sym_AMP, + ACTIONS(7187), 1, + sym__integer_literal, + STATE(5190), 2, sym_comment, sym_include, - [275270] = 7, - ACTIONS(65), 1, + [282045] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(7129), 1, + ACTIONS(7189), 1, + sym_identifier, + ACTIONS(7191), 1, sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(5103), 2, + STATE(5378), 1, + sym_qualified_name, + STATE(5191), 2, sym_comment, sym_include, - [275293] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282068] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7131), 1, - aux_sym_on_error_phrase_token2, - ACTIONS(7133), 1, - aux_sym_on_stop_phrase_token1, - ACTIONS(7135), 1, - aux_sym_on_quit_phrase_token1, - STATE(5104), 2, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6564), 1, + sym__terminator, + STATE(4333), 1, + aux_sym_data_relation_repeat1, + STATE(5192), 2, sym_comment, sym_include, - [275316] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282091] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6667), 1, + ACTIONS(6751), 1, sym__integer_literal, - STATE(176), 1, + STATE(185), 1, sym__decimal_literal, - STATE(6480), 1, + STATE(6685), 1, sym_number_literal, - STATE(5105), 2, + STATE(5193), 2, sym_comment, sym_include, - [275339] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282114] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6667), 1, - sym__integer_literal, - STATE(176), 1, - sym__decimal_literal, - STATE(6479), 1, - sym_number_literal, - STATE(5106), 2, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7193), 1, + anon_sym_RPAREN, + STATE(5189), 1, + aux_sym_function_arguments_repeat1, + STATE(5194), 2, sym_comment, sym_include, - [275362] = 6, - ACTIONS(3), 1, + [282137] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7137), 1, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(7195), 1, anon_sym_RPAREN, - ACTIONS(7139), 1, - anon_sym_, - STATE(5107), 3, + STATE(4333), 1, + aux_sym_data_relation_repeat1, + STATE(5195), 2, sym_comment, sym_include, - aux_sym_accumulate_statement_repeat1, - [275383] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282160] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(7142), 1, - anon_sym_RPAREN, - STATE(4300), 1, - aux_sym_data_relation_repeat1, - STATE(5108), 2, + ACTIONS(7197), 1, + aux_sym_return_type_token1, + ACTIONS(7199), 1, + aux_sym_return_type_token2, + STATE(3993), 1, + sym_return_type, + STATE(5196), 2, sym_comment, sym_include, - [275406] = 6, + [282183] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7144), 1, + ACTIONS(873), 1, + anon_sym_LPAREN, + ACTIONS(7201), 1, sym_identifier, - STATE(5109), 2, + STATE(987), 1, + sym_parenthesized_expression, + STATE(5197), 2, sym_comment, sym_include, - STATE(5709), 2, - sym_qualified_name, - sym_object_access, - [275427] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282206] = 7, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(7146), 1, - sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(5110), 2, - sym_comment, - sym_include, - [275450] = 7, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, + ACTIONS(7203), 1, anon_sym_COMMA, - ACTIONS(7148), 1, - sym__terminator, - STATE(4300), 1, - aux_sym_data_relation_repeat1, - STATE(5111), 2, + ACTIONS(7205), 1, + anon_sym_RPAREN, + STATE(5238), 1, + aux_sym_function_parameters_repeat1, + STATE(5198), 2, sym_comment, sym_include, - [275473] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282229] = 7, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(7150), 1, - aux_sym_image_phrase_token1, - ACTIONS(7152), 1, - aux_sym_image_phrase_token2, - STATE(3016), 1, - sym_image_phrase, - STATE(5112), 2, - sym_comment, - sym_include, - [275496] = 7, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6667), 1, + ACTIONS(6751), 1, sym__integer_literal, - STATE(176), 1, + STATE(185), 1, sym__decimal_literal, - STATE(6595), 1, + STATE(6178), 1, sym_number_literal, - STATE(5113), 2, + STATE(5199), 2, sym_comment, sym_include, - [275519] = 7, - ACTIONS(65), 1, + [282252] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7207), 1, + anon_sym_RPAREN, + STATE(5375), 1, + aux_sym_function_arguments_repeat1, + STATE(5200), 2, + sym_comment, + sym_include, + [282275] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6667), 1, + ACTIONS(6751), 1, sym__integer_literal, - STATE(176), 1, + STATE(185), 1, sym__decimal_literal, - STATE(3016), 1, + STATE(3973), 1, sym_number_literal, - STATE(5114), 2, + STATE(5201), 2, sym_comment, sym_include, - [275542] = 7, + [282298] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1999), 1, + ACTIONS(2016), 1, anon_sym_LPAREN, - ACTIONS(7154), 1, + ACTIONS(7209), 1, sym_identifier, - STATE(2915), 1, + STATE(2983), 1, sym_parenthesized_expression, - STATE(5115), 2, + STATE(5202), 2, sym_comment, sym_include, - [275565] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282321] = 7, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(7113), 1, - anon_sym_COMMA, - ACTIONS(7156), 1, - anon_sym_RPAREN, - STATE(5244), 1, - aux_sym_function_arguments_repeat1, - STATE(5116), 2, - sym_comment, - sym_include, - [275588] = 7, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7158), 1, - sym_identifier, - ACTIONS(7160), 1, - anon_sym_AMP, - ACTIONS(7162), 1, + ACTIONS(6751), 1, sym__integer_literal, - STATE(5117), 2, + STATE(185), 1, + sym__decimal_literal, + STATE(6168), 1, + sym_number_literal, + STATE(5203), 2, sym_comment, sym_include, - [275611] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282344] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - STATE(3182), 1, + STATE(3737), 1, sym_type_tuning, - STATE(5118), 2, + STATE(5204), 2, sym_comment, sym_include, - [275634] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282367] = 7, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(5119), 2, - sym_comment, - sym_include, - ACTIONS(7164), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [275653] = 7, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, - anon_sym_COMMA, - ACTIONS(7166), 1, - anon_sym_RPAREN, - STATE(5127), 1, - aux_sym_function_arguments_repeat1, - STATE(5120), 2, + ACTIONS(6662), 1, + sym__terminator, + ACTIONS(6664), 1, + aux_sym_input_expression_token2, + ACTIONS(6666), 1, + aux_sym_prompt_for_statement_token2, + STATE(5205), 2, sym_comment, sym_include, - [275676] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282390] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, - anon_sym_COMMA, - ACTIONS(7168), 1, - anon_sym_RPAREN, - STATE(5116), 1, - aux_sym_function_arguments_repeat1, - STATE(5121), 2, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + STATE(3697), 1, + sym_type_tuning, + STATE(5206), 2, sym_comment, sym_include, - [275699] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282413] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7170), 1, - aux_sym_return_type_token1, - ACTIONS(7172), 1, - aux_sym_return_type_token2, - STATE(3922), 1, - sym_return_type, - STATE(5122), 2, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6610), 1, + sym__terminator, + STATE(4333), 1, + aux_sym_data_relation_repeat1, + STATE(5207), 2, sym_comment, sym_include, - [275722] = 7, + [282436] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(866), 1, - anon_sym_LPAREN, - ACTIONS(7174), 1, - sym_identifier, - STATE(971), 1, - sym_parenthesized_expression, - STATE(5123), 2, + ACTIONS(7211), 1, + anon_sym_RPAREN, + ACTIONS(7213), 1, + anon_sym_, + STATE(5383), 1, + aux_sym_accumulate_statement_repeat1, + STATE(5208), 2, sym_comment, sym_include, - [275745] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282459] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(7176), 1, - sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(5124), 2, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7215), 1, + anon_sym_RPAREN, + STATE(5214), 1, + aux_sym_function_arguments_repeat1, + STATE(5209), 2, sym_comment, sym_include, - [275768] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282482] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - STATE(3498), 1, - sym_type_tuning, - STATE(5125), 2, + ACTIONS(7217), 1, + aux_sym_image_phrase_token1, + ACTIONS(7219), 1, + aux_sym_image_phrase_token2, + STATE(3061), 1, + sym_image_phrase, + STATE(5210), 2, sym_comment, sym_include, - [275791] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282505] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7133), 1, - aux_sym_on_stop_phrase_token1, - ACTIONS(7178), 1, - aux_sym_on_error_phrase_token2, - ACTIONS(7180), 1, - aux_sym_on_quit_phrase_token1, - STATE(5126), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(7221), 1, + sym__terminator, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5211), 2, sym_comment, sym_include, - [275814] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282528] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(6052), 1, anon_sym_COMMA, - ACTIONS(7182), 1, + ACTIONS(6474), 1, anon_sym_RPAREN, - STATE(5244), 1, - aux_sym_function_arguments_repeat1, - STATE(5127), 2, + STATE(5195), 1, + aux_sym_data_relation_repeat1, + STATE(5212), 2, sym_comment, sym_include, - [275837] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282551] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6667), 1, + ACTIONS(6751), 1, sym__integer_literal, - STATE(176), 1, + STATE(185), 1, sym__decimal_literal, - STATE(3018), 1, + STATE(6680), 1, sym_number_literal, - STATE(5128), 2, + STATE(5213), 2, sym_comment, sym_include, - [275860] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282574] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5129), 2, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7223), 1, + anon_sym_RPAREN, + STATE(5375), 1, + aux_sym_function_arguments_repeat1, + STATE(5214), 2, sym_comment, sym_include, - ACTIONS(7184), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [275879] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282597] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6667), 1, + ACTIONS(6751), 1, sym__integer_literal, - STATE(176), 1, + STATE(185), 1, sym__decimal_literal, - STATE(5049), 1, + STATE(3061), 1, sym_number_literal, - STATE(5130), 2, - sym_comment, - sym_include, - [275902] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - STATE(3604), 1, - sym_type_tuning, - STATE(5131), 2, - sym_comment, - sym_include, - [275925] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(7186), 1, - sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(5132), 2, + STATE(5215), 2, sym_comment, sym_include, - [275948] = 7, + [282620] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7188), 1, + ACTIONS(7225), 1, sym_identifier, - ACTIONS(7190), 1, - sym__terminator, - STATE(5349), 1, + ACTIONS(7227), 1, + aux_sym_temp_table_expression_token1, + STATE(6328), 1, sym_qualified_name, - STATE(5133), 2, - sym_comment, - sym_include, - [275971] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(7192), 1, - sym_identifier, - STATE(5134), 2, + STATE(5216), 2, sym_comment, sym_include, - STATE(5500), 2, - sym_qualified_name, - sym_object_access, - [275992] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282643] = 7, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(7194), 1, - sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(5135), 2, - sym_comment, - sym_include, - [276015] = 7, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - STATE(3153), 1, + STATE(3624), 1, sym_type_tuning, - STATE(5136), 2, + STATE(5217), 2, sym_comment, sym_include, - [276038] = 7, + [282666] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7196), 1, + ACTIONS(7229), 1, sym_identifier, - ACTIONS(7198), 1, + ACTIONS(7231), 1, aux_sym_temp_table_expression_token1, - STATE(6074), 1, + STATE(6522), 1, sym_qualified_name, - STATE(5137), 2, + STATE(5218), 2, sym_comment, sym_include, - [276061] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282689] = 7, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(7200), 1, - sym__terminator, - STATE(6647), 1, - sym_body, - STATE(5138), 2, - sym_comment, - sym_include, - [276084] = 7, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(7202), 1, + ACTIONS(7233), 1, sym__terminator, - STATE(340), 1, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(5139), 2, + STATE(5219), 2, sym_comment, sym_include, - [276107] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282712] = 7, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - STATE(3616), 1, - sym_type_tuning, - STATE(5140), 2, - sym_comment, - sym_include, - [276130] = 6, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7204), 1, - sym_identifier, - STATE(5141), 2, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7235), 1, + anon_sym_RPAREN, + STATE(5255), 1, + aux_sym_function_arguments_repeat1, + STATE(5220), 2, sym_comment, sym_include, - STATE(5921), 2, - sym_qualified_name, - sym_object_access, - [276151] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282735] = 7, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(7206), 1, - sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(5142), 2, - sym_comment, - sym_include, - [276174] = 7, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(6474), 1, + ACTIONS(7237), 1, anon_sym_RPAREN, - STATE(5108), 1, - aux_sym_data_relation_repeat1, - STATE(5143), 2, + STATE(5375), 1, + aux_sym_function_arguments_repeat1, + STATE(5221), 2, sym_comment, sym_include, - [276197] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282758] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(6052), 1, anon_sym_COMMA, - ACTIONS(7208), 1, + ACTIONS(6474), 1, anon_sym_RPAREN, - STATE(5244), 1, - aux_sym_function_arguments_repeat1, - STATE(5144), 2, + STATE(4333), 1, + aux_sym_data_relation_repeat1, + STATE(5222), 2, sym_comment, sym_include, - [276220] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282781] = 7, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - STATE(3570), 1, - sym_type_tuning, - STATE(5145), 2, - sym_comment, - sym_include, - [276243] = 7, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, - anon_sym_COMMA, - ACTIONS(7210), 1, - anon_sym_RPAREN, - STATE(5244), 1, - aux_sym_function_arguments_repeat1, - STATE(5146), 2, + ACTIONS(5958), 1, + aux_sym__block_terminator_token1, + STATE(4974), 1, + sym__function_terminator, + STATE(5168), 1, + sym__block_terminator, + STATE(5223), 2, sym_comment, sym_include, - [276266] = 7, + [282804] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7212), 1, - sym_identifier, - ACTIONS(7214), 1, - aux_sym_temp_table_expression_token1, - STATE(6360), 1, - sym_qualified_name, - STATE(5147), 2, + ACTIONS(7213), 1, + anon_sym_, + ACTIONS(7239), 1, + anon_sym_RPAREN, + STATE(5208), 1, + aux_sym_accumulate_statement_repeat1, + STATE(5224), 2, sym_comment, sym_include, - [276289] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282827] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - STATE(3567), 1, + STATE(3725), 1, sym_type_tuning, - STATE(5148), 2, + STATE(5225), 2, sym_comment, sym_include, - [276312] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282850] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6061), 1, - aux_sym__block_terminator_token1, - STATE(2310), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(5149), 2, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7241), 1, + anon_sym_RPAREN, + STATE(5375), 1, + aux_sym_function_arguments_repeat1, + STATE(5226), 2, sym_comment, sym_include, - [276333] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282873] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6667), 1, + ACTIONS(6751), 1, sym__integer_literal, - STATE(176), 1, + STATE(185), 1, sym__decimal_literal, - STATE(3211), 1, + STATE(4221), 1, sym_number_literal, - STATE(5150), 2, + STATE(5227), 2, sym_comment, sym_include, - [276356] = 5, - ACTIONS(3), 1, + [282896] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5151), 2, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7243), 1, + anon_sym_RPAREN, + STATE(5226), 1, + aux_sym_function_arguments_repeat1, + STATE(5228), 2, sym_comment, sym_include, - ACTIONS(7216), 3, - sym_identifier, - sym__terminator, - anon_sym_NO_DASHERROR, - [276375] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282919] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7218), 1, - anon_sym_COLON, - ACTIONS(7220), 1, + ACTIONS(6052), 1, anon_sym_COMMA, - STATE(5152), 3, + ACTIONS(6496), 1, + sym__terminator, + STATE(5180), 1, + aux_sym_data_relation_repeat1, + STATE(5229), 2, sym_comment, sym_include, - aux_sym_for_statement_repeat1, - [276396] = 7, - ACTIONS(65), 1, + [282942] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, - anon_sym_COMMA, - ACTIONS(7223), 1, + ACTIONS(7213), 1, + anon_sym_, + ACTIONS(7245), 1, anon_sym_RPAREN, - STATE(5146), 1, - aux_sym_function_arguments_repeat1, - STATE(5153), 2, + STATE(5235), 1, + aux_sym_accumulate_statement_repeat1, + STATE(5230), 2, sym_comment, sym_include, - [276419] = 7, - ACTIONS(65), 1, + [282965] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(7225), 1, - sym__terminator, - STATE(6187), 1, - sym_body, - STATE(5154), 2, + ACTIONS(7247), 1, + sym_identifier, + ACTIONS(7249), 1, + aux_sym_temp_table_expression_token1, + STATE(6416), 1, + sym_qualified_name, + STATE(5231), 2, sym_comment, sym_include, - [276442] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [282988] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5155), 2, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + STATE(3735), 1, + sym_type_tuning, + STATE(5232), 2, sym_comment, sym_include, - ACTIONS(7227), 3, - anon_sym_COLON, - anon_sym_DOT, - aux_sym__block_terminator_token1, - [276461] = 6, - ACTIONS(65), 1, + [283011] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2190), 1, + anon_sym_LPAREN, + ACTIONS(7251), 1, + sym_identifier, + STATE(2915), 1, + sym_parenthesized_expression, + STATE(5233), 2, + sym_comment, + sym_include, + [283034] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6061), 1, + ACTIONS(7253), 1, aux_sym__block_terminator_token1, - STATE(2259), 2, + STATE(2261), 1, + sym__case_terminator, + STATE(2265), 1, sym__block_terminator, - sym__procedure_terminator, - STATE(5156), 2, + STATE(5234), 2, sym_comment, sym_include, - [276482] = 7, + [283057] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2191), 1, - anon_sym_LPAREN, - ACTIONS(7229), 1, - sym_identifier, - STATE(2881), 1, - sym_parenthesized_expression, - STATE(5157), 2, + ACTIONS(7213), 1, + anon_sym_, + ACTIONS(7255), 1, + anon_sym_RPAREN, + STATE(5383), 1, + aux_sym_accumulate_statement_repeat1, + STATE(5235), 2, sym_comment, sym_include, - [276505] = 7, + [283080] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7231), 1, + ACTIONS(7257), 1, sym_identifier, - ACTIONS(7233), 1, - anon_sym_RPAREN, - STATE(5327), 1, + ACTIONS(7259), 1, + aux_sym_temp_table_expression_token1, + STATE(6779), 1, sym_qualified_name, - STATE(5158), 2, + STATE(5236), 2, sym_comment, sym_include, - [276528] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [283103] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(6474), 1, - anon_sym_RPAREN, - STATE(4300), 1, - aux_sym_data_relation_repeat1, - STATE(5159), 2, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + STATE(3742), 1, + sym_type_tuning, + STATE(5237), 2, sym_comment, sym_include, - [276551] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [283126] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5805), 1, - aux_sym__block_terminator_token1, - STATE(1602), 1, - sym__function_terminator, - STATE(1720), 1, - sym__block_terminator, - STATE(5160), 2, + ACTIONS(7203), 1, + anon_sym_COMMA, + ACTIONS(7261), 1, + anon_sym_RPAREN, + STATE(5347), 1, + aux_sym_function_parameters_repeat1, + STATE(5238), 2, sym_comment, sym_include, - [276574] = 7, - ACTIONS(3), 1, + [283149] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7235), 1, - anon_sym_RPAREN, - ACTIONS(7237), 1, - anon_sym_, - STATE(5170), 1, - aux_sym_accumulate_statement_repeat1, - STATE(5161), 2, + ACTIONS(6482), 1, + sym__terminator, + ACTIONS(6484), 1, + aux_sym_input_expression_token2, + ACTIONS(6486), 1, + aux_sym_prompt_for_statement_token2, + STATE(5239), 2, sym_comment, sym_include, - [276597] = 7, - ACTIONS(3), 1, + [283172] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - sym_identifier, - STATE(1423), 1, - sym_parenthesized_expression, - STATE(5162), 2, + ACTIONS(7203), 1, + anon_sym_COMMA, + ACTIONS(7263), 1, + anon_sym_RPAREN, + STATE(5366), 1, + aux_sym_function_parameters_repeat1, + STATE(5240), 2, sym_comment, sym_include, - [276620] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [283195] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - STATE(3139), 1, - sym_type_tuning, - STATE(5163), 2, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6496), 1, + sym__terminator, + STATE(4333), 1, + aux_sym_data_relation_repeat1, + STATE(5241), 2, sym_comment, sym_include, - [276643] = 7, - ACTIONS(3), 1, + [283218] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7241), 1, - sym_identifier, - ACTIONS(7243), 1, - aux_sym_temp_table_expression_token1, - STATE(6474), 1, - sym_qualified_name, - STATE(5164), 2, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + STATE(3803), 1, + sym_type_tuning, + STATE(5242), 2, sym_comment, sym_include, - [276666] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [283241] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6667), 1, + ACTIONS(6751), 1, sym__integer_literal, - STATE(176), 1, + STATE(185), 1, sym__decimal_literal, - STATE(2995), 1, + STATE(3065), 1, sym_number_literal, - STATE(5165), 2, + STATE(5243), 2, sym_comment, sym_include, - [276689] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [283264] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5954), 1, + ACTIONS(7265), 1, aux_sym__block_terminator_token1, - STATE(2257), 1, - sym__function_terminator, - STATE(2306), 1, + STATE(1663), 1, + sym__case_terminator, + STATE(1664), 1, sym__block_terminator, - STATE(5166), 2, + STATE(5244), 2, sym_comment, sym_include, - [276712] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [283287] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(7245), 1, + ACTIONS(7267), 1, anon_sym_RPAREN, - STATE(5174), 1, + STATE(5221), 1, aux_sym_function_arguments_repeat1, - STATE(5167), 2, + STATE(5245), 2, sym_comment, sym_include, - [276735] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [283310] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6022), 1, + ACTIONS(5924), 1, aux_sym__block_terminator_token1, - STATE(2348), 2, + STATE(2061), 1, + sym__function_terminator, + STATE(2367), 1, sym__block_terminator, - sym__procedure_terminator, - STATE(5168), 2, + STATE(5246), 2, sym_comment, sym_include, - [276756] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [283333] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(6472), 1, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(7269), 1, sym__terminator, - STATE(5111), 1, - aux_sym_data_relation_repeat1, - STATE(5169), 2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5247), 2, sym_comment, sym_include, - [276779] = 7, - ACTIONS(3), 1, + [283356] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7237), 1, - anon_sym_, - ACTIONS(7247), 1, - anon_sym_RPAREN, - STATE(5107), 1, - aux_sym_accumulate_statement_repeat1, - STATE(5170), 2, + ACTIONS(7197), 1, + aux_sym_return_type_token1, + ACTIONS(7199), 1, + aux_sym_return_type_token2, + STATE(3998), 1, + sym_return_type, + STATE(5248), 2, sym_comment, sym_include, - [276802] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [283379] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5699), 1, + ACTIONS(5876), 1, aux_sym__block_terminator_token1, - STATE(2349), 1, + STATE(1552), 1, sym__function_terminator, - STATE(2423), 1, + STATE(1679), 1, sym__block_terminator, - STATE(5171), 2, - sym_comment, - sym_include, - [276825] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(7249), 1, - sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(5172), 2, + STATE(5249), 2, sym_comment, sym_include, - [276848] = 7, + [283402] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7251), 1, + ACTIONS(1914), 1, + anon_sym_LPAREN, + ACTIONS(7271), 1, sym_identifier, - ACTIONS(7253), 1, - anon_sym_RPAREN, - STATE(5348), 1, - aux_sym_query_fields_repeat1, - STATE(5173), 2, + STATE(1456), 1, + sym_parenthesized_expression, + STATE(5250), 2, sym_comment, sym_include, - [276871] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [283425] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, - anon_sym_COMMA, - ACTIONS(7255), 1, - anon_sym_RPAREN, - STATE(5244), 1, - aux_sym_function_arguments_repeat1, - STATE(5174), 2, + STATE(5251), 2, sym_comment, sym_include, - [276894] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7273), 3, + anon_sym_COLON, + anon_sym_DOT, + aux_sym__block_terminator_token1, + [283444] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7257), 1, - aux_sym_on_error_phrase_token2, - ACTIONS(7259), 1, - aux_sym_on_stop_phrase_token1, - ACTIONS(7261), 1, - aux_sym_on_quit_phrase_token1, - STATE(5175), 2, + ACTIONS(6632), 1, + sym__terminator, + ACTIONS(6634), 1, + aux_sym_input_expression_token2, + ACTIONS(6636), 1, + aux_sym_prompt_for_statement_token2, + STATE(5252), 2, sym_comment, sym_include, - [276917] = 7, + [283467] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7263), 1, + ACTIONS(7275), 1, sym_identifier, - ACTIONS(7265), 1, + ACTIONS(7277), 1, anon_sym_AMP, - ACTIONS(7267), 1, + ACTIONS(7279), 1, sym__integer_literal, - STATE(5176), 2, - sym_comment, - sym_include, - [276940] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(7237), 1, - anon_sym_, - ACTIONS(7269), 1, - anon_sym_RPAREN, - STATE(5107), 1, - aux_sym_accumulate_statement_repeat1, - STATE(5177), 2, - sym_comment, - sym_include, - [276963] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(652), 1, - anon_sym_LPAREN, - ACTIONS(7271), 1, - sym_identifier, - STATE(41), 1, - sym_parenthesized_expression, - STATE(5178), 2, + STATE(5253), 2, sym_comment, sym_include, - [276986] = 7, - ACTIONS(3), 1, + [283490] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1370), 1, + ACTIONS(89), 1, anon_sym_LPAREN, - ACTIONS(7273), 1, - sym_identifier, - STATE(1068), 1, - sym_parenthesized_expression, - STATE(5179), 2, + ACTIONS(4640), 1, + sym__namecolon, + STATE(3522), 1, + aux_sym_object_access_repeat1, + STATE(5254), 2, sym_comment, sym_include, - [277009] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [283513] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(7275), 1, + ACTIONS(7281), 1, anon_sym_RPAREN, - STATE(5244), 1, + STATE(5375), 1, aux_sym_function_arguments_repeat1, - STATE(5180), 2, + STATE(5255), 2, sym_comment, sym_include, - [277032] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [283536] = 7, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(7277), 1, - sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(5181), 2, - sym_comment, - sym_include, - [277055] = 7, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7237), 1, - anon_sym_, - ACTIONS(7279), 1, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7283), 1, anon_sym_RPAREN, - STATE(5107), 1, - aux_sym_accumulate_statement_repeat1, - STATE(5182), 2, - sym_comment, - sym_include, - [277078] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(5183), 2, + STATE(5375), 1, + aux_sym_function_arguments_repeat1, + STATE(5256), 2, sym_comment, sym_include, - ACTIONS(7281), 3, - sym_identifier, - sym__terminator, - anon_sym_NO_DASHERROR, - [277097] = 7, - ACTIONS(3), 1, + [283559] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7283), 1, - sym_identifier, + ACTIONS(7159), 1, + anon_sym_COMMA, ACTIONS(7285), 1, - anon_sym_AMP, - ACTIONS(7287), 1, - sym__integer_literal, - STATE(5184), 2, + anon_sym_RPAREN, + STATE(5262), 1, + aux_sym_function_arguments_repeat1, + STATE(5257), 2, sym_comment, sym_include, - [277120] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [283582] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(7289), 1, + ACTIONS(7287), 1, anon_sym_RPAREN, - STATE(5180), 1, + STATE(5256), 1, aux_sym_function_arguments_repeat1, - STATE(5185), 2, + STATE(5258), 2, sym_comment, sym_include, - [277143] = 7, + [283605] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2233), 1, + ACTIONS(2268), 1, anon_sym_LPAREN, - ACTIONS(7291), 1, + ACTIONS(7289), 1, sym_identifier, - STATE(2813), 1, + STATE(2843), 1, sym_parenthesized_expression, - STATE(5186), 2, + STATE(5259), 2, sym_comment, sym_include, - [277166] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [283628] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5187), 2, + STATE(5260), 2, sym_comment, sym_include, - ACTIONS(7293), 3, + ACTIONS(7291), 3, anon_sym_COLON, aux_sym__block_terminator_token1, aux_sym_repeat_tuning_token1, - [277185] = 7, - ACTIONS(65), 1, + [283647] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(6472), 1, - sym__terminator, - STATE(4300), 1, - aux_sym_data_relation_repeat1, - STATE(5188), 2, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(7293), 1, + sym_identifier, + STATE(41), 1, + sym_parenthesized_expression, + STATE(5261), 2, sym_comment, sym_include, - [277208] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [283670] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5189), 2, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7295), 1, + anon_sym_RPAREN, + STATE(5375), 1, + aux_sym_function_arguments_repeat1, + STATE(5262), 2, sym_comment, sym_include, - ACTIONS(7295), 3, - anon_sym_COLON, - aux_sym__block_terminator_token1, - aux_sym_repeat_tuning_token1, - [277227] = 7, - ACTIONS(3), 1, + [283693] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7297), 1, - sym_identifier, - ACTIONS(7299), 1, - anon_sym_AMP, - ACTIONS(7301), 1, - sym__integer_literal, - STATE(5190), 2, + ACTIONS(5882), 1, + aux_sym__block_terminator_token1, + STATE(2217), 1, + sym__function_terminator, + STATE(2275), 1, + sym__block_terminator, + STATE(5263), 2, sym_comment, sym_include, - [277250] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [283716] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, + ACTIONS(6052), 1, anon_sym_COMMA, - ACTIONS(6616), 1, + ACTIONS(6610), 1, sym__terminator, - STATE(4300), 1, + STATE(5192), 1, aux_sym_data_relation_repeat1, - STATE(5191), 2, + STATE(5264), 2, sym_comment, sym_include, - [277273] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [283739] = 7, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(5192), 2, - sym_comment, - sym_include, - ACTIONS(7303), 3, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_case_otherwise_branch_token1, - [277292] = 7, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7305), 1, - sym_identifier, - ACTIONS(7307), 1, - anon_sym_AMP, - ACTIONS(7309), 1, - sym__integer_literal, - STATE(5193), 2, + ACTIONS(825), 1, + sym__namecolon, + ACTIONS(7297), 1, + sym__terminator, + STATE(4563), 1, + aux_sym_object_access_repeat1, + STATE(5265), 2, sym_comment, sym_include, - [277315] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [283762] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6457), 1, - sym__terminator, - ACTIONS(6459), 1, - aux_sym_input_expression_token2, - ACTIONS(6461), 1, - aux_sym_prompt_for_statement_token2, - STATE(5194), 2, + ACTIONS(6042), 1, + aux_sym__block_terminator_token1, + STATE(2276), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(5266), 2, sym_comment, sym_include, - [277338] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [283783] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5805), 1, + ACTIONS(5924), 1, aux_sym__block_terminator_token1, - STATE(1679), 1, + STATE(2271), 1, sym__function_terminator, - STATE(1720), 1, + STATE(2367), 1, sym__block_terminator, - STATE(5195), 2, + STATE(5267), 2, sym_comment, sym_include, - [277361] = 6, - ACTIONS(65), 1, + [283806] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7299), 1, + anon_sym_RPAREN, + STATE(5375), 1, + aux_sym_function_arguments_repeat1, + STATE(5268), 2, + sym_comment, + sym_include, + [283829] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6117), 1, - aux_sym__block_terminator_token1, - STATE(1680), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(5196), 2, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7301), 1, + anon_sym_RPAREN, + STATE(5268), 1, + aux_sym_function_arguments_repeat1, + STATE(5269), 2, sym_comment, sym_include, - [277382] = 7, + [283852] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7311), 1, + ACTIONS(1300), 1, + anon_sym_LPAREN, + ACTIONS(7303), 1, sym_identifier, - ACTIONS(7313), 1, - anon_sym_AMP, - ACTIONS(7315), 1, - sym__integer_literal, - STATE(5197), 2, + STATE(1142), 1, + sym_parenthesized_expression, + STATE(5270), 2, sym_comment, sym_include, - [277405] = 7, + [283875] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7317), 1, - sym_identifier, - ACTIONS(7319), 1, - sym__terminator, - ACTIONS(7321), 1, - anon_sym_COMMA, - STATE(5198), 2, + STATE(5271), 2, sym_comment, sym_include, - [277428] = 6, + ACTIONS(7305), 3, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + [283894] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7323), 1, + ACTIONS(7307), 1, sym_identifier, - ACTIONS(7325), 2, - sym__terminator, - anon_sym_COMMA, - STATE(5199), 2, + ACTIONS(7309), 1, + anon_sym_AMP, + ACTIONS(7311), 1, + sym__integer_literal, + STATE(5272), 2, sym_comment, sym_include, - [277449] = 7, - ACTIONS(65), 1, + [283917] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6110), 1, + aux_sym__block_terminator_token1, + STATE(2278), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(5273), 2, + sym_comment, + sym_include, + [283938] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7170), 1, + ACTIONS(7197), 1, aux_sym_return_type_token1, - ACTIONS(7172), 1, + ACTIONS(7199), 1, aux_sym_return_type_token2, - STATE(3881), 1, + STATE(4021), 1, sym_return_type, - STATE(5200), 2, + STATE(5274), 2, + sym_comment, + sym_include, + [283961] = 7, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + STATE(3611), 1, + sym_type_tuning, + STATE(5275), 2, sym_comment, sym_include, - [277472] = 7, - ACTIONS(65), 1, + [283984] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6751), 1, + sym__integer_literal, + STATE(185), 1, + sym__decimal_literal, + STATE(6337), 1, + sym_number_literal, + STATE(5276), 2, + sym_comment, + sym_include, + [284007] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, - anon_sym_COMMA, - ACTIONS(7327), 1, - anon_sym_RPAREN, - STATE(5215), 1, - aux_sym_function_arguments_repeat1, - STATE(5201), 2, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + STATE(3706), 1, + sym_type_tuning, + STATE(5277), 2, sym_comment, sym_include, - [277495] = 7, + [284030] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7329), 1, + ACTIONS(7313), 1, sym_identifier, - ACTIONS(7331), 1, + ACTIONS(7315), 1, aux_sym_temp_table_expression_token1, - STATE(6039), 1, + STATE(6641), 1, sym_qualified_name, - STATE(5202), 2, + STATE(5278), 2, sym_comment, sym_include, - [277518] = 6, - ACTIONS(3), 1, + [284053] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3916), 1, - sym_identifier, - ACTIONS(3918), 2, - sym__terminator, - anon_sym_LBRACK, - STATE(5203), 2, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + STATE(3721), 1, + sym_type_tuning, + STATE(5279), 2, sym_comment, sym_include, - [277539] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [284076] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(7333), 1, - sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(5204), 2, + STATE(5280), 2, sym_comment, sym_include, - [277562] = 7, + ACTIONS(7317), 3, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_case_otherwise_branch_token1, + [284095] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7237), 1, - anon_sym_, - ACTIONS(7335), 1, + ACTIONS(7319), 1, + sym_identifier, + ACTIONS(7321), 1, anon_sym_RPAREN, - STATE(5182), 1, - aux_sym_accumulate_statement_repeat1, - STATE(5205), 2, - sym_comment, - sym_include, - [277585] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(6616), 1, - sym__terminator, - STATE(5373), 1, - aux_sym_data_relation_repeat1, - STATE(5206), 2, + STATE(5309), 1, + aux_sym_query_fields_repeat1, + STATE(5281), 2, sym_comment, sym_include, - [277608] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [284118] = 7, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(7337), 1, - aux_sym__block_terminator_token1, - STATE(2298), 1, - sym__case_terminator, - STATE(2299), 1, - sym__block_terminator, - STATE(5207), 2, - sym_comment, - sym_include, - [277631] = 7, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5954), 1, + ACTIONS(5876), 1, aux_sym__block_terminator_token1, - STATE(2197), 1, + STATE(1604), 1, sym__function_terminator, - STATE(2306), 1, + STATE(1679), 1, sym__block_terminator, - STATE(5208), 2, + STATE(5282), 2, sym_comment, sym_include, - [277654] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [284141] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(7113), 1, - anon_sym_COMMA, - ACTIONS(7339), 1, - anon_sym_RPAREN, - STATE(5244), 1, - aux_sym_function_arguments_repeat1, - STATE(5209), 2, - sym_comment, - sym_include, - [277677] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6117), 1, + ACTIONS(6124), 1, aux_sym__block_terminator_token1, - STATE(1721), 2, + STATE(1605), 2, sym__block_terminator, sym__procedure_terminator, - STATE(5210), 2, + STATE(5283), 2, sym_comment, sym_include, - [277698] = 7, - ACTIONS(65), 1, + [284162] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, - anon_sym_COMMA, - ACTIONS(7341), 1, + ACTIONS(7213), 1, + anon_sym_, + ACTIONS(7323), 1, anon_sym_RPAREN, - STATE(5216), 1, - aux_sym_function_arguments_repeat1, - STATE(5211), 2, + STATE(5383), 1, + aux_sym_accumulate_statement_repeat1, + STATE(5284), 2, sym_comment, sym_include, - [277721] = 7, - ACTIONS(65), 1, + [284185] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, - anon_sym_COMMA, - ACTIONS(7343), 1, + ACTIONS(7213), 1, + anon_sym_, + ACTIONS(7325), 1, anon_sym_RPAREN, - STATE(5209), 1, - aux_sym_function_arguments_repeat1, - STATE(5212), 2, + STATE(5292), 1, + aux_sym_accumulate_statement_repeat1, + STATE(5285), 2, sym_comment, sym_include, - [277744] = 7, + [284208] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1221), 1, - anon_sym_LPAREN, - ACTIONS(7345), 1, + ACTIONS(7327), 1, sym_identifier, - STATE(1131), 1, - sym_parenthesized_expression, - STATE(5213), 2, + ACTIONS(7329), 1, + aux_sym_class_type_token1, + STATE(5922), 1, + sym_qualified_name, + STATE(5286), 2, + sym_comment, + sym_include, + [284231] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6110), 1, + aux_sym__block_terminator_token1, + STATE(2223), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(5287), 2, sym_comment, sym_include, - [277767] = 6, + [284252] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7347), 1, + ACTIONS(7331), 1, sym_identifier, - ACTIONS(6510), 2, - anon_sym_COLON, - sym__terminator, - STATE(5214), 2, + ACTIONS(7333), 1, + aux_sym_temp_table_expression_token1, + STATE(6519), 1, + sym_qualified_name, + STATE(5288), 2, sym_comment, sym_include, - [277788] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [284275] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(7349), 1, + ACTIONS(7335), 1, anon_sym_RPAREN, - STATE(5244), 1, + STATE(5375), 1, aux_sym_function_arguments_repeat1, - STATE(5215), 2, + STATE(5289), 2, sym_comment, sym_include, - [277811] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [284298] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(6052), 1, anon_sym_COMMA, - ACTIONS(7351), 1, - anon_sym_RPAREN, - STATE(5244), 1, - aux_sym_function_arguments_repeat1, - STATE(5216), 2, + ACTIONS(6538), 1, + aux_sym_data_relation_token2, + STATE(5420), 1, + aux_sym_data_relation_repeat1, + STATE(5290), 2, sym_comment, sym_include, - [277834] = 7, - ACTIONS(3), 1, + [284321] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, - sym_identifier, - ACTIONS(7355), 1, - anon_sym_AMP, - ACTIONS(7357), 1, - sym__integer_literal, - STATE(5217), 2, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7337), 1, + anon_sym_RPAREN, + STATE(5289), 1, + aux_sym_function_arguments_repeat1, + STATE(5291), 2, sym_comment, sym_include, - [277857] = 7, + [284344] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7237), 1, + ACTIONS(7213), 1, anon_sym_, - ACTIONS(7359), 1, + ACTIONS(7339), 1, anon_sym_RPAREN, - STATE(5177), 1, + STATE(5383), 1, aux_sym_accumulate_statement_repeat1, - STATE(5218), 2, + STATE(5292), 2, sym_comment, sym_include, - [277880] = 6, - ACTIONS(3), 1, + [284367] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7361), 1, - sym_identifier, - ACTIONS(7081), 2, + ACTIONS(3815), 1, anon_sym_COLON, - anon_sym_COMMA, - STATE(5219), 2, + ACTIONS(7341), 1, + sym__terminator, + STATE(6687), 1, + sym_body, + STATE(5293), 2, sym_comment, sym_include, - [277901] = 7, + [284390] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7363), 1, + ACTIONS(953), 1, + anon_sym_LPAREN, + ACTIONS(7343), 1, sym_identifier, - ACTIONS(7365), 1, - anon_sym_AMP, - ACTIONS(7367), 1, - sym__integer_literal, - STATE(5220), 2, + STATE(377), 1, + sym_parenthesized_expression, + STATE(5294), 2, sym_comment, sym_include, - [277924] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [284413] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6412), 1, - sym__terminator, - ACTIONS(6414), 1, - aux_sym_input_expression_token2, - ACTIONS(6416), 1, - aux_sym_prompt_for_statement_token2, - STATE(5221), 2, + ACTIONS(6124), 1, + aux_sym__block_terminator_token1, + STATE(1680), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(5295), 2, sym_comment, sym_include, - [277947] = 7, - ACTIONS(3), 1, + [284434] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7369), 1, - sym_identifier, - ACTIONS(7371), 1, - anon_sym_AMP, - ACTIONS(7373), 1, - sym__integer_literal, - STATE(5222), 2, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + STATE(3203), 1, + sym_type_tuning, + STATE(5296), 2, sym_comment, sym_include, - [277970] = 6, - ACTIONS(3), 1, + [284457] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3926), 1, - sym_identifier, - ACTIONS(3928), 2, - sym__terminator, - anon_sym_LBRACK, - STATE(5223), 2, + ACTIONS(5882), 1, + aux_sym__block_terminator_token1, + STATE(2145), 1, + sym__function_terminator, + STATE(2275), 1, + sym__block_terminator, + STATE(5297), 2, sym_comment, sym_include, - [277991] = 6, - ACTIONS(3), 1, + [284480] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(226), 1, - sym_identifier, - ACTIONS(228), 2, - sym__terminator, - anon_sym_LBRACK, - STATE(5224), 2, + ACTIONS(7345), 1, + anon_sym_COLON, + ACTIONS(7347), 1, + anon_sym_COMMA, + STATE(5298), 3, sym_comment, sym_include, - [278012] = 6, + aux_sym_for_statement_repeat1, + [284501] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7375), 1, - sym_identifier, - ACTIONS(6566), 2, - anon_sym_COLON, - sym__terminator, - STATE(5225), 2, + ACTIONS(7213), 1, + anon_sym_, + ACTIONS(7350), 1, + anon_sym_RPAREN, + STATE(5284), 1, + aux_sym_accumulate_statement_repeat1, + STATE(5299), 2, sym_comment, sym_include, - [278033] = 6, + [284524] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4322), 1, - sym_identifier, - ACTIONS(4324), 2, - sym__terminator, - anon_sym_LBRACK, - STATE(5226), 2, + STATE(5300), 2, sym_comment, sym_include, - [278054] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5520), 3, + sym_identifier, + sym__terminator, + aux_sym_scope_tuning_token1, + [284543] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7170), 1, - aux_sym_return_type_token1, - ACTIONS(7172), 1, - aux_sym_return_type_token2, - STATE(3914), 1, - sym_return_type, - STATE(5227), 2, + STATE(5301), 2, sym_comment, sym_include, - [278077] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7352), 3, + aux_sym_index_tuning_token2, + aux_sym_index_tuning_token3, + aux_sym_index_tuning_token4, + [284562] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(7377), 1, + ACTIONS(7354), 1, anon_sym_RPAREN, - STATE(5244), 1, + STATE(5305), 1, aux_sym_function_arguments_repeat1, - STATE(5228), 2, + STATE(5302), 2, sym_comment, sym_include, - [278100] = 7, - ACTIONS(3), 1, + [284585] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7379), 1, - sym_identifier, - ACTIONS(7381), 1, - anon_sym_AMP, - ACTIONS(7383), 1, + ACTIONS(6751), 1, sym__integer_literal, - STATE(5229), 2, + STATE(185), 1, + sym__decimal_literal, + STATE(3392), 1, + sym_number_literal, + STATE(5303), 2, sym_comment, sym_include, - [278123] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [284608] = 7, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - STATE(3674), 1, - sym_type_tuning, - STATE(5230), 2, - sym_comment, - sym_include, - [278146] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5231), 2, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6540), 1, + sym__terminator, + STATE(4333), 1, + aux_sym_data_relation_repeat1, + STATE(5304), 2, sym_comment, sym_include, - ACTIONS(7385), 3, - aux_sym_index_tuning_token2, - aux_sym_index_tuning_token3, - aux_sym_index_tuning_token4, - [278165] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [284631] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5232), 2, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7356), 1, + anon_sym_RPAREN, + STATE(5375), 1, + aux_sym_function_arguments_repeat1, + STATE(5305), 2, sym_comment, sym_include, - ACTIONS(7387), 3, - aux_sym__block_terminator_token1, - aux_sym_when_expression_token1, - aux_sym_case_otherwise_branch_token1, - [278184] = 7, - ACTIONS(65), 1, + [284654] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(7389), 1, + ACTIONS(6986), 1, sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(5233), 2, + ACTIONS(7358), 1, + sym_identifier, + STATE(5264), 1, + sym_qualified_name, + STATE(5306), 2, sym_comment, sym_include, - [278207] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [284677] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - STATE(3665), 1, - sym_type_tuning, - STATE(5234), 2, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6566), 1, + sym__terminator, + STATE(5304), 1, + aux_sym_data_relation_repeat1, + STATE(5307), 2, sym_comment, sym_include, - [278230] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [284700] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5235), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(7360), 1, + sym__terminator, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5308), 2, sym_comment, sym_include, - ACTIONS(7391), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [278249] = 7, + [284723] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(928), 1, - anon_sym_LPAREN, - ACTIONS(7393), 1, + ACTIONS(7362), 1, sym_identifier, - STATE(332), 1, - sym_parenthesized_expression, - STATE(5236), 2, + ACTIONS(7365), 1, + anon_sym_RPAREN, + STATE(5309), 3, sym_comment, sym_include, - [278272] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_query_fields_repeat1, + [284744] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - STATE(3517), 1, - sym_type_tuning, - STATE(5237), 2, + ACTIONS(6751), 1, + sym__integer_literal, + STATE(185), 1, + sym__decimal_literal, + STATE(4697), 1, + sym_number_literal, + STATE(5310), 2, sym_comment, sym_include, - [278295] = 7, + [284767] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7395), 1, + ACTIONS(7367), 1, sym_identifier, - ACTIONS(7397), 1, - aux_sym_class_type_token1, - STATE(5875), 1, - sym_qualified_name, - STATE(5238), 2, + ACTIONS(7369), 1, + anon_sym_AMP, + ACTIONS(7371), 1, + sym__integer_literal, + STATE(5311), 2, + sym_comment, + sym_include, + [284790] = 7, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(6522), 1, + sym__terminator, + STATE(6163), 1, + sym_body, + STATE(5312), 2, sym_comment, sym_include, - [278318] = 7, + [284813] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7399), 1, + ACTIONS(7373), 1, sym_identifier, - ACTIONS(7401), 1, + ACTIONS(7375), 1, anon_sym_AMP, - ACTIONS(7403), 1, + ACTIONS(7377), 1, sym__integer_literal, - STATE(5239), 2, + STATE(5313), 2, sym_comment, sym_include, - [278341] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [284836] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, - anon_sym_COMMA, - ACTIONS(7405), 1, - anon_sym_RPAREN, - STATE(5244), 1, - aux_sym_function_arguments_repeat1, - STATE(5240), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(7379), 1, + sym__terminator, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5314), 2, sym_comment, sym_include, - [278364] = 7, - ACTIONS(65), 1, + [284859] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, - anon_sym_COMMA, - ACTIONS(7407), 1, - anon_sym_RPAREN, - STATE(5246), 1, - aux_sym_function_arguments_repeat1, - STATE(5241), 2, + ACTIONS(7381), 1, + sym_identifier, + ACTIONS(7383), 1, + anon_sym_AMP, + ACTIONS(7385), 1, + sym__integer_literal, + STATE(5315), 2, sym_comment, sym_include, - [278387] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [284882] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5786), 1, - aux_sym__block_terminator_token1, - STATE(4694), 1, - sym__block_terminator, - STATE(4908), 1, - sym__function_terminator, - STATE(5242), 2, + ACTIONS(7197), 1, + aux_sym_return_type_token1, + ACTIONS(7199), 1, + aux_sym_return_type_token2, + STATE(4014), 1, + sym_return_type, + STATE(5316), 2, sym_comment, sym_include, - [278410] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [284905] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - STATE(3533), 1, - sym_type_tuning, - STATE(5243), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(7387), 1, + sym__terminator, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5317), 2, sym_comment, sym_include, - [278433] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [284928] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7409), 1, - anon_sym_COMMA, - ACTIONS(7412), 1, - anon_sym_RPAREN, - STATE(5244), 3, + ACTIONS(6751), 1, + sym__integer_literal, + STATE(185), 1, + sym__decimal_literal, + STATE(3058), 1, + sym_number_literal, + STATE(5318), 2, sym_comment, sym_include, - aux_sym_function_arguments_repeat1, - [278454] = 7, + [284951] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7414), 1, + ACTIONS(7389), 1, sym_identifier, - ACTIONS(7416), 1, - aux_sym_temp_table_expression_token1, - STATE(6444), 1, - sym_qualified_name, - STATE(5245), 2, + ACTIONS(7391), 1, + anon_sym_AMP, + ACTIONS(7393), 1, + sym__integer_literal, + STATE(5319), 2, sym_comment, sym_include, - [278477] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [284974] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, - anon_sym_COMMA, - ACTIONS(7418), 1, - anon_sym_RPAREN, - STATE(5244), 1, - aux_sym_function_arguments_repeat1, - STATE(5246), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(7395), 1, + sym__terminator, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5320), 2, + sym_comment, + sym_include, + [284997] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(7397), 1, + sym_identifier, + ACTIONS(7399), 1, + anon_sym_AMP, + ACTIONS(7401), 1, + sym__integer_literal, + STATE(5321), 2, sym_comment, sym_include, - [278500] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [285020] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - STATE(3543), 1, - sym_type_tuning, - STATE(5247), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(7403), 1, + sym__terminator, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5322), 2, sym_comment, sym_include, - [278523] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [285043] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5248), 2, + STATE(5323), 2, sym_comment, sym_include, - ACTIONS(7420), 3, + ACTIONS(7405), 3, anon_sym_COLON, - anon_sym_DOT, aux_sym__block_terminator_token1, - [278542] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_repeat_tuning_token1, + [285062] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - STATE(3489), 1, - sym_type_tuning, - STATE(5249), 2, - sym_comment, - sym_include, - [278565] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7422), 1, - anon_sym_COMMA, - ACTIONS(7425), 1, - anon_sym_RPAREN, - STATE(5250), 3, + ACTIONS(6100), 1, + aux_sym__block_terminator_token1, + STATE(5153), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(5324), 2, sym_comment, sym_include, - aux_sym_function_parameters_repeat1, - [278586] = 7, + [285083] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7427), 1, - sym_file_name, - ACTIONS(7429), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5300), 1, - aux_sym_include_repeat1, - STATE(6650), 1, - sym_constant, - STATE(5251), 2, + ACTIONS(7407), 1, + sym_identifier, + ACTIONS(7409), 1, + anon_sym_AMP, + ACTIONS(7411), 1, + sym__integer_literal, + STATE(5325), 2, sym_comment, sym_include, - [278609] = 7, + [285106] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7431), 1, + ACTIONS(7413), 1, sym_identifier, - ACTIONS(7433), 1, + ACTIONS(7415), 1, anon_sym_AMP, - ACTIONS(7435), 1, + ACTIONS(7417), 1, sym__integer_literal, - STATE(5252), 2, + STATE(5326), 2, sym_comment, sym_include, - [278632] = 7, + [285129] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7237), 1, + ACTIONS(7213), 1, anon_sym_, - ACTIONS(7437), 1, + ACTIONS(7419), 1, anon_sym_RPAREN, - STATE(5260), 1, + STATE(5383), 1, aux_sym_accumulate_statement_repeat1, - STATE(5253), 2, + STATE(5327), 2, + sym_comment, + sym_include, + [285152] = 7, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(7421), 1, + aux_sym_on_error_phrase_token2, + ACTIONS(7423), 1, + aux_sym_on_stop_phrase_token1, + ACTIONS(7425), 1, + aux_sym_on_quit_phrase_token1, + STATE(5328), 2, sym_comment, sym_include, - [278655] = 7, + [285175] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7439), 1, + ACTIONS(7427), 1, sym_identifier, - ACTIONS(7441), 1, - aux_sym_class_type_token1, - STATE(5601), 1, - sym_qualified_name, - STATE(5254), 2, + ACTIONS(7429), 1, + anon_sym_AMP, + ACTIONS(7431), 1, + sym__integer_literal, + STATE(5329), 2, sym_comment, sym_include, - [278678] = 7, + [285198] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7443), 1, + ACTIONS(7433), 1, sym_identifier, - ACTIONS(7445), 1, - aux_sym_temp_table_expression_token1, - STATE(6372), 1, - sym_qualified_name, - STATE(5255), 2, + ACTIONS(7435), 1, + anon_sym_AMP, + ACTIONS(7437), 1, + sym__integer_literal, + STATE(5330), 2, sym_comment, sym_include, - [278701] = 5, - ACTIONS(65), 1, + [285221] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(5256), 2, + ACTIONS(7439), 1, + sym_identifier, + ACTIONS(7441), 1, + anon_sym_AMP, + ACTIONS(7443), 1, + sym__integer_literal, + STATE(5331), 2, sym_comment, sym_include, - ACTIONS(7447), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [278720] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [285244] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5257), 2, + STATE(5332), 2, sym_comment, sym_include, - ACTIONS(7449), 3, + ACTIONS(7445), 3, aux_sym__block_terminator_token1, aux_sym_when_expression_token1, aux_sym_case_otherwise_branch_token1, - [278739] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [285263] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(7451), 1, + ACTIONS(7447), 1, sym__terminator, - STATE(340), 1, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(5258), 2, + STATE(5333), 2, sym_comment, sym_include, - [278762] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [285286] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6667), 1, - sym__integer_literal, - STATE(176), 1, - sym__decimal_literal, - STATE(3802), 1, - sym_number_literal, - STATE(5259), 2, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7449), 1, + anon_sym_RPAREN, + STATE(5337), 1, + aux_sym_function_arguments_repeat1, + STATE(5334), 2, sym_comment, sym_include, - [278785] = 7, + [285309] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7237), 1, - anon_sym_, - ACTIONS(7453), 1, - anon_sym_RPAREN, - STATE(5107), 1, - aux_sym_accumulate_statement_repeat1, - STATE(5260), 2, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(7451), 1, + sym__namedot, + STATE(5352), 1, + aux_sym_qualified_name_repeat1, + STATE(5335), 2, sym_comment, sym_include, - [278808] = 7, - ACTIONS(65), 1, + [285332] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(825), 1, + sym__namecolon, + ACTIONS(7453), 1, + sym__terminator, + STATE(4563), 1, + aux_sym_object_access_repeat1, + STATE(5336), 2, + sym_comment, + sym_include, + [285355] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7119), 1, + ACTIONS(7159), 1, anon_sym_COMMA, ACTIONS(7455), 1, anon_sym_RPAREN, - STATE(5290), 1, - aux_sym_function_parameters_repeat1, - STATE(5261), 2, + STATE(5375), 1, + aux_sym_function_arguments_repeat1, + STATE(5337), 2, sym_comment, sym_include, - [278831] = 7, - ACTIONS(65), 1, + [285378] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, ACTIONS(7457), 1, + sym_identifier, + ACTIONS(6678), 2, + anon_sym_COLON, sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(5262), 2, + STATE(5338), 2, sym_comment, sym_include, - [278854] = 7, - ACTIONS(65), 1, + [285399] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, ACTIONS(7459), 1, + sym_identifier, + ACTIONS(7461), 1, + aux_sym_temp_table_expression_token1, + STATE(6374), 1, + sym_qualified_name, + STATE(5339), 2, + sym_comment, + sym_include, + [285422] = 7, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6751), 1, + sym__integer_literal, + STATE(185), 1, + sym__decimal_literal, + STATE(3062), 1, + sym_number_literal, + STATE(5340), 2, + sym_comment, + sym_include, + [285445] = 7, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(7463), 1, aux_sym__block_terminator_token1, - STATE(2414), 1, + STATE(2359), 1, sym__case_terminator, - STATE(2415), 1, + STATE(2360), 1, sym__block_terminator, - STATE(5263), 2, + STATE(5341), 2, sym_comment, sym_include, - [278877] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [285468] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6366), 1, + ACTIONS(6282), 1, aux_sym_when_expression_token1, - STATE(4410), 1, + STATE(4373), 1, aux_sym_case_body_repeat1, - STATE(5192), 1, + STATE(5280), 1, sym_case_when_branch, - STATE(5264), 2, + STATE(5342), 2, sym_comment, sym_include, - [278900] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [285491] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, - anon_sym_COMMA, - ACTIONS(7461), 1, - anon_sym_RPAREN, - STATE(5244), 1, - aux_sym_function_arguments_repeat1, - STATE(5265), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(7465), 1, + sym__terminator, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5343), 2, sym_comment, sym_include, - [278923] = 7, - ACTIONS(65), 1, + [285514] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7467), 1, + sym_identifier, + ACTIONS(6880), 2, + anon_sym_COLON, anon_sym_COMMA, - ACTIONS(7463), 1, - anon_sym_RPAREN, - STATE(5350), 1, - aux_sym_function_arguments_repeat1, - STATE(5266), 2, + STATE(5344), 2, sym_comment, sym_include, - [278946] = 7, - ACTIONS(65), 1, + [285535] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(7465), 1, - sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(5267), 2, + ACTIONS(7469), 1, + sym_identifier, + ACTIONS(7471), 1, + anon_sym_RPAREN, + STATE(5212), 1, + sym_qualified_name, + STATE(5345), 2, sym_comment, sym_include, - [278969] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [285558] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5268), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(7473), 1, + sym__terminator, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5346), 2, sym_comment, sym_include, - ACTIONS(7467), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [278988] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [285581] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7475), 1, anon_sym_COMMA, - ACTIONS(7469), 1, + ACTIONS(7478), 1, anon_sym_RPAREN, - STATE(5273), 1, - aux_sym_function_arguments_repeat1, - STATE(5269), 2, + STATE(5347), 3, sym_comment, sym_include, - [279011] = 7, - ACTIONS(65), 1, + aux_sym_function_parameters_repeat1, + [285602] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7170), 1, - aux_sym_return_type_token1, - ACTIONS(7172), 1, - aux_sym_return_type_token2, - STATE(3973), 1, - sym_return_type, - STATE(5270), 2, + ACTIONS(7213), 1, + anon_sym_, + ACTIONS(7480), 1, + anon_sym_RPAREN, + STATE(5327), 1, + aux_sym_accumulate_statement_repeat1, + STATE(5348), 2, sym_comment, sym_include, - [279034] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [285625] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7471), 1, - aux_sym__block_terminator_token1, - STATE(1984), 1, - sym__block_terminator, - STATE(1985), 1, - sym__case_terminator, - STATE(5271), 2, + ACTIONS(7482), 1, + aux_sym_on_error_phrase_token2, + ACTIONS(7484), 1, + aux_sym_on_stop_phrase_token1, + ACTIONS(7486), 1, + aux_sym_on_quit_phrase_token1, + STATE(5349), 2, sym_comment, sym_include, - [279057] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [285648] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7473), 1, - aux_sym__block_terminator_token1, - STATE(1714), 1, - sym__case_terminator, - STATE(1715), 1, - sym__block_terminator, - STATE(5272), 2, + STATE(5350), 2, sym_comment, sym_include, - [279080] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7488), 3, + anon_sym_COLON, + anon_sym_DOT, + aux_sym__block_terminator_token1, + [285667] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(6052), 1, anon_sym_COMMA, - ACTIONS(7475), 1, + ACTIONS(6530), 1, anon_sym_RPAREN, - STATE(5244), 1, - aux_sym_function_arguments_repeat1, - STATE(5273), 2, + STATE(5222), 1, + aux_sym_data_relation_repeat1, + STATE(5351), 2, sym_comment, sym_include, - [279103] = 7, + [285690] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7477), 1, + ACTIONS(108), 1, sym_identifier, - ACTIONS(7479), 1, - anon_sym_AMP, - ACTIONS(7481), 1, - sym__integer_literal, - STATE(5274), 2, + ACTIONS(7490), 1, + sym__namedot, + STATE(5352), 3, sym_comment, sym_include, - [279126] = 7, - ACTIONS(65), 1, + aux_sym_qualified_name_repeat1, + [285711] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(7483), 1, - sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(5275), 2, + ACTIONS(7493), 1, + sym_identifier, + ACTIONS(7495), 1, + aux_sym_temp_table_expression_token1, + STATE(6435), 1, + sym_qualified_name, + STATE(5353), 2, sym_comment, sym_include, - [279149] = 7, + [285734] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7485), 1, + ACTIONS(1754), 1, + anon_sym_LPAREN, + ACTIONS(7497), 1, sym_identifier, - ACTIONS(7487), 1, - aux_sym_class_type_token1, - STATE(5576), 1, - sym_qualified_name, - STATE(5276), 2, + STATE(2667), 1, + sym_parenthesized_expression, + STATE(5354), 2, sym_comment, sym_include, - [279172] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [285757] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(7489), 1, + ACTIONS(7499), 1, sym__terminator, - STATE(340), 1, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(5277), 2, + STATE(5355), 2, sym_comment, sym_include, - [279195] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [285780] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7491), 1, - sym_file_name, - ACTIONS(7493), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(6650), 1, - sym_constant, - STATE(5278), 3, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + STATE(3218), 1, + sym_type_tuning, + STATE(5356), 2, sym_comment, sym_include, - aux_sym_include_repeat1, - [279216] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [285803] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4852), 1, aux_sym_type_tuning_token2, - ACTIONS(5141), 1, + ACTIONS(5130), 1, aux_sym_type_tuning_token1, - STATE(3157), 1, + STATE(3749), 1, sym_type_tuning, - STATE(5279), 2, + STATE(5357), 2, sym_comment, sym_include, - [279239] = 7, + [285826] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1879), 1, - anon_sym_LPAREN, - ACTIONS(7496), 1, + ACTIONS(7501), 1, sym_identifier, - STATE(244), 1, - sym_parenthesized_expression, - STATE(5280), 2, + ACTIONS(7503), 1, + aux_sym_temp_table_expression_token1, + STATE(6318), 1, + sym_qualified_name, + STATE(5358), 2, sym_comment, sym_include, - [279262] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [285849] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6667), 1, - sym__integer_literal, - STATE(176), 1, - sym__decimal_literal, - STATE(6246), 1, - sym_number_literal, - STATE(5281), 2, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + STATE(3740), 1, + sym_type_tuning, + STATE(5359), 2, sym_comment, sym_include, - [279285] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [285872] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, + ACTIONS(1740), 1, sym__namedot, - ACTIONS(7498), 1, + ACTIONS(7505), 1, sym__terminator, - STATE(340), 1, + STATE(416), 1, aux_sym_qualified_name_repeat1, - STATE(5282), 2, + STATE(5360), 2, sym_comment, sym_include, - [279308] = 7, - ACTIONS(65), 1, + [285895] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(7507), 1, + sym__terminator, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5361), 2, + sym_comment, + sym_include, + [285918] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6667), 1, - sym__integer_literal, - STATE(176), 1, - sym__decimal_literal, - STATE(3017), 1, - sym_number_literal, - STATE(5283), 2, + STATE(5362), 2, sym_comment, sym_include, - [279331] = 5, - ACTIONS(65), 1, + ACTIONS(7509), 3, + anon_sym_COLON, + anon_sym_DOT, + aux_sym__block_terminator_token1, + [285937] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7511), 1, + anon_sym_RPAREN, + STATE(5365), 1, + aux_sym_function_arguments_repeat1, + STATE(5363), 2, + sym_comment, + sym_include, + [285960] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5284), 2, + ACTIONS(7484), 1, + aux_sym_on_stop_phrase_token1, + ACTIONS(7513), 1, + aux_sym_on_error_phrase_token2, + ACTIONS(7515), 1, + aux_sym_on_quit_phrase_token1, + STATE(5364), 2, sym_comment, sym_include, - ACTIONS(7500), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [279350] = 7, - ACTIONS(65), 1, + [285983] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7517), 1, + anon_sym_RPAREN, + STATE(5375), 1, + aux_sym_function_arguments_repeat1, + STATE(5365), 2, + sym_comment, + sym_include, + [286006] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5786), 1, - aux_sym__block_terminator_token1, - STATE(4694), 1, - sym__block_terminator, - STATE(4792), 1, - sym__function_terminator, - STATE(5285), 2, + ACTIONS(7203), 1, + anon_sym_COMMA, + ACTIONS(7519), 1, + anon_sym_RPAREN, + STATE(5347), 1, + aux_sym_function_parameters_repeat1, + STATE(5366), 2, sym_comment, sym_include, - [279373] = 7, - ACTIONS(65), 1, + [286029] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(5367), 2, + sym_comment, + sym_include, + ACTIONS(7521), 3, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_case_otherwise_branch_token1, + [286048] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6667), 1, + ACTIONS(6751), 1, sym__integer_literal, - STATE(176), 1, + STATE(185), 1, sym__decimal_literal, - STATE(6248), 1, + STATE(6812), 1, sym_number_literal, - STATE(5286), 2, + STATE(5368), 2, sym_comment, sym_include, - [279396] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [286071] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6101), 1, - aux_sym__block_terminator_token1, - STATE(4783), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(5287), 2, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + STATE(3683), 1, + sym_type_tuning, + STATE(5369), 2, sym_comment, sym_include, - [279417] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [286094] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5288), 2, + STATE(5370), 2, sym_comment, sym_include, - ACTIONS(7502), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [279436] = 7, + ACTIONS(7523), 3, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_case_otherwise_branch_token1, + [286113] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7504), 1, + ACTIONS(7525), 1, sym_identifier, - ACTIONS(7506), 1, - aux_sym_class_type_token1, - STATE(5538), 1, + ACTIONS(7527), 1, + sym__terminator, + STATE(5229), 1, sym_qualified_name, - STATE(5289), 2, + STATE(5371), 2, sym_comment, sym_include, - [279459] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [286136] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7119), 1, - anon_sym_COMMA, - ACTIONS(7508), 1, - anon_sym_RPAREN, - STATE(5250), 1, - aux_sym_function_parameters_repeat1, - STATE(5290), 2, + STATE(5372), 2, sym_comment, sym_include, - [279482] = 6, - ACTIONS(3), 1, + ACTIONS(7529), 3, + aux_sym__block_terminator_token1, + aux_sym_when_expression_token1, + aux_sym_case_otherwise_branch_token1, + [286155] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7510), 1, - sym_identifier, - ACTIONS(7513), 1, - anon_sym_RPAREN, - STATE(5291), 3, + ACTIONS(6542), 1, + sym__terminator, + ACTIONS(6544), 1, + aux_sym_input_expression_token2, + ACTIONS(6546), 1, + aux_sym_prompt_for_statement_token2, + STATE(5373), 2, sym_comment, sym_include, - aux_sym_query_fields_repeat1, - [279503] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [286178] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5292), 2, + ACTIONS(6052), 1, + anon_sym_COMMA, + ACTIONS(6540), 1, + sym__terminator, + STATE(5207), 1, + aux_sym_data_relation_repeat1, + STATE(5374), 2, sym_comment, sym_include, - ACTIONS(7515), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [279522] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [286201] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, + ACTIONS(7531), 1, anon_sym_COMMA, - ACTIONS(7517), 1, - aux_sym_data_relation_token2, - STATE(4300), 1, - aux_sym_data_relation_repeat1, - STATE(5293), 2, + ACTIONS(7534), 1, + anon_sym_RPAREN, + STATE(5375), 3, sym_comment, sym_include, - [279545] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_function_arguments_repeat1, + [286222] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6667), 1, - sym__integer_literal, - STATE(176), 1, - sym__decimal_literal, - STATE(3986), 1, - sym_number_literal, - STATE(5294), 2, + ACTIONS(6042), 1, + aux_sym__block_terminator_token1, + STATE(2368), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(5376), 2, sym_comment, sym_include, - [279568] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [286243] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7119), 1, - anon_sym_COMMA, - ACTIONS(7519), 1, - anon_sym_RPAREN, - STATE(5099), 1, - aux_sym_function_parameters_repeat1, - STATE(5295), 2, + ACTIONS(7197), 1, + aux_sym_return_type_token1, + ACTIONS(7199), 1, + aux_sym_return_type_token2, + STATE(3995), 1, + sym_return_type, + STATE(5377), 2, sym_comment, sym_include, - [279591] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [286266] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(6052), 1, anon_sym_COMMA, - ACTIONS(7521), 1, - anon_sym_RPAREN, - STATE(5298), 1, - aux_sym_function_arguments_repeat1, - STATE(5296), 2, + ACTIONS(6564), 1, + sym__terminator, + STATE(5241), 1, + aux_sym_data_relation_repeat1, + STATE(5378), 2, sym_comment, sym_include, - [279614] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [286289] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(7523), 1, - sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(5297), 2, + STATE(5379), 2, sym_comment, sym_include, - [279637] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7536), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [286308] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(7525), 1, + ACTIONS(7538), 1, anon_sym_RPAREN, - STATE(5244), 1, + STATE(5409), 1, aux_sym_function_arguments_repeat1, - STATE(5298), 2, + STATE(5380), 2, sym_comment, sym_include, - [279660] = 7, - ACTIONS(65), 1, + [286331] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(7540), 1, + sym_identifier, + ACTIONS(7542), 1, + anon_sym_AMP, + ACTIONS(7544), 1, + sym__integer_literal, + STATE(5381), 2, + sym_comment, + sym_include, + [286354] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, - anon_sym_COMMA, - ACTIONS(7527), 1, - anon_sym_RPAREN, - STATE(5265), 1, - aux_sym_function_arguments_repeat1, - STATE(5299), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(7546), 1, + sym__terminator, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5382), 2, sym_comment, sym_include, - [279683] = 7, + [286377] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7429), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7529), 1, - sym_file_name, - STATE(5278), 1, - aux_sym_include_repeat1, - STATE(6650), 1, - sym_constant, - STATE(5300), 2, + ACTIONS(7548), 1, + anon_sym_RPAREN, + ACTIONS(7550), 1, + anon_sym_, + STATE(5383), 3, sym_comment, sym_include, - [279706] = 7, + aux_sym_accumulate_statement_repeat1, + [286398] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7531), 1, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(7553), 1, sym_identifier, - ACTIONS(7533), 1, - anon_sym_AMP, - ACTIONS(7535), 1, - sym__integer_literal, - STATE(5301), 2, + STATE(1109), 1, + sym_parenthesized_expression, + STATE(5384), 2, sym_comment, sym_include, - [279729] = 7, - ACTIONS(65), 1, + [286421] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(7555), 1, + aux_sym__block_terminator_token1, + STATE(1901), 1, + sym__case_terminator, + STATE(1903), 1, + sym__block_terminator, + STATE(5385), 2, + sym_comment, + sym_include, + [286444] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(6600), 1, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(7557), 1, sym__terminator, - STATE(5340), 1, - aux_sym_data_relation_repeat1, - STATE(5302), 2, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5386), 2, sym_comment, sym_include, - [279752] = 6, - ACTIONS(65), 1, + [286467] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(825), 1, + sym__namecolon, + ACTIONS(7559), 1, + sym__terminator, + STATE(4563), 1, + aux_sym_object_access_repeat1, + STATE(5387), 2, + sym_comment, + sym_include, + [286490] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6022), 1, - aux_sym__block_terminator_token1, - STATE(2426), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(5303), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(7561), 1, + sym__terminator, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5388), 2, sym_comment, sym_include, - [279773] = 7, - ACTIONS(65), 1, + [286513] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(7563), 1, + sym_identifier, + ACTIONS(6630), 2, + anon_sym_COLON, + sym__terminator, + STATE(5389), 2, + sym_comment, + sym_include, + [286534] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(7537), 1, + ACTIONS(7565), 1, anon_sym_RPAREN, - STATE(5228), 1, + STATE(5392), 1, aux_sym_function_arguments_repeat1, - STATE(5304), 2, + STATE(5390), 2, sym_comment, sym_include, - [279796] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [286557] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(7539), 1, + ACTIONS(7567), 1, anon_sym_RPAREN, - STATE(5244), 1, + STATE(5375), 1, aux_sym_function_arguments_repeat1, - STATE(5305), 2, + STATE(5391), 2, sym_comment, sym_include, - [279819] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [286580] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5306), 2, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7569), 1, + anon_sym_RPAREN, + STATE(5375), 1, + aux_sym_function_arguments_repeat1, + STATE(5392), 2, sym_comment, sym_include, - ACTIONS(7541), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [279838] = 7, - ACTIONS(65), 1, + [286603] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6667), 1, - sym__integer_literal, - STATE(176), 1, - sym__decimal_literal, - STATE(3415), 1, - sym_number_literal, - STATE(5307), 2, + ACTIONS(7571), 1, + sym_identifier, + ACTIONS(6872), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5393), 2, sym_comment, sym_include, - [279861] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [286624] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(7543), 1, + ACTIONS(7573), 1, anon_sym_RPAREN, - STATE(5305), 1, + STATE(5391), 1, aux_sym_function_arguments_repeat1, - STATE(5308), 2, + STATE(5394), 2, sym_comment, sym_include, - [279884] = 7, - ACTIONS(3), 1, + [286647] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7545), 1, - sym_identifier, - ACTIONS(7547), 1, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7575), 1, anon_sym_RPAREN, - STATE(5143), 1, - sym_qualified_name, - STATE(5309), 2, + STATE(5375), 1, + aux_sym_function_arguments_repeat1, + STATE(5395), 2, sym_comment, sym_include, - [279907] = 7, + [286670] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7549), 1, + ACTIONS(7577), 1, sym_identifier, - ACTIONS(7551), 1, - aux_sym_class_type_token1, - STATE(5503), 1, + ACTIONS(7579), 1, + anon_sym_RPAREN, + STATE(5351), 1, sym_qualified_name, - STATE(5310), 2, + STATE(5396), 2, sym_comment, sym_include, - [279930] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [286693] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(7553), 1, + ACTIONS(7581), 1, anon_sym_RPAREN, - STATE(5240), 1, + STATE(5395), 1, aux_sym_function_arguments_repeat1, - STATE(5311), 2, + STATE(5397), 2, sym_comment, sym_include, - [279953] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [286716] = 7, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(818), 1, - sym__namedot, - ACTIONS(7555), 1, - sym__terminator, - STATE(340), 1, - aux_sym_qualified_name_repeat1, - STATE(5312), 2, - sym_comment, - sym_include, - [279976] = 7, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(7557), 1, + ACTIONS(7583), 1, anon_sym_RPAREN, - STATE(5244), 1, + STATE(5375), 1, aux_sym_function_arguments_repeat1, - STATE(5313), 2, + STATE(5398), 2, sym_comment, sym_include, - [279999] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [286739] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(7559), 1, + ACTIONS(7585), 1, anon_sym_RPAREN, - STATE(5313), 1, + STATE(5398), 1, aux_sym_function_arguments_repeat1, - STATE(5314), 2, + STATE(5399), 2, sym_comment, sym_include, - [280022] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [286762] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(6629), 1, - sym__terminator, - STATE(5191), 1, - aux_sym_data_relation_repeat1, - STATE(5315), 2, + ACTIONS(6751), 1, + sym__integer_literal, + STATE(185), 1, + sym__decimal_literal, + STATE(3250), 1, + sym_number_literal, + STATE(5400), 2, sym_comment, sym_include, - [280045] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [286785] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(7561), 1, + ACTIONS(7587), 1, anon_sym_RPAREN, - STATE(5244), 1, + STATE(5375), 1, aux_sym_function_arguments_repeat1, - STATE(5316), 2, + STATE(5401), 2, sym_comment, sym_include, - [280068] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [286808] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(7563), 1, + ACTIONS(7589), 1, anon_sym_RPAREN, - STATE(5316), 1, + STATE(5401), 1, aux_sym_function_arguments_repeat1, - STATE(5317), 2, + STATE(5402), 2, sym_comment, sym_include, - [280091] = 7, - ACTIONS(65), 1, + [286831] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6553), 1, - sym__terminator, - ACTIONS(6555), 1, - aux_sym_input_expression_token2, - ACTIONS(6557), 1, - aux_sym_prompt_for_statement_token2, - STATE(5318), 2, + ACTIONS(7319), 1, + sym_identifier, + ACTIONS(7591), 1, + anon_sym_RPAREN, + STATE(5281), 1, + aux_sym_query_fields_repeat1, + STATE(5403), 2, sym_comment, sym_include, - [280114] = 7, - ACTIONS(65), 1, + [286854] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6568), 1, - sym__terminator, - ACTIONS(6570), 1, - aux_sym_input_expression_token2, - ACTIONS(6572), 1, - aux_sym_prompt_for_statement_token2, - STATE(5319), 2, + ACTIONS(1974), 1, + anon_sym_LPAREN, + ACTIONS(7593), 1, + sym_identifier, + STATE(321), 1, + sym_parenthesized_expression, + STATE(5404), 2, sym_comment, sym_include, - [280137] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [286877] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, - anon_sym_COMMA, - ACTIONS(7565), 1, - anon_sym_RPAREN, - STATE(5244), 1, - aux_sym_function_arguments_repeat1, - STATE(5320), 2, + ACTIONS(5892), 1, + aux_sym__block_terminator_token1, + STATE(1833), 1, + sym__function_terminator, + STATE(1915), 1, + sym__block_terminator, + STATE(5405), 2, sym_comment, sym_include, - [280160] = 7, - ACTIONS(65), 1, + [286900] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4150), 1, + sym_identifier, + ACTIONS(7451), 1, + sym__namedot, + STATE(5335), 1, + aux_sym_qualified_name_repeat1, + STATE(5406), 2, + sym_comment, + sym_include, + [286923] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(7567), 1, + ACTIONS(7595), 1, anon_sym_RPAREN, - STATE(5323), 1, + STATE(5200), 1, aux_sym_function_arguments_repeat1, - STATE(5321), 2, + STATE(5407), 2, sym_comment, sym_include, - [280183] = 7, - ACTIONS(65), 1, + [286946] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6751), 1, + sym__integer_literal, + STATE(185), 1, + sym__decimal_literal, + STATE(3052), 1, + sym_number_literal, + STATE(5408), 2, + sym_comment, + sym_include, + [286969] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(7569), 1, + ACTIONS(7597), 1, anon_sym_RPAREN, - STATE(5320), 1, + STATE(5375), 1, aux_sym_function_arguments_repeat1, - STATE(5322), 2, + STATE(5409), 2, sym_comment, sym_include, - [280206] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [286992] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(7571), 1, + ACTIONS(7599), 1, anon_sym_RPAREN, - STATE(5244), 1, + STATE(5422), 1, aux_sym_function_arguments_repeat1, - STATE(5323), 2, + STATE(5410), 2, sym_comment, sym_include, - [280229] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [287015] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5821), 1, - aux_sym__block_terminator_token1, - STATE(1865), 1, - sym__function_terminator, - STATE(1980), 1, - sym__block_terminator, - STATE(5324), 2, + STATE(5411), 2, sym_comment, sym_include, - [280252] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7601), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [287034] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4682), 1, - anon_sym_LPAREN, - ACTIONS(7573), 1, - anon_sym_EQ, - STATE(3610), 1, - sym_function_arguments, - STATE(5325), 2, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7603), 1, + anon_sym_RPAREN, + STATE(5416), 1, + aux_sym_function_arguments_repeat1, + STATE(5412), 2, sym_comment, sym_include, - [280275] = 7, - ACTIONS(65), 1, + [287057] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + STATE(3205), 1, + sym_type_tuning, + STATE(5413), 2, + sym_comment, + sym_include, + [287080] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, - anon_sym_COMMA, - ACTIONS(7575), 1, - anon_sym_RPAREN, - STATE(5244), 1, - aux_sym_function_arguments_repeat1, - STATE(5326), 2, + ACTIONS(5892), 1, + aux_sym__block_terminator_token1, + STATE(1863), 1, + sym__function_terminator, + STATE(1915), 1, + sym__block_terminator, + STATE(5414), 2, sym_comment, sym_include, - [280298] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [287103] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(6574), 1, + ACTIONS(7605), 1, anon_sym_RPAREN, - STATE(5159), 1, - aux_sym_data_relation_repeat1, - STATE(5327), 2, + STATE(5417), 1, + aux_sym_function_arguments_repeat1, + STATE(5415), 2, sym_comment, sym_include, - [280321] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [287126] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(7577), 1, + ACTIONS(7607), 1, anon_sym_RPAREN, - STATE(5326), 1, + STATE(5375), 1, aux_sym_function_arguments_repeat1, - STATE(5328), 2, + STATE(5416), 2, sym_comment, sym_include, - [280344] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [287149] = 7, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6113), 1, - aux_sym__block_terminator_token1, - STATE(1979), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(5329), 2, - sym_comment, - sym_include, - [280365] = 7, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(7579), 1, + ACTIONS(7609), 1, anon_sym_RPAREN, - STATE(5369), 1, + STATE(5375), 1, aux_sym_function_arguments_repeat1, - STATE(5330), 2, + STATE(5417), 2, sym_comment, sym_include, - [280388] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [287172] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(7581), 1, - sym__terminator, - STATE(6612), 1, - sym_body, - STATE(5331), 2, + STATE(5418), 2, sym_comment, sym_include, - [280411] = 7, + ACTIONS(7611), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [287191] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7583), 1, + ACTIONS(7613), 1, sym_identifier, - ACTIONS(7585), 1, - anon_sym_AMP, - ACTIONS(7587), 1, - sym__integer_literal, - STATE(5332), 2, + ACTIONS(7615), 1, + aux_sym_class_type_token1, + STATE(5672), 1, + sym_qualified_name, + STATE(5419), 2, sym_comment, sym_include, - [280434] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [287214] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(6052), 1, anon_sym_COMMA, - ACTIONS(7589), 1, - anon_sym_RPAREN, - STATE(5144), 1, - aux_sym_function_arguments_repeat1, - STATE(5333), 2, + ACTIONS(7617), 1, + aux_sym_data_relation_token2, + STATE(4333), 1, + aux_sym_data_relation_repeat1, + STATE(5420), 2, sym_comment, sym_include, - [280457] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [287237] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - ACTIONS(6631), 1, + ACTIONS(7619), 1, sym__terminator, - STATE(6427), 1, + STATE(6623), 1, sym_body, - STATE(5334), 2, + STATE(5421), 2, sym_comment, sym_include, - [280480] = 5, - ACTIONS(3), 1, + [287260] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5335), 2, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7621), 1, + anon_sym_RPAREN, + STATE(5375), 1, + aux_sym_function_arguments_repeat1, + STATE(5422), 2, sym_comment, sym_include, - ACTIONS(7591), 3, - sym_identifier, - sym__terminator, - anon_sym_NO_DASHERROR, - [280499] = 7, - ACTIONS(65), 1, + [287283] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + STATE(5423), 2, + sym_comment, + sym_include, + ACTIONS(7623), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [287302] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7170), 1, - aux_sym_return_type_token1, - ACTIONS(7172), 1, - aux_sym_return_type_token2, - STATE(3907), 1, - sym_return_type, - STATE(5336), 2, + STATE(5424), 2, sym_comment, sym_include, - [280522] = 7, + ACTIONS(7625), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [287321] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7593), 1, + ACTIONS(7627), 1, sym_identifier, - ACTIONS(7595), 1, - sym__terminator, - STATE(5169), 1, + ACTIONS(7629), 1, + aux_sym_class_type_token1, + STATE(5617), 1, sym_qualified_name, - STATE(5337), 2, + STATE(5425), 2, sym_comment, sym_include, - [280545] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [287344] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(6637), 1, - aux_sym_data_relation_token2, - STATE(5293), 1, - aux_sym_data_relation_repeat1, - STATE(5338), 2, + STATE(5426), 2, sym_comment, sym_include, - [280568] = 7, + ACTIONS(7631), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [287363] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(7633), 1, + sym_file_name, + ACTIONS(7635), 1, anon_sym_LBRACE, - ACTIONS(6749), 1, - sym__terminator, - ACTIONS(7597), 1, - sym_identifier, - STATE(5206), 1, - sym_qualified_name, - STATE(5339), 2, + STATE(5437), 1, + aux_sym_include_repeat1, + STATE(6746), 1, + sym_constant, + STATE(5427), 2, sym_comment, sym_include, - [280591] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [287386] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(6629), 1, - sym__terminator, - STATE(4300), 1, - aux_sym_data_relation_repeat1, - STATE(5340), 2, + ACTIONS(6120), 1, + aux_sym__block_terminator_token1, + STATE(1864), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(5428), 2, sym_comment, sym_include, - [280614] = 6, - ACTIONS(3), 1, + [287407] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7599), 1, - sym_identifier, - STATE(5341), 2, + STATE(5429), 2, sym_comment, sym_include, - STATE(5858), 2, - sym_qualified_name, - sym_object_access, - [280635] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7637), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [287426] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6639), 1, - sym__terminator, - ACTIONS(6641), 1, - aux_sym_input_expression_token2, - ACTIONS(6643), 1, - aux_sym_prompt_for_statement_token2, - STATE(5342), 2, + STATE(5430), 2, sym_comment, sym_include, - [280658] = 6, + ACTIONS(162), 3, + sym__namedoublecolon, + sym__augmented_assignment, + anon_sym_EQ, + [287445] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7601), 1, + ACTIONS(7639), 1, sym_identifier, - ACTIONS(7216), 2, - sym__terminator, - anon_sym_COMMA, - STATE(5343), 2, + ACTIONS(7641), 1, + aux_sym_class_type_token1, + STATE(5586), 1, + sym_qualified_name, + STATE(5431), 2, sym_comment, sym_include, - [280679] = 7, - ACTIONS(3), 1, + [287468] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7237), 1, - anon_sym_, - ACTIONS(7603), 1, - anon_sym_RPAREN, - STATE(5107), 1, - aux_sym_accumulate_statement_repeat1, - STATE(5344), 2, + ACTIONS(6642), 1, + sym__terminator, + ACTIONS(6644), 1, + aux_sym_input_expression_token2, + ACTIONS(6646), 1, + aux_sym_prompt_for_statement_token2, + STATE(5432), 2, sym_comment, sym_include, - [280702] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [287491] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, - anon_sym_COMMA, - ACTIONS(7605), 1, - anon_sym_RPAREN, - STATE(5347), 1, - aux_sym_function_arguments_repeat1, - STATE(5345), 2, + ACTIONS(4852), 1, + aux_sym_type_tuning_token2, + ACTIONS(5130), 1, + aux_sym_type_tuning_token1, + STATE(3595), 1, + sym_type_tuning, + STATE(5433), 2, sym_comment, sym_include, - [280725] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [287514] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(110), 1, - anon_sym_EQ, - ACTIONS(7607), 1, - sym__namedoublecolon, - STATE(5346), 3, + STATE(5434), 2, sym_comment, sym_include, - aux_sym_member_access_repeat1, - [280746] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(108), 3, + sym__namedot, + sym__augmented_assignment, + anon_sym_EQ, + [287533] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, - anon_sym_COMMA, - ACTIONS(7610), 1, - anon_sym_RPAREN, - STATE(5244), 1, - aux_sym_function_arguments_repeat1, - STATE(5347), 2, + STATE(5435), 2, sym_comment, sym_include, - [280769] = 7, + ACTIONS(7643), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [287552] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7251), 1, + ACTIONS(7645), 1, sym_identifier, - ACTIONS(7612), 1, - anon_sym_RPAREN, - STATE(5291), 1, - aux_sym_query_fields_repeat1, - STATE(5348), 2, + ACTIONS(7647), 1, + anon_sym_AMP, + ACTIONS(7649), 1, + sym__integer_literal, + STATE(5436), 2, sym_comment, sym_include, - [280792] = 7, - ACTIONS(65), 1, + [287575] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7651), 1, + sym_file_name, + ACTIONS(7653), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(6635), 1, - sym__terminator, - STATE(5188), 1, - aux_sym_data_relation_repeat1, - STATE(5349), 2, + STATE(6746), 1, + sym_constant, + STATE(5437), 3, sym_comment, sym_include, - [280815] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + aux_sym_include_repeat1, + [287596] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, - anon_sym_COMMA, - ACTIONS(7614), 1, - anon_sym_RPAREN, - STATE(5244), 1, - aux_sym_function_arguments_repeat1, - STATE(5350), 2, + ACTIONS(1740), 1, + sym__namedot, + ACTIONS(7656), 1, + sym__terminator, + STATE(416), 1, + aux_sym_qualified_name_repeat1, + STATE(5438), 2, sym_comment, sym_include, - [280838] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [287619] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7616), 1, - aux_sym__block_terminator_token1, - STATE(4713), 1, - sym__block_terminator, - STATE(4714), 1, - sym__case_terminator, - STATE(5351), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + ACTIONS(7658), 1, + sym__terminator, + STATE(6313), 1, + sym_body, + STATE(5439), 2, sym_comment, sym_include, - [280861] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [287642] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6667), 1, - sym__integer_literal, - STATE(176), 1, - sym__decimal_literal, - STATE(6579), 1, - sym_number_literal, - STATE(5352), 2, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7660), 1, + anon_sym_RPAREN, + STATE(5442), 1, + aux_sym_function_arguments_repeat1, + STATE(5440), 2, sym_comment, sym_include, - [280884] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [287665] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6113), 1, - aux_sym__block_terminator_token1, - STATE(1945), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(5353), 2, + STATE(5441), 2, sym_comment, sym_include, - [280905] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7662), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [287684] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - STATE(3672), 1, - sym_type_tuning, - STATE(5354), 2, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7664), 1, + anon_sym_RPAREN, + STATE(5375), 1, + aux_sym_function_arguments_repeat1, + STATE(5442), 2, sym_comment, sym_include, - [280928] = 7, - ACTIONS(3), 1, + [287707] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7618), 1, - sym_identifier, - ACTIONS(7620), 1, - aux_sym_temp_table_expression_token1, - STATE(6038), 1, - sym_qualified_name, - STATE(5355), 2, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7666), 1, + anon_sym_RPAREN, + STATE(5447), 1, + aux_sym_function_arguments_repeat1, + STATE(5443), 2, sym_comment, sym_include, - [280951] = 7, - ACTIONS(3), 1, + [287730] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1701), 1, - anon_sym_LPAREN, - ACTIONS(7622), 1, - sym_identifier, - STATE(2562), 1, - sym_parenthesized_expression, - STATE(5356), 2, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7668), 1, + anon_sym_RPAREN, + STATE(5375), 1, + aux_sym_function_arguments_repeat1, + STATE(5444), 2, sym_comment, sym_include, - [280974] = 7, + [287753] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7624), 1, + ACTIONS(7670), 1, sym_identifier, - ACTIONS(7626), 1, - aux_sym_temp_table_expression_token1, - STATE(6303), 1, + ACTIONS(7672), 1, + aux_sym_class_type_token1, + STATE(5551), 1, sym_qualified_name, - STATE(5357), 2, + STATE(5445), 2, sym_comment, sym_include, - [280997] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [287776] = 7, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6101), 1, - aux_sym__block_terminator_token1, - STATE(4679), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(5358), 2, - sym_comment, - sym_include, - [281018] = 7, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(7628), 1, + ACTIONS(7674), 1, anon_sym_RPAREN, - STATE(5360), 1, + STATE(5375), 1, aux_sym_function_arguments_repeat1, - STATE(5359), 2, + STATE(5446), 2, sym_comment, sym_include, - [281041] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [287799] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(7630), 1, + ACTIONS(7676), 1, anon_sym_RPAREN, - STATE(5244), 1, + STATE(5375), 1, aux_sym_function_arguments_repeat1, - STATE(5360), 2, + STATE(5447), 2, sym_comment, sym_include, - [281064] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [287822] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - STATE(5361), 2, - sym_comment, - sym_include, - ACTIONS(7632), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [281083] = 7, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - STATE(3659), 1, - sym_type_tuning, - STATE(5362), 2, + ACTIONS(6120), 1, + aux_sym__block_terminator_token1, + STATE(1924), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(5448), 2, sym_comment, sym_include, - [281106] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [287843] = 7, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - STATE(3683), 1, - sym_type_tuning, - STATE(5363), 2, - sym_comment, - sym_include, - [281129] = 7, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7634), 1, - sym_identifier, - ACTIONS(7636), 1, - aux_sym_temp_table_expression_token1, - STATE(6073), 1, - sym_qualified_name, - STATE(5364), 2, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7678), 1, + anon_sym_RPAREN, + STATE(5446), 1, + aux_sym_function_arguments_repeat1, + STATE(5449), 2, sym_comment, sym_include, - [281152] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [287866] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, - aux_sym_type_tuning_token2, - ACTIONS(5141), 1, - aux_sym_type_tuning_token1, - STATE(3688), 1, - sym_type_tuning, - STATE(5365), 2, + ACTIONS(825), 1, + sym__namecolon, + ACTIONS(7680), 1, + sym__terminator, + STATE(4563), 1, + aux_sym_object_access_repeat1, + STATE(5450), 2, sym_comment, sym_include, - [281175] = 7, + [287889] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1763), 1, - anon_sym_LPAREN, - ACTIONS(7638), 1, + ACTIONS(4085), 1, sym_identifier, - STATE(2854), 1, - sym_parenthesized_expression, - STATE(5366), 2, + ACTIONS(7451), 1, + sym__namedot, + STATE(5335), 1, + aux_sym_qualified_name_repeat1, + STATE(5451), 2, sym_comment, sym_include, - [281198] = 6, - ACTIONS(3), 1, + [287912] = 7, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7640), 1, - sym_identifier, - ACTIONS(7281), 2, - sym__terminator, + ACTIONS(7159), 1, anon_sym_COMMA, - STATE(5367), 2, + ACTIONS(7682), 1, + anon_sym_RPAREN, + STATE(5454), 1, + aux_sym_function_arguments_repeat1, + STATE(5452), 2, sym_comment, sym_include, - [281219] = 5, - ACTIONS(3), 1, + [287935] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(5368), 2, + STATE(5453), 2, sym_comment, sym_include, - ACTIONS(7642), 3, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - [281238] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + ACTIONS(7684), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [287954] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, + ACTIONS(7159), 1, anon_sym_COMMA, - ACTIONS(7644), 1, + ACTIONS(7686), 1, anon_sym_RPAREN, - STATE(5244), 1, + STATE(5375), 1, aux_sym_function_arguments_repeat1, - STATE(5369), 2, + STATE(5454), 2, sym_comment, sym_include, - [281261] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [287977] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5699), 1, + ACTIONS(7688), 1, aux_sym__block_terminator_token1, - STATE(2342), 1, - sym__function_terminator, - STATE(2423), 1, + STATE(5143), 1, + sym__case_terminator, + STATE(5144), 1, sym__block_terminator, - STATE(5370), 2, + STATE(5455), 2, sym_comment, sym_include, - [281284] = 7, + [288000] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(7635), 1, anon_sym_LBRACE, - ACTIONS(7237), 1, - anon_sym_, - ACTIONS(7646), 1, - anon_sym_RPAREN, - STATE(5344), 1, - aux_sym_accumulate_statement_repeat1, - STATE(5371), 2, + ACTIONS(7690), 1, + sym_file_name, + STATE(5427), 1, + aux_sym_include_repeat1, + STATE(6746), 1, + sym_constant, + STATE(5456), 2, sym_comment, sym_include, - [281307] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [288023] = 7, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5821), 1, - aux_sym__block_terminator_token1, - STATE(1944), 1, - sym__function_terminator, - STATE(1980), 1, - sym__block_terminator, - STATE(5372), 2, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7692), 1, + anon_sym_RPAREN, + STATE(5444), 1, + aux_sym_function_arguments_repeat1, + STATE(5457), 2, sym_comment, sym_include, - [281330] = 7, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [288046] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_COMMA, - ACTIONS(6635), 1, - sym__terminator, - STATE(4300), 1, - aux_sym_data_relation_repeat1, - STATE(5373), 2, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + STATE(2383), 1, + sym__block_terminator, + STATE(5458), 2, sym_comment, sym_include, - [281353] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [288066] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7648), 1, + ACTIONS(7694), 1, sym__terminator, - ACTIONS(7650), 1, - aux_sym_destructor_definition_token1, - STATE(5374), 2, + ACTIONS(7696), 1, + aux_sym_catch_statement_token1, + STATE(5459), 2, sym_comment, sym_include, - [281373] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [288086] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7652), 1, - anon_sym_LPAREN, - STATE(4090), 1, - sym_query_fields, - STATE(5375), 2, + ACTIONS(7698), 1, + aux_sym_input_close_statement_token2, + ACTIONS(7700), 1, + aux_sym_output_stream_statement_token1, + STATE(5460), 2, sym_comment, sym_include, - [281393] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [288106] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7652), 1, - anon_sym_LPAREN, - STATE(4239), 1, - sym_query_fields, - STATE(5376), 2, + ACTIONS(6725), 1, + sym__escaped_string, + STATE(3250), 1, + sym_string_literal, + STATE(5461), 2, sym_comment, sym_include, - [281413] = 6, - ACTIONS(65), 1, + [288126] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7654), 1, - anon_sym_DOT, - ACTIONS(7656), 1, - aux_sym__function_terminator_token1, - STATE(5377), 2, + ACTIONS(7702), 1, + sym_identifier, + STATE(5290), 1, + sym_qualified_name, + STATE(5462), 2, sym_comment, sym_include, - [281433] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [288146] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - STATE(2199), 1, + STATE(5146), 1, sym__block_terminator, - STATE(5378), 2, + STATE(5463), 2, sym_comment, sym_include, - [281453] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [288166] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7654), 1, - anon_sym_DOT, - ACTIONS(7658), 1, - aux_sym__case_terminator_token1, - STATE(5379), 2, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1838), 1, + sym__block_terminator, + STATE(5464), 2, sym_comment, sym_include, - [281473] = 6, - ACTIONS(65), 1, + [288186] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6687), 1, - sym__terminator, - ACTIONS(6689), 1, - aux_sym_using_statement_token2, - STATE(5380), 2, + ACTIONS(7704), 1, + sym_identifier, + ACTIONS(7706), 1, + anon_sym_STAR, + STATE(5465), 2, sym_comment, sym_include, - [281493] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [288206] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(1745), 1, + STATE(1583), 1, sym__block_terminator, - STATE(5381), 2, - sym_comment, - sym_include, - [281513] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4469), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5382), 2, + STATE(5466), 2, sym_comment, sym_include, - [281531] = 6, + [288226] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7660), 1, + ACTIONS(7708), 1, sym_identifier, - STATE(5695), 1, + STATE(5680), 1, sym_qualified_name, - STATE(5383), 2, + STATE(5467), 2, sym_comment, sym_include, - [281551] = 6, - ACTIONS(65), 1, + [288246] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5767), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5468), 2, + sym_comment, + sym_include, + [288264] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2201), 1, - sym__block_terminator, - STATE(5384), 2, + ACTIONS(7710), 1, + sym__terminator, + ACTIONS(7712), 1, + aux_sym_finally_statement_token1, + STATE(5469), 2, sym_comment, sym_include, - [281571] = 6, + [288284] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7662), 1, + ACTIONS(7714), 1, sym_identifier, - ACTIONS(7664), 1, - anon_sym_COMMA, - STATE(5385), 2, + STATE(5835), 1, + sym_qualified_name, + STATE(5470), 2, sym_comment, sym_include, - [281591] = 6, + [288304] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7666), 1, + ACTIONS(7716), 1, sym_identifier, - STATE(3628), 1, - sym_qualified_name, - STATE(5386), 2, + ACTIONS(7718), 1, + anon_sym_COMMA, + STATE(5471), 2, sym_comment, sym_include, - [281611] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [288324] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7668), 1, - aux_sym_image_phrase_token7, - ACTIONS(7670), 1, - aux_sym_image_phrase_token9, - STATE(5387), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(6299), 1, + sym_body, + STATE(5472), 2, sym_comment, sym_include, - [281631] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [288344] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4421), 2, + ACTIONS(3815), 1, anon_sym_COLON, - anon_sym_COMMA, - STATE(5388), 2, + STATE(6173), 1, + sym_body, + STATE(5473), 2, sym_comment, sym_include, - [281649] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [288364] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7672), 1, - aux_sym_using_statement_token2, - ACTIONS(7674), 1, - aux_sym_input_close_statement_token2, - STATE(5389), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(6426), 1, + sym_body, + STATE(5474), 2, sym_comment, sym_include, - [281669] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [288384] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7672), 1, - aux_sym_using_statement_token2, - ACTIONS(7676), 1, - aux_sym_input_close_statement_token2, - STATE(5390), 2, + ACTIONS(7720), 1, + aux_sym_on_error_phrase_token1, + STATE(6382), 1, + sym_on_error_phrase, + STATE(5475), 2, sym_comment, sym_include, - [281689] = 6, - ACTIONS(65), 1, + [288404] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, - aux_sym__block_terminator_token1, - STATE(1752), 1, - sym__block_terminator, - STATE(5391), 2, + ACTIONS(7722), 1, + sym_identifier, + STATE(5239), 1, + sym_qualified_name, + STATE(5476), 2, sym_comment, sym_include, - [281709] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [288424] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2208), 1, - sym__block_terminator, - STATE(5392), 2, + ACTIONS(829), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(5477), 2, sym_comment, sym_include, - [281729] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [288442] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(6055), 1, - sym_body, - STATE(5393), 2, + ACTIONS(6524), 1, + anon_sym_LPAREN, + STATE(5293), 1, + sym_function_parameters, + STATE(5478), 2, sym_comment, sym_include, - [281749] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [288462] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7678), 1, - aux_sym_on_error_phrase_token1, - STATE(6087), 1, - sym_on_error_phrase, - STATE(5394), 2, + ACTIONS(5093), 1, + sym__terminator, + ACTIONS(5095), 1, + aux_sym_function_call_token1, + STATE(5479), 2, sym_comment, sym_include, - [281769] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [288482] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7680), 1, - aux_sym_input_close_statement_token2, - ACTIONS(7682), 1, - aux_sym_output_stream_statement_token1, - STATE(5395), 2, + ACTIONS(825), 1, + sym__namecolon, + STATE(4573), 1, + aux_sym_object_access_repeat1, + STATE(5480), 2, sym_comment, sym_include, - [281789] = 6, + [288502] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7684), 1, + ACTIONS(7724), 1, sym_identifier, - STATE(5221), 1, - sym_qualified_name, - STATE(5396), 2, + ACTIONS(7726), 1, + anon_sym_STAR, + STATE(5481), 2, sym_comment, sym_include, - [281809] = 6, - ACTIONS(3), 1, + [288522] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7686), 1, - sym_identifier, - STATE(4495), 1, - sym_qualified_name, - STATE(5397), 2, + ACTIONS(391), 1, + sym__namecolon, + ACTIONS(7728), 1, + anon_sym_NO_DASHERROR, + STATE(5482), 2, sym_comment, sym_include, - [281829] = 6, - ACTIONS(65), 1, + [288542] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(7730), 1, + anon_sym_DOT, + ACTIONS(7732), 1, + aux_sym__procedure_terminator_token1, + STATE(5483), 2, + sym_comment, + sym_include, + [288562] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - STATE(1816), 1, - sym__block_terminator, - STATE(5398), 2, + ACTIONS(7734), 1, + sym__terminator, + ACTIONS(7736), 1, + aux_sym_class_type_token1, + STATE(5484), 2, sym_comment, sym_include, - [281849] = 6, + [288582] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7688), 1, + ACTIONS(7738), 1, sym_identifier, - STATE(2939), 1, + STATE(5548), 1, sym_qualified_name, - STATE(5399), 2, + STATE(5485), 2, sym_comment, sym_include, - [281869] = 6, - ACTIONS(65), 1, + [288602] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(7740), 1, + sym__terminator, + ACTIONS(7742), 1, + aux_sym_class_type_token1, + STATE(5486), 2, + sym_comment, + sym_include, + [288622] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2209), 1, - sym__block_terminator, - STATE(5400), 2, + ACTIONS(7744), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(7746), 1, + aux_sym_procedure_parameter_definition_token2, + STATE(5487), 2, sym_comment, sym_include, - [281889] = 6, - ACTIONS(3), 1, + [288642] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7690), 1, - sym_identifier, - ACTIONS(7692), 1, - anon_sym_RPAREN, - STATE(5401), 2, + ACTIONS(4512), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5488), 2, + sym_comment, + sym_include, + [288660] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(7748), 1, + aux_sym_primitive_type_token1, + ACTIONS(7750), 1, + aux_sym_event_definition_token2, + STATE(5489), 2, sym_comment, sym_include, - [281909] = 6, - ACTIONS(65), 1, + [288680] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(7752), 1, + sym__terminator, + ACTIONS(7754), 1, + aux_sym_function_call_token1, + STATE(5490), 2, + sym_comment, + sym_include, + [288700] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7654), 1, - anon_sym_DOT, - ACTIONS(7694), 1, - aux_sym__procedure_terminator_token1, - STATE(5402), 2, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + STATE(2421), 1, + sym__block_terminator, + STATE(5491), 2, + sym_comment, + sym_include, + [288720] = 5, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(115), 2, + sym__terminator, + aux_sym_function_call_token1, + STATE(5492), 2, sym_comment, sym_include, - [281929] = 6, + [288738] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7696), 1, + ACTIONS(7756), 1, sym_identifier, - STATE(5499), 1, + STATE(3576), 1, sym_qualified_name, - STATE(5403), 2, + STATE(5493), 2, sym_comment, sym_include, - [281949] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [288758] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6759), 1, - anon_sym_LPAREN, - STATE(5474), 1, - sym_function_arguments, - STATE(5404), 2, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1849), 1, + sym__block_terminator, + STATE(5494), 2, sym_comment, sym_include, - [281969] = 5, - ACTIONS(65), 1, + [288778] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7218), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5405), 2, + ACTIONS(7758), 1, + sym_identifier, + ACTIONS(7760), 1, + anon_sym_STAR, + STATE(5495), 2, sym_comment, sym_include, - [281987] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [288798] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(6470), 1, - sym_body, - STATE(5406), 2, + ACTIONS(7762), 1, + sym__terminator, + ACTIONS(7764), 1, + aux_sym_prompt_for_statement_token2, + STATE(5496), 2, sym_comment, sym_include, - [282007] = 6, - ACTIONS(65), 1, + [288818] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6719), 1, - anon_sym_LPAREN, - STATE(1044), 1, - sym_function_arguments, - STATE(5407), 2, + ACTIONS(7766), 1, + sym_identifier, + STATE(5585), 1, + sym_qualified_name, + STATE(5497), 2, sym_comment, sym_include, - [282027] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [288838] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - STATE(2369), 1, + STATE(5083), 1, sym__block_terminator, - STATE(5408), 2, + STATE(5498), 2, sym_comment, sym_include, - [282047] = 6, - ACTIONS(65), 1, + [288858] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1854), 1, + sym__block_terminator, + STATE(5499), 2, + sym_comment, + sym_include, + [288878] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7698), 1, + ACTIONS(7768), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(7700), 1, + ACTIONS(7770), 1, aux_sym_procedure_parameter_definition_token2, - STATE(5409), 2, + STATE(5500), 2, sym_comment, sym_include, - [282067] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [288898] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - STATE(1798), 1, - sym__block_terminator, - STATE(5410), 2, + ACTIONS(7772), 1, + aux_sym_using_statement_token2, + ACTIONS(7774), 1, + aux_sym_input_close_statement_token2, + STATE(5501), 2, sym_comment, sym_include, - [282087] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [288918] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(6631), 1, - sym_body, - STATE(5411), 2, + ACTIONS(7772), 1, + aux_sym_using_statement_token2, + ACTIONS(7776), 1, + aux_sym_input_close_statement_token2, + STATE(5502), 2, sym_comment, sym_include, - [282107] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [288938] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - STATE(1799), 1, + STATE(5075), 1, sym__block_terminator, - STATE(5412), 2, + STATE(5503), 2, sym_comment, sym_include, - [282127] = 5, - ACTIONS(65), 1, + [288958] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3851), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5413), 2, + ACTIONS(7778), 1, + sym_identifier, + ACTIONS(7780), 1, + sym__terminator, + STATE(5504), 2, + sym_comment, + sym_include, + [288978] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(7782), 1, + sym_identifier, + ACTIONS(7784), 1, + anon_sym_STAR, + STATE(5505), 2, sym_comment, sym_include, - [282145] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [288998] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - STATE(1722), 1, + STATE(4808), 1, sym__block_terminator, - STATE(5414), 2, + STATE(5506), 2, sym_comment, sym_include, - [282165] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289018] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7702), 1, + ACTIONS(7786), 1, sym__terminator, - ACTIONS(7704), 1, - aux_sym_constructor_definition_token1, - STATE(5415), 2, + ACTIONS(7788), 1, + aux_sym_interface_statement_token1, + STATE(5507), 2, sym_comment, sym_include, - [282185] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289038] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - STATE(1800), 1, + STATE(2416), 1, sym__block_terminator, - STATE(5416), 2, - sym_comment, - sym_include, - [282205] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(7682), 1, - aux_sym_output_stream_statement_token1, - ACTIONS(7706), 1, - aux_sym_input_close_statement_token2, - STATE(5417), 2, + STATE(5508), 2, sym_comment, sym_include, - [282225] = 6, + [289058] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7708), 1, + ACTIONS(7790), 1, sym_identifier, - STATE(5535), 1, + STATE(5616), 1, sym_qualified_name, - STATE(5418), 2, + STATE(5509), 2, sym_comment, sym_include, - [282245] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289078] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7710), 1, + ACTIONS(6798), 1, sym__terminator, - ACTIONS(7712), 1, - aux_sym_finally_statement_token1, - STATE(5419), 2, + ACTIONS(6800), 1, + aux_sym_using_statement_token2, + STATE(5510), 2, sym_comment, sym_include, - [282265] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289098] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - STATE(1801), 1, - sym__block_terminator, - STATE(5420), 2, + ACTIONS(115), 2, + sym__namecolon, + anon_sym_NO_DASHERROR, + STATE(5511), 2, sym_comment, sym_include, - [282285] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289116] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, + ACTIONS(5236), 1, aux_sym__block_terminator_token1, - STATE(1802), 1, + STATE(1866), 1, sym__block_terminator, - STATE(5421), 2, + STATE(5512), 2, sym_comment, sym_include, - [282305] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289136] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - STATE(1803), 1, - sym__block_terminator, - STATE(5422), 2, + ACTIONS(3910), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5513), 2, sym_comment, sym_include, - [282325] = 6, - ACTIONS(3), 1, + [289154] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7714), 1, - sym_identifier, - ACTIONS(7716), 1, - anon_sym_STAR, - STATE(5423), 2, + ACTIONS(7792), 1, + sym__terminator, + ACTIONS(7794), 1, + aux_sym_destructor_definition_token1, + STATE(5514), 2, sym_comment, sym_include, - [282345] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289174] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7718), 1, + ACTIONS(7796), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(7720), 1, + ACTIONS(7798), 1, aux_sym_procedure_parameter_definition_token2, - STATE(5424), 2, + STATE(5515), 2, sym_comment, sym_include, - [282365] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289194] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - STATE(1804), 1, - sym__block_terminator, - STATE(5425), 2, + ACTIONS(7730), 1, + anon_sym_DOT, + ACTIONS(7800), 1, + aux_sym__function_terminator_token1, + STATE(5516), 2, sym_comment, sym_include, - [282385] = 6, - ACTIONS(3), 1, + [289214] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7722), 1, - sym_identifier, - ACTIONS(7724), 1, + ACTIONS(7802), 1, sym__terminator, - STATE(5426), 2, + ACTIONS(7804), 1, + aux_sym_interface_statement_token1, + STATE(5517), 2, sym_comment, sym_include, - [282405] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289234] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5236), 1, aux_sym__block_terminator_token1, - STATE(1716), 1, + STATE(1871), 1, sym__block_terminator, - STATE(5427), 2, + STATE(5518), 2, sym_comment, sym_include, - [282425] = 6, + [289254] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7726), 1, + ACTIONS(7806), 1, sym_identifier, - STATE(5568), 1, - sym_qualified_name, - STATE(5428), 2, + ACTIONS(7808), 1, + sym__terminator, + STATE(5519), 2, sym_comment, sym_include, - [282445] = 6, + [289274] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7728), 1, + ACTIONS(7810), 1, sym_identifier, - ACTIONS(7730), 1, - anon_sym_STAR, - STATE(5429), 2, + ACTIONS(7812), 1, + sym__integer_literal, + STATE(5520), 2, sym_comment, sym_include, - [282465] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289294] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - STATE(1805), 1, - sym__block_terminator, - STATE(5430), 2, + ACTIONS(7814), 1, + sym__terminator, + ACTIONS(7816), 1, + aux_sym_constructor_definition_token1, + STATE(5521), 2, sym_comment, sym_include, - [282485] = 6, - ACTIONS(65), 1, + [289314] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(7818), 1, + sym_identifier, + STATE(5657), 1, + sym_qualified_name, + STATE(5522), 2, + sym_comment, + sym_include, + [289334] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - STATE(1806), 1, + STATE(5033), 1, sym__block_terminator, - STATE(5431), 2, + STATE(5523), 2, + sym_comment, + sym_include, + [289354] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(7820), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(7822), 1, + aux_sym_procedure_parameter_definition_token2, + STATE(5524), 2, sym_comment, sym_include, - [282505] = 6, - ACTIONS(65), 1, + [289374] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(7824), 1, + sym__terminator, + ACTIONS(7826), 1, + aux_sym_class_type_token1, + STATE(5525), 2, + sym_comment, + sym_include, + [289394] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - STATE(1807), 1, + STATE(4780), 1, sym__block_terminator, - STATE(5432), 2, + STATE(5526), 2, sym_comment, sym_include, - [282525] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289414] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7732), 1, - anon_sym_COMMA, - ACTIONS(7734), 1, - aux_sym_on_error_phrase_token3, - STATE(5433), 2, + ACTIONS(6808), 1, + anon_sym_LPAREN, + STATE(5601), 1, + sym_function_arguments, + STATE(5527), 2, sym_comment, sym_include, - [282545] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289434] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(142), 2, - sym__namedoublecolon, - anon_sym_EQ, - STATE(5434), 2, + ACTIONS(7730), 1, + anon_sym_DOT, + ACTIONS(7828), 1, + aux_sym__case_terminator_token1, + STATE(5528), 2, sym_comment, sym_include, - [282563] = 6, - ACTIONS(65), 1, + [289454] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(138), 2, + sym__namecolon, + anon_sym_NO_DASHERROR, + STATE(5529), 2, + sym_comment, + sym_include, + [289472] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6627), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, - STATE(6702), 1, + STATE(6350), 1, sym_function_parameters, - STATE(5435), 2, + STATE(5530), 2, sym_comment, sym_include, - [282583] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289492] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - STATE(1808), 1, - sym__block_terminator, - STATE(5436), 2, + ACTIONS(7830), 1, + sym__terminator, + ACTIONS(7832), 1, + aux_sym_prompt_for_statement_token2, + STATE(5531), 2, sym_comment, sym_include, - [282603] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289512] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - STATE(2430), 1, + STATE(5028), 1, sym__block_terminator, - STATE(5437), 2, + STATE(5532), 2, sym_comment, sym_include, - [282623] = 6, - ACTIONS(65), 1, + [289532] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7736), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(7738), 1, - aux_sym_procedure_parameter_definition_token2, - STATE(5438), 2, + ACTIONS(7834), 1, + sym_identifier, + ACTIONS(7836), 1, + sym__terminator, + STATE(5533), 2, sym_comment, sym_include, - [282643] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289552] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(7740), 1, - aux_sym_getter_token1, - ACTIONS(7742), 1, - aux_sym_setter_token1, - STATE(5439), 2, - sym_comment, - sym_include, - [282663] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6627), 1, - anon_sym_LPAREN, - STATE(6340), 1, - sym_function_parameters, - STATE(5440), 2, + ACTIONS(7838), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5534), 2, sym_comment, sym_include, - [282683] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289570] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7259), 1, - aux_sym_on_stop_phrase_token1, - ACTIONS(7261), 1, - aux_sym_on_quit_phrase_token1, - STATE(5441), 2, + ACTIONS(7840), 1, + sym__terminator, + ACTIONS(7842), 1, + aux_sym_function_call_token1, + STATE(5535), 2, sym_comment, sym_include, - [282703] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289590] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7744), 1, + ACTIONS(138), 2, sym__terminator, - ACTIONS(7746), 1, - aux_sym_finally_statement_token1, - STATE(5442), 2, + anon_sym_NO_DASHERROR, + STATE(5536), 2, sym_comment, sym_include, - [282723] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289608] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - STATE(1810), 1, - sym__block_terminator, - STATE(5443), 2, + ACTIONS(7844), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5537), 2, sym_comment, sym_include, - [282743] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289626] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7748), 1, + ACTIONS(7846), 1, sym__terminator, - ACTIONS(7750), 1, - aux_sym_method_definition_token1, - STATE(5444), 2, + ACTIONS(7848), 1, + aux_sym_function_call_token1, + STATE(5538), 2, sym_comment, sym_include, - [282763] = 6, - ACTIONS(65), 1, + [289646] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7752), 1, - anon_sym_DOT, - ACTIONS(7754), 1, - aux_sym__procedure_terminator_token1, - STATE(5445), 2, + ACTIONS(7850), 1, + sym_identifier, + ACTIONS(7852), 1, + sym__terminator, + STATE(5539), 2, sym_comment, sym_include, - [282783] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289666] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(7488), 2, + anon_sym_COLON, sym__terminator, - ACTIONS(5041), 1, - aux_sym_function_call_token1, - STATE(5446), 2, + STATE(5540), 2, sym_comment, sym_include, - [282803] = 6, + [289684] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7756), 1, + ACTIONS(6674), 1, + anon_sym_COLON, + ACTIONS(7854), 1, sym_identifier, - STATE(5599), 1, - sym_qualified_name, - STATE(5447), 2, + STATE(5541), 2, sym_comment, sym_include, - [282823] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289704] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - STATE(1811), 1, - sym__block_terminator, - STATE(5448), 2, + ACTIONS(7856), 1, + sym__terminator, + ACTIONS(7858), 1, + aux_sym_class_type_token1, + STATE(5542), 2, sym_comment, sym_include, - [282843] = 6, - ACTIONS(65), 1, + [289724] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(142), 2, + sym__namecolon, + anon_sym_NO_DASHERROR, + STATE(5543), 2, + sym_comment, + sym_include, + [289742] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - STATE(1812), 1, + STATE(2163), 1, sym__block_terminator, - STATE(5449), 2, + STATE(5544), 2, sym_comment, sym_include, - [282863] = 6, - ACTIONS(3), 1, + [289762] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7758), 1, - sym_identifier, - STATE(5407), 1, - sym_qualified_name, - STATE(5450), 2, + ACTIONS(7860), 1, + anon_sym_COMMA, + ACTIONS(7862), 1, + aux_sym_on_error_phrase_token3, + STATE(5545), 2, sym_comment, sym_include, - [282883] = 6, - ACTIONS(65), 1, + [289782] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(142), 2, + sym__terminator, + anon_sym_NO_DASHERROR, + STATE(5546), 2, + sym_comment, + sym_include, + [289800] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7760), 1, + ACTIONS(5110), 1, sym__terminator, - ACTIONS(7762), 1, - aux_sym_constructor_definition_token1, - STATE(5451), 2, + ACTIONS(5112), 1, + aux_sym_function_call_token1, + STATE(5547), 2, sym_comment, sym_include, - [282903] = 6, - ACTIONS(65), 1, + [289820] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(6327), 1, + sym_body, + STATE(5548), 2, + sym_comment, + sym_include, + [289840] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7764), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(7766), 1, - aux_sym_procedure_parameter_definition_token2, - STATE(5452), 2, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + STATE(2381), 1, + sym__block_terminator, + STATE(5549), 2, sym_comment, sym_include, - [282923] = 6, + [289860] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7768), 1, + ACTIONS(7864), 1, sym_identifier, - ACTIONS(7770), 1, + ACTIONS(7866), 1, anon_sym_STAR, - STATE(5453), 2, + STATE(5550), 2, sym_comment, sym_include, - [282943] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289880] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - STATE(1815), 1, - sym__block_terminator, - STATE(5454), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(6302), 1, + sym_body, + STATE(5551), 2, sym_comment, sym_include, - [282963] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289900] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7420), 2, - anon_sym_COLON, - sym__terminator, - STATE(5455), 2, + ACTIONS(81), 1, + sym__namecolon, + STATE(10), 1, + aux_sym_object_access_repeat1, + STATE(5552), 2, sym_comment, sym_include, - [282981] = 6, + [289920] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6578), 1, - anon_sym_COLON, - ACTIONS(7772), 1, + ACTIONS(7868), 1, sym_identifier, - STATE(5456), 2, + STATE(2829), 1, + sym_qualified_name, + STATE(5553), 2, sym_comment, sym_include, - [283001] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289940] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7774), 1, - sym__terminator, - ACTIONS(7776), 1, - aux_sym_class_type_token1, - STATE(5457), 2, + ACTIONS(5846), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5554), 2, sym_comment, sym_include, - [283021] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289958] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - STATE(1849), 1, - sym__block_terminator, - STATE(5458), 2, + ACTIONS(7870), 1, + sym__terminator, + ACTIONS(7872), 1, + aux_sym_finally_statement_token1, + STATE(5555), 2, sym_comment, sym_include, - [283041] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [289978] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(5400), 1, - sym_body, - STATE(5459), 2, + ACTIONS(7534), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5556), 2, sym_comment, sym_include, - [283061] = 6, - ACTIONS(3), 1, + [289996] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7778), 1, - sym_identifier, - ACTIONS(7780), 1, - anon_sym_STAR, - STATE(5460), 2, + ACTIONS(7874), 1, + anon_sym_LPAREN, + STATE(4126), 1, + sym_query_fields, + STATE(5557), 2, sym_comment, sym_include, - [283081] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290016] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7123), 2, - anon_sym_COLON, + ACTIONS(7876), 1, sym__terminator, - STATE(5461), 2, + ACTIONS(7878), 1, + aux_sym_interface_statement_token1, + STATE(5558), 2, sym_comment, sym_include, - [283099] = 6, - ACTIONS(3), 1, + [290036] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6522), 1, - anon_sym_COLON, - ACTIONS(7782), 1, - sym_identifier, - STATE(5462), 2, + ACTIONS(6822), 1, + anon_sym_LPAREN, + STATE(1342), 1, + sym_function_arguments, + STATE(5559), 2, sym_comment, sym_include, - [283119] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290056] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7784), 2, - anon_sym_COLON, - aux_sym_inherits_token1, - STATE(5463), 2, + ACTIONS(7874), 1, + anon_sym_LPAREN, + STATE(4442), 1, + sym_query_fields, + STATE(5560), 2, sym_comment, sym_include, - [283137] = 6, - ACTIONS(65), 1, + [290076] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + sym__terminator, + ACTIONS(7882), 1, + aux_sym_getter_token1, + STATE(5561), 2, + sym_comment, + sym_include, + [290096] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, + ACTIONS(5236), 1, aux_sym__block_terminator_token1, - STATE(1817), 1, + STATE(1904), 1, sym__block_terminator, - STATE(5464), 2, + STATE(5562), 2, sym_comment, sym_include, - [283157] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290116] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7786), 2, - anon_sym_COLON, - aux_sym_inherits_token1, - STATE(5465), 2, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + STATE(2156), 1, + sym__block_terminator, + STATE(5563), 2, sym_comment, sym_include, - [283175] = 5, - ACTIONS(65), 1, + [290136] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(138), 2, + ACTIONS(7884), 1, + sym_identifier, + ACTIONS(7886), 1, sym__terminator, - anon_sym_NO_DASHERROR, - STATE(5466), 2, + STATE(5564), 2, sym_comment, sym_include, - [283193] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290156] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7788), 1, - sym__terminator, - ACTIONS(7790), 1, - aux_sym_catch_statement_token1, - STATE(5467), 2, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1925), 1, + sym__block_terminator, + STATE(5565), 2, sym_comment, sym_include, - [283213] = 5, - ACTIONS(65), 1, + [290176] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7792), 2, - aux_sym_using_statement_token3, - aux_sym_using_statement_token4, - STATE(5468), 2, + ACTIONS(7888), 1, + sym_identifier, + STATE(2812), 1, + sym_qualified_name, + STATE(5566), 2, sym_comment, sym_include, - [283231] = 6, - ACTIONS(65), 1, + [290196] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7794), 1, - anon_sym_DOT, - ACTIONS(7796), 1, - aux_sym__procedure_terminator_token1, - STATE(5469), 2, + ACTIONS(7548), 1, + anon_sym_RPAREN, + ACTIONS(7890), 1, + anon_sym_, + STATE(5567), 2, sym_comment, sym_include, - [283251] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290216] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7798), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(5470), 2, + ACTIONS(7892), 1, + sym__terminator, + ACTIONS(7894), 1, + aux_sym_method_definition_token1, + STATE(5568), 2, sym_comment, sym_include, - [283269] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290236] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - STATE(1688), 1, + STATE(4978), 1, sym__block_terminator, - STATE(5471), 2, + STATE(5569), 2, + sym_comment, + sym_include, + [290256] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(7896), 1, + sym__terminator, + ACTIONS(7898), 1, + aux_sym_setter_token1, + STATE(5570), 2, sym_comment, sym_include, - [283289] = 6, + [290276] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7800), 1, + ACTIONS(7900), 1, sym_identifier, - STATE(5832), 1, - sym_qualified_name, - STATE(5472), 2, + ACTIONS(7902), 1, + anon_sym_STAR, + STATE(5571), 2, sym_comment, sym_include, - [283309] = 6, + [290296] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7802), 1, + ACTIONS(7904), 1, sym_identifier, - ACTIONS(7804), 1, - sym__terminator, - STATE(5473), 2, + STATE(6134), 1, + sym_qualified_name, + STATE(5572), 2, sym_comment, sym_include, - [283329] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290316] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(248), 1, + ACTIONS(7906), 1, sym__terminator, - ACTIONS(7806), 1, - anon_sym_NO_DASHERROR, - STATE(5474), 2, + ACTIONS(7908), 1, + aux_sym_catch_statement_token1, + STATE(5573), 2, sym_comment, sym_include, - [283349] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290336] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7678), 1, - aux_sym_on_error_phrase_token1, - STATE(6077), 1, - sym_on_error_phrase, - STATE(5475), 2, + ACTIONS(4464), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5574), 2, sym_comment, sym_include, - [283369] = 6, + [290354] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7808), 1, + ACTIONS(7910), 1, sym_identifier, - STATE(5194), 1, + STATE(6128), 1, sym_qualified_name, - STATE(5476), 2, + STATE(5575), 2, sym_comment, sym_include, - [283389] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290374] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7810), 1, - aux_sym_scope_tuning_token1, - STATE(6188), 1, - sym_new_expression, - STATE(5477), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(6223), 1, + sym_body, + STATE(5576), 2, sym_comment, sym_include, - [283409] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290394] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2416), 1, - sym__block_terminator, - STATE(5478), 2, + ACTIONS(6524), 1, + anon_sym_LPAREN, + STATE(6421), 1, + sym_function_parameters, + STATE(5577), 2, sym_comment, sym_include, - [283429] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290414] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - STATE(1822), 1, - sym__block_terminator, - STATE(5479), 2, + ACTIONS(7720), 1, + aux_sym_on_error_phrase_token1, + STATE(6165), 1, + sym_on_error_phrase, + STATE(5578), 2, sym_comment, sym_include, - [283449] = 6, - ACTIONS(65), 1, + [290434] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(7912), 1, + sym_identifier, + STATE(5252), 1, + sym_qualified_name, + STATE(5579), 2, + sym_comment, + sym_include, + [290454] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(5837), 1, - sym_body, - STATE(5480), 2, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(4976), 1, + sym__block_terminator, + STATE(5580), 2, sym_comment, sym_include, - [283469] = 6, + [290474] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7812), 1, + ACTIONS(7914), 1, sym_identifier, - STATE(5850), 1, - sym_qualified_name, - STATE(5481), 2, + ACTIONS(7916), 1, + anon_sym_COMMA, + STATE(5581), 2, sym_comment, sym_include, - [283489] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290494] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7652), 1, - anon_sym_LPAREN, - STATE(4241), 1, - sym_query_fields, - STATE(5482), 2, + ACTIONS(5775), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(5582), 2, sym_comment, sym_include, - [283509] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290512] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7227), 2, + ACTIONS(4430), 2, anon_sym_COLON, - sym__terminator, - STATE(5483), 2, + anon_sym_COMMA, + STATE(5583), 2, sym_comment, sym_include, - [283527] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290530] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, - aux_sym__block_terminator_token1, - STATE(1682), 1, - sym__block_terminator, - STATE(5484), 2, + ACTIONS(7423), 1, + aux_sym_on_stop_phrase_token1, + ACTIONS(7425), 1, + aux_sym_on_quit_phrase_token1, + STATE(5584), 2, sym_comment, sym_include, - [283547] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290550] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7794), 1, - anon_sym_DOT, - ACTIONS(7814), 1, - aux_sym__function_terminator_token1, - STATE(5485), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(6144), 1, + sym_body, + STATE(5585), 2, sym_comment, sym_include, - [283567] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290570] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - STATE(1825), 1, - sym__block_terminator, - STATE(5486), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(6153), 1, + sym_body, + STATE(5586), 2, sym_comment, sym_include, - [283587] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290590] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7794), 1, - anon_sym_DOT, - ACTIONS(7816), 1, - aux_sym__case_terminator_token1, - STATE(5487), 2, + ACTIONS(7918), 1, + sym__terminator, + ACTIONS(7920), 1, + aux_sym_interface_statement_token1, + STATE(5587), 2, sym_comment, sym_include, - [283607] = 6, + [290610] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7818), 1, + ACTIONS(7922), 1, sym_identifier, - ACTIONS(7820), 1, - sym__integer_literal, - STATE(5488), 2, + STATE(2661), 1, + sym_qualified_name, + STATE(5588), 2, sym_comment, sym_include, - [283627] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290630] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - STATE(2142), 1, + STATE(4956), 1, sym__block_terminator, - STATE(5489), 2, + STATE(5589), 2, sym_comment, sym_include, - [283647] = 5, - ACTIONS(65), 1, + [290650] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1725), 1, + sym__block_terminator, + STATE(5590), 2, + sym_comment, + sym_include, + [290670] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4491), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5490), 2, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1828), 1, + sym__block_terminator, + STATE(5591), 2, sym_comment, sym_include, - [283665] = 6, - ACTIONS(65), 1, + [290690] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1724), 1, + sym__block_terminator, + STATE(5592), 2, + sym_comment, + sym_include, + [290710] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7822), 1, + ACTIONS(115), 2, sym__terminator, - ACTIONS(7824), 1, - aux_sym_interface_statement_token1, - STATE(5491), 2, + anon_sym_NO_DASHERROR, + STATE(5593), 2, sym_comment, sym_include, - [283685] = 6, - ACTIONS(65), 1, + [290728] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1723), 1, + sym__block_terminator, + STATE(5594), 2, + sym_comment, + sym_include, + [290748] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6817), 1, - anon_sym_LPAREN, - STATE(1371), 1, - sym_function_arguments, - STATE(5492), 2, + ACTIONS(7924), 1, + anon_sym_DOT, + ACTIONS(7926), 1, + aux_sym__procedure_terminator_token1, + STATE(5595), 2, sym_comment, sym_include, - [283705] = 6, + [290768] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7826), 1, + ACTIONS(7928), 1, sym_identifier, - STATE(6289), 1, + STATE(2649), 1, sym_qualified_name, - STATE(5493), 2, + STATE(5596), 2, sym_comment, sym_include, - [283725] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290788] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(146), 2, - sym__terminator, - anon_sym_NO_DASHERROR, - STATE(5494), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(5717), 1, + sym_body, + STATE(5597), 2, sym_comment, sym_include, - [283743] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290808] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(5855), 1, + STATE(6096), 1, sym_body, - STATE(5495), 2, + STATE(5598), 2, + sym_comment, + sym_include, + [290828] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + STATE(2147), 1, + sym__block_terminator, + STATE(5599), 2, sym_comment, sym_include, - [283763] = 6, + [290848] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7828), 1, + ACTIONS(7930), 1, sym_identifier, - ACTIONS(7830), 1, - anon_sym_STAR, - STATE(5496), 2, + STATE(6792), 1, + sym_qualified_name, + STATE(5600), 2, sym_comment, sym_include, - [283783] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290868] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7832), 1, + ACTIONS(391), 1, sym__terminator, - ACTIONS(7834), 1, - aux_sym_catch_statement_token1, - STATE(5497), 2, + ACTIONS(7932), 1, + anon_sym_NO_DASHERROR, + STATE(5601), 2, sym_comment, sym_include, - [283803] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290888] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4450), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5498), 2, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + STATE(2266), 1, + sym__block_terminator, + STATE(5602), 2, sym_comment, sym_include, - [283821] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290908] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(5902), 1, anon_sym_COLON, - STATE(6218), 1, - sym_body, - STATE(5499), 2, + STATE(5234), 1, + sym_case_body, + STATE(5603), 2, sym_comment, sym_include, - [283841] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290928] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6159), 1, - anon_sym_COLON, - STATE(5207), 1, - sym_case_body, - STATE(5500), 2, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1722), 1, + sym__block_terminator, + STATE(5604), 2, sym_comment, sym_include, - [283861] = 6, + [290948] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7836), 1, + ACTIONS(7934), 1, sym_identifier, - STATE(3243), 1, + STATE(3266), 1, sym_qualified_name, - STATE(5501), 2, + STATE(5605), 2, sym_comment, sym_include, - [283881] = 6, - ACTIONS(3), 1, + [290968] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7838), 1, - sym_identifier, - ACTIONS(7840), 1, - sym__terminator, - STATE(5502), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(6254), 1, + sym_body, + STATE(5606), 2, sym_comment, sym_include, - [283901] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [290988] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(6193), 1, - sym_body, - STATE(5503), 2, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1819), 1, + sym__block_terminator, + STATE(5607), 2, sym_comment, sym_include, - [283921] = 6, - ACTIONS(3), 1, + [291008] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7842), 1, - sym_identifier, - STATE(3238), 1, - sym_qualified_name, - STATE(5504), 2, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1721), 1, + sym__block_terminator, + STATE(5608), 2, sym_comment, sym_include, - [283941] = 6, + [291028] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7844), 1, + ACTIONS(7936), 1, sym_identifier, - ACTIONS(7846), 1, + ACTIONS(7938), 1, sym__integer_literal, - STATE(5505), 2, + STATE(5609), 2, sym_comment, sym_include, - [283961] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291048] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, + ACTIONS(5236), 1, aux_sym__block_terminator_token1, - STATE(2362), 1, + STATE(1958), 1, sym__block_terminator, - STATE(5506), 2, + STATE(5610), 2, sym_comment, sym_include, - [283981] = 6, - ACTIONS(65), 1, + [291068] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2106), 1, - sym__block_terminator, - STATE(5507), 2, + ACTIONS(7940), 1, + sym_identifier, + ACTIONS(7942), 1, + anon_sym_COMMA, + STATE(5611), 2, sym_comment, sym_include, - [284001] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291088] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7848), 1, + ACTIONS(7944), 1, aux_sym_using_statement_token2, - ACTIONS(7850), 1, + ACTIONS(7946), 1, aux_sym_input_close_statement_token2, - STATE(5508), 2, + STATE(5612), 2, sym_comment, sym_include, - [284021] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291108] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7848), 1, + ACTIONS(7944), 1, aux_sym_using_statement_token2, - ACTIONS(7852), 1, + ACTIONS(7948), 1, aux_sym_input_close_statement_token2, - STATE(5509), 2, + STATE(5613), 2, sym_comment, sym_include, - [284041] = 6, - ACTIONS(3), 1, + [291128] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7854), 1, - sym_identifier, - STATE(2682), 1, - sym_qualified_name, - STATE(5510), 2, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1714), 1, + sym__block_terminator, + STATE(5614), 2, sym_comment, sym_include, - [284061] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291148] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7856), 1, - anon_sym_DOT, - ACTIONS(7858), 1, - aux_sym__case_terminator_token1, - STATE(5511), 2, + ACTIONS(7950), 2, + anon_sym_COLON, + aux_sym_inherits_token1, + STATE(5615), 2, sym_comment, sym_include, - [284081] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291166] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, - aux_sym__block_terminator_token1, - STATE(1669), 1, - sym__block_terminator, - STATE(5512), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(6342), 1, + sym_body, + STATE(5616), 2, sym_comment, sym_include, - [284101] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291186] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7856), 1, - anon_sym_DOT, - ACTIONS(7860), 1, - aux_sym__function_terminator_token1, - STATE(5513), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(6363), 1, + sym_body, + STATE(5617), 2, sym_comment, sym_include, - [284121] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291206] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7862), 1, - sym__terminator, - ACTIONS(7864), 1, - aux_sym_prompt_for_statement_token2, - STATE(5514), 2, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(4910), 1, + sym__block_terminator, + STATE(5618), 2, sym_comment, sym_include, - [284141] = 6, - ACTIONS(3), 1, + [291226] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7866), 1, - sym_identifier, - STATE(2583), 1, - sym_qualified_name, - STATE(5515), 2, + ACTIONS(6866), 1, + sym__terminator, + ACTIONS(6868), 1, + aux_sym_using_statement_token2, + STATE(5619), 2, sym_comment, sym_include, - [284161] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291246] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7425), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5516), 2, + ACTIONS(7952), 2, + anon_sym_COLON, + aux_sym_inherits_token1, + STATE(5620), 2, sym_comment, sym_include, - [284179] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291264] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7868), 1, + ACTIONS(7954), 1, aux_sym_input_close_statement_token2, - ACTIONS(7870), 1, + ACTIONS(7956), 1, aux_sym_output_stream_statement_token1, - STATE(5517), 2, + STATE(5621), 2, sym_comment, sym_include, - [284199] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291284] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7870), 1, + ACTIONS(7956), 1, aux_sym_output_stream_statement_token1, - ACTIONS(7872), 1, + ACTIONS(7958), 1, aux_sym_input_close_statement_token2, - STATE(5518), 2, + STATE(5622), 2, sym_comment, sym_include, - [284219] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291304] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7874), 1, + ACTIONS(7960), 1, anon_sym_COMMA, - ACTIONS(7876), 1, + ACTIONS(7962), 1, aux_sym_on_error_phrase_token3, - STATE(5519), 2, + STATE(5623), 2, sym_comment, sym_include, - [284239] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291324] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7133), 1, + ACTIONS(7484), 1, aux_sym_on_stop_phrase_token1, - ACTIONS(7135), 1, + ACTIONS(7515), 1, aux_sym_on_quit_phrase_token1, - STATE(5520), 2, + STATE(5624), 2, sym_comment, sym_include, - [284259] = 6, - ACTIONS(65), 1, + [291344] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, - aux_sym__block_terminator_token1, - STATE(1652), 1, - sym__block_terminator, - STATE(5521), 2, + ACTIONS(7964), 1, + sym_identifier, + STATE(2720), 1, + sym_qualified_name, + STATE(5625), 2, sym_comment, sym_include, - [284279] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291364] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7878), 2, + ACTIONS(7966), 2, aux_sym_using_statement_token3, aux_sym_using_statement_token4, - STATE(5522), 2, + STATE(5626), 2, sym_comment, sym_include, - [284297] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291382] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(1827), 1, + STATE(1713), 1, sym__block_terminator, - STATE(5523), 2, + STATE(5627), 2, sym_comment, sym_include, - [284317] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291402] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6855), 1, - anon_sym_LPAREN, - STATE(2871), 1, - sym_function_arguments, - STATE(5524), 2, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1955), 1, + sym__block_terminator, + STATE(5628), 2, sym_comment, sym_include, - [284337] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291422] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7880), 2, + ACTIONS(7968), 2, aux_sym_on_error_phrase_token2, aux_sym_on_error_phrase_token7, - STATE(5525), 2, + STATE(5629), 2, sym_comment, sym_include, - [284355] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291440] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7810), 1, + ACTIONS(7970), 1, aux_sym_scope_tuning_token1, - STATE(6128), 1, + STATE(6287), 1, sym_new_expression, - STATE(5526), 2, + STATE(5630), 2, sym_comment, sym_include, - [284375] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291460] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(5907), 1, + STATE(5980), 1, sym_body, - STATE(5527), 2, + STATE(5631), 2, sym_comment, sym_include, - [284395] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291480] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(1832), 1, + STATE(1711), 1, sym__block_terminator, - STATE(5528), 2, + STATE(5632), 2, sym_comment, sym_include, - [284415] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291500] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7882), 1, - sym__terminator, - ACTIONS(7884), 1, - aux_sym_function_call_token1, - STATE(5529), 2, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1811), 1, + sym__block_terminator, + STATE(5633), 2, sym_comment, sym_include, - [284435] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291520] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(6114), 1, - sym_body, - STATE(5530), 2, + ACTIONS(7972), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(5634), 2, sym_comment, sym_include, - [284455] = 6, + [291538] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7886), 1, + ACTIONS(7974), 1, sym_identifier, - ACTIONS(7888), 1, - anon_sym_COMMA, - STATE(5531), 2, + STATE(2747), 1, + sym_qualified_name, + STATE(5635), 2, sym_comment, sym_include, - [284475] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291558] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(5912), 1, + STATE(5973), 1, sym_body, - STATE(5532), 2, + STATE(5636), 2, sym_comment, sym_include, - [284495] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291578] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7890), 1, - sym__terminator, - ACTIONS(7892), 1, - aux_sym_catch_statement_token1, - STATE(5533), 2, + ACTIONS(7976), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(5637), 2, sym_comment, sym_include, - [284515] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291596] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2377), 1, - sym__block_terminator, - STATE(5534), 2, + ACTIONS(6886), 1, + anon_sym_LPAREN, + STATE(59), 1, + sym_function_arguments, + STATE(5638), 2, sym_comment, sym_include, - [284535] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291616] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(6029), 1, - sym_body, - STATE(5535), 2, + ACTIONS(7978), 2, + aux_sym_using_statement_token3, + aux_sym_using_statement_token4, + STATE(5639), 2, sym_comment, sym_include, - [284555] = 6, + [291634] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7894), 1, + ACTIONS(7980), 1, sym_identifier, - STATE(121), 1, + STATE(117), 1, sym_qualified_name, - STATE(5536), 2, + STATE(5640), 2, sym_comment, sym_include, - [284575] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291654] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - STATE(1837), 1, - sym__block_terminator, - STATE(5537), 2, + ACTIONS(4626), 1, + anon_sym_LPAREN, + STATE(3531), 1, + sym_function_arguments, + STATE(5641), 2, sym_comment, sym_include, - [284595] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291674] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(6051), 1, - sym_body, - STATE(5538), 2, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + STATE(2091), 1, + sym__block_terminator, + STATE(5642), 2, sym_comment, sym_include, - [284615] = 6, + [291694] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7896), 1, + ACTIONS(7982), 1, sym_identifier, - STATE(4465), 1, + STATE(4553), 1, sym_qualified_name, - STATE(5539), 2, + STATE(5643), 2, sym_comment, sym_include, - [284635] = 6, - ACTIONS(3), 1, + [291714] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7898), 1, - sym_identifier, - ACTIONS(7900), 1, - anon_sym_STAR, - STATE(5540), 2, + ACTIONS(6888), 1, + anon_sym_LPAREN, + STATE(2599), 1, + sym_function_arguments, + STATE(5644), 2, sym_comment, sym_include, - [284655] = 6, - ACTIONS(65), 1, + [291734] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(7984), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(5645), 2, + sym_comment, + sym_include, + [291752] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - STATE(2087), 1, + STATE(2274), 1, sym__block_terminator, - STATE(5541), 2, + STATE(5646), 2, sym_comment, sym_include, - [284675] = 6, + [291772] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7902), 1, + ACTIONS(7986), 1, sym_identifier, - STATE(2566), 1, - sym_qualified_name, - STATE(5542), 2, + ACTIONS(7988), 1, + anon_sym_STAR, + STATE(5647), 2, sym_comment, sym_include, - [284695] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291792] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6673), 1, - sym__escaped_string, - STATE(3211), 1, - sym_string_literal, - STATE(5543), 2, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1683), 1, + sym__block_terminator, + STATE(5648), 2, sym_comment, sym_include, - [284715] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291812] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(150), 2, - sym__terminator, - anon_sym_NO_DASHERROR, - STATE(5544), 2, + ACTIONS(2467), 1, + sym__namecolon, + STATE(1309), 1, + aux_sym_object_access_repeat1, + STATE(5649), 2, sym_comment, sym_include, - [284733] = 5, - ACTIONS(65), 1, + [291832] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7904), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(5545), 2, + ACTIONS(7990), 1, + sym_identifier, + STATE(4587), 1, + sym_qualified_name, + STATE(5650), 2, sym_comment, sym_include, - [284751] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291852] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7906), 1, - sym__terminator, - ACTIONS(7908), 1, - aux_sym_class_type_token1, - STATE(5546), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(6408), 1, + sym_body, + STATE(5651), 2, sym_comment, sym_include, - [284771] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291872] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(1840), 1, + STATE(1908), 1, sym__block_terminator, - STATE(5547), 2, + STATE(5652), 2, sym_comment, sym_include, - [284791] = 6, - ACTIONS(65), 1, + [291892] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(5803), 1, - sym_body, - STATE(5548), 2, + ACTIONS(7992), 1, + sym_identifier, + ACTIONS(7994), 1, + anon_sym_COMMA, + STATE(5653), 2, sym_comment, sym_include, - [284811] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291912] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(2378), 1, + STATE(1670), 1, sym__block_terminator, - STATE(5549), 2, + STATE(5654), 2, sym_comment, sym_include, - [284831] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291932] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(7856), 1, - anon_sym_DOT, - ACTIONS(7910), 1, - aux_sym__procedure_terminator_token1, - STATE(5550), 2, - sym_comment, - sym_include, - [284851] = 6, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4338), 1, - anon_sym_RPAREN, - ACTIONS(4340), 1, - anon_sym_, - STATE(5551), 2, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1669), 1, + sym__block_terminator, + STATE(5655), 2, sym_comment, sym_include, - [284871] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291952] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6855), 1, - anon_sym_LPAREN, - STATE(2914), 1, - sym_function_arguments, - STATE(5552), 2, + ACTIONS(7996), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(5656), 2, sym_comment, sym_include, - [284891] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [291970] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - STATE(1824), 1, - sym__block_terminator, - STATE(5553), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(6471), 1, + sym_body, + STATE(5657), 2, sym_comment, sym_include, - [284911] = 6, + [291990] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7912), 1, + ACTIONS(7998), 1, sym_identifier, - ACTIONS(7914), 1, + ACTIONS(8000), 1, anon_sym_COMMA, - STATE(5554), 2, + STATE(5658), 2, sym_comment, sym_include, - [284931] = 6, + [292010] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7916), 1, + ACTIONS(8002), 1, sym_identifier, - ACTIONS(7918), 1, + ACTIONS(8004), 1, anon_sym_COMMA, - STATE(5555), 2, + STATE(5659), 2, sym_comment, sym_include, - [284951] = 6, + [292030] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7920), 1, + ACTIONS(8006), 1, sym_identifier, - ACTIONS(7922), 1, + ACTIONS(8008), 1, anon_sym_COMMA, - STATE(5556), 2, + STATE(5660), 2, sym_comment, sym_include, - [284971] = 6, - ACTIONS(3), 1, + [292050] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7924), 1, - sym_identifier, - STATE(2579), 1, - sym_qualified_name, - STATE(5557), 2, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1665), 1, + sym__block_terminator, + STATE(5661), 2, sym_comment, sym_include, - [284991] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292070] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - STATE(1842), 1, - sym__block_terminator, - STATE(5558), 2, + ACTIONS(7700), 1, + aux_sym_output_stream_statement_token1, + ACTIONS(8010), 1, + aux_sym_input_close_statement_token2, + STATE(5662), 2, sym_comment, sym_include, - [285011] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292090] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7926), 2, + ACTIONS(8012), 2, aux_sym_on_error_phrase_token2, aux_sym_on_error_phrase_token7, - STATE(5559), 2, + STATE(5663), 2, sym_comment, sym_include, - [285029] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292108] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7810), 1, + ACTIONS(7970), 1, aux_sym_scope_tuning_token1, - STATE(6044), 1, + STATE(6346), 1, sym_new_expression, - STATE(5560), 2, + STATE(5664), 2, sym_comment, sym_include, - [285049] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292128] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(6017), 1, + STATE(5790), 1, sym_body, - STATE(5561), 2, + STATE(5665), 2, sym_comment, sym_include, - [285069] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292148] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(2368), 1, + STATE(2018), 1, sym__block_terminator, - STATE(5562), 2, + STATE(5666), 2, sym_comment, sym_include, - [285089] = 5, - ACTIONS(65), 1, + [292168] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7928), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5563), 2, + ACTIONS(8014), 1, + sym_identifier, + ACTIONS(8016), 1, + anon_sym_STAR, + STATE(5667), 2, sym_comment, sym_include, - [285107] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292188] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(6120), 1, - sym_body, - STATE(5564), 2, + ACTIONS(7970), 1, + aux_sym_scope_tuning_token1, + STATE(6252), 1, + sym_new_expression, + STATE(5668), 2, sym_comment, sym_include, - [285127] = 6, - ACTIONS(3), 1, + [292208] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7930), 1, - sym_identifier, - ACTIONS(7932), 1, - anon_sym_COMMA, - STATE(5565), 2, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1655), 1, + sym__block_terminator, + STATE(5669), 2, sym_comment, sym_include, - [285147] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292228] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - STATE(1635), 1, + STATE(2364), 1, sym__block_terminator, - STATE(5566), 2, + STATE(5670), 2, sym_comment, sym_include, - [285167] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292248] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7934), 1, - sym__terminator, - ACTIONS(7936), 1, - aux_sym_getter_token1, - STATE(5567), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(6018), 1, + sym_body, + STATE(5671), 2, sym_comment, sym_include, - [285187] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292268] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(6202), 1, + STATE(6496), 1, sym_body, - STATE(5568), 2, + STATE(5672), 2, sym_comment, sym_include, - [285207] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292288] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7225), 1, - sym__terminator, - ACTIONS(7938), 1, - aux_sym_setter_token1, - STATE(5569), 2, + ACTIONS(4640), 1, + sym__namecolon, + STATE(5254), 1, + aux_sym_object_access_repeat1, + STATE(5673), 2, sym_comment, sym_include, - [285227] = 6, + [292308] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7940), 1, + ACTIONS(8018), 1, sym_identifier, - STATE(6034), 1, + STATE(6371), 1, sym_qualified_name, - STATE(5570), 2, + STATE(5674), 2, sym_comment, sym_include, - [285247] = 6, + [292328] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7942), 1, + ACTIONS(8020), 1, sym_identifier, - STATE(4497), 1, + STATE(4537), 1, sym_qualified_name, - STATE(5571), 2, + STATE(5675), 2, + sym_comment, + sym_include, + [292348] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(8022), 1, + anon_sym_DOT, + ACTIONS(8024), 1, + aux_sym__procedure_terminator_token1, + STATE(5676), 2, sym_comment, sym_include, - [285267] = 6, + [292368] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7944), 1, + ACTIONS(8026), 1, sym_identifier, - ACTIONS(7946), 1, - anon_sym_STAR, - STATE(5572), 2, + STATE(2636), 1, + sym_qualified_name, + STATE(5677), 2, sym_comment, sym_include, - [285287] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292388] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(1633), 1, + STATE(1639), 1, sym__block_terminator, - STATE(5573), 2, + STATE(5678), 2, sym_comment, sym_include, - [285307] = 6, - ACTIONS(65), 1, + [292408] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2065), 1, - sym__block_terminator, - STATE(5574), 2, + ACTIONS(8028), 1, + sym_identifier, + STATE(6377), 1, + sym_qualified_name, + STATE(5679), 2, sym_comment, sym_include, - [285327] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292428] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4407), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5575), 2, + ACTIONS(6884), 1, + anon_sym_LPAREN, + STATE(5482), 1, + sym_function_arguments, + STATE(5680), 2, sym_comment, sym_include, - [285345] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292448] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(6234), 1, - sym_body, - STATE(5576), 2, + ACTIONS(8030), 1, + sym__terminator, + ACTIONS(8032), 1, + aux_sym_catch_statement_token1, + STATE(5681), 2, sym_comment, sym_include, - [285365] = 6, - ACTIONS(3), 1, + [292468] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7948), 1, - sym_identifier, - STATE(2632), 1, - sym_qualified_name, - STATE(5577), 2, + ACTIONS(7509), 2, + anon_sym_COLON, + sym__terminator, + STATE(5682), 2, sym_comment, sym_include, - [285385] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292486] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - STATE(2371), 1, + STATE(4639), 1, sym__block_terminator, - STATE(5578), 2, + STATE(5683), 2, sym_comment, sym_include, - [285405] = 5, - ACTIONS(3), 1, + [292506] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7950), 2, - sym_identifier, - aux_sym_run_tuning_token6, - STATE(5579), 2, + ACTIONS(6526), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5684), 2, sym_comment, sym_include, - [285423] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292524] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7952), 1, - sym__escaped_string, - STATE(3621), 1, - sym_string_literal, - STATE(5580), 2, + ACTIONS(7478), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5685), 2, sym_comment, sym_include, - [285443] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292542] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4423), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5581), 2, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(4721), 1, + sym__block_terminator, + STATE(5686), 2, sym_comment, sym_include, - [285461] = 6, - ACTIONS(65), 1, + [292562] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7954), 1, - sym__terminator, - ACTIONS(7956), 1, - aux_sym_interface_statement_token1, - STATE(5582), 2, + ACTIONS(8034), 1, + sym_identifier, + STATE(2663), 1, + sym_qualified_name, + STATE(5687), 2, sym_comment, sym_include, - [285481] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292582] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(2372), 1, + STATE(1634), 1, sym__block_terminator, - STATE(5583), 2, + STATE(5688), 2, sym_comment, sym_include, - [285501] = 6, + [292602] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6470), 1, + ACTIONS(6692), 1, anon_sym_COLON, - ACTIONS(7958), 1, + ACTIONS(8036), 1, sym_identifier, - STATE(5584), 2, + STATE(5689), 2, sym_comment, sym_include, - [285521] = 6, - ACTIONS(65), 1, + [292622] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7960), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(7962), 1, - aux_sym_procedure_parameter_definition_token2, - STATE(5585), 2, + ACTIONS(8038), 1, + sym_identifier, + STATE(3008), 1, + sym_qualified_name, + STATE(5690), 2, sym_comment, sym_include, - [285541] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292642] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7652), 1, - anon_sym_LPAREN, - STATE(4204), 1, - sym_query_fields, - STATE(5586), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(5843), 1, + sym_body, + STATE(5691), 2, sym_comment, sym_include, - [285561] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292662] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(7345), 2, anon_sym_COLON, - STATE(5994), 1, - sym_body, - STATE(5587), 2, + anon_sym_COMMA, + STATE(5692), 2, sym_comment, sym_include, - [285581] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292680] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7652), 1, - anon_sym_LPAREN, - STATE(4135), 1, - sym_query_fields, - STATE(5588), 2, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1630), 1, + sym__block_terminator, + STATE(5693), 2, sym_comment, sym_include, - [285601] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292700] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7085), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5589), 2, + ACTIONS(6888), 1, + anon_sym_LPAREN, + STATE(2694), 1, + sym_function_arguments, + STATE(5694), 2, sym_comment, sym_include, - [285619] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292720] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, - sym__terminator, - ACTIONS(5055), 1, - aux_sym_function_call_token1, - STATE(5590), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(5837), 1, + sym_body, + STATE(5695), 2, sym_comment, sym_include, - [285639] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292740] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(5991), 1, + STATE(6588), 1, sym_body, - STATE(5591), 2, + STATE(5696), 2, sym_comment, sym_include, - [285659] = 6, - ACTIONS(3), 1, + [292760] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7964), 1, - sym_identifier, - STATE(2649), 1, - sym_qualified_name, - STATE(5592), 2, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + STATE(2131), 1, + sym__block_terminator, + STATE(5697), 2, sym_comment, sym_include, - [285679] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292780] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(1597), 1, + STATE(1629), 1, sym__block_terminator, - STATE(5593), 2, + STATE(5698), 2, sym_comment, sym_include, - [285699] = 6, + [292800] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7966), 1, + ACTIONS(8040), 1, sym_identifier, - STATE(2537), 1, - sym_qualified_name, - STATE(5594), 2, + ACTIONS(8042), 1, + anon_sym_STAR, + STATE(5699), 2, sym_comment, sym_include, - [285719] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292820] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(5830), 2, anon_sym_COLON, - STATE(6298), 1, - sym_body, - STATE(5595), 2, + anon_sym_COMMA, + STATE(5700), 2, + sym_comment, + sym_include, + [292838] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(2736), 1, + sym__namecolon, + STATE(2436), 1, + aux_sym_object_access_repeat1, + STATE(5701), 2, + sym_comment, + sym_include, + [292858] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(8044), 1, + sym__terminator, + ACTIONS(8046), 1, + aux_sym_destructor_definition_token1, + STATE(5702), 2, sym_comment, sym_include, - [285739] = 6, + [292878] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7968), 1, + ACTIONS(8048), 1, sym_identifier, - ACTIONS(7970), 1, + ACTIONS(8050), 1, anon_sym_COMMA, - STATE(5596), 2, + STATE(5703), 2, sym_comment, sym_include, - [285759] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292898] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7972), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(5597), 2, + ACTIONS(8052), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(8054), 1, + aux_sym_procedure_parameter_definition_token2, + STATE(5704), 2, sym_comment, sym_include, - [285777] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292918] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6994), 1, - anon_sym_LPAREN, - STATE(861), 1, - sym_function_arguments, - STATE(5598), 2, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(4673), 1, + sym__block_terminator, + STATE(5705), 2, sym_comment, sym_include, - [285797] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292938] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(6388), 1, + STATE(6148), 1, sym_body, - STATE(5599), 2, + STATE(5706), 2, sym_comment, sym_include, - [285817] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [292958] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - STATE(1860), 1, + STATE(2386), 1, sym__block_terminator, - STATE(5600), 2, + STATE(5707), 2, sym_comment, sym_include, - [285837] = 6, - ACTIONS(65), 1, + [292978] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(7874), 1, + anon_sym_LPAREN, + STATE(4061), 1, + sym_query_fields, + STATE(5708), 2, + sym_comment, + sym_include, + [292998] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(6445), 1, - sym_body, - STATE(5601), 2, + ACTIONS(7874), 1, + anon_sym_LPAREN, + STATE(4490), 1, + sym_query_fields, + STATE(5709), 2, sym_comment, sym_include, - [285857] = 6, + [293018] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7974), 1, + ACTIONS(8056), 1, sym_identifier, - STATE(2706), 1, + STATE(6414), 1, sym_qualified_name, - STATE(5602), 2, + STATE(5710), 2, sym_comment, sym_include, - [285877] = 6, - ACTIONS(65), 1, + [293038] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(8058), 1, + sym_identifier, + STATE(3290), 1, + sym_qualified_name, + STATE(5711), 2, + sym_comment, + sym_include, + [293058] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5236), 1, aux_sym__block_terminator_token1, - STATE(1569), 1, + STATE(1812), 1, sym__block_terminator, - STATE(5603), 2, + STATE(5712), 2, sym_comment, sym_include, - [285897] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293078] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7652), 1, - anon_sym_LPAREN, - STATE(4123), 1, - sym_query_fields, - STATE(5604), 2, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + STATE(2010), 1, + sym__block_terminator, + STATE(5713), 2, sym_comment, sym_include, - [285917] = 6, - ACTIONS(65), 1, + [293098] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1810), 1, + sym__block_terminator, + STATE(5714), 2, + sym_comment, + sym_include, + [293118] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7652), 1, - anon_sym_LPAREN, - STATE(4307), 1, - sym_query_fields, - STATE(5605), 2, + ACTIONS(142), 2, + sym__terminator, + aux_sym_function_call_token1, + STATE(5715), 2, sym_comment, sym_include, - [285937] = 6, + [293136] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7976), 1, + ACTIONS(108), 2, + sym__namedot, sym_identifier, - STATE(6066), 1, - sym_qualified_name, - STATE(5606), 2, + STATE(5716), 2, sym_comment, sym_include, - [285957] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293154] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7978), 1, - sym__terminator, - ACTIONS(7980), 1, - aux_sym_interface_statement_token1, - STATE(5607), 2, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + STATE(2285), 1, + sym__block_terminator, + STATE(5717), 2, sym_comment, sym_include, - [285977] = 6, - ACTIONS(65), 1, + [293174] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(5779), 1, + sym_body, + STATE(5718), 2, + sym_comment, + sym_include, + [293194] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2382), 1, - sym__block_terminator, - STATE(5608), 2, + ACTIONS(8060), 1, + sym__terminator, + ACTIONS(8062), 1, + aux_sym_catch_statement_token1, + STATE(5719), 2, sym_comment, sym_include, - [285997] = 6, - ACTIONS(3), 1, + [293214] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7982), 1, - sym_identifier, - ACTIONS(7984), 1, - anon_sym_STAR, - STATE(5609), 2, + ACTIONS(4420), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5720), 2, + sym_comment, + sym_include, + [293232] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + STATE(2358), 1, + sym__block_terminator, + STATE(5721), 2, sym_comment, sym_include, - [286017] = 6, + [293252] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7986), 1, + ACTIONS(8064), 1, sym_identifier, - STATE(2727), 1, + STATE(2887), 1, sym_qualified_name, - STATE(5610), 2, + STATE(5722), 2, sym_comment, sym_include, - [286037] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293272] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(6186), 1, - sym_body, - STATE(5611), 2, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(4640), 1, + sym__block_terminator, + STATE(5723), 2, sym_comment, sym_include, - [286057] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293292] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2384), 1, - sym__block_terminator, - STATE(5612), 2, + ACTIONS(6974), 1, + anon_sym_LPAREN, + STATE(333), 1, + sym_function_arguments, + STATE(5724), 2, sym_comment, sym_include, - [286077] = 6, + [293312] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7988), 1, + ACTIONS(8066), 1, sym_identifier, - STATE(5338), 1, + STATE(5559), 1, sym_qualified_name, - STATE(5613), 2, + STATE(5725), 2, sym_comment, sym_include, - [286097] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293332] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(5958), 1, - sym_body, - STATE(5614), 2, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(5113), 1, + sym__block_terminator, + STATE(5726), 2, sym_comment, sym_include, - [286117] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293352] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, + ACTIONS(5236), 1, aux_sym__block_terminator_token1, - STATE(1867), 1, + STATE(1807), 1, sym__block_terminator, - STATE(5615), 2, + STATE(5727), 2, sym_comment, sym_include, - [286137] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293372] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6492), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5616), 2, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2011), 1, + sym__block_terminator, + STATE(5728), 2, sym_comment, sym_include, - [286155] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293392] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(6555), 1, - sym_body, - STATE(5617), 2, + ACTIONS(7874), 1, + anon_sym_LPAREN, + STATE(4147), 1, + sym_query_fields, + STATE(5729), 2, sym_comment, sym_include, - [286175] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293412] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7990), 1, - sym__terminator, - ACTIONS(7992), 1, - aux_sym_catch_statement_token1, - STATE(5618), 2, + ACTIONS(7874), 1, + anon_sym_LPAREN, + STATE(4478), 1, + sym_query_fields, + STATE(5730), 2, sym_comment, sym_include, - [286195] = 6, + [293432] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7994), 1, + ACTIONS(8068), 1, sym_identifier, - ACTIONS(7996), 1, - anon_sym_COMMA, - STATE(5619), 2, + STATE(5644), 1, + sym_qualified_name, + STATE(5731), 2, sym_comment, sym_include, - [286215] = 6, + [293452] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7998), 1, + ACTIONS(8070), 1, sym_identifier, - STATE(4176), 1, - sym_qualified_name, - STATE(5620), 2, + ACTIONS(8072), 1, + sym__integer_literal, + STATE(5732), 2, sym_comment, sym_include, - [286235] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293472] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7012), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5621), 2, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2059), 1, + sym__block_terminator, + STATE(5733), 2, sym_comment, sym_include, - [286253] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293492] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(6649), 1, - sym_body, - STATE(5622), 2, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2019), 1, + sym__block_terminator, + STATE(5734), 2, sym_comment, sym_include, - [286273] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293512] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7601), 2, - sym__terminator, - aux_sym_output_stream_statement_token1, - STATE(5623), 2, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2020), 1, + sym__block_terminator, + STATE(5735), 2, sym_comment, sym_include, - [286291] = 6, + [293532] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8000), 1, + ACTIONS(8074), 1, sym_identifier, - STATE(123), 1, - sym_qualified_name, - STATE(5624), 2, + ACTIONS(8076), 1, + anon_sym_STAR, + STATE(5736), 2, sym_comment, sym_include, - [286311] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293552] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(7652), 1, - anon_sym_LPAREN, - STATE(4052), 1, - sym_query_fields, - STATE(5625), 2, - sym_comment, - sym_include, - [286331] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7652), 1, - anon_sym_LPAREN, - STATE(4260), 1, - sym_query_fields, - STATE(5626), 2, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2021), 1, + sym__block_terminator, + STATE(5737), 2, sym_comment, sym_include, - [286351] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293572] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(6648), 1, - sym_body, - STATE(5627), 2, - sym_comment, - sym_include, - [286371] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8002), 1, - aux_sym_image_phrase_token7, - ACTIONS(8004), 1, - aux_sym_image_phrase_token9, - STATE(5628), 2, + ACTIONS(2750), 1, + sym__namecolon, + STATE(2454), 1, + aux_sym_object_access_repeat1, + STATE(5738), 2, sym_comment, sym_include, - [286391] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293592] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6627), 1, - anon_sym_LPAREN, - STATE(5331), 1, - sym_function_parameters, - STATE(5629), 2, + ACTIONS(8078), 1, + sym__terminator, + ACTIONS(8080), 1, + aux_sym_catch_statement_token1, + STATE(5739), 2, sym_comment, sym_include, - [286411] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293612] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8006), 1, - aux_sym_primitive_type_token1, - ACTIONS(8008), 1, - aux_sym_event_definition_token2, - STATE(5630), 2, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2024), 1, + sym__block_terminator, + STATE(5740), 2, sym_comment, sym_include, - [286431] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293632] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(1554), 1, + STATE(2025), 1, sym__block_terminator, - STATE(5631), 2, + STATE(5741), 2, sym_comment, sym_include, - [286451] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293652] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(1869), 1, + STATE(2027), 1, sym__block_terminator, - STATE(5632), 2, + STATE(5742), 2, sym_comment, sym_include, - [286471] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293672] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(1552), 1, + STATE(2028), 1, sym__block_terminator, - STATE(5633), 2, + STATE(5743), 2, sym_comment, sym_include, - [286491] = 6, - ACTIONS(3), 1, + [293692] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8010), 1, - sym_identifier, - STATE(2577), 1, - sym_qualified_name, - STATE(5634), 2, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2031), 1, + sym__block_terminator, + STATE(5744), 2, sym_comment, sym_include, - [286511] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293712] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, - aux_sym__block_terminator_token1, - STATE(1549), 1, - sym__block_terminator, - STATE(5635), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(5751), 1, + sym_body, + STATE(5745), 2, sym_comment, sym_include, - [286531] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293732] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6627), 1, + ACTIONS(7874), 1, anon_sym_LPAREN, - STATE(6621), 1, - sym_function_parameters, - STATE(5636), 2, + STATE(4475), 1, + sym_query_fields, + STATE(5746), 2, sym_comment, sym_include, - [286551] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293752] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8012), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5637), 2, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1614), 1, + sym__block_terminator, + STATE(5747), 2, sym_comment, sym_include, - [286569] = 6, + [293772] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8014), 1, + ACTIONS(8082), 1, sym_identifier, - STATE(5492), 1, + STATE(5694), 1, sym_qualified_name, - STATE(5638), 2, + STATE(5748), 2, sym_comment, sym_include, - [286589] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293792] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(7043), 1, - anon_sym_LPAREN, - STATE(2752), 1, - sym_function_arguments, - STATE(5639), 2, - sym_comment, - sym_include, - [286609] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(2037), 1, + STATE(2033), 1, sym__block_terminator, - STATE(5640), 2, + STATE(5749), 2, sym_comment, sym_include, - [286629] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293812] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(5929), 1, - sym_body, - STATE(5641), 2, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2036), 1, + sym__block_terminator, + STATE(5750), 2, sym_comment, sym_include, - [286649] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293832] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7652), 1, - anon_sym_LPAREN, - STATE(4255), 1, - sym_query_fields, - STATE(5642), 2, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2040), 1, + sym__block_terminator, + STATE(5751), 2, sym_comment, sym_include, - [286669] = 6, + [293852] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8016), 1, + ACTIONS(8084), 1, sym_identifier, - ACTIONS(8018), 1, + ACTIONS(8086), 1, sym__integer_literal, - STATE(5643), 2, + STATE(5752), 2, sym_comment, sym_include, - [286689] = 6, - ACTIONS(3), 1, + [293872] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8020), 1, - sym_identifier, - STATE(5524), 1, - sym_qualified_name, - STATE(5644), 2, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1798), 1, + sym__block_terminator, + STATE(5753), 2, sym_comment, sym_include, - [286709] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293892] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(2379), 1, + STATE(2041), 1, sym__block_terminator, - STATE(5645), 2, + STATE(5754), 2, sym_comment, sym_include, - [286729] = 6, - ACTIONS(3), 1, + [293912] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8022), 1, - sym_identifier, - ACTIONS(8024), 1, - sym__terminator, - STATE(5646), 2, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1609), 1, + sym__block_terminator, + STATE(5755), 2, sym_comment, sym_include, - [286749] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293932] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8026), 1, - sym__terminator, - ACTIONS(8028), 1, - aux_sym_catch_statement_token1, - STATE(5647), 2, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2044), 1, + sym__block_terminator, + STATE(5756), 2, sym_comment, sym_include, - [286769] = 6, + [293952] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8030), 1, + ACTIONS(8088), 1, sym_identifier, - ACTIONS(8032), 1, - anon_sym_STAR, - STATE(5648), 2, + STATE(5724), 1, + sym_qualified_name, + STATE(5757), 2, sym_comment, sym_include, - [286789] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293972] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2088), 1, - sym__block_terminator, - STATE(5649), 2, + ACTIONS(7874), 1, + anon_sym_LPAREN, + STATE(4465), 1, + sym_query_fields, + STATE(5758), 2, sym_comment, sym_include, - [286809] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [293992] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8034), 1, + ACTIONS(8090), 1, sym__terminator, - ACTIONS(8036), 1, - aux_sym_class_type_token1, - STATE(5650), 2, + ACTIONS(8092), 1, + aux_sym_finally_statement_token1, + STATE(5759), 2, sym_comment, sym_include, - [286829] = 6, - ACTIONS(3), 1, + [294012] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8038), 1, - sym_identifier, - ACTIONS(8040), 1, - sym__integer_literal, - STATE(5651), 2, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1794), 1, + sym__block_terminator, + STATE(5760), 2, sym_comment, sym_include, - [286849] = 6, + [294032] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8042), 1, + ACTIONS(8094), 1, sym_identifier, - STATE(5552), 1, + STATE(123), 1, sym_qualified_name, - STATE(5652), 2, + STATE(5761), 2, sym_comment, sym_include, - [286869] = 6, - ACTIONS(3), 1, + [294052] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7137), 1, - anon_sym_RPAREN, - ACTIONS(8044), 1, - anon_sym_, - STATE(5653), 2, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2045), 1, + sym__block_terminator, + STATE(5762), 2, sym_comment, sym_include, - [286889] = 6, - ACTIONS(65), 1, + [294072] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(8096), 1, + sym__terminator, + ACTIONS(8098), 1, + aux_sym_method_definition_token1, + STATE(5763), 2, + sym_comment, + sym_include, + [294092] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7652), 1, - anon_sym_LPAREN, - STATE(4215), 1, - sym_query_fields, - STATE(5654), 2, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(4662), 1, + sym__block_terminator, + STATE(5764), 2, sym_comment, sym_include, - [286909] = 6, + [294112] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8046), 1, + ACTIONS(8100), 1, sym_identifier, - STATE(106), 1, - sym_qualified_name, - STATE(5655), 2, + ACTIONS(8102), 1, + sym__integer_literal, + STATE(5765), 2, sym_comment, sym_include, - [286929] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [294132] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, - aux_sym__block_terminator_token1, - STATE(1583), 1, - sym__block_terminator, - STATE(5656), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(5914), 1, + sym_body, + STATE(5766), 2, sym_comment, sym_include, - [286949] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [294152] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8048), 1, + ACTIONS(8104), 1, sym__terminator, - ACTIONS(8050), 1, - aux_sym_class_type_token1, - STATE(5657), 2, + ACTIONS(8106), 1, + aux_sym_catch_statement_token1, + STATE(5767), 2, sym_comment, sym_include, - [286969] = 6, + [294172] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8052), 1, + ACTIONS(8108), 1, sym_identifier, - ACTIONS(8054), 1, - sym__integer_literal, - STATE(5658), 2, + STATE(5803), 1, + sym_qualified_name, + STATE(5768), 2, sym_comment, sym_include, - [286989] = 6, + [294192] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8056), 1, + ACTIONS(8110), 1, sym_identifier, - ACTIONS(8058), 1, - anon_sym_STAR, - STATE(5659), 2, + STATE(121), 1, + sym_qualified_name, + STATE(5769), 2, sym_comment, sym_include, - [287009] = 6, - ACTIONS(3), 1, + [294212] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8060), 1, - sym_identifier, - STATE(5598), 1, - sym_qualified_name, - STATE(5660), 2, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2049), 1, + sym__block_terminator, + STATE(5770), 2, sym_comment, sym_include, - [287029] = 6, + [294232] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8062), 1, + ACTIONS(8112), 1, sym_identifier, - STATE(4486), 1, - sym_qualified_name, - STATE(5661), 2, + ACTIONS(8114), 1, + sym__integer_literal, + STATE(5771), 2, sym_comment, sym_include, - [287049] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [294252] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(5507), 1, - sym_body, - STATE(5662), 2, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1792), 1, + sym__block_terminator, + STATE(5772), 2, sym_comment, sym_include, - [287069] = 6, - ACTIONS(65), 1, + [294272] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(8116), 1, + sym__terminator, + ACTIONS(8118), 1, + aux_sym_catch_statement_token1, + STATE(5773), 2, + sym_comment, + sym_include, + [294292] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(1588), 1, + STATE(1594), 1, sym__block_terminator, - STATE(5663), 2, + STATE(5774), 2, sym_comment, sym_include, - [287089] = 6, - ACTIONS(65), 1, + [294312] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1791), 1, + sym__block_terminator, + STATE(5775), 2, + sym_comment, + sym_include, + [294332] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, + ACTIONS(5236), 1, aux_sym__block_terminator_token1, - STATE(2175), 1, + STATE(1789), 1, sym__block_terminator, - STATE(5664), 2, + STATE(5776), 2, sym_comment, sym_include, - [287109] = 6, + [294352] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8064), 1, + ACTIONS(8120), 1, sym_identifier, - STATE(119), 1, + STATE(5919), 1, sym_qualified_name, - STATE(5665), 2, + STATE(5777), 2, sym_comment, sym_include, - [287129] = 6, - ACTIONS(65), 1, + [294372] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8066), 1, - sym__terminator, - ACTIONS(8068), 1, - aux_sym_setter_token1, - STATE(5666), 2, + ACTIONS(8122), 1, + sym_identifier, + STATE(130), 1, + sym_qualified_name, + STATE(5778), 2, sym_comment, sym_include, - [287149] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [294392] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8070), 1, - sym__terminator, - ACTIONS(8072), 1, - aux_sym_getter_token1, - STATE(5667), 2, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2054), 1, + sym__block_terminator, + STATE(5779), 2, sym_comment, sym_include, - [287169] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [294412] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6889), 1, - anon_sym_LPAREN, - STATE(2555), 1, - sym_function_arguments, - STATE(5668), 2, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + STATE(2412), 1, + sym__block_terminator, + STATE(5780), 2, sym_comment, sym_include, - [287189] = 6, + [294432] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8074), 1, + ACTIONS(8124), 1, sym_identifier, - ACTIONS(8076), 1, + ACTIONS(8126), 1, sym__integer_literal, - STATE(5669), 2, + STATE(5781), 2, sym_comment, sym_include, - [287209] = 6, + [294452] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8078), 1, + ACTIONS(8128), 1, sym_identifier, - STATE(5639), 1, + STATE(5971), 1, sym_qualified_name, - STATE(5670), 2, + STATE(5782), 2, sym_comment, sym_include, - [287229] = 6, - ACTIONS(65), 1, + [294472] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8080), 1, - sym__terminator, - ACTIONS(8082), 1, - aux_sym_function_call_token1, - STATE(5671), 2, + ACTIONS(8130), 1, + sym_identifier, + STATE(115), 1, + sym_qualified_name, + STATE(5783), 2, sym_comment, sym_include, - [287249] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [294492] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8084), 2, - sym__terminator, - aux_sym_field_definition_token1, - STATE(5672), 2, + ACTIONS(8132), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(5784), 2, sym_comment, sym_include, - [287267] = 6, + [294510] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8086), 1, + ACTIONS(8134), 1, sym_identifier, - STATE(110), 1, + STATE(5638), 1, sym_qualified_name, - STATE(5673), 2, + STATE(5785), 2, sym_comment, sym_include, - [287287] = 6, - ACTIONS(3), 1, + [294530] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8088), 1, - sym_identifier, - ACTIONS(8090), 1, - sym__integer_literal, - STATE(5674), 2, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1590), 1, + sym__block_terminator, + STATE(5786), 2, sym_comment, sym_include, - [287307] = 6, + [294550] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8092), 1, + ACTIONS(8136), 1, sym_identifier, - STATE(5668), 1, - sym_qualified_name, - STATE(5675), 2, + ACTIONS(8138), 1, + sym__integer_literal, + STATE(5787), 2, sym_comment, sym_include, - [287327] = 6, + [294570] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8094), 1, + ACTIONS(8140), 1, sym_identifier, - STATE(128), 1, + STATE(5619), 1, sym_qualified_name, - STATE(5676), 2, + STATE(5788), 2, sym_comment, sym_include, - [287347] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [294590] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2204), 1, - sym__block_terminator, - STATE(5677), 2, - sym_comment, - sym_include, - [287367] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8096), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(5678), 2, + ACTIONS(6466), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5789), 2, sym_comment, sym_include, - [287385] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [294608] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(8098), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(5679), 2, - sym_comment, - sym_include, - [287403] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(1607), 1, + STATE(2140), 1, sym__block_terminator, - STATE(5680), 2, + STATE(5790), 2, sym_comment, sym_include, - [287423] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [294628] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6673), 1, - sym__escaped_string, - STATE(3016), 1, - sym_string_literal, - STATE(5681), 2, - sym_comment, - sym_include, - [287443] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8100), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5682), 2, + ACTIONS(7720), 1, + aux_sym_on_error_phrase_token1, + STATE(6592), 1, + sym_on_error_phrase, + STATE(5791), 2, sym_comment, sym_include, - [287461] = 6, + [294648] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8102), 1, + ACTIONS(8142), 1, sym_identifier, - STATE(5817), 1, + STATE(5373), 1, sym_qualified_name, - STATE(5683), 2, + STATE(5792), 2, sym_comment, sym_include, - [287481] = 6, + [294668] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8104), 1, + ACTIONS(8144), 1, sym_identifier, - ACTIONS(8106), 1, - sym__integer_literal, - STATE(5684), 2, + STATE(6025), 1, + sym_qualified_name, + STATE(5793), 2, sym_comment, sym_include, - [287501] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [294688] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8108), 1, - sym__terminator, - ACTIONS(8110), 1, - aux_sym_method_definition_token1, - STATE(5685), 2, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2060), 1, + sym__block_terminator, + STATE(5794), 2, sym_comment, sym_include, - [287521] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [294708] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7678), 1, - aux_sym_on_error_phrase_token1, - STATE(6219), 1, - sym_on_error_phrase, - STATE(5686), 2, + ACTIONS(5779), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(5795), 2, sym_comment, sym_include, - [287541] = 6, + [294726] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8112), 1, + ACTIONS(8146), 1, sym_identifier, - STATE(5319), 1, + STATE(126), 1, sym_qualified_name, - STATE(5687), 2, + STATE(5796), 2, sym_comment, sym_include, - [287561] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [294746] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - STATE(1608), 1, + STATE(4725), 1, sym__block_terminator, - STATE(5688), 2, + STATE(5797), 2, sym_comment, sym_include, - [287581] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [294766] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(2222), 1, + STATE(1587), 1, sym__block_terminator, - STATE(5689), 2, + STATE(5798), 2, sym_comment, sym_include, - [287601] = 6, + [294786] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8114), 1, + ACTIONS(8148), 1, sym_identifier, - STATE(5699), 1, - sym_qualified_name, - STATE(5690), 2, - sym_comment, - sym_include, - [287621] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(4372), 2, - anon_sym_COLON, + ACTIONS(8150), 1, anon_sym_COMMA, - STATE(5691), 2, + STATE(5799), 2, sym_comment, sym_include, - [287639] = 6, + [294806] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8116), 1, + ACTIONS(8152), 1, sym_identifier, - STATE(5796), 1, - sym_qualified_name, - STATE(5692), 2, + ACTIONS(8154), 1, + sym__integer_literal, + STATE(5800), 2, + sym_comment, + sym_include, + [294826] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + STATE(2296), 1, + sym__block_terminator, + STATE(5801), 2, sym_comment, sym_include, - [287659] = 6, + [294846] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8118), 1, + ACTIONS(8156), 1, sym_identifier, - STATE(120), 1, + STATE(6094), 1, sym_qualified_name, - STATE(5693), 2, + STATE(5802), 2, sym_comment, sym_include, - [287679] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [294866] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(8120), 1, - sym__terminator, - ACTIONS(8122), 1, - aux_sym_prompt_for_statement_token2, - STATE(5694), 2, - sym_comment, - sym_include, - [287699] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6937), 1, - sym__terminator, - ACTIONS(6939), 1, - aux_sym_using_statement_token2, - STATE(5695), 2, + ACTIONS(7071), 1, + anon_sym_LPAREN, + STATE(2522), 1, + sym_function_arguments, + STATE(5803), 2, sym_comment, sym_include, - [287719] = 6, + [294886] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8124), 1, + ACTIONS(8158), 1, sym_identifier, - ACTIONS(8126), 1, - sym__integer_literal, - STATE(5696), 2, + STATE(4915), 1, + sym_qualified_name, + STATE(5804), 2, sym_comment, sym_include, - [287739] = 6, + [294906] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8128), 1, + ACTIONS(8160), 1, sym_identifier, - STATE(5754), 1, + STATE(133), 1, sym_qualified_name, - STATE(5697), 2, + STATE(5805), 2, sym_comment, sym_include, - [287759] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [294926] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, - aux_sym__block_terminator_token1, - STATE(1610), 1, - sym__block_terminator, - STATE(5698), 2, + ACTIONS(8162), 1, + sym__terminator, + ACTIONS(8164), 1, + aux_sym_catch_statement_token1, + STATE(5806), 2, sym_comment, sym_include, - [287779] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [294946] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7045), 1, - anon_sym_LPAREN, - STATE(1071), 1, - sym_function_arguments, - STATE(5699), 2, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(4730), 1, + sym__block_terminator, + STATE(5807), 2, sym_comment, sym_include, - [287799] = 6, - ACTIONS(3), 1, + [294966] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8130), 1, - sym_identifier, - STATE(113), 1, - sym_qualified_name, - STATE(5700), 2, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1784), 1, + sym__block_terminator, + STATE(5808), 2, sym_comment, sym_include, - [287819] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [294986] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - STATE(1913), 1, - sym__block_terminator, - STATE(5701), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(5562), 1, + sym_body, + STATE(5809), 2, sym_comment, sym_include, - [287839] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295006] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8132), 1, - sym__terminator, - ACTIONS(8134), 1, - aux_sym_catch_statement_token1, - STATE(5702), 2, + ACTIONS(6725), 1, + sym__escaped_string, + STATE(2759), 1, + sym_string_literal, + STATE(5810), 2, sym_comment, sym_include, - [287859] = 6, + [295026] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8136), 1, + ACTIONS(8166), 1, sym_identifier, - ACTIONS(8138), 1, + ACTIONS(8168), 1, sym__integer_literal, - STATE(5703), 2, + STATE(5811), 2, sym_comment, sym_include, - [287879] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295046] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(5789), 1, - sym_body, - STATE(5704), 2, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + STATE(2348), 1, + sym__block_terminator, + STATE(5812), 2, sym_comment, sym_include, - [287899] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295066] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2003), 1, - sym__block_terminator, - STATE(5705), 2, + ACTIONS(8170), 1, + sym__terminator, + ACTIONS(8172), 1, + aux_sym_catch_statement_token1, + STATE(5813), 2, sym_comment, sym_include, - [287919] = 6, - ACTIONS(3), 1, + [295086] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8140), 1, - sym_identifier, - STATE(5815), 1, - sym_qualified_name, - STATE(5706), 2, + ACTIONS(5902), 1, + anon_sym_COLON, + STATE(5385), 1, + sym_case_body, + STATE(5814), 2, sym_comment, sym_include, - [287939] = 6, - ACTIONS(3), 1, + [295106] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8142), 1, - sym_identifier, - ACTIONS(8144), 1, - anon_sym_STAR, - STATE(5707), 2, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(4738), 1, + sym__block_terminator, + STATE(5815), 2, sym_comment, sym_include, - [287959] = 6, + [295126] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8146), 1, + ACTIONS(8174), 1, sym_identifier, - STATE(108), 1, + STATE(3289), 1, sym_qualified_name, - STATE(5708), 2, - sym_comment, - sym_include, - [287979] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6159), 1, - anon_sym_COLON, - STATE(5271), 1, - sym_case_body, - STATE(5709), 2, + STATE(5816), 2, sym_comment, sym_include, - [287999] = 6, + [295146] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8148), 1, + ACTIONS(8176), 1, sym_identifier, - STATE(3218), 1, + STATE(6135), 1, sym_qualified_name, - STATE(5710), 2, + STATE(5817), 2, sym_comment, sym_include, - [288019] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295166] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, - aux_sym__block_terminator_token1, - STATE(1615), 1, - sym__block_terminator, - STATE(5711), 2, + ACTIONS(8178), 1, + sym__terminator, + ACTIONS(8180), 1, + aux_sym_getter_token1, + STATE(5818), 2, sym_comment, sym_include, - [288039] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295186] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(5478), 1, - sym_body, - STATE(5712), 2, + ACTIONS(8182), 1, + sym__terminator, + ACTIONS(8184), 1, + aux_sym_setter_token1, + STATE(5819), 2, sym_comment, sym_include, - [288059] = 6, + [295206] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8150), 1, + ACTIONS(8186), 1, sym_identifier, - ACTIONS(8152), 1, + ACTIONS(8188), 1, sym__integer_literal, - STATE(5713), 2, + STATE(5820), 2, sym_comment, sym_include, - [288079] = 6, + [295226] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8154), 1, + ACTIONS(8190), 1, sym_identifier, - ACTIONS(8156), 1, - sym__integer_literal, - STATE(5714), 2, + ACTIONS(8192), 1, + anon_sym_STAR, + STATE(5821), 2, sym_comment, sym_include, - [288099] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295246] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6673), 1, - sym__escaped_string, - STATE(2669), 1, - sym_string_literal, - STATE(5715), 2, - sym_comment, - sym_include, - [288119] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7652), 1, - anon_sym_LPAREN, - STATE(4295), 1, - sym_query_fields, - STATE(5716), 2, + ACTIONS(1104), 1, + sym__namecolon, + STATE(335), 1, + aux_sym_object_access_repeat1, + STATE(5822), 2, sym_comment, sym_include, - [288139] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295266] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8158), 1, + ACTIONS(8194), 1, aux_sym_using_statement_token2, - ACTIONS(8160), 1, + ACTIONS(8196), 1, aux_sym_input_close_statement_token2, - STATE(5717), 2, + STATE(5823), 2, sym_comment, sym_include, - [288159] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295286] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8158), 1, + ACTIONS(8194), 1, aux_sym_using_statement_token2, - ACTIONS(8162), 1, + ACTIONS(8198), 1, aux_sym_input_close_statement_token2, - STATE(5718), 2, + STATE(5824), 2, sym_comment, sym_include, - [288179] = 6, + [295306] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8164), 1, + ACTIONS(8200), 1, sym_identifier, - STATE(5861), 1, + STATE(119), 1, sym_qualified_name, - STATE(5719), 2, + STATE(5825), 2, sym_comment, sym_include, - [288199] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295326] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(7652), 1, - anon_sym_LPAREN, - STATE(4039), 1, - sym_query_fields, - STATE(5720), 2, - sym_comment, - sym_include, - [288219] = 6, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8166), 1, - sym_identifier, - ACTIONS(8168), 1, - sym__terminator, - STATE(5721), 2, + ACTIONS(8202), 1, + sym__escaped_string, + STATE(3734), 1, + sym_string_literal, + STATE(5826), 2, sym_comment, sym_include, - [288239] = 6, + [295346] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8170), 1, + ACTIONS(8204), 1, sym_identifier, - STATE(112), 1, - sym_qualified_name, - STATE(5722), 2, + ACTIONS(8206), 1, + sym__integer_literal, + STATE(5827), 2, sym_comment, sym_include, - [288259] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295366] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - STATE(1619), 1, + STATE(4928), 1, sym__block_terminator, - STATE(5723), 2, + STATE(5828), 2, sym_comment, sym_include, - [288279] = 6, - ACTIONS(65), 1, + [295386] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, - aux_sym__block_terminator_token1, - STATE(1620), 1, - sym__block_terminator, - STATE(5724), 2, + ACTIONS(8208), 1, + sym_identifier, + STATE(6086), 1, + sym_qualified_name, + STATE(5829), 2, sym_comment, sym_include, - [288299] = 6, + [295406] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8172), 1, + ACTIONS(8210), 1, sym_identifier, - ACTIONS(8174), 1, - sym__integer_literal, - STATE(5725), 2, + STATE(132), 1, + sym_qualified_name, + STATE(5830), 2, sym_comment, sym_include, - [288319] = 6, - ACTIONS(65), 1, + [295426] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2079), 1, + sym__block_terminator, + STATE(5831), 2, + sym_comment, + sym_include, + [295446] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8176), 1, + ACTIONS(8212), 1, aux_sym_input_close_statement_token2, - ACTIONS(8178), 1, + ACTIONS(8214), 1, aux_sym_output_stream_statement_token1, - STATE(5726), 2, + STATE(5832), 2, sym_comment, sym_include, - [288339] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295466] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8178), 1, + ACTIONS(8214), 1, aux_sym_output_stream_statement_token1, - ACTIONS(8180), 1, + ACTIONS(8216), 1, aux_sym_input_close_statement_token2, - STATE(5727), 2, + STATE(5833), 2, sym_comment, sym_include, - [288359] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295486] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8182), 1, + ACTIONS(8218), 1, anon_sym_COMMA, - ACTIONS(8184), 1, + ACTIONS(8220), 1, aux_sym_on_error_phrase_token3, - STATE(5728), 2, + STATE(5834), 2, sym_comment, sym_include, - [288379] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295506] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2393), 1, - sym__block_terminator, - STATE(5729), 2, + ACTIONS(6960), 1, + sym__terminator, + ACTIONS(6962), 1, + aux_sym_using_statement_token2, + STATE(5835), 2, sym_comment, sym_include, - [288399] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295526] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8186), 2, + ACTIONS(8222), 2, aux_sym_using_statement_token3, aux_sym_using_statement_token4, - STATE(5730), 2, + STATE(5836), 2, sym_comment, sym_include, - [288417] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295544] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(2012), 1, + STATE(2083), 1, sym__block_terminator, - STATE(5731), 2, + STATE(5837), 2, sym_comment, sym_include, - [288437] = 6, - ACTIONS(3), 1, + [295564] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8188), 1, - sym_identifier, - STATE(5913), 1, - sym_qualified_name, - STATE(5732), 2, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(4809), 1, + sym__block_terminator, + STATE(5838), 2, sym_comment, sym_include, - [288457] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295584] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8190), 2, + ACTIONS(8224), 2, aux_sym_on_error_phrase_token2, aux_sym_on_error_phrase_token7, - STATE(5733), 2, + STATE(5839), 2, sym_comment, sym_include, - [288475] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295602] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7810), 1, + ACTIONS(7970), 1, aux_sym_scope_tuning_token1, - STATE(6296), 1, + STATE(6743), 1, sym_new_expression, - STATE(5734), 2, + STATE(5840), 2, sym_comment, sym_include, - [288495] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295622] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(5701), 1, + STATE(5499), 1, sym_body, - STATE(5735), 2, + STATE(5841), 2, sym_comment, sym_include, - [288515] = 6, - ACTIONS(3), 1, + [295642] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8192), 1, - sym_identifier, - STATE(4516), 1, - sym_qualified_name, - STATE(5736), 2, + ACTIONS(8226), 1, + sym__terminator, + ACTIONS(8228), 1, + aux_sym_catch_statement_token1, + STATE(5842), 2, sym_comment, sym_include, - [288535] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295662] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(1624), 1, + STATE(2088), 1, sym__block_terminator, - STATE(5737), 2, + STATE(5843), 2, sym_comment, sym_include, - [288555] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295682] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8194), 1, - sym__terminator, - ACTIONS(8196), 1, - aux_sym_interface_statement_token1, - STATE(5738), 2, + ACTIONS(8230), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(5844), 2, sym_comment, sym_include, - [288575] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295700] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(1625), 1, + STATE(1538), 1, sym__block_terminator, - STATE(5739), 2, + STATE(5845), 2, sym_comment, sym_include, - [288595] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295720] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(5750), 1, + STATE(5494), 1, sym_body, - STATE(5740), 2, + STATE(5846), 2, sym_comment, sym_include, - [288615] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295740] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5236), 1, aux_sym__block_terminator_token1, - STATE(1627), 1, + STATE(1783), 1, sym__block_terminator, - STATE(5741), 2, + STATE(5847), 2, sym_comment, sym_include, - [288635] = 6, - ACTIONS(65), 1, + [295760] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5701), 1, - anon_sym_LPAREN, - STATE(5627), 1, - sym_function_parameters, - STATE(5742), 2, + ACTIONS(8232), 1, + sym_identifier, + ACTIONS(8234), 1, + sym__integer_literal, + STATE(5848), 2, sym_comment, sym_include, - [288655] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295780] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(6371), 1, - sym_body, - STATE(5743), 2, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1782), 1, + sym__block_terminator, + STATE(5849), 2, sym_comment, sym_include, - [288675] = 6, + [295800] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8198), 1, + ACTIONS(8236), 1, sym_identifier, - STATE(107), 1, + STATE(135), 1, sym_qualified_name, - STATE(5744), 2, + STATE(5850), 2, sym_comment, sym_include, - [288695] = 6, - ACTIONS(65), 1, + [295820] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5124), 1, + sym__terminator, + ACTIONS(5126), 1, + aux_sym_function_call_token1, + STATE(5851), 2, + sym_comment, + sym_include, + [295840] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4682), 1, + ACTIONS(7874), 1, anon_sym_LPAREN, - STATE(3610), 1, - sym_function_arguments, - STATE(5745), 2, + STATE(4413), 1, + sym_query_fields, + STATE(5852), 2, sym_comment, sym_include, - [288715] = 6, - ACTIONS(65), 1, + [295860] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, - aux_sym__block_terminator_token1, - STATE(1629), 1, - sym__block_terminator, - STATE(5746), 2, + ACTIONS(8238), 1, + sym_identifier, + STATE(4590), 1, + sym_qualified_name, + STATE(5853), 2, sym_comment, sym_include, - [288735] = 6, + [295880] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8200), 1, + ACTIONS(8240), 1, sym_identifier, - STATE(4481), 1, + STATE(2675), 1, sym_qualified_name, - STATE(5747), 2, + STATE(5854), 2, sym_comment, sym_include, - [288755] = 6, - ACTIONS(65), 1, + [295900] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, - aux_sym__block_terminator_token1, - STATE(1630), 1, - sym__block_terminator, - STATE(5748), 2, + ACTIONS(8242), 1, + sym_identifier, + STATE(5962), 1, + sym_qualified_name, + STATE(5855), 2, sym_comment, sym_include, - [288775] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295920] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6627), 1, - anon_sym_LPAREN, - STATE(5138), 1, - sym_function_parameters, - STATE(5749), 2, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(4878), 1, + sym__block_terminator, + STATE(5856), 2, sym_comment, sym_include, - [288795] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295940] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, + ACTIONS(5236), 1, aux_sym__block_terminator_token1, - STATE(1893), 1, + STATE(1779), 1, sym__block_terminator, - STATE(5750), 2, + STATE(5857), 2, sym_comment, sym_include, - [288815] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295960] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(1655), 1, + STATE(2092), 1, sym__block_terminator, - STATE(5751), 2, + STATE(5858), 2, sym_comment, sym_include, - [288835] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [295980] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5236), 1, aux_sym__block_terminator_token1, - STATE(1657), 1, + STATE(1775), 1, sym__block_terminator, - STATE(5752), 2, + STATE(5859), 2, sym_comment, sym_include, - [288855] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296000] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - STATE(1658), 1, + STATE(4895), 1, sym__block_terminator, - STATE(5753), 2, + STATE(5860), 2, sym_comment, sym_include, - [288875] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296020] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7006), 1, + ACTIONS(7874), 1, anon_sym_LPAREN, - STATE(275), 1, - sym_function_arguments, - STATE(5754), 2, + STATE(4120), 1, + sym_query_fields, + STATE(5861), 2, sym_comment, sym_include, - [288895] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296040] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5236), 1, aux_sym__block_terminator_token1, - STATE(1659), 1, + STATE(1774), 1, sym__block_terminator, - STATE(5755), 2, + STATE(5862), 2, sym_comment, sym_include, - [288915] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296060] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(1660), 1, + STATE(1547), 1, sym__block_terminator, - STATE(5756), 2, + STATE(5863), 2, sym_comment, sym_include, - [288935] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296080] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - STATE(1663), 1, + STATE(5116), 1, sym__block_terminator, - STATE(5757), 2, + STATE(5864), 2, sym_comment, sym_include, - [288955] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296100] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(1664), 1, + STATE(2100), 1, sym__block_terminator, - STATE(5758), 2, + STATE(5865), 2, sym_comment, sym_include, - [288975] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296120] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(8202), 1, - sym__terminator, - ACTIONS(8204), 1, - aux_sym_destructor_definition_token1, - STATE(5759), 2, - sym_comment, - sym_include, - [288995] = 6, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8206), 1, - sym_identifier, - ACTIONS(8208), 1, - anon_sym_STAR, - STATE(5760), 2, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(4964), 1, + sym__block_terminator, + STATE(5866), 2, sym_comment, sym_include, - [289015] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296140] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - STATE(1665), 1, + STATE(4967), 1, sym__block_terminator, - STATE(5761), 2, + STATE(5867), 2, sym_comment, sym_include, - [289035] = 6, + [296160] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8210), 1, + ACTIONS(8244), 1, sym_identifier, - ACTIONS(8212), 1, + ACTIONS(8246), 1, anon_sym_COMMA, - STATE(5762), 2, + STATE(5868), 2, sym_comment, sym_include, - [289055] = 6, + [296180] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8214), 1, + ACTIONS(8248), 1, sym_identifier, - ACTIONS(8216), 1, + ACTIONS(8250), 1, anon_sym_COMMA, - STATE(5763), 2, + STATE(5869), 2, sym_comment, sym_include, - [289075] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296200] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - STATE(1954), 1, + STATE(5023), 1, sym__block_terminator, - STATE(5764), 2, + STATE(5870), 2, sym_comment, sym_include, - [289095] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296220] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - STATE(1964), 1, + STATE(5049), 1, sym__block_terminator, - STATE(5765), 2, + STATE(5871), 2, sym_comment, sym_include, - [289115] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296240] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8218), 2, + ACTIONS(8252), 2, aux_sym_on_error_phrase_token2, aux_sym_on_error_phrase_token7, - STATE(5766), 2, + STATE(5872), 2, sym_comment, sym_include, - [289133] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296258] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7810), 1, + ACTIONS(7970), 1, aux_sym_scope_tuning_token1, - STATE(6408), 1, + STATE(6635), 1, sym_new_expression, - STATE(5767), 2, + STATE(5873), 2, sym_comment, sym_include, - [289153] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296278] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(5600), 1, + STATE(5591), 1, sym_body, - STATE(5768), 2, + STATE(5874), 2, sym_comment, sym_include, - [289173] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296298] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8220), 1, + ACTIONS(8254), 1, sym__terminator, - ACTIONS(8222), 1, - aux_sym_class_type_token1, - STATE(5769), 2, + ACTIONS(8256), 1, + aux_sym_interface_statement_token1, + STATE(5875), 2, sym_comment, sym_include, - [289193] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296318] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8224), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(5770), 2, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1771), 1, + sym__block_terminator, + STATE(5876), 2, sym_comment, sym_include, - [289211] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296338] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7652), 1, - anon_sym_LPAREN, - STATE(4460), 1, - sym_query_fields, - STATE(5771), 2, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1770), 1, + sym__block_terminator, + STATE(5877), 2, sym_comment, sym_include, - [289231] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296358] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5087), 1, - sym__terminator, - ACTIONS(5089), 1, - aux_sym_function_call_token1, - STATE(5772), 2, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(5050), 1, + sym__block_terminator, + STATE(5878), 2, sym_comment, sym_include, - [289251] = 6, - ACTIONS(3), 1, + [296378] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8226), 1, - sym_identifier, - ACTIONS(8228), 1, - anon_sym_STAR, - STATE(5773), 2, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1769), 1, + sym__block_terminator, + STATE(5879), 2, sym_comment, sym_include, - [289271] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296398] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2394), 1, - sym__block_terminator, - STATE(5774), 2, + ACTIONS(8258), 2, + sym__terminator, + aux_sym_output_stream_statement_token1, + STATE(5880), 2, sym_comment, sym_include, - [289291] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296416] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8230), 1, - aux_sym_primitive_type_token1, - ACTIONS(8232), 1, - aux_sym_event_definition_token2, - STATE(5775), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(5721), 1, + sym_body, + STATE(5881), 2, sym_comment, sym_include, - [289311] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296436] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8234), 1, - sym__terminator, - ACTIONS(8236), 1, - aux_sym_finally_statement_token1, - STATE(5776), 2, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1768), 1, + sym__block_terminator, + STATE(5882), 2, sym_comment, sym_include, - [289331] = 6, + [296456] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8238), 1, + ACTIONS(8260), 1, sym_identifier, - STATE(6455), 1, + STATE(6529), 1, sym_qualified_name, - STATE(5777), 2, + STATE(5883), 2, sym_comment, sym_include, - [289351] = 6, + [296476] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8262), 1, sym_identifier, - STATE(4511), 1, + STATE(4605), 1, sym_qualified_name, - STATE(5778), 2, + STATE(5884), 2, sym_comment, sym_include, - [289371] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296496] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6352), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5779), 2, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1767), 1, + sym__block_terminator, + STATE(5885), 2, sym_comment, sym_include, - [289389] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296516] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5553), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5780), 2, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(5077), 1, + sym__block_terminator, + STATE(5886), 2, sym_comment, sym_include, - [289407] = 6, - ACTIONS(3), 1, + [296536] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8242), 1, - sym_identifier, - ACTIONS(8244), 1, - anon_sym_COMMA, - STATE(5781), 2, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1766), 1, + sym__block_terminator, + STATE(5887), 2, sym_comment, sym_include, - [289427] = 6, + [296556] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8246), 1, + ACTIONS(8264), 1, sym_identifier, - ACTIONS(8248), 1, - anon_sym_COMMA, - STATE(5782), 2, + STATE(4130), 1, + sym_qualified_name, + STATE(5888), 2, sym_comment, sym_include, - [289447] = 6, - ACTIONS(3), 1, + [296576] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8250), 1, - sym_identifier, - ACTIONS(8252), 1, - anon_sym_COMMA, - STATE(5783), 2, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1765), 1, + sym__block_terminator, + STATE(5889), 2, sym_comment, sym_include, - [289467] = 6, - ACTIONS(3), 1, + [296596] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8254), 1, - sym_identifier, - ACTIONS(8256), 1, - anon_sym_STAR, - STATE(5784), 2, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(5088), 1, + sym__block_terminator, + STATE(5890), 2, sym_comment, sym_include, - [289487] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296616] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7652), 1, - anon_sym_LPAREN, - STATE(4464), 1, - sym_query_fields, - STATE(5785), 2, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1764), 1, + sym__block_terminator, + STATE(5891), 2, sym_comment, sym_include, - [289507] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296636] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - STATE(2322), 1, + STATE(5093), 1, sym__block_terminator, - STATE(5786), 2, + STATE(5892), 2, sym_comment, sym_include, - [289527] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296656] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2287), 1, - sym__block_terminator, - STATE(5787), 2, + ACTIONS(8266), 1, + aux_sym_image_phrase_token7, + ACTIONS(8268), 1, + aux_sym_image_phrase_token9, + STATE(5893), 2, sym_comment, sym_include, - [289547] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296676] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(7105), 2, anon_sym_COLON, - STATE(5984), 1, - sym_body, - STATE(5788), 2, + anon_sym_COMMA, + STATE(5894), 2, sym_comment, sym_include, - [289567] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296694] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - STATE(1983), 1, + STATE(5119), 1, sym__block_terminator, - STATE(5789), 2, + STATE(5895), 2, sym_comment, sym_include, - [289587] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296714] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(6500), 2, - anon_sym_COLON, - anon_sym_COMMA, - STATE(5790), 2, - sym_comment, - sym_include, - [289605] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8258), 1, - sym__terminator, - ACTIONS(8260), 1, - aux_sym_class_type_token1, - STATE(5791), 2, + ACTIONS(7874), 1, + anon_sym_LPAREN, + STATE(4424), 1, + sym_query_fields, + STATE(5896), 2, sym_comment, sym_include, - [289625] = 6, + [296734] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8262), 1, + ACTIONS(8270), 1, sym_identifier, - STATE(2982), 1, + STATE(4623), 1, sym_qualified_name, - STATE(5792), 2, + STATE(5897), 2, sym_comment, sym_include, - [289645] = 6, - ACTIONS(65), 1, + [296754] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1763), 1, + sym__block_terminator, + STATE(5898), 2, + sym_comment, + sym_include, + [296774] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(5537), 1, + STATE(5727), 1, sym_body, - STATE(5793), 2, + STATE(5899), 2, sym_comment, sym_include, - [289665] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296794] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, + ACTIONS(5160), 1, aux_sym__block_terminator_token1, - STATE(4577), 1, + STATE(5131), 1, sym__block_terminator, - STATE(5794), 2, + STATE(5900), 2, sym_comment, sym_include, - [289685] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296814] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - STATE(1978), 1, - sym__block_terminator, - STATE(5795), 2, + ACTIONS(5878), 1, + anon_sym_LPAREN, + STATE(5473), 1, + sym_function_parameters, + STATE(5901), 2, sym_comment, sym_include, - [289705] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296834] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6765), 1, - anon_sym_LPAREN, - STATE(2441), 1, - sym_function_arguments, - STATE(5796), 2, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(5166), 1, + sym__block_terminator, + STATE(5902), 2, sym_comment, sym_include, - [289725] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296854] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(5528), 1, + STATE(5753), 1, sym_body, - STATE(5797), 2, + STATE(5903), 2, sym_comment, sym_include, - [289745] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296874] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7652), 1, - anon_sym_LPAREN, - STATE(4445), 1, - sym_query_fields, - STATE(5798), 2, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + STATE(2425), 1, + sym__block_terminator, + STATE(5904), 2, sym_comment, sym_include, - [289765] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296894] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7752), 1, - anon_sym_DOT, - ACTIONS(8264), 1, - aux_sym__function_terminator_token1, - STATE(5799), 2, + ACTIONS(8272), 1, + aux_sym_getter_token1, + ACTIONS(8274), 1, + aux_sym_setter_token1, + STATE(5905), 2, sym_comment, sym_include, - [289785] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296914] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(5649), 1, - sym_body, - STATE(5800), 2, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1762), 1, + sym__block_terminator, + STATE(5906), 2, sym_comment, sym_include, - [289805] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296934] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7652), 1, - anon_sym_LPAREN, - STATE(4054), 1, - sym_query_fields, - STATE(5801), 2, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2124), 1, + sym__block_terminator, + STATE(5907), 2, sym_comment, sym_include, - [289825] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296954] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6761), 1, - sym__terminator, - ACTIONS(6763), 1, - aux_sym_using_statement_token2, - STATE(5802), 2, + ACTIONS(8276), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5908), 2, sym_comment, sym_include, - [289845] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296972] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(2424), 1, + STATE(1554), 1, sym__block_terminator, - STATE(5803), 2, + STATE(5909), 2, sym_comment, sym_include, - [289865] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [296992] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4590), 1, - sym__block_terminator, - STATE(5804), 2, + ACTIONS(7874), 1, + anon_sym_LPAREN, + STATE(4431), 1, + sym_query_fields, + STATE(5910), 2, sym_comment, sym_include, - [289885] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297012] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - STATE(2357), 1, + STATE(2363), 1, sym__block_terminator, - STATE(5805), 2, + STATE(5911), 2, sym_comment, sym_include, - [289905] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297032] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(6004), 1, + STATE(5860), 1, sym_body, - STATE(5806), 2, + STATE(5912), 2, sym_comment, sym_include, - [289925] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297052] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_LPAREN, - STATE(1437), 1, - sym_function_arguments, - STATE(5807), 2, + ACTIONS(2661), 1, + sym__namecolon, + STATE(2199), 1, + aux_sym_object_access_repeat1, + STATE(5913), 2, sym_comment, sym_include, - [289945] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297072] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8266), 1, - sym__terminator, - ACTIONS(8268), 1, - aux_sym_interface_statement_token1, - STATE(5808), 2, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + STATE(2218), 1, + sym__block_terminator, + STATE(5914), 2, sym_comment, sym_include, - [289965] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297092] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7652), 1, + ACTIONS(7874), 1, anon_sym_LPAREN, - STATE(4101), 1, + STATE(4177), 1, sym_query_fields, - STATE(5809), 2, + STATE(5915), 2, sym_comment, sym_include, - [289985] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297112] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7652), 1, + ACTIONS(7874), 1, anon_sym_LPAREN, - STATE(4304), 1, + STATE(4315), 1, sym_query_fields, - STATE(5810), 2, + STATE(5916), 2, sym_comment, sym_include, - [290005] = 6, + [297132] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8270), 1, + ACTIONS(8278), 1, sym_identifier, - STATE(6542), 1, + STATE(6446), 1, sym_qualified_name, - STATE(5811), 2, + STATE(5917), 2, sym_comment, sym_include, - [290025] = 6, - ACTIONS(3), 1, + [297152] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8272), 1, - sym_identifier, - STATE(6042), 1, - sym_qualified_name, - STATE(5812), 2, + ACTIONS(5236), 1, + aux_sym__block_terminator_token1, + STATE(1761), 1, + sym__block_terminator, + STATE(5918), 2, sym_comment, sym_include, - [290045] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297172] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(7652), 1, - anon_sym_LPAREN, - STATE(4411), 1, - sym_query_fields, - STATE(5813), 2, - sym_comment, - sym_include, - [290065] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7652), 1, + ACTIONS(7031), 1, anon_sym_LPAREN, - STATE(4140), 1, - sym_query_fields, - STATE(5814), 2, + STATE(2437), 1, + sym_function_arguments, + STATE(5919), 2, sym_comment, sym_include, - [290085] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297192] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(840), 1, + ACTIONS(6524), 1, anon_sym_LPAREN, - STATE(1396), 1, - sym_function_arguments, - STATE(5815), 2, + STATE(6473), 1, + sym_function_parameters, + STATE(5920), 2, sym_comment, sym_include, - [290105] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297212] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - STATE(1949), 1, - sym__block_terminator, - STATE(5816), 2, - sym_comment, - sym_include, - [290125] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6711), 1, + ACTIONS(8280), 1, sym__terminator, - ACTIONS(6713), 1, - aux_sym_using_statement_token2, - STATE(5817), 2, + ACTIONS(8282), 1, + aux_sym_prompt_for_statement_token2, + STATE(5921), 2, sym_comment, sym_include, - [290145] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297232] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, - aux_sym__block_terminator_token1, - STATE(1943), 1, - sym__block_terminator, - STATE(5818), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(6253), 1, + sym_body, + STATE(5922), 2, sym_comment, sym_include, - [290165] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297252] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(5479), 1, + STATE(6784), 1, sym_body, - STATE(5819), 2, + STATE(5923), 2, sym_comment, sym_include, - [290185] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297272] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - STATE(4670), 1, + STATE(2361), 1, sym__block_terminator, - STATE(5820), 2, + STATE(5924), 2, sym_comment, sym_include, - [290205] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297292] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(6021), 1, + STATE(5776), 1, sym_body, - STATE(5821), 2, + STATE(5925), 2, sym_comment, sym_include, - [290225] = 6, + [297312] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8274), 1, + ACTIONS(8284), 1, sym_identifier, - STATE(6439), 1, + STATE(6013), 1, sym_qualified_name, - STATE(5822), 2, + STATE(5926), 2, sym_comment, sym_include, - [290245] = 6, + [297332] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8276), 1, + ACTIONS(8286), 1, sym_identifier, - ACTIONS(8278), 1, + ACTIONS(8288), 1, anon_sym_STAR, - STATE(5823), 2, + STATE(5927), 2, sym_comment, sym_include, - [290265] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297352] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(6015), 1, - sym_body, - STATE(5824), 2, - sym_comment, - sym_include, - [290285] = 6, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8280), 1, - sym_identifier, - ACTIONS(8282), 1, - anon_sym_STAR, - STATE(5825), 2, + ACTIONS(7874), 1, + anon_sym_LPAREN, + STATE(4443), 1, + sym_query_fields, + STATE(5928), 2, sym_comment, sym_include, - [290305] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297372] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, - aux_sym__block_terminator_token1, - STATE(1648), 1, - sym__block_terminator, - STATE(5826), 2, + ACTIONS(2726), 1, + sym__namecolon, + STATE(2486), 1, + aux_sym_object_access_repeat1, + STATE(5929), 2, sym_comment, sym_include, - [290325] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297392] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8284), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(5827), 2, + ACTIONS(8290), 1, + sym__terminator, + ACTIONS(8292), 1, + aux_sym_interface_statement_token1, + STATE(5930), 2, sym_comment, sym_include, - [290343] = 6, + [297412] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8286), 1, + ACTIONS(8294), 1, sym_identifier, - ACTIONS(8288), 1, - sym__terminator, - STATE(5828), 2, + STATE(116), 1, + sym_qualified_name, + STATE(5931), 2, sym_comment, sym_include, - [290363] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297432] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(7810), 1, - aux_sym_scope_tuning_token1, - STATE(6092), 1, - sym_new_expression, - STATE(5829), 2, - sym_comment, - sym_include, - [290383] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7652), 1, + ACTIONS(7874), 1, anon_sym_LPAREN, - STATE(4125), 1, + STATE(4248), 1, sym_query_fields, - STATE(5830), 2, + STATE(5932), 2, sym_comment, sym_include, - [290403] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297452] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7652), 1, + ACTIONS(7874), 1, anon_sym_LPAREN, - STATE(4274), 1, + STATE(4351), 1, sym_query_fields, - STATE(5831), 2, + STATE(5933), 2, sym_comment, sym_include, - [290423] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297472] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6970), 1, - sym__terminator, - ACTIONS(6972), 1, - aux_sym_using_statement_token2, - STATE(5832), 2, + ACTIONS(6524), 1, + anon_sym_LPAREN, + STATE(5439), 1, + sym_function_parameters, + STATE(5934), 2, sym_comment, sym_include, - [290443] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297492] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8290), 1, + ACTIONS(7273), 2, + anon_sym_COLON, sym__terminator, - ACTIONS(8292), 1, - aux_sym_setter_token1, - STATE(5833), 2, + STATE(5935), 2, sym_comment, sym_include, - [290463] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297510] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4712), 1, - sym__block_terminator, - STATE(5834), 2, + ACTIONS(7874), 1, + anon_sym_LPAREN, + STATE(4201), 1, + sym_query_fields, + STATE(5936), 2, sym_comment, sym_include, - [290483] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297530] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2331), 1, - sym__block_terminator, - STATE(5835), 2, + ACTIONS(7874), 1, + anon_sym_LPAREN, + STATE(4302), 1, + sym_query_fields, + STATE(5937), 2, sym_comment, sym_include, - [290503] = 6, + [297550] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8294), 1, + ACTIONS(6460), 1, + anon_sym_COLON, + ACTIONS(8296), 1, sym_identifier, - STATE(4499), 1, - sym_qualified_name, - STATE(5836), 2, + STATE(5938), 2, sym_comment, sym_include, - [290523] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297570] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(2389), 1, + STATE(1556), 1, sym__block_terminator, - STATE(5837), 2, + STATE(5939), 2, sym_comment, sym_include, - [290543] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297590] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(5988), 1, - sym_body, - STATE(5838), 2, - sym_comment, - sym_include, - [290563] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(2337), 1, + STATE(2153), 1, sym__block_terminator, - STATE(5839), 2, + STATE(5940), 2, sym_comment, sym_include, - [290583] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297610] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(7752), 1, - anon_sym_DOT, - ACTIONS(8296), 1, - aux_sym__case_terminator_token1, - STATE(5840), 2, - sym_comment, - sym_include, - [290603] = 6, - ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8298), 1, - sym_identifier, - STATE(3628), 1, - sym_qualified_name, - STATE(5841), 2, + ACTIONS(4534), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5941), 2, sym_comment, sym_include, - [290623] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297628] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5528), 2, + ACTIONS(4488), 2, anon_sym_COLON, anon_sym_COMMA, - STATE(5842), 2, + STATE(5942), 2, sym_comment, sym_include, - [290641] = 6, - ACTIONS(3), 1, + [297646] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, + ACTIONS(8298), 1, + sym__terminator, ACTIONS(8300), 1, - sym_identifier, - STATE(6025), 1, - sym_qualified_name, - STATE(5843), 2, + aux_sym_class_type_token1, + STATE(5943), 2, sym_comment, sym_include, - [290661] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297666] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(6348), 1, + STATE(5807), 1, sym_body, - STATE(5844), 2, + STATE(5944), 2, sym_comment, sym_include, - [290681] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297686] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, ACTIONS(8302), 1, - sym__terminator, + anon_sym_DOT, ACTIONS(8304), 1, - aux_sym_getter_token1, - STATE(5845), 2, - sym_comment, - sym_include, - [290701] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(5448), 1, - sym_body, - STATE(5846), 2, + aux_sym__procedure_terminator_token1, + STATE(5945), 2, sym_comment, sym_include, - [290721] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297706] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(7652), 1, - anon_sym_LPAREN, - STATE(4258), 1, - sym_query_fields, - STATE(5847), 2, - sym_comment, - sym_include, - [290741] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, ACTIONS(8306), 1, sym__terminator, ACTIONS(8308), 1, - aux_sym_finally_statement_token1, - STATE(5848), 2, + aux_sym_class_type_token1, + STATE(5946), 2, sym_comment, sym_include, - [290761] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297726] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(8310), 1, - sym__terminator, - ACTIONS(8312), 1, - aux_sym_interface_statement_token1, - STATE(5849), 2, - sym_comment, - sym_include, - [290781] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6953), 1, - anon_sym_LPAREN, - STATE(49), 1, - sym_function_arguments, - STATE(5850), 2, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2160), 1, + sym__block_terminator, + STATE(5947), 2, sym_comment, sym_include, - [290801] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297746] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(6024), 1, - sym_body, - STATE(5851), 2, - sym_comment, - sym_include, - [290821] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7810), 1, - aux_sym_scope_tuning_token1, - STATE(6061), 1, - sym_new_expression, - STATE(5852), 2, + ACTIONS(8310), 1, + aux_sym_primitive_type_token1, + ACTIONS(8312), 1, + aux_sym_event_definition_token2, + STATE(5948), 2, sym_comment, sym_include, - [290841] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297766] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2001), 1, - sym__block_terminator, - STATE(5853), 2, + ACTIONS(2690), 1, + sym__namecolon, + STATE(2423), 1, + aux_sym_object_access_repeat1, + STATE(5949), 2, sym_comment, sym_include, - [290861] = 6, + [297786] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -286211,902 +292842,1070 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8314), 1, sym_identifier, ACTIONS(8316), 1, - sym__terminator, - STATE(5854), 2, + anon_sym_STAR, + STATE(5950), 2, sym_comment, sym_include, - [290881] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297806] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2301), 1, - sym__block_terminator, - STATE(5855), 2, + ACTIONS(1441), 1, + sym__namecolon, + STATE(1051), 1, + aux_sym_object_access_repeat1, + STATE(5951), 2, sym_comment, sym_include, - [290901] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297826] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(4485), 2, + ACTIONS(3815), 1, anon_sym_COLON, - anon_sym_COMMA, - STATE(5856), 2, + STATE(5859), 1, + sym_body, + STATE(5952), 2, sym_comment, sym_include, - [290919] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297846] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(8318), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(5857), 2, - sym_comment, - sym_include, - [290937] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6159), 1, - anon_sym_COLON, - STATE(5263), 1, - sym_case_body, - STATE(5858), 2, + ACTIONS(7874), 1, + anon_sym_LPAREN, + STATE(4295), 1, + sym_query_fields, + STATE(5953), 2, sym_comment, sym_include, - [290957] = 6, - ACTIONS(65), 1, + [297866] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7652), 1, - anon_sym_LPAREN, - STATE(4249), 1, - sym_query_fields, - STATE(5859), 2, + ACTIONS(8318), 1, + sym_identifier, + STATE(6425), 1, + sym_qualified_name, + STATE(5954), 2, sym_comment, sym_include, - [290977] = 6, - ACTIONS(65), 1, + [297886] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, ACTIONS(8320), 1, - sym__terminator, + sym_identifier, ACTIONS(8322), 1, - aux_sym_finally_statement_token1, - STATE(5860), 2, + anon_sym_STAR, + STATE(5955), 2, sym_comment, sym_include, - [290997] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297906] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6943), 1, - anon_sym_LPAREN, - STATE(1146), 1, - sym_function_arguments, - STATE(5861), 2, + ACTIONS(8022), 1, + anon_sym_DOT, + ACTIONS(8324), 1, + aux_sym__function_terminator_token1, + STATE(5956), 2, sym_comment, sym_include, - [291017] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297926] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5061), 1, - sym__terminator, - ACTIONS(5063), 1, - aux_sym_function_call_token1, - STATE(5862), 2, + ACTIONS(7874), 1, + anon_sym_LPAREN, + STATE(4472), 1, + sym_query_fields, + STATE(5957), 2, sym_comment, sym_include, - [291037] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297946] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2054), 1, - sym__block_terminator, - STATE(5863), 2, + ACTIONS(7874), 1, + anon_sym_LPAREN, + STATE(4150), 1, + sym_query_fields, + STATE(5958), 2, sym_comment, sym_include, - [291057] = 6, - ACTIONS(65), 1, + [297966] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8324), 1, - anon_sym_DOT, ACTIONS(8326), 1, - aux_sym__procedure_terminator_token1, - STATE(5864), 2, + sym_identifier, + STATE(6651), 1, + sym_qualified_name, + STATE(5959), 2, sym_comment, sym_include, - [291077] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [297986] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, ACTIONS(8328), 1, sym__terminator, ACTIONS(8330), 1, aux_sym_class_type_token1, - STATE(5865), 2, + STATE(5960), 2, sym_comment, sym_include, - [291097] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [298006] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5067), 1, + ACTIONS(8332), 1, sym__terminator, - ACTIONS(5069), 1, - aux_sym_function_call_token1, - STATE(5866), 2, + ACTIONS(8334), 1, + aux_sym_class_type_token1, + STATE(5961), 2, sym_comment, sym_include, - [291117] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [298026] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2058), 1, - sym__block_terminator, - STATE(5867), 2, + ACTIONS(77), 1, + anon_sym_LPAREN, + STATE(1444), 1, + sym_function_arguments, + STATE(5962), 2, sym_comment, sym_include, - [291137] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [298046] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - STATE(2059), 1, + STATE(2077), 1, sym__block_terminator, - STATE(5868), 2, + STATE(5963), 2, sym_comment, sym_include, - [291157] = 6, - ACTIONS(3), 1, + [298066] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8332), 1, - sym_identifier, - ACTIONS(8334), 1, - sym__terminator, - STATE(5869), 2, + ACTIONS(8336), 1, + anon_sym_DOT, + ACTIONS(8338), 1, + aux_sym__case_terminator_token1, + STATE(5964), 2, sym_comment, sym_include, - [291177] = 6, - ACTIONS(3), 1, + [298086] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8336), 1, - sym_identifier, - ACTIONS(8338), 1, - anon_sym_STAR, - STATE(5870), 2, + ACTIONS(7874), 1, + anon_sym_LPAREN, + STATE(4285), 1, + sym_query_fields, + STATE(5965), 2, sym_comment, sym_include, - [291197] = 6, - ACTIONS(3), 1, + [298106] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, + ACTIONS(7619), 1, + sym__terminator, ACTIONS(8340), 1, - sym_identifier, - STATE(4525), 1, - sym_qualified_name, - STATE(5871), 2, + aux_sym_setter_token1, + STATE(5966), 2, sym_comment, sym_include, - [291217] = 6, - ACTIONS(3), 1, + [298126] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, ACTIONS(8342), 1, - sym_identifier, - STATE(124), 1, - sym_qualified_name, - STATE(5872), 2, + sym__terminator, + ACTIONS(8344), 1, + aux_sym_constructor_definition_token1, + STATE(5967), 2, sym_comment, sym_include, - [291237] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [298146] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8344), 1, - sym__terminator, - ACTIONS(8346), 1, - aux_sym_class_type_token1, - STATE(5873), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(5723), 1, + sym_body, + STATE(5968), 2, sym_comment, sym_include, - [291257] = 6, - ACTIONS(3), 1, + [298166] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, + ACTIONS(8346), 1, + sym__terminator, ACTIONS(8348), 1, - sym_identifier, - STATE(5844), 1, - sym_qualified_name, - STATE(5874), 2, + aux_sym_function_call_token1, + STATE(5969), 2, sym_comment, sym_include, - [291277] = 6, - ACTIONS(65), 1, + [298186] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5160), 1, + aux_sym__block_terminator_token1, + STATE(4723), 1, + sym__block_terminator, + STATE(5970), 2, + sym_comment, + sym_include, + [298206] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(6169), 1, - sym_body, - STATE(5875), 2, + ACTIONS(7149), 1, + anon_sym_LPAREN, + STATE(1066), 1, + sym_function_arguments, + STATE(5971), 2, sym_comment, sym_include, - [291297] = 6, - ACTIONS(65), 1, + [298226] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6431), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5972), 2, + sym_comment, + sym_include, + [298244] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(2062), 1, + STATE(2187), 1, sym__block_terminator, - STATE(5876), 2, + STATE(5973), 2, sym_comment, sym_include, - [291317] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [298264] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, ACTIONS(8350), 1, sym__terminator, ACTIONS(8352), 1, aux_sym_prompt_for_statement_token2, - STATE(5877), 2, + STATE(5974), 2, sym_comment, sym_include, - [291337] = 6, + [298284] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8354), 1, + ACTIONS(8354), 2, sym_identifier, - ACTIONS(8356), 1, - anon_sym_STAR, - STATE(5878), 2, + aux_sym_run_tuning_token6, + STATE(5975), 2, sym_comment, sym_include, - [291357] = 6, - ACTIONS(65), 1, + [298302] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(5705), 1, + sym_body, + STATE(5976), 2, + sym_comment, + sym_include, + [298322] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - STATE(2063), 1, + STATE(1992), 1, sym__block_terminator, - STATE(5879), 2, + STATE(5977), 2, + sym_comment, + sym_include, + [298342] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(6762), 1, + sym_body, + STATE(5978), 2, sym_comment, sym_include, - [291377] = 6, + [298362] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5858), 1, - sym__terminator, - ACTIONS(8358), 1, + ACTIONS(8356), 1, sym_identifier, - STATE(5880), 2, + ACTIONS(8358), 1, + anon_sym_STAR, + STATE(5979), 2, sym_comment, sym_include, - [291397] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [298382] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(2269), 1, + STATE(2198), 1, sym__block_terminator, - STATE(5881), 2, + STATE(5980), 2, sym_comment, sym_include, - [291417] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [298402] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - STATE(2069), 1, + STATE(2420), 1, sym__block_terminator, - STATE(5882), 2, + STATE(5981), 2, sym_comment, sym_include, - [291437] = 6, - ACTIONS(65), 1, + [298422] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(8360), 1, + sym__terminator, + ACTIONS(8362), 1, + aux_sym_function_call_token1, + STATE(5982), 2, + sym_comment, + sym_include, + [298442] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(5936), 1, - sym_body, - STATE(5883), 2, + ACTIONS(8022), 1, + anon_sym_DOT, + ACTIONS(8364), 1, + aux_sym__case_terminator_token1, + STATE(5983), 2, sym_comment, sym_include, - [291457] = 6, + [298462] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8360), 1, + ACTIONS(8366), 1, sym_identifier, - STATE(3206), 1, + STATE(4538), 1, sym_qualified_name, - STATE(5884), 2, + STATE(5984), 2, sym_comment, sym_include, - [291477] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [298482] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2261), 1, - sym__block_terminator, - STATE(5885), 2, + ACTIONS(7145), 1, + anon_sym_LPAREN, + STATE(2516), 1, + sym_function_arguments, + STATE(5985), 2, sym_comment, sym_include, - [291497] = 6, - ACTIONS(65), 1, + [298502] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4767), 1, - sym__block_terminator, - STATE(5886), 2, + ACTIONS(8368), 1, + sym_identifier, + STATE(6532), 1, + sym_qualified_name, + STATE(5986), 2, sym_comment, sym_include, - [291517] = 6, - ACTIONS(65), 1, + [298522] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(5924), 1, - sym_body, - STATE(5887), 2, + ACTIONS(8370), 1, + sym_identifier, + STATE(4617), 1, + sym_qualified_name, + STATE(5987), 2, sym_comment, sym_include, - [291537] = 6, + [298542] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8362), 1, + ACTIONS(8372), 1, sym_identifier, - STATE(5380), 1, - sym_qualified_name, - STATE(5888), 2, + ACTIONS(8374), 1, + anon_sym_RPAREN, + STATE(5988), 2, sym_comment, sym_include, - [291557] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [298562] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7810), 1, - aux_sym_scope_tuning_token1, - STATE(6111), 1, - sym_new_expression, - STATE(5889), 2, + ACTIONS(8336), 1, + anon_sym_DOT, + ACTIONS(8376), 1, + aux_sym__function_terminator_token1, + STATE(5989), 2, sym_comment, sym_include, - [291577] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [298582] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8364), 1, + ACTIONS(7139), 1, sym__terminator, - ACTIONS(8366), 1, - aux_sym_interface_statement_token1, - STATE(5890), 2, + ACTIONS(7141), 1, + aux_sym_using_statement_token2, + STATE(5990), 2, sym_comment, sym_include, - [291597] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [298602] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7678), 1, - aux_sym_on_error_phrase_token1, - STATE(6686), 1, - sym_on_error_phrase, - STATE(5891), 2, + ACTIONS(5138), 1, + aux_sym__block_terminator_token1, + STATE(2427), 1, + sym__block_terminator, + STATE(5991), 2, sym_comment, sym_include, - [291617] = 6, + [298622] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8368), 1, + ACTIONS(8378), 1, sym_identifier, - STATE(5342), 1, + STATE(5985), 1, sym_qualified_name, - STATE(5892), 2, + STATE(5992), 2, sym_comment, sym_include, - [291637] = 5, - ACTIONS(65), 1, + [298642] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1706), 1, + sym__block_terminator, + STATE(5993), 2, + sym_comment, + sym_include, + [298662] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8370), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(5893), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(5563), 1, + sym_body, + STATE(5994), 2, sym_comment, sym_include, - [291655] = 6, - ACTIONS(65), 1, + [298682] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(8380), 1, + sym_identifier, + STATE(5990), 1, + sym_qualified_name, + STATE(5995), 2, + sym_comment, + sym_include, + [298702] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(2071), 1, + STATE(1573), 1, sym__block_terminator, - STATE(5894), 2, + STATE(5996), 2, sym_comment, sym_include, - [291675] = 6, + [298722] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8372), 1, + ACTIONS(8382), 1, sym_identifier, - STATE(3232), 1, - sym_qualified_name, - STATE(5895), 2, + ACTIONS(8384), 1, + sym__terminator, + STATE(5997), 2, sym_comment, sym_include, - [291695] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [298742] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8374), 1, - sym__terminator, - ACTIONS(8376), 1, - aux_sym_function_call_token1, - STATE(5896), 2, + ACTIONS(7720), 1, + aux_sym_on_error_phrase_token1, + STATE(6251), 1, + sym_on_error_phrase, + STATE(5998), 2, sym_comment, sym_include, - [291715] = 6, + [298762] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8378), 1, + ACTIONS(8386), 1, sym_identifier, - STATE(5404), 1, + STATE(5205), 1, sym_qualified_name, - STATE(5897), 2, + STATE(5999), 2, sym_comment, sym_include, - [291735] = 6, + [298782] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8380), 1, + ACTIONS(8388), 1, sym_identifier, - ACTIONS(8382), 1, - sym__terminator, - STATE(5898), 2, + STATE(3268), 1, + sym_qualified_name, + STATE(6000), 2, sym_comment, sym_include, - [291755] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [298802] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8384), 2, - aux_sym_using_statement_token3, - aux_sym_using_statement_token4, - STATE(5899), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(5589), 1, + sym_body, + STATE(6001), 2, sym_comment, sym_include, - [291773] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [298822] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8386), 1, - aux_sym_input_close_statement_token2, - ACTIONS(8388), 1, - aux_sym_output_stream_statement_token1, - STATE(5900), 2, + ACTIONS(5075), 2, + sym__augmented_assignment, + anon_sym_EQ, + STATE(6002), 2, sym_comment, sym_include, - [291793] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [298840] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8388), 1, - aux_sym_output_stream_statement_token1, - ACTIONS(8390), 1, - aux_sym_input_close_statement_token2, - STATE(5901), 2, + ACTIONS(138), 2, + sym__terminator, + aux_sym_function_call_token1, + STATE(6003), 2, sym_comment, sym_include, - [291813] = 6, - ACTIONS(65), 1, + [298858] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(7970), 1, + aux_sym_scope_tuning_token1, + STATE(6611), 1, + sym_new_expression, + STATE(6004), 2, + sym_comment, + sym_include, + [298878] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4776), 1, - sym__block_terminator, - STATE(5902), 2, + ACTIONS(8390), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(6005), 2, sym_comment, sym_include, - [291833] = 6, - ACTIONS(3), 1, + [298896] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, ACTIONS(8392), 1, - sym_identifier, - STATE(5203), 1, - sym_qualified_name, - STATE(5903), 2, + sym__terminator, + ACTIONS(8394), 1, + aux_sym_prompt_for_statement_token2, + STATE(6006), 2, sym_comment, sym_include, - [291853] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [298916] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - STATE(2072), 1, + STATE(2409), 1, sym__block_terminator, - STATE(5904), 2, + STATE(6007), 2, sym_comment, sym_include, - [291873] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [298936] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7640), 2, - sym__terminator, - aux_sym_output_stream_statement_token1, - STATE(5905), 2, + ACTIONS(5180), 1, + aux_sym__block_terminator_token1, + STATE(1589), 1, + sym__block_terminator, + STATE(6008), 2, sym_comment, sym_include, - [291891] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [298956] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2075), 1, - sym__block_terminator, - STATE(5906), 2, + ACTIONS(8302), 1, + anon_sym_DOT, + ACTIONS(8396), 1, + aux_sym__function_terminator_token1, + STATE(6009), 2, sym_comment, sym_include, - [291911] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [298976] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2246), 1, - sym__block_terminator, - STATE(5907), 2, + ACTIONS(8398), 1, + sym__terminator, + ACTIONS(8400), 1, + aux_sym_interface_statement_token1, + STATE(6010), 2, sym_comment, sym_include, - [291931] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [298996] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8394), 1, - aux_sym_using_statement_token2, - ACTIONS(8396), 1, - aux_sym_input_close_statement_token2, - STATE(5908), 2, + ACTIONS(7924), 1, + anon_sym_DOT, + ACTIONS(8402), 1, + aux_sym__case_terminator_token1, + STATE(6011), 2, sym_comment, sym_include, - [291951] = 6, - ACTIONS(65), 1, + [299016] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(7874), 1, + anon_sym_LPAREN, + STATE(4277), 1, + sym_query_fields, + STATE(6012), 2, + sym_comment, + sym_include, + [299036] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(5427), 1, + STATE(6634), 1, sym_body, - STATE(5909), 2, + STATE(6013), 2, sym_comment, sym_include, - [291971] = 6, - ACTIONS(65), 1, + [299056] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8394), 1, - aux_sym_using_statement_token2, - ACTIONS(8398), 1, - aux_sym_input_close_statement_token2, - STATE(5910), 2, + ACTIONS(8404), 1, + sym_identifier, + ACTIONS(8406), 1, + sym__terminator, + STATE(6014), 2, sym_comment, sym_include, - [291991] = 6, - ACTIONS(65), 1, + [299076] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2225), 1, + sym__block_terminator, + STATE(6015), 2, + sym_comment, + sym_include, + [299096] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8400), 1, - sym__terminator, - ACTIONS(8402), 1, - aux_sym_prompt_for_statement_token2, - STATE(5911), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(6115), 1, + sym_body, + STATE(6016), 2, sym_comment, sym_include, - [292011] = 6, - ACTIONS(65), 1, + [299116] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(6072), 1, + sym_body, + STATE(6017), 2, + sym_comment, + sym_include, + [299136] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - STATE(2238), 1, + STATE(2258), 1, sym__block_terminator, - STATE(5912), 2, + STATE(6018), 2, sym_comment, sym_include, - [292031] = 6, - ACTIONS(65), 1, + [299156] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6889), 1, - anon_sym_LPAREN, - STATE(2786), 1, - sym_function_arguments, - STATE(5913), 2, + ACTIONS(8408), 1, + sym_identifier, + STATE(4567), 1, + sym_qualified_name, + STATE(6019), 2, sym_comment, sym_include, - [292051] = 6, - ACTIONS(65), 1, + [299176] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(8410), 1, + sym_identifier, + STATE(131), 1, + sym_qualified_name, + STATE(6020), 2, + sym_comment, + sym_include, + [299196] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6159), 1, + ACTIONS(5902), 1, anon_sym_COLON, - STATE(5272), 1, + STATE(5244), 1, sym_case_body, - STATE(5914), 2, + STATE(6021), 2, + sym_comment, + sym_include, + [299216] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(5670), 1, + sym_body, + STATE(6022), 2, sym_comment, sym_include, - [292071] = 6, + [299236] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8404), 1, + ACTIONS(8412), 1, sym_identifier, - STATE(3221), 1, + STATE(3273), 1, sym_qualified_name, - STATE(5915), 2, + STATE(6023), 2, sym_comment, sym_include, - [292091] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299256] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8406), 1, - sym__terminator, - ACTIONS(8408), 1, - aux_sym_interface_statement_token1, - STATE(5916), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(5532), 1, + sym_body, + STATE(6024), 2, sym_comment, sym_include, - [292111] = 6, - ACTIONS(3), 1, + [299276] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8410), 1, - sym_identifier, - ACTIONS(8412), 1, - sym__integer_literal, - STATE(5917), 2, + ACTIONS(7117), 1, + anon_sym_LPAREN, + STATE(244), 1, + sym_function_arguments, + STATE(6025), 2, sym_comment, sym_include, - [292131] = 6, - ACTIONS(3), 1, + [299296] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, ACTIONS(8414), 1, - sym_identifier, + aux_sym_image_phrase_token7, ACTIONS(8416), 1, - sym__terminator, - STATE(5918), 2, + aux_sym_image_phrase_token9, + STATE(6026), 2, sym_comment, sym_include, - [292151] = 6, + [299316] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -287117,20807 +293916,20960 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(8420), 1, sym__integer_literal, - STATE(5919), 2, + STATE(6027), 2, sym_comment, sym_include, - [292171] = 6, - ACTIONS(3), 1, + [299336] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8422), 1, - sym_identifier, - STATE(3240), 1, - sym_qualified_name, - STATE(5920), 2, + ACTIONS(7970), 1, + aux_sym_scope_tuning_token1, + STATE(6204), 1, + sym_new_expression, + STATE(6028), 2, sym_comment, sym_include, - [292191] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299356] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6159), 1, - anon_sym_COLON, - STATE(5351), 1, - sym_case_body, - STATE(5921), 2, + ACTIONS(8422), 2, + sym__terminator, + aux_sym_field_definition_token1, + STATE(6029), 2, sym_comment, sym_include, - [292211] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299374] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, ACTIONS(8424), 1, aux_sym_using_statement_token2, ACTIONS(8426), 1, aux_sym_input_close_statement_token2, - STATE(5922), 2, + STATE(6030), 2, sym_comment, sym_include, - [292231] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299394] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, ACTIONS(8424), 1, aux_sym_using_statement_token2, ACTIONS(8428), 1, aux_sym_input_close_statement_token2, - STATE(5923), 2, + STATE(6031), 2, sym_comment, sym_include, - [292251] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299414] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4813), 1, - sym__block_terminator, - STATE(5924), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(5523), 1, + sym_body, + STATE(6032), 2, sym_comment, sym_include, - [292271] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299434] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8430), 1, - sym__terminator, - ACTIONS(8432), 1, - aux_sym_function_call_token1, - STATE(5925), 2, + ACTIONS(7970), 1, + aux_sym_scope_tuning_token1, + STATE(6717), 1, + sym_new_expression, + STATE(6033), 2, sym_comment, sym_include, - [292291] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299454] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2076), 1, - sym__block_terminator, - STATE(5926), 2, + ACTIONS(8430), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(6034), 2, sym_comment, sym_include, - [292311] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299472] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(4478), 2, anon_sym_COLON, - STATE(5834), 1, - sym_body, - STATE(5927), 2, + anon_sym_COMMA, + STATE(6035), 2, sym_comment, sym_include, - [292331] = 6, - ACTIONS(65), 1, + [299490] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2078), 1, - sym__block_terminator, - STATE(5928), 2, + ACTIONS(8432), 1, + sym_identifier, + ACTIONS(8434), 1, + sym__terminator, + STATE(6036), 2, sym_comment, sym_include, - [292351] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299510] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(2081), 1, + STATE(2234), 1, sym__block_terminator, - STATE(5929), 2, + STATE(6037), 2, sym_comment, sym_include, - [292371] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299530] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2082), 1, - sym__block_terminator, - STATE(5930), 2, + ACTIONS(7111), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(6038), 2, sym_comment, sym_include, - [292391] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299548] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8434), 1, - aux_sym_input_close_statement_token2, ACTIONS(8436), 1, + aux_sym_input_close_statement_token2, + ACTIONS(8438), 1, aux_sym_output_stream_statement_token1, - STATE(5931), 2, + STATE(6039), 2, sym_comment, sym_include, - [292411] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299568] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8436), 1, - aux_sym_output_stream_statement_token1, ACTIONS(8438), 1, + aux_sym_output_stream_statement_token1, + ACTIONS(8440), 1, aux_sym_input_close_statement_token2, - STATE(5932), 2, + STATE(6040), 2, sym_comment, sym_include, - [292431] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299588] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8440), 1, - sym__terminator, - ACTIONS(8442), 1, - aux_sym_prompt_for_statement_token2, - STATE(5933), 2, + ACTIONS(8442), 2, + aux_sym_using_statement_token3, + aux_sym_using_statement_token4, + STATE(6041), 2, sym_comment, sym_include, - [292451] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299606] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, ACTIONS(8444), 2, aux_sym_using_statement_token3, aux_sym_using_statement_token4, - STATE(5934), 2, + STATE(6042), 2, sym_comment, sym_include, - [292469] = 6, - ACTIONS(3), 1, + [299624] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, ACTIONS(8446), 1, - sym_identifier, - STATE(5807), 1, - sym_qualified_name, - STATE(5935), 2, + aux_sym_input_close_statement_token2, + ACTIONS(8448), 1, + aux_sym_output_stream_statement_token1, + STATE(6043), 2, sym_comment, sym_include, - [292489] = 6, - ACTIONS(65), 1, + [299644] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4843), 1, - sym__block_terminator, - STATE(5936), 2, + ACTIONS(8450), 1, + sym_identifier, + ACTIONS(8452), 1, + anon_sym_STAR, + STATE(6044), 2, sym_comment, sym_include, - [292509] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299664] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8448), 2, + ACTIONS(8454), 2, aux_sym_on_error_phrase_token2, aux_sym_on_error_phrase_token7, - STATE(5937), 2, + STATE(6045), 2, sym_comment, sym_include, - [292527] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299682] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7810), 1, + ACTIONS(7970), 1, aux_sym_scope_tuning_token1, - STATE(6552), 1, + STATE(6264), 1, sym_new_expression, - STATE(5938), 2, + STATE(6046), 2, sym_comment, sym_include, - [292547] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299702] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(5512), 1, + STATE(6008), 1, sym_body, - STATE(5939), 2, + STATE(6047), 2, sym_comment, sym_include, - [292567] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299722] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2085), 1, - sym__block_terminator, - STATE(5940), 2, + ACTIONS(1613), 1, + sym__namecolon, + STATE(1077), 1, + aux_sym_object_access_repeat1, + STATE(6048), 2, sym_comment, sym_include, - [292587] = 6, - ACTIONS(3), 1, + [299742] = 6, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8450), 1, - sym_identifier, - STATE(5318), 1, - sym_qualified_name, - STATE(5941), 2, + ACTIONS(8456), 1, + sym__terminator, + ACTIONS(8458), 1, + aux_sym_class_type_token1, + STATE(6049), 2, sym_comment, sym_include, - [292607] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299762] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8452), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5942), 2, + ACTIONS(8448), 1, + aux_sym_output_stream_statement_token1, + ACTIONS(8460), 1, + aux_sym_input_close_statement_token2, + STATE(6050), 2, sym_comment, sym_include, - [292625] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299782] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7678), 1, - aux_sym_on_error_phrase_token1, - STATE(6222), 1, - sym_on_error_phrase, - STATE(5943), 2, + ACTIONS(8302), 1, + anon_sym_DOT, + ACTIONS(8462), 1, + aux_sym__case_terminator_token1, + STATE(6051), 2, sym_comment, sym_include, - [292645] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299802] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(5521), 1, + STATE(5996), 1, sym_body, - STATE(5944), 2, - sym_comment, - sym_include, - [292665] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2408), 1, - sym__block_terminator, - STATE(5945), 2, + STATE(6052), 2, sym_comment, sym_include, - [292685] = 5, - ACTIONS(65), 1, + [299822] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5647), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5946), 2, + ACTIONS(8464), 1, + sym_identifier, + STATE(3028), 1, + sym_qualified_name, + STATE(6053), 2, sym_comment, sym_include, - [292703] = 6, + [299842] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8454), 1, + ACTIONS(8466), 1, sym_identifier, - STATE(5802), 1, + STATE(3256), 1, sym_qualified_name, - STATE(5947), 2, + STATE(6054), 2, + sym_comment, + sym_include, + [299862] = 6, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(5902), 1, + anon_sym_COLON, + STATE(5341), 1, + sym_case_body, + STATE(6055), 2, sym_comment, sym_include, - [292723] = 6, + [299882] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8456), 1, + ACTIONS(8468), 1, sym_identifier, - STATE(129), 1, + STATE(118), 1, sym_qualified_name, - STATE(5948), 2, + STATE(6056), 2, sym_comment, sym_include, - [292743] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299902] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8458), 1, - sym__terminator, - ACTIONS(8460), 1, - aux_sym_function_call_token1, - STATE(5949), 2, + ACTIONS(8470), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(6057), 2, sym_comment, sym_include, - [292763] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299920] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2086), 1, - sym__block_terminator, - STATE(5950), 2, + ACTIONS(8472), 1, + aux_sym_using_statement_token2, + ACTIONS(8474), 1, + aux_sym_input_close_statement_token2, + STATE(6058), 2, sym_comment, sym_include, - [292783] = 6, + [299940] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8462), 1, + ACTIONS(8476), 1, sym_identifier, - STATE(4515), 1, + STATE(4568), 1, sym_qualified_name, - STATE(5951), 2, + STATE(6059), 2, sym_comment, sym_include, - [292803] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299960] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7412), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5952), 2, + ACTIONS(8472), 1, + aux_sym_using_statement_token2, + ACTIONS(8478), 1, + aux_sym_input_close_statement_token2, + STATE(6060), 2, sym_comment, sym_include, - [292821] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [299980] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5701), 1, - anon_sym_LPAREN, - STATE(5743), 1, - sym_function_parameters, - STATE(5953), 2, + ACTIONS(6725), 1, + sym__escaped_string, + STATE(3061), 1, + sym_string_literal, + STATE(6061), 2, sym_comment, sym_include, - [292841] = 6, - ACTIONS(65), 1, + [300000] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8464), 1, - sym__terminator, - ACTIONS(8466), 1, - aux_sym_class_type_token1, - STATE(5954), 2, + ACTIONS(8480), 1, + sym_identifier, + ACTIONS(8482), 1, + sym__integer_literal, + STATE(6062), 2, sym_comment, sym_include, - [292861] = 6, - ACTIONS(65), 1, + [300020] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8468), 1, - sym__terminator, - ACTIONS(8470), 1, - aux_sym_class_type_token1, - STATE(5955), 2, + ACTIONS(8484), 1, + sym_identifier, + STATE(3288), 1, + sym_qualified_name, + STATE(6063), 2, sym_comment, sym_include, - [292881] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300040] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2097), 1, - sym__block_terminator, - STATE(5956), 2, + ACTIONS(5902), 1, + anon_sym_COLON, + STATE(5455), 1, + sym_case_body, + STATE(6064), 2, sym_comment, sym_include, - [292901] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300060] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8472), 1, + ACTIONS(8486), 1, sym__terminator, - ACTIONS(8474), 1, - aux_sym_catch_statement_token1, - STATE(5957), 2, + ACTIONS(8488), 1, + aux_sym_interface_statement_token1, + STATE(6065), 2, sym_comment, sym_include, - [292921] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300080] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - STATE(2108), 1, + STATE(2343), 1, sym__block_terminator, - STATE(5958), 2, + STATE(6066), 2, sym_comment, sym_include, - [292941] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300100] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - STATE(2110), 1, + STATE(2351), 1, sym__block_terminator, - STATE(5959), 2, + STATE(6067), 2, sym_comment, sym_include, - [292961] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300120] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - STATE(2111), 1, + STATE(2350), 1, sym__block_terminator, - STATE(5960), 2, + STATE(6068), 2, sym_comment, sym_include, - [292981] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300140] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4902), 1, - sym__block_terminator, - STATE(5961), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(5599), 1, + sym_body, + STATE(6069), 2, sym_comment, sym_include, - [293001] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300160] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4892), 1, - sym__block_terminator, - STATE(5962), 2, + ACTIONS(8336), 1, + anon_sym_DOT, + ACTIONS(8490), 1, + aux_sym__procedure_terminator_token1, + STATE(6070), 2, sym_comment, sym_include, - [293021] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300180] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4896), 1, - sym__block_terminator, - STATE(5963), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(5463), 1, + sym_body, + STATE(6071), 2, sym_comment, sym_include, - [293041] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300200] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - STATE(4901), 1, + STATE(2013), 1, sym__block_terminator, - STATE(5964), 2, + STATE(6072), 2, sym_comment, sym_include, - [293061] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300220] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4904), 1, - sym__block_terminator, - STATE(5965), 2, + ACTIONS(4436), 2, + anon_sym_COLON, + anon_sym_COMMA, + STATE(6073), 2, sym_comment, sym_include, - [293081] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300238] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8476), 1, + ACTIONS(8492), 1, sym__terminator, - ACTIONS(8478), 1, + ACTIONS(8494), 1, aux_sym_interface_statement_token1, - STATE(5966), 2, + STATE(6074), 2, sym_comment, sym_include, - [293101] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300258] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4910), 1, - sym__block_terminator, - STATE(5967), 2, + ACTIONS(2710), 1, + sym__namecolon, + STATE(2318), 1, + aux_sym_object_access_repeat1, + STATE(6075), 2, sym_comment, sym_include, - [293121] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300278] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8480), 2, + ACTIONS(8496), 2, aux_sym_on_error_phrase_token2, aux_sym_on_error_phrase_token7, - STATE(5968), 2, + STATE(6076), 2, sym_comment, sym_include, - [293139] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300296] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7810), 1, + ACTIONS(7970), 1, aux_sym_scope_tuning_token1, - STATE(6442), 1, + STATE(6380), 1, sym_new_expression, - STATE(5969), 2, + STATE(6077), 2, sym_comment, sym_include, - [293159] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300316] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(5593), 1, + STATE(5863), 1, sym_body, - STATE(5970), 2, + STATE(6078), 2, sym_comment, sym_include, - [293179] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300336] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4918), 1, - sym__block_terminator, - STATE(5971), 2, + ACTIONS(5077), 1, + sym__terminator, + ACTIONS(5079), 1, + aux_sym_function_call_token1, + STATE(6079), 2, sym_comment, sym_include, - [293199] = 6, - ACTIONS(65), 1, + [300356] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4925), 1, - sym__block_terminator, - STATE(5972), 2, + ACTIONS(8498), 1, + sym_identifier, + ACTIONS(8500), 1, + anon_sym_STAR, + STATE(6080), 2, sym_comment, sym_include, - [293219] = 6, - ACTIONS(65), 1, + [300376] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4938), 1, - sym__block_terminator, - STATE(5973), 2, + ACTIONS(8502), 1, + sym_identifier, + STATE(5432), 1, + sym_qualified_name, + STATE(6081), 2, sym_comment, sym_include, - [293239] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300396] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2061), 1, - sym__block_terminator, - STATE(5974), 2, + ACTIONS(7720), 1, + aux_sym_on_error_phrase_token1, + STATE(6754), 1, + sym_on_error_phrase, + STATE(6082), 2, sym_comment, sym_include, - [293259] = 6, - ACTIONS(65), 1, + [300416] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4940), 1, - sym__block_terminator, - STATE(5975), 2, + ACTIONS(8504), 1, + sym_identifier, + STATE(5510), 1, + sym_qualified_name, + STATE(6083), 2, sym_comment, sym_include, - [293279] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300436] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4943), 1, - sym__block_terminator, - STATE(5976), 2, + ACTIONS(8506), 1, + sym__terminator, + ACTIONS(8508), 1, + aux_sym_finally_statement_token1, + STATE(6084), 2, sym_comment, sym_include, - [293299] = 6, - ACTIONS(65), 1, + [300456] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4947), 1, - sym__block_terminator, - STATE(5977), 2, + ACTIONS(8510), 1, + sym_identifier, + STATE(5527), 1, + sym_qualified_name, + STATE(6085), 2, sym_comment, sym_include, - [293319] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300476] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4962), 1, - sym__block_terminator, - STATE(5978), 2, + ACTIONS(7031), 1, + anon_sym_LPAREN, + STATE(2531), 1, + sym_function_arguments, + STATE(6086), 2, sym_comment, sym_include, - [293339] = 6, + [300496] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8482), 1, + ACTIONS(8512), 1, sym_identifier, - STATE(6379), 1, + STATE(6405), 1, sym_qualified_name, - STATE(5979), 2, + STATE(6087), 2, sym_comment, sym_include, - [293359] = 6, + [300516] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8484), 1, + ACTIONS(8514), 1, sym_identifier, - STATE(4488), 1, + STATE(4551), 1, sym_qualified_name, - STATE(5980), 2, + STATE(6088), 2, sym_comment, sym_include, - [293379] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300536] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(2211), 1, + STATE(1607), 1, sym__block_terminator, - STATE(5981), 2, + STATE(6089), 2, sym_comment, sym_include, - [293399] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300556] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(7652), 1, - anon_sym_LPAREN, - STATE(4455), 1, - sym_query_fields, - STATE(5982), 2, - sym_comment, - sym_include, - [293419] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4969), 1, - sym__block_terminator, - STATE(5983), 2, + ACTIONS(7924), 1, + anon_sym_DOT, + ACTIONS(8516), 1, + aux_sym__function_terminator_token1, + STATE(6090), 2, sym_comment, sym_include, - [293439] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300576] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4972), 1, - sym__block_terminator, - STATE(5984), 2, - sym_comment, - sym_include, - [293459] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(5664), 1, - sym_body, - STATE(5985), 2, + ACTIONS(8518), 1, + sym__terminator, + ACTIONS(8520), 1, + aux_sym_interface_statement_token1, + STATE(6091), 2, sym_comment, sym_include, - [293479] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300596] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(4978), 1, + STATE(1643), 1, sym__block_terminator, - STATE(5986), 2, + STATE(6092), 2, sym_comment, sym_include, - [293499] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300616] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - STATE(2119), 1, + STATE(2332), 1, sym__block_terminator, - STATE(5987), 2, + STATE(6093), 2, sym_comment, sym_include, - [293519] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300636] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2318), 1, - sym__block_terminator, - STATE(5988), 2, + ACTIONS(851), 1, + anon_sym_LPAREN, + STATE(1408), 1, + sym_function_arguments, + STATE(6094), 2, sym_comment, sym_include, - [293539] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300656] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4985), 1, - sym__block_terminator, - STATE(5989), 2, + ACTIONS(8522), 1, + sym__terminator, + ACTIONS(8524), 1, + aux_sym_class_type_token1, + STATE(6095), 2, sym_comment, sym_include, - [293559] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300676] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(4987), 1, + STATE(2269), 1, sym__block_terminator, - STATE(5990), 2, + STATE(6096), 2, sym_comment, sym_include, - [293579] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300696] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - STATE(2130), 1, + STATE(2291), 1, sym__block_terminator, - STATE(5991), 2, + STATE(6097), 2, sym_comment, sym_include, - [293599] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300716] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(8486), 1, - sym__terminator, - ACTIONS(8488), 1, - aux_sym_catch_statement_token1, - STATE(5992), 2, - sym_comment, - sym_include, - [293619] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(8526), 2, anon_sym_COLON, - STATE(5635), 1, - sym_body, - STATE(5993), 2, + anon_sym_COMMA, + STATE(6098), 2, sym_comment, sym_include, - [293639] = 6, - ACTIONS(65), 1, + [300734] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2135), 1, - sym__block_terminator, - STATE(5994), 2, + ACTIONS(8528), 1, + sym_identifier, + ACTIONS(8530), 1, + anon_sym_STAR, + STATE(6099), 2, sym_comment, sym_include, - [293659] = 6, - ACTIONS(65), 1, + [300754] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4946), 1, - sym__block_terminator, - STATE(5995), 2, + ACTIONS(8532), 1, + sym_identifier, + ACTIONS(8534), 1, + anon_sym_COMMA, + STATE(6100), 2, sym_comment, sym_include, - [293679] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300774] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4998), 1, - sym__block_terminator, - STATE(5996), 2, - sym_comment, - sym_include, - [293699] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, + ACTIONS(3815), 1, anon_sym_COLON, - STATE(5656), 1, + STATE(5774), 1, sym_body, - STATE(5997), 2, + STATE(6101), 2, sym_comment, sym_include, - [293719] = 6, - ACTIONS(65), 1, + [300794] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2144), 1, - sym__block_terminator, - STATE(5998), 2, + ACTIONS(8536), 1, + sym_identifier, + ACTIONS(8538), 1, + sym__terminator, + STATE(6102), 2, sym_comment, sym_include, - [293739] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300814] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, - aux_sym__block_terminator_token1, - STATE(2413), 1, - sym__block_terminator, - STATE(5999), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(5755), 1, + sym_body, + STATE(6103), 2, sym_comment, sym_include, - [293759] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300834] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(2203), 1, + STATE(2280), 1, sym__block_terminator, - STATE(6000), 2, + STATE(6104), 2, sym_comment, sym_include, - [293779] = 6, - ACTIONS(65), 1, + [300854] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8490), 1, - sym__terminator, - ACTIONS(8492), 1, - aux_sym_catch_statement_token1, - STATE(6001), 2, + ACTIONS(8540), 1, + sym_identifier, + ACTIONS(8542), 1, + anon_sym_STAR, + STATE(6105), 2, sym_comment, sym_include, - [293799] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300874] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(7652), 1, - anon_sym_LPAREN, - STATE(4448), 1, - sym_query_fields, - STATE(6002), 2, - sym_comment, - sym_include, - [293819] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(5739), 1, - sym_body, - STATE(6003), 2, + ACTIONS(911), 1, + sym__namecolon, + STATE(252), 1, + aux_sym_object_access_repeat1, + STATE(6106), 2, sym_comment, sym_include, - [293839] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300894] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - STATE(5043), 1, + STATE(2347), 1, sym__block_terminator, - STATE(6004), 2, + STATE(6107), 2, sym_comment, sym_include, - [293859] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300914] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, + ACTIONS(5138), 1, aux_sym__block_terminator_token1, - STATE(2151), 1, + STATE(2306), 1, sym__block_terminator, - STATE(6005), 2, + STATE(6108), 2, sym_comment, sym_include, - [293879] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300934] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(8494), 1, - sym__terminator, - ACTIONS(8496), 1, - aux_sym_interface_statement_token1, - STATE(6006), 2, - sym_comment, - sym_include, - [293899] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8324), 1, - anon_sym_DOT, - ACTIONS(8498), 1, - aux_sym__function_terminator_token1, - STATE(6007), 2, + ACTIONS(4640), 1, + sym__namecolon, + STATE(3512), 1, + aux_sym_object_access_repeat1, + STATE(6109), 2, sym_comment, sym_include, - [293919] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300954] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(5060), 1, + STATE(1681), 1, sym__block_terminator, - STATE(6008), 2, + STATE(6110), 2, sym_comment, sym_include, - [293939] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300974] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7652), 1, + ACTIONS(7874), 1, anon_sym_LPAREN, - STATE(3996), 1, + STATE(4141), 1, sym_query_fields, - STATE(6009), 2, + STATE(6111), 2, sym_comment, sym_include, - [293959] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [300994] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7652), 1, + ACTIONS(7874), 1, anon_sym_LPAREN, - STATE(4415), 1, + STATE(4492), 1, sym_query_fields, - STATE(6010), 2, + STATE(6112), 2, sym_comment, sym_include, - [293979] = 6, + [301014] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8500), 1, + ACTIONS(8544), 1, sym_identifier, - STATE(6321), 1, + STATE(6481), 1, sym_qualified_name, - STATE(6011), 2, + STATE(6113), 2, sym_comment, sym_include, - [293999] = 6, - ACTIONS(65), 1, + [301034] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(5061), 1, - sym__block_terminator, - STATE(6012), 2, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8548), 1, + sym__terminator, + STATE(6114), 2, sym_comment, sym_include, - [294019] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301054] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(4982), 1, + STATE(1666), 1, sym__block_terminator, - STATE(6013), 2, + STATE(6115), 2, sym_comment, sym_include, - [294039] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301074] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4986), 1, - sym__block_terminator, - STATE(6014), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(6631), 1, + sym_body, + STATE(6116), 2, sym_comment, sym_include, - [294059] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301094] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, + ACTIONS(5180), 1, aux_sym__block_terminator_token1, - STATE(4995), 1, + STATE(1715), 1, sym__block_terminator, - STATE(6015), 2, + STATE(6117), 2, sym_comment, sym_include, - [294079] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301114] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7652), 1, - anon_sym_LPAREN, - STATE(4439), 1, - sym_query_fields, - STATE(6016), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(5688), 1, + sym_body, + STATE(6118), 2, sym_comment, sym_include, - [294099] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301134] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2189), 1, - sym__block_terminator, - STATE(6017), 2, + ACTIONS(8550), 1, + sym__terminator, + ACTIONS(8552), 1, + aux_sym_finally_statement_token1, + STATE(6119), 2, sym_comment, sym_include, - [294119] = 6, - ACTIONS(65), 1, + [301154] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(5698), 1, - sym_body, - STATE(6018), 2, + ACTIONS(8554), 1, + sym_identifier, + ACTIONS(8556), 1, + anon_sym_COMMA, + STATE(6120), 2, sym_comment, sym_include, - [294139] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301174] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(5036), 1, - sym__block_terminator, - STATE(6019), 2, + ACTIONS(5081), 1, + sym__terminator, + ACTIONS(5083), 1, + aux_sym_function_call_token1, + STATE(6121), 2, sym_comment, sym_include, - [294159] = 6, - ACTIONS(65), 1, + [301194] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5129), 1, - aux_sym__block_terminator_token1, - STATE(2168), 1, - sym__block_terminator, - STATE(6020), 2, + ACTIONS(8558), 1, + sym_identifier, + STATE(3576), 1, + sym_qualified_name, + STATE(6122), 2, sym_comment, sym_include, - [294179] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301214] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, + ACTIONS(5236), 1, aux_sym__block_terminator_token1, - STATE(5018), 1, + STATE(1835), 1, sym__block_terminator, - STATE(6021), 2, + STATE(6123), 2, sym_comment, sym_include, - [294199] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301234] = 6, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(8324), 1, - anon_sym_DOT, - ACTIONS(8502), 1, - aux_sym__case_terminator_token1, - STATE(6022), 2, - sym_comment, - sym_include, - [294219] = 6, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8504), 1, - sym__terminator, - ACTIONS(8506), 1, - aux_sym_catch_statement_token1, - STATE(6023), 2, + ACTIONS(7874), 1, + anon_sym_LPAREN, + STATE(4065), 1, + sym_query_fields, + STATE(6124), 2, sym_comment, sym_include, - [294239] = 6, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301254] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, - aux_sym__block_terminator_token1, - STATE(4970), 1, - sym__block_terminator, - STATE(6024), 2, + ACTIONS(7874), 1, + anon_sym_LPAREN, + STATE(4516), 1, + sym_query_fields, + STATE(6125), 2, sym_comment, sym_include, - [294259] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301274] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7498), 1, - sym__terminator, - STATE(6025), 2, + ACTIONS(5878), 1, + anon_sym_LPAREN, + STATE(5923), 1, + sym_function_parameters, + STATE(6126), 2, sym_comment, sym_include, - [294276] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301294] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8508), 1, - sym__terminator, - STATE(6026), 2, + ACTIONS(5218), 1, + aux_sym__block_terminator_token1, + STATE(2304), 1, + sym__block_terminator, + STATE(6127), 2, sym_comment, sym_include, - [294293] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301314] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8510), 1, + ACTIONS(7041), 1, sym__terminator, - STATE(6027), 2, + ACTIONS(7043), 1, + aux_sym_using_statement_token2, + STATE(6128), 2, sym_comment, sym_include, - [294310] = 5, - ACTIONS(65), 1, + [301334] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8512), 1, - sym__terminator, - STATE(6028), 2, + ACTIONS(4333), 1, + anon_sym_RPAREN, + ACTIONS(4335), 1, + anon_sym_, + STATE(6129), 2, sym_comment, sym_include, - [294327] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301354] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8514), 1, + ACTIONS(5218), 1, aux_sym__block_terminator_token1, - STATE(6029), 2, + STATE(2313), 1, + sym__block_terminator, + STATE(6130), 2, sym_comment, sym_include, - [294344] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301374] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8516), 1, - sym__terminator, - STATE(6030), 2, + ACTIONS(3815), 1, + anon_sym_COLON, + STATE(5654), 1, + sym_body, + STATE(6131), 2, sym_comment, sym_include, - [294361] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301394] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8518), 1, - anon_sym_RBRACK, - STATE(6031), 2, + ACTIONS(7874), 1, + anon_sym_LPAREN, + STATE(4525), 1, + sym_query_fields, + STATE(6132), 2, sym_comment, sym_include, - [294378] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301414] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6478), 1, + ACTIONS(8560), 1, sym__terminator, - STATE(6032), 2, + ACTIONS(8562), 1, + aux_sym_getter_token1, + STATE(6133), 2, sym_comment, sym_include, - [294395] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301434] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8520), 1, - sym__terminator, - STATE(6033), 2, + ACTIONS(7037), 1, + anon_sym_LPAREN, + STATE(1057), 1, + sym_function_arguments, + STATE(6134), 2, sym_comment, sym_include, - [294412] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301454] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7465), 1, - sym__terminator, - STATE(6034), 2, + ACTIONS(7039), 1, + anon_sym_LPAREN, + STATE(1169), 1, + sym_function_arguments, + STATE(6135), 2, sym_comment, sym_include, - [294429] = 5, - ACTIONS(65), 1, + [301474] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8522), 1, - sym__terminator, - STATE(6035), 2, + ACTIONS(8564), 1, + sym_identifier, + ACTIONS(8566), 1, + anon_sym_STAR, + STATE(6136), 2, sym_comment, sym_include, - [294446] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301494] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8524), 1, - sym__terminator, - STATE(6036), 2, + ACTIONS(855), 1, + sym__namecolon, + STATE(189), 1, + aux_sym_object_access_repeat1, + STATE(6137), 2, sym_comment, sym_include, - [294463] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301514] = 6, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6451), 1, - sym__terminator, - STATE(6037), 2, + ACTIONS(7874), 1, + anon_sym_LPAREN, + STATE(4532), 1, + sym_query_fields, + STATE(6138), 2, sym_comment, sym_include, - [294480] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301534] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7489), 1, + ACTIONS(8568), 1, sym__terminator, - STATE(6038), 2, + STATE(6139), 2, sym_comment, sym_include, - [294497] = 5, - ACTIONS(65), 1, + [301551] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7483), 1, - sym__terminator, - STATE(6039), 2, + ACTIONS(8570), 1, + sym_identifier, + STATE(6140), 2, sym_comment, sym_include, - [294514] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301568] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8526), 1, - aux_sym_buffer_definition_token2, - STATE(6040), 2, + ACTIONS(8572), 1, + anon_sym_LPAREN, + STATE(6141), 2, sym_comment, sym_include, - [294531] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301585] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6514), 1, + ACTIONS(8574), 1, sym__terminator, - STATE(6041), 2, + STATE(6142), 2, sym_comment, sym_include, - [294548] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301602] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7457), 1, - sym__terminator, - STATE(6042), 2, + ACTIONS(8576), 1, + aux_sym_sort_clause_token2, + STATE(6143), 2, sym_comment, sym_include, - [294565] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301619] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8528), 1, - sym__terminator, - STATE(6043), 2, + ACTIONS(8578), 1, + aux_sym__block_terminator_token1, + STATE(6144), 2, sym_comment, sym_include, - [294582] = 5, - ACTIONS(65), 1, + [301636] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8530), 1, - sym__terminator, - STATE(6044), 2, + ACTIONS(8580), 1, + sym_identifier, + STATE(6145), 2, sym_comment, sym_include, - [294599] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301653] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8494), 1, - sym__terminator, - STATE(6045), 2, + ACTIONS(8582), 1, + anon_sym_RBRACE, + STATE(6146), 2, sym_comment, sym_include, - [294616] = 5, - ACTIONS(65), 1, + [301670] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8532), 1, - sym__terminator, - STATE(6046), 2, + ACTIONS(8584), 1, + sym_identifier, + STATE(6147), 2, sym_comment, sym_include, - [294633] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301687] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8534), 1, - sym__terminator, - STATE(6047), 2, + ACTIONS(8586), 1, + aux_sym__block_terminator_token1, + STATE(6148), 2, sym_comment, sym_include, - [294650] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301704] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8536), 1, - anon_sym_RBRACK, - STATE(6048), 2, + ACTIONS(8588), 1, + anon_sym_RBRACE, + STATE(6149), 2, sym_comment, sym_include, - [294667] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301721] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8538), 1, - sym__terminator, - STATE(6049), 2, + ACTIONS(8336), 1, + anon_sym_DOT, + STATE(6150), 2, sym_comment, sym_include, - [294684] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301738] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8540), 1, + ACTIONS(8590), 1, sym__terminator, - STATE(6050), 2, + STATE(6151), 2, sym_comment, sym_include, - [294701] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301755] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8542), 1, - aux_sym__block_terminator_token1, - STATE(6051), 2, + ACTIONS(8592), 1, + sym__integer_literal, + STATE(6152), 2, sym_comment, sym_include, - [294718] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301772] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8544), 1, - sym__terminator, - STATE(6052), 2, + ACTIONS(8594), 1, + aux_sym__block_terminator_token1, + STATE(6153), 2, sym_comment, sym_include, - [294735] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301789] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8546), 1, - sym__terminator, - STATE(6053), 2, + ACTIONS(8596), 1, + anon_sym_RBRACK, + STATE(6154), 2, sym_comment, sym_include, - [294752] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301806] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8548), 1, - sym__terminator, - STATE(6054), 2, + ACTIONS(8598), 1, + anon_sym_RBRACE, + STATE(6155), 2, sym_comment, sym_include, - [294769] = 5, - ACTIONS(65), 1, + [301823] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8550), 1, - aux_sym__block_terminator_token1, - STATE(6055), 2, + ACTIONS(8600), 1, + sym_identifier, + STATE(6156), 2, sym_comment, sym_include, - [294786] = 5, - ACTIONS(65), 1, + [301840] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8552), 1, - aux_sym_do_block_token1, - STATE(6056), 2, + ACTIONS(8602), 1, + sym_identifier, + STATE(6157), 2, sym_comment, sym_include, - [294803] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301857] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8554), 1, + ACTIONS(8604), 1, sym__terminator, - STATE(6057), 2, + STATE(6158), 2, sym_comment, sym_include, - [294820] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301874] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8556), 1, + ACTIONS(8606), 1, sym__terminator, - STATE(6058), 2, + STATE(6159), 2, sym_comment, sym_include, - [294837] = 5, + [301891] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8558), 1, + ACTIONS(8608), 1, sym_identifier, - STATE(6059), 2, + STATE(6160), 2, sym_comment, sym_include, - [294854] = 5, - ACTIONS(65), 1, + [301908] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8560), 1, - sym__terminator, - STATE(6060), 2, + ACTIONS(8610), 1, + sym_identifier, + STATE(6161), 2, sym_comment, sym_include, - [294871] = 5, - ACTIONS(65), 1, + [301925] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8562), 1, - sym__terminator, - STATE(6061), 2, + ACTIONS(8612), 1, + sym_identifier, + STATE(6162), 2, sym_comment, sym_include, - [294888] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301942] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(8564), 1, - sym__terminator, - STATE(6062), 2, - sym_comment, - sym_include, - [294905] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8566), 1, - anon_sym_DOT, - STATE(6063), 2, + ACTIONS(8614), 1, + aux_sym__block_terminator_token1, + STATE(6163), 2, sym_comment, sym_include, - [294922] = 5, - ACTIONS(65), 1, + [301959] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8476), 1, - sym__terminator, - STATE(6064), 2, + ACTIONS(8616), 1, + sym_identifier, + STATE(6164), 2, sym_comment, sym_include, - [294939] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301976] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8568), 1, + ACTIONS(8618), 1, sym__terminator, - STATE(6065), 2, + STATE(6165), 2, sym_comment, sym_include, - [294956] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [301993] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7389), 1, + ACTIONS(8620), 1, sym__terminator, - STATE(6066), 2, + STATE(6166), 2, sym_comment, sym_include, - [294973] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302010] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8570), 1, - aux_sym__block_terminator_token1, - STATE(6067), 2, + ACTIONS(8622), 1, + sym__integer_literal, + STATE(6167), 2, sym_comment, sym_include, - [294990] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302027] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7178), 1, - aux_sym_on_error_phrase_token2, - STATE(6068), 2, + ACTIONS(8624), 1, + aux_sym_image_phrase_token10, + STATE(6168), 2, sym_comment, sym_include, - [295007] = 5, + [302044] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8572), 1, + ACTIONS(8626), 1, sym_identifier, - STATE(6069), 2, + STATE(6169), 2, sym_comment, sym_include, - [295024] = 5, + [302061] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8574), 1, + ACTIONS(8628), 1, sym_identifier, - STATE(6070), 2, + STATE(6170), 2, sym_comment, sym_include, - [295041] = 5, + [302078] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8576), 1, + ACTIONS(8630), 1, sym_identifier, - STATE(6071), 2, + STATE(6171), 2, sym_comment, sym_include, - [295058] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302095] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8578), 1, - sym__terminator, - STATE(6072), 2, + ACTIONS(8632), 1, + aux_sym_do_block_token1, + STATE(6172), 2, sym_comment, sym_include, - [295075] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302112] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7555), 1, - sym__terminator, - STATE(6073), 2, + ACTIONS(8634), 1, + aux_sym__block_terminator_token1, + STATE(6173), 2, sym_comment, sym_include, - [295092] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302129] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7523), 1, + ACTIONS(8636), 1, sym__terminator, - STATE(6074), 2, + STATE(6174), 2, sym_comment, sym_include, - [295109] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302146] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8580), 1, + ACTIONS(8638), 1, sym__terminator, - STATE(6075), 2, + STATE(6175), 2, sym_comment, sym_include, - [295126] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302163] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8582), 1, + ACTIONS(8640), 1, sym__terminator, - STATE(6076), 2, + STATE(6176), 2, sym_comment, sym_include, - [295143] = 5, - ACTIONS(65), 1, + [302180] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(8642), 1, + sym_identifier, + STATE(6177), 2, + sym_comment, + sym_include, + [302197] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8584), 1, - sym__terminator, - STATE(6077), 2, + ACTIONS(8624), 1, + aux_sym_image_phrase_token8, + STATE(6178), 2, sym_comment, sym_include, - [295160] = 5, - ACTIONS(65), 1, + [302214] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(8644), 1, + anon_sym_DOT, + STATE(6179), 2, + sym_comment, + sym_include, + [302231] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8464), 1, - sym__terminator, - STATE(6078), 2, + ACTIONS(8646), 1, + aux_sym_buffer_definition_token2, + STATE(6180), 2, sym_comment, sym_include, - [295177] = 5, - ACTIONS(3), 1, + [302248] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8586), 1, - sym_identifier, - STATE(6079), 2, + ACTIONS(8518), 1, + sym__terminator, + STATE(6181), 2, sym_comment, sym_include, - [295194] = 5, + [302265] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8588), 1, + ACTIONS(8648), 1, sym_identifier, - STATE(6080), 2, + STATE(6182), 2, sym_comment, sym_include, - [295211] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302282] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8590), 1, + ACTIONS(8650), 1, sym__terminator, - STATE(6081), 2, + STATE(6183), 2, sym_comment, sym_include, - [295228] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302299] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8592), 1, - anon_sym_LPAREN, - STATE(6082), 2, + ACTIONS(8652), 1, + anon_sym_RBRACE, + STATE(6184), 2, sym_comment, sym_include, - [295245] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302316] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8468), 1, + ACTIONS(8654), 1, sym__terminator, - STATE(6083), 2, + STATE(6185), 2, sym_comment, sym_include, - [295262] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302333] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8594), 1, - aux_sym__block_terminator_token1, - STATE(6084), 2, + ACTIONS(8656), 1, + anon_sym_RBRACE, + STATE(6186), 2, sym_comment, sym_include, - [295279] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302350] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8458), 1, - sym__terminator, - STATE(6085), 2, + ACTIONS(8658), 1, + anon_sym_COLON, + STATE(6187), 2, sym_comment, sym_include, - [295296] = 5, + [302367] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8596), 1, + ACTIONS(8660), 1, sym_identifier, - STATE(6086), 2, + STATE(6188), 2, sym_comment, sym_include, - [295313] = 5, - ACTIONS(65), 1, + [302384] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(8662), 1, + sym__integer_literal, + STATE(6189), 2, + sym_comment, + sym_include, + [302401] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8598), 1, - sym__terminator, - STATE(6087), 2, + ACTIONS(8664), 1, + anon_sym_RBRACE, + STATE(6190), 2, sym_comment, sym_include, - [295330] = 5, + [302418] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8600), 1, + ACTIONS(8666), 1, sym_identifier, - STATE(6088), 2, + STATE(6191), 2, sym_comment, sym_include, - [295347] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302435] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8602), 1, - aux_sym_when_expression_token1, - STATE(6089), 2, + ACTIONS(8668), 1, + sym__integer_literal, + STATE(6192), 2, sym_comment, sym_include, - [295364] = 5, - ACTIONS(65), 1, + [302452] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(8670), 1, + sym__terminator, + STATE(6193), 2, + sym_comment, + sym_include, + [302469] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8604), 1, - aux_sym__block_terminator_token1, - STATE(6090), 2, + ACTIONS(8672), 1, + anon_sym_DOT, + STATE(6194), 2, sym_comment, sym_include, - [295381] = 5, + [302486] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8606), 1, + ACTIONS(8674), 1, sym_identifier, - STATE(6091), 2, + STATE(6195), 2, sym_comment, sym_include, - [295398] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302503] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8608), 1, + ACTIONS(8676), 1, sym__terminator, - STATE(6092), 2, + STATE(6196), 2, sym_comment, sym_include, - [295415] = 5, + [302520] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8610), 1, + ACTIONS(8678), 1, sym_identifier, - STATE(6093), 2, + STATE(6197), 2, sym_comment, sym_include, - [295432] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [302537] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(186), 2, - sym_file_name, - anon_sym_LBRACE, - STATE(6094), 2, - sym_comment, - sym_include, - [295447] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8612), 1, - sym__terminator, - STATE(6095), 2, + ACTIONS(8680), 1, + aux_sym_do_block_token1, + STATE(6198), 2, sym_comment, sym_include, - [295464] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302554] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8614), 1, - aux_sym_type_tuning_token1, - STATE(6096), 2, + ACTIONS(8682), 1, + aux_sym_buffer_definition_token2, + STATE(6199), 2, sym_comment, sym_include, - [295481] = 5, - ACTIONS(3), 1, + [302571] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8616), 1, - sym_identifier, - STATE(6097), 2, + ACTIONS(8684), 1, + anon_sym_RBRACK, + STATE(6200), 2, sym_comment, sym_include, - [295498] = 5, - ACTIONS(3), 1, + [302588] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8618), 1, - sym_identifier, - STATE(6098), 2, + ACTIONS(8686), 1, + anon_sym_COMMA, + STATE(6201), 2, sym_comment, sym_include, - [295515] = 5, + [302605] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8620), 1, + ACTIONS(8688), 1, sym_identifier, - STATE(6099), 2, + STATE(6202), 2, sym_comment, sym_include, - [295532] = 5, + [302622] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8622), 1, + ACTIONS(8690), 1, sym_identifier, - STATE(6100), 2, - sym_comment, - sym_include, - [295549] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(8624), 1, - sym__terminator, - STATE(6101), 2, + STATE(6203), 2, sym_comment, sym_include, - [295566] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302639] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(8626), 1, - sym__terminator, - STATE(6102), 2, - sym_comment, - sym_include, - [295583] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6547), 1, + ACTIONS(8692), 1, sym__terminator, - STATE(6103), 2, + STATE(6204), 2, sym_comment, sym_include, - [295600] = 5, - ACTIONS(65), 1, + [302656] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8628), 1, - aux_sym__block_terminator_token1, - STATE(6104), 2, + ACTIONS(8694), 1, + sym_identifier, + STATE(6205), 2, sym_comment, sym_include, - [295617] = 5, + [302673] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8630), 1, + ACTIONS(8696), 1, sym_identifier, - STATE(6105), 2, + STATE(6206), 2, sym_comment, sym_include, - [295634] = 5, + [302690] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8632), 1, + ACTIONS(8698), 1, sym_identifier, - STATE(6106), 2, + STATE(6207), 2, sym_comment, sym_include, - [295651] = 5, + [302707] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8634), 1, + ACTIONS(8700), 1, sym_identifier, - STATE(6107), 2, + STATE(6208), 2, sym_comment, sym_include, - [295668] = 5, - ACTIONS(3), 1, + [302724] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8636), 1, - sym_identifier, - STATE(6108), 2, + ACTIONS(8702), 1, + sym__terminator, + STATE(6209), 2, sym_comment, sym_include, - [295685] = 5, + [302741] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8638), 1, + ACTIONS(8704), 1, sym_identifier, - STATE(6109), 2, + STATE(6210), 2, sym_comment, sym_include, - [295702] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302758] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8640), 1, + ACTIONS(5077), 1, sym__terminator, - STATE(6110), 2, + STATE(6211), 2, sym_comment, sym_include, - [295719] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302775] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8642), 1, - sym__terminator, - STATE(6111), 2, + ACTIONS(8706), 1, + anon_sym_RBRACE, + STATE(6212), 2, sym_comment, sym_include, - [295736] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302792] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8644), 1, + ACTIONS(8708), 1, aux_sym__block_terminator_token1, - STATE(6112), 2, + STATE(6213), 2, sym_comment, sym_include, - [295753] = 5, - ACTIONS(65), 1, + [302809] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(8710), 1, + sym_identifier, + STATE(6214), 2, + sym_comment, + sym_include, + [302826] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8646), 1, + ACTIONS(8712), 1, anon_sym_RBRACE, - STATE(6113), 2, + STATE(6215), 2, sym_comment, sym_include, - [295770] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302843] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8648), 1, - aux_sym__block_terminator_token1, - STATE(6114), 2, + ACTIONS(8714), 1, + aux_sym_buffer_definition_token2, + STATE(6216), 2, sym_comment, sym_include, - [295787] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302860] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8650), 1, - sym__integer_literal, - STATE(6115), 2, + ACTIONS(8716), 1, + aux_sym_when_expression_token1, + STATE(6217), 2, sym_comment, sym_include, - [295804] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302877] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8652), 1, + ACTIONS(8718), 1, sym__terminator, - STATE(6116), 2, + STATE(6218), 2, sym_comment, sym_include, - [295821] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302894] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8430), 1, - sym__terminator, - STATE(6117), 2, + ACTIONS(8720), 1, + aux_sym__block_terminator_token1, + STATE(6219), 2, sym_comment, sym_include, - [295838] = 5, + [302911] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8654), 1, + ACTIONS(8722), 1, sym_identifier, - STATE(6118), 2, + STATE(6220), 2, sym_comment, sym_include, - [295855] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302928] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8656), 1, - anon_sym_DOT, - STATE(6119), 2, + ACTIONS(8724), 1, + aux_sym__block_terminator_token1, + STATE(6221), 2, sym_comment, sym_include, - [295872] = 5, - ACTIONS(65), 1, + [302945] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(8726), 1, + sym__integer_literal, + STATE(6222), 2, + sym_comment, + sym_include, + [302962] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8658), 1, + ACTIONS(8728), 1, aux_sym__block_terminator_token1, - STATE(6120), 2, + STATE(6223), 2, sym_comment, sym_include, - [295889] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302979] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8660), 1, - anon_sym_RBRACE, - STATE(6121), 2, + ACTIONS(8730), 1, + sym__terminator, + STATE(6224), 2, sym_comment, sym_include, - [295906] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [302996] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8662), 1, - aux_sym__block_terminator_token1, - STATE(6122), 2, + ACTIONS(8732), 1, + sym__terminator, + STATE(6225), 2, sym_comment, sym_include, - [295923] = 5, - ACTIONS(65), 1, + [303013] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(8734), 1, + anon_sym_RBRACE, + STATE(6226), 2, + sym_comment, + sym_include, + [303030] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8664), 1, + ACTIONS(8736), 1, sym__terminator, - STATE(6123), 2, + STATE(6227), 2, sym_comment, sym_include, - [295940] = 5, - ACTIONS(3), 1, + [303047] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8666), 1, - sym_identifier, - STATE(6124), 2, + ACTIONS(8738), 1, + aux_sym_of_token1, + STATE(6228), 2, sym_comment, sym_include, - [295957] = 5, + [303064] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8668), 1, + ACTIONS(8740), 1, sym_identifier, - STATE(6125), 2, + STATE(6229), 2, sym_comment, sym_include, - [295974] = 5, + [303081] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8670), 1, + ACTIONS(4367), 1, sym_identifier, - STATE(6126), 2, + STATE(6230), 2, sym_comment, sym_include, - [295991] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [303098] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8672), 1, - sym__terminator, - STATE(6127), 2, + ACTIONS(8742), 1, + aux_sym__block_terminator_token1, + STATE(6231), 2, sym_comment, sym_include, - [296008] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [303115] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8674), 1, - sym__terminator, - STATE(6128), 2, + ACTIONS(8744), 1, + aux_sym__block_terminator_token1, + STATE(6232), 2, sym_comment, sym_include, - [296025] = 5, + [303132] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8676), 1, + ACTIONS(8746), 1, sym_identifier, - STATE(6129), 2, + STATE(6233), 2, sym_comment, sym_include, - [296042] = 5, + [303149] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8678), 1, + ACTIONS(8748), 1, sym_identifier, - STATE(6130), 2, - sym_comment, - sym_include, - [296059] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(8680), 1, - aux_sym__block_terminator_token1, - STATE(6131), 2, + STATE(6234), 2, sym_comment, sym_include, - [296076] = 5, + [303166] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8682), 1, + ACTIONS(8750), 1, sym_identifier, - STATE(6132), 2, + STATE(6235), 2, sym_comment, sym_include, - [296093] = 5, - ACTIONS(3), 1, + [303183] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8684), 1, - sym_identifier, - STATE(6133), 2, + ACTIONS(8752), 1, + sym__terminator, + STATE(6236), 2, sym_comment, sym_include, - [296110] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [303200] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8686), 1, - anon_sym_EQ, - STATE(6134), 2, + ACTIONS(8754), 1, + sym__terminator, + STATE(6237), 2, sym_comment, sym_include, - [296127] = 5, - ACTIONS(65), 1, + [303217] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8688), 1, - sym__terminator, - STATE(6135), 2, + ACTIONS(8756), 1, + sym_identifier, + STATE(6238), 2, sym_comment, sym_include, - [296144] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [303234] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8374), 1, + ACTIONS(8758), 1, sym__terminator, - STATE(6136), 2, + STATE(6239), 2, sym_comment, sym_include, - [296161] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [303251] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8690), 1, - aux_sym_of_token1, - STATE(6137), 2, + ACTIONS(8760), 1, + aux_sym__block_terminator_token1, + STATE(6240), 2, sym_comment, sym_include, - [296178] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [303268] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8692), 1, + ACTIONS(5081), 1, sym__terminator, - STATE(6138), 2, + STATE(6241), 2, sym_comment, sym_include, - [296195] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [303285] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8694), 1, - sym__terminator, - STATE(6139), 2, + ACTIONS(8762), 1, + aux_sym__block_terminator_token1, + STATE(6242), 2, sym_comment, sym_include, - [296212] = 5, + [303302] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8696), 1, + ACTIONS(8764), 1, sym_identifier, - STATE(6140), 2, + STATE(6243), 2, sym_comment, sym_include, - [296229] = 5, + [303319] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8698), 1, + ACTIONS(8766), 1, sym_identifier, - STATE(6141), 2, + STATE(6244), 2, sym_comment, sym_include, - [296246] = 5, + [303336] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8700), 1, + ACTIONS(8768), 1, sym_identifier, - STATE(6142), 2, + STATE(6245), 2, sym_comment, sym_include, - [296263] = 5, - ACTIONS(65), 1, + [303353] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8702), 1, - sym__terminator, - STATE(6143), 2, + ACTIONS(8770), 1, + sym_identifier, + STATE(6246), 2, sym_comment, sym_include, - [296280] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [303370] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8704), 1, + ACTIONS(8772), 1, sym__terminator, - STATE(6144), 2, + STATE(6247), 2, sym_comment, sym_include, - [296297] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [303387] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8706), 1, - anon_sym_RBRACK, - STATE(6145), 2, + ACTIONS(8774), 1, + aux_sym__block_terminator_token1, + STATE(6248), 2, sym_comment, sym_include, - [296314] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [303404] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8708), 1, + ACTIONS(8776), 1, sym__terminator, - STATE(6146), 2, + STATE(6249), 2, sym_comment, sym_include, - [296331] = 5, + [303421] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8710), 1, + ACTIONS(8778), 1, sym_identifier, - STATE(6147), 2, + STATE(6250), 2, sym_comment, sym_include, - [296348] = 5, - ACTIONS(65), 1, + [303438] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(8780), 1, + sym__terminator, + STATE(6251), 2, + sym_comment, + sym_include, + [303455] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8712), 1, + ACTIONS(8782), 1, + sym__terminator, + STATE(6252), 2, + sym_comment, + sym_include, + [303472] = 5, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(8784), 1, aux_sym__block_terminator_token1, - STATE(6148), 2, + STATE(6253), 2, + sym_comment, + sym_include, + [303489] = 5, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(8786), 1, + aux_sym__block_terminator_token1, + STATE(6254), 2, sym_comment, sym_include, - [296365] = 5, - ACTIONS(65), 1, + [303506] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(8788), 1, + anon_sym_RBRACE, + STATE(6255), 2, + sym_comment, + sym_include, + [303523] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8714), 1, + ACTIONS(8790), 1, sym__terminator, - STATE(6149), 2, + STATE(6256), 2, sym_comment, sym_include, - [296382] = 5, - ACTIONS(65), 1, + [303540] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(8792), 1, + aux_sym__block_terminator_token1, + STATE(6257), 2, + sym_comment, + sym_include, + [303557] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8716), 1, + ACTIONS(8794), 1, sym__terminator, - STATE(6150), 2, + STATE(6258), 2, sym_comment, sym_include, - [296399] = 5, - ACTIONS(3), 1, + [303574] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8718), 1, - sym_identifier, - STATE(6151), 2, + ACTIONS(8796), 1, + sym__terminator, + STATE(6259), 2, sym_comment, sym_include, - [296416] = 5, - ACTIONS(3), 1, + [303591] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8720), 1, - sym_identifier, - STATE(6152), 2, + ACTIONS(8798), 1, + sym__integer_literal, + STATE(6260), 2, sym_comment, sym_include, - [296433] = 5, + [303608] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8722), 1, + ACTIONS(8800), 1, sym_identifier, - STATE(6153), 2, + STATE(6261), 2, sym_comment, sym_include, - [296450] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [303625] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8724), 1, - anon_sym_RBRACE, - STATE(6154), 2, + ACTIONS(8802), 1, + aux_sym_input_expression_token2, + STATE(6262), 2, sym_comment, sym_include, - [296467] = 5, - ACTIONS(65), 1, + [303642] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(8804), 1, + anon_sym_DOT, + STATE(6263), 2, + sym_comment, + sym_include, + [303659] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8726), 1, + ACTIONS(8806), 1, sym__terminator, - STATE(6155), 2, + STATE(6264), 2, sym_comment, sym_include, - [296484] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [303676] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8728), 1, + ACTIONS(8808), 1, sym__terminator, - STATE(6156), 2, + STATE(6265), 2, sym_comment, sym_include, - [296501] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [303693] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8730), 1, - anon_sym_RBRACE, - STATE(6157), 2, + ACTIONS(8810), 1, + sym__terminator, + STATE(6266), 2, sym_comment, sym_include, - [296518] = 5, - ACTIONS(65), 1, + [303710] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8732), 1, - sym__integer_literal, - STATE(6158), 2, + ACTIONS(8812), 1, + sym_identifier, + STATE(6267), 2, sym_comment, sym_include, - [296535] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [303727] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8734), 1, - aux_sym_do_block_token1, - STATE(6159), 2, + ACTIONS(8814), 1, + anon_sym_RBRACE, + STATE(6268), 2, sym_comment, sym_include, - [296552] = 5, + [303744] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8736), 1, + ACTIONS(8816), 1, sym_identifier, - STATE(6160), 2, + STATE(6269), 2, sym_comment, sym_include, - [296569] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [303761] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8738), 1, - anon_sym_RBRACE, - STATE(6161), 2, + ACTIONS(8818), 1, + sym__terminator, + STATE(6270), 2, sym_comment, sym_include, - [296586] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [303778] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8740), 1, - anon_sym_COLON, - STATE(6162), 2, + ACTIONS(8820), 1, + sym__terminator, + STATE(6271), 2, sym_comment, sym_include, - [296603] = 5, - ACTIONS(65), 1, + [303795] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5067), 1, - sym__terminator, - STATE(6163), 2, + ACTIONS(8822), 1, + sym_identifier, + STATE(6272), 2, sym_comment, sym_include, - [296620] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [303812] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8742), 1, + ACTIONS(8824), 1, aux_sym__block_terminator_token1, - STATE(6164), 2, + STATE(6273), 2, sym_comment, sym_include, - [296637] = 5, + [303829] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8744), 1, + ACTIONS(8826), 1, sym_identifier, - STATE(6165), 2, + STATE(6274), 2, sym_comment, sym_include, - [296654] = 5, - ACTIONS(65), 1, + [303846] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8746), 1, - anon_sym_RBRACE, - STATE(6166), 2, + ACTIONS(8828), 1, + sym_identifier, + STATE(6275), 2, sym_comment, sym_include, - [296671] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [303863] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8748), 1, - sym__terminator, - STATE(6167), 2, + ACTIONS(8830), 1, + aux_sym_type_tuning_token1, + STATE(6276), 2, sym_comment, sym_include, - [296688] = 5, - ACTIONS(65), 1, + [303880] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8750), 1, - sym__terminator, - STATE(6168), 2, + ACTIONS(8832), 1, + sym_identifier, + STATE(6277), 2, sym_comment, sym_include, - [296705] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [303897] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8752), 1, - aux_sym__block_terminator_token1, - STATE(6169), 2, + ACTIONS(8834), 1, + sym__terminator, + STATE(6278), 2, sym_comment, sym_include, - [296722] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [303914] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5061), 1, + ACTIONS(8836), 1, sym__terminator, - STATE(6170), 2, + STATE(6279), 2, sym_comment, sym_include, - [296739] = 5, - ACTIONS(65), 1, + [303931] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8310), 1, - sym__terminator, - STATE(6171), 2, + ACTIONS(8838), 1, + sym_identifier, + STATE(6280), 2, sym_comment, sym_include, - [296756] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [303948] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8754), 1, + ACTIONS(8840), 1, anon_sym_RBRACK, - STATE(6172), 2, + STATE(6281), 2, sym_comment, sym_include, - [296773] = 5, + [303965] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8756), 1, + ACTIONS(8842), 1, sym_identifier, - STATE(6173), 2, + STATE(6282), 2, sym_comment, sym_include, - [296790] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [303982] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8758), 1, + ACTIONS(8360), 1, sym__terminator, - STATE(6174), 2, + STATE(6283), 2, sym_comment, sym_include, - [296807] = 5, - ACTIONS(65), 1, + [303999] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(8844), 1, + sym_identifier, + STATE(6284), 2, + sym_comment, + sym_include, + [304016] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, ACTIONS(8302), 1, - sym__terminator, - STATE(6175), 2, + anon_sym_DOT, + STATE(6285), 2, sym_comment, sym_include, - [296824] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304033] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8760), 1, - sym__integer_literal, - STATE(6176), 2, + ACTIONS(8846), 1, + sym__terminator, + STATE(6286), 2, sym_comment, sym_include, - [296841] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304050] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8762), 1, - anon_sym_RBRACE, - STATE(6177), 2, + ACTIONS(8848), 1, + sym__terminator, + STATE(6287), 2, sym_comment, sym_include, - [296858] = 5, - ACTIONS(3), 1, + [304067] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8764), 1, - sym_identifier, - STATE(6178), 2, + ACTIONS(8850), 1, + sym__terminator, + STATE(6288), 2, sym_comment, sym_include, - [296875] = 5, + [304084] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8766), 1, + ACTIONS(8852), 1, sym_identifier, - STATE(6179), 2, + STATE(6289), 2, sym_comment, sym_include, - [296892] = 5, + [304101] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8768), 1, + ACTIONS(8854), 1, sym_identifier, - STATE(6180), 2, + STATE(6290), 2, sym_comment, sym_include, - [296909] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304118] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8770), 1, - sym__terminator, - STATE(6181), 2, + ACTIONS(8856), 1, + anon_sym_RBRACE, + STATE(6291), 2, sym_comment, sym_include, - [296926] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304135] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8772), 1, + ACTIONS(8858), 1, sym__terminator, - STATE(6182), 2, + STATE(6292), 2, sym_comment, sym_include, - [296943] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304152] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8774), 1, - sym__terminator, - STATE(6183), 2, + ACTIONS(8860), 1, + anon_sym_RBRACK, + STATE(6293), 2, sym_comment, sym_include, - [296960] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304169] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8290), 1, + ACTIONS(8862), 1, sym__terminator, - STATE(6184), 2, + STATE(6294), 2, sym_comment, sym_include, - [296977] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304186] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8776), 1, + ACTIONS(8864), 1, sym__terminator, - STATE(6185), 2, + STATE(6295), 2, sym_comment, sym_include, - [296994] = 5, - ACTIONS(65), 1, + [304203] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8778), 1, - aux_sym__block_terminator_token1, - STATE(6186), 2, + ACTIONS(8866), 1, + sym_identifier, + STATE(6296), 2, sym_comment, sym_include, - [297011] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304220] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(8780), 1, - aux_sym__block_terminator_token1, - STATE(6187), 2, - sym_comment, - sym_include, - [297028] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8782), 1, - sym__terminator, - STATE(6188), 2, + ACTIONS(8868), 1, + sym__integer_literal, + STATE(6297), 2, sym_comment, sym_include, - [297045] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304237] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6006), 1, + ACTIONS(6080), 1, aux_sym_do_block_token1, - STATE(6189), 2, + STATE(6298), 2, sym_comment, sym_include, - [297062] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304254] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8784), 1, - sym__terminator, - STATE(6190), 2, + ACTIONS(8870), 1, + aux_sym__block_terminator_token1, + STATE(6299), 2, sym_comment, sym_include, - [297079] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304271] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8786), 1, - aux_sym_argument_mode_token3, - STATE(6191), 2, + ACTIONS(8872), 1, + sym__terminator, + STATE(6300), 2, sym_comment, sym_include, - [297096] = 5, + [304288] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8788), 1, + ACTIONS(8874), 1, sym_identifier, - STATE(6192), 2, + STATE(6301), 2, sym_comment, sym_include, - [297113] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304305] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8790), 1, + ACTIONS(8876), 1, aux_sym__block_terminator_token1, - STATE(6193), 2, + STATE(6302), 2, sym_comment, sym_include, - [297130] = 5, - ACTIONS(3), 1, + [304322] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8792), 1, - sym_identifier, - STATE(6194), 2, + ACTIONS(8346), 1, + sym__terminator, + STATE(6303), 2, sym_comment, sym_include, - [297147] = 5, + [304339] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8794), 1, + ACTIONS(8878), 1, sym_identifier, - STATE(6195), 2, + STATE(6304), 2, sym_comment, sym_include, - [297164] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304356] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8796), 1, + ACTIONS(8880), 1, anon_sym_RBRACK, - STATE(6196), 2, + STATE(6305), 2, sym_comment, sym_include, - [297181] = 5, - ACTIONS(3), 1, + [304373] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8798), 1, - sym_identifier, - STATE(6197), 2, + ACTIONS(8882), 1, + anon_sym_RBRACE, + STATE(6306), 2, sym_comment, sym_include, - [297198] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304390] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(8800), 1, - sym__terminator, - STATE(6198), 2, - sym_comment, - sym_include, - [297215] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8802), 1, + ACTIONS(8884), 1, anon_sym_RBRACE, - STATE(6199), 2, + STATE(6307), 2, sym_comment, sym_include, - [297232] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304407] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8804), 1, - sym__terminator, - STATE(6200), 2, + ACTIONS(8886), 1, + sym__integer_literal, + STATE(6308), 2, sym_comment, sym_include, - [297249] = 5, - ACTIONS(65), 1, + [304424] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7654), 1, - anon_sym_DOT, - STATE(6201), 2, + ACTIONS(8888), 1, + sym_identifier, + STATE(6309), 2, sym_comment, sym_include, - [297266] = 5, - ACTIONS(65), 1, + [304441] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8806), 1, - aux_sym__block_terminator_token1, - STATE(6202), 2, + ACTIONS(8890), 1, + sym_identifier, + STATE(6310), 2, sym_comment, sym_include, - [297283] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304458] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8808), 1, + ACTIONS(8328), 1, sym__terminator, - STATE(6203), 2, + STATE(6311), 2, sym_comment, sym_include, - [297300] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304475] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8810), 1, + ACTIONS(8332), 1, sym__terminator, - STATE(6204), 2, + STATE(6312), 2, sym_comment, sym_include, - [297317] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304492] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8812), 1, - sym__integer_literal, - STATE(6205), 2, + ACTIONS(8892), 1, + aux_sym__block_terminator_token1, + STATE(6313), 2, sym_comment, sym_include, - [297334] = 5, - ACTIONS(65), 1, + [304509] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8814), 1, - aux_sym__block_terminator_token1, - STATE(6206), 2, + ACTIONS(8894), 1, + sym_identifier, + STATE(6314), 2, sym_comment, sym_include, - [297351] = 5, + [304526] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8816), 1, + ACTIONS(8896), 1, sym_identifier, - STATE(6207), 2, + STATE(6315), 2, sym_comment, sym_include, - [297368] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304543] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8818), 1, - sym__terminator, - STATE(6208), 2, + ACTIONS(8898), 1, + anon_sym_RBRACE, + STATE(6316), 2, sym_comment, sym_include, - [297385] = 5, - ACTIONS(65), 1, + [304560] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8820), 1, - anon_sym_RBRACE, - STATE(6209), 2, + ACTIONS(8900), 1, + sym_identifier, + STATE(6317), 2, sym_comment, sym_include, - [297402] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304577] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7856), 1, - anon_sym_DOT, - STATE(6210), 2, + ACTIONS(7163), 1, + sym__terminator, + STATE(6318), 2, sym_comment, sym_include, - [297419] = 5, + [304594] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8822), 1, + ACTIONS(8902), 1, sym_identifier, - STATE(6211), 2, + STATE(6319), 2, sym_comment, sym_include, - [297436] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304611] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8824), 1, - sym__terminator, - STATE(6212), 2, + ACTIONS(166), 1, + sym__namecolon, + STATE(6320), 2, sym_comment, sym_include, - [297453] = 5, - ACTIONS(65), 1, + [304628] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(8904), 1, + aux_sym_buffer_definition_token2, + STATE(6321), 2, + sym_comment, + sym_include, + [304645] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8826), 1, + ACTIONS(8906), 1, sym__terminator, - STATE(6213), 2, + STATE(6322), 2, sym_comment, sym_include, - [297470] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304662] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8828), 1, - sym__integer_literal, - STATE(6214), 2, + ACTIONS(8908), 1, + aux_sym__block_terminator_token1, + STATE(6323), 2, sym_comment, sym_include, - [297487] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304679] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8830), 1, + ACTIONS(8910), 1, sym__terminator, - STATE(6215), 2, + STATE(6324), 2, sym_comment, sym_include, - [297504] = 5, - ACTIONS(65), 1, + [304696] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8832), 1, - anon_sym_RBRACE, - STATE(6216), 2, + ACTIONS(8912), 1, + sym_identifier, + STATE(6325), 2, sym_comment, sym_include, - [297521] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304713] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8834), 1, + ACTIONS(8298), 1, sym__terminator, - STATE(6217), 2, + STATE(6326), 2, sym_comment, sym_include, - [297538] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304730] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8836), 1, + ACTIONS(8914), 1, aux_sym__block_terminator_token1, - STATE(6218), 2, + STATE(6327), 2, sym_comment, sym_include, - [297555] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304747] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8838), 1, + ACTIONS(7505), 1, sym__terminator, - STATE(6219), 2, + STATE(6328), 2, sym_comment, sym_include, - [297572] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304764] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8840), 1, - sym__terminator, - STATE(6220), 2, + ACTIONS(8916), 1, + aux_sym_argument_mode_token3, + STATE(6329), 2, sym_comment, sym_include, - [297589] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304781] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8842), 1, - anon_sym_RBRACE, - STATE(6221), 2, + ACTIONS(8918), 1, + sym__terminator, + STATE(6330), 2, sym_comment, sym_include, - [297606] = 5, - ACTIONS(65), 1, + [304798] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8844), 1, - sym__terminator, - STATE(6222), 2, + ACTIONS(8920), 1, + sym_identifier, + STATE(6331), 2, sym_comment, sym_include, - [297623] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304815] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8846), 1, - sym__integer_literal, - STATE(6223), 2, + ACTIONS(8922), 1, + sym__terminator, + STATE(6332), 2, sym_comment, sym_include, - [297640] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304832] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8848), 1, - sym__terminator, - STATE(6224), 2, + ACTIONS(8924), 1, + aux_sym_primitive_type_token1, + STATE(6333), 2, sym_comment, sym_include, - [297657] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304849] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8850), 1, + ACTIONS(8926), 1, sym__terminator, - STATE(6225), 2, + STATE(6334), 2, sym_comment, sym_include, - [297674] = 5, + [304866] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8852), 1, + ACTIONS(8928), 1, sym_identifier, - STATE(6226), 2, + STATE(6335), 2, sym_comment, sym_include, - [297691] = 5, - ACTIONS(3), 1, + [304883] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8854), 1, - sym_identifier, - STATE(6227), 2, + ACTIONS(8930), 1, + sym__terminator, + STATE(6336), 2, sym_comment, sym_include, - [297708] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304900] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8856), 1, - sym__terminator, - STATE(6228), 2, + ACTIONS(8932), 1, + aux_sym_sort_clause_token2, + STATE(6337), 2, sym_comment, sym_include, - [297725] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304917] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8858), 1, + ACTIONS(8290), 1, sym__terminator, - STATE(6229), 2, + STATE(6338), 2, sym_comment, sym_include, - [297742] = 5, + [304934] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8860), 1, + ACTIONS(8934), 1, sym_identifier, - STATE(6230), 2, + STATE(6339), 2, sym_comment, sym_include, - [297759] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304951] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8862), 1, - anon_sym_RBRACK, - STATE(6231), 2, + ACTIONS(8936), 1, + anon_sym_COMMA, + STATE(6340), 2, sym_comment, sym_include, - [297776] = 5, - ACTIONS(65), 1, + [304968] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8864), 1, - sym__terminator, - STATE(6232), 2, + ACTIONS(8938), 1, + sym_identifier, + STATE(6341), 2, sym_comment, sym_include, - [297793] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [304985] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8866), 1, - sym__terminator, - STATE(6233), 2, + ACTIONS(8940), 1, + aux_sym__block_terminator_token1, + STATE(6342), 2, sym_comment, sym_include, - [297810] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305002] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8868), 1, - aux_sym__block_terminator_token1, - STATE(6234), 2, + ACTIONS(8942), 1, + aux_sym_buffer_definition_token2, + STATE(6343), 2, sym_comment, sym_include, - [297827] = 5, - ACTIONS(65), 1, + [305019] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8324), 1, - anon_sym_DOT, - STATE(6235), 2, + ACTIONS(8944), 1, + sym_identifier, + STATE(6344), 2, sym_comment, sym_include, - [297844] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305036] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8870), 1, + ACTIONS(8946), 1, sym__terminator, - STATE(6236), 2, + STATE(6345), 2, sym_comment, sym_include, - [297861] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305053] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8872), 1, - anon_sym_DOT, - STATE(6237), 2, + ACTIONS(8948), 1, + sym__terminator, + STATE(6346), 2, sym_comment, sym_include, - [297878] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305070] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8874), 1, + ACTIONS(8950), 1, sym__terminator, - STATE(6238), 2, + STATE(6347), 2, sym_comment, sym_include, - [297895] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305087] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8876), 1, - anon_sym_RBRACK, - STATE(6239), 2, + ACTIONS(8952), 1, + anon_sym_RPAREN, + STATE(6348), 2, sym_comment, sym_include, - [297912] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305104] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8878), 1, - aux_sym_do_block_token1, - STATE(6240), 2, + ACTIONS(8954), 1, + anon_sym_LPAREN, + STATE(6349), 2, sym_comment, sym_include, - [297929] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305121] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8880), 1, - anon_sym_COMMA, - STATE(6241), 2, + ACTIONS(8956), 1, + sym__terminator, + STATE(6350), 2, sym_comment, sym_include, - [297946] = 5, + [305138] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8882), 1, + ACTIONS(8958), 1, sym_identifier, - STATE(6242), 2, + STATE(6351), 2, sym_comment, sym_include, - [297963] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305155] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8884), 1, - anon_sym_COMMA, - STATE(6243), 2, + ACTIONS(8960), 1, + sym__terminator, + STATE(6352), 2, sym_comment, sym_include, - [297980] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305172] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8886), 1, + ACTIONS(8962), 1, sym__terminator, - STATE(6244), 2, + STATE(6353), 2, sym_comment, sym_include, - [297997] = 5, - ACTIONS(3), 1, + [305189] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8888), 1, - sym_identifier, - STATE(6245), 2, + ACTIONS(8964), 1, + sym__terminator, + STATE(6354), 2, sym_comment, sym_include, - [298014] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305206] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8890), 1, - aux_sym_image_phrase_token10, - STATE(6246), 2, + ACTIONS(8966), 1, + anon_sym_RBRACK, + STATE(6355), 2, sym_comment, sym_include, - [298031] = 5, - ACTIONS(65), 1, + [305223] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(8968), 1, + sym__integer_literal, + STATE(6356), 2, + sym_comment, + sym_include, + [305240] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8892), 1, + ACTIONS(8970), 1, sym__terminator, - STATE(6247), 2, + STATE(6357), 2, sym_comment, sym_include, - [298048] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305257] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8890), 1, - aux_sym_image_phrase_token8, - STATE(6248), 2, + ACTIONS(8972), 1, + sym__terminator, + STATE(6358), 2, sym_comment, sym_include, - [298065] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305274] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8894), 1, + ACTIONS(8974), 1, sym__terminator, - STATE(6249), 2, + STATE(6359), 2, sym_comment, sym_include, - [298082] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305291] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8896), 1, - anon_sym_COMMA, - STATE(6250), 2, + ACTIONS(8254), 1, + sym__terminator, + STATE(6360), 2, sym_comment, sym_include, - [298099] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305308] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8898), 1, - sym__terminator, - STATE(6251), 2, + ACTIONS(8976), 1, + anon_sym_RBRACK, + STATE(6361), 2, sym_comment, sym_include, - [298116] = 5, + [305325] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8900), 1, + ACTIONS(8978), 1, sym_identifier, - STATE(6252), 2, + STATE(6362), 2, sym_comment, sym_include, - [298133] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305342] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5087), 1, - sym__terminator, - STATE(6253), 2, + ACTIONS(8980), 1, + aux_sym__block_terminator_token1, + STATE(6363), 2, sym_comment, sym_include, - [298150] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305359] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8902), 1, - aux_sym_buffer_definition_token2, - STATE(6254), 2, + ACTIONS(6464), 1, + sym__terminator, + STATE(6364), 2, sym_comment, sym_include, - [298167] = 5, - ACTIONS(3), 1, + [305376] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8904), 1, - sym_identifier, - STATE(6255), 2, + ACTIONS(8982), 1, + aux_sym_do_block_token1, + STATE(6365), 2, sym_comment, sym_include, - [298184] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305393] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8906), 1, - anon_sym_RBRACK, - STATE(6256), 2, + ACTIONS(8984), 1, + anon_sym_COMMA, + STATE(6366), 2, sym_comment, sym_include, - [298201] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305410] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8908), 1, - anon_sym_RBRACE, - STATE(6257), 2, + ACTIONS(8986), 1, + anon_sym_COMMA, + STATE(6367), 2, sym_comment, sym_include, - [298218] = 5, - ACTIONS(3), 1, + [305427] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8910), 1, - sym_identifier, - STATE(6258), 2, + ACTIONS(8988), 1, + aux_sym_buffer_definition_token2, + STATE(6368), 2, sym_comment, sym_include, - [298235] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305444] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8912), 1, + ACTIONS(6586), 1, sym__terminator, - STATE(6259), 2, + STATE(6369), 2, sym_comment, sym_include, - [298252] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305461] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8914), 1, - sym__terminator, - STATE(6260), 2, + ACTIONS(8990), 1, + anon_sym_RBRACE, + STATE(6370), 2, sym_comment, sym_include, - [298269] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305478] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8916), 1, - anon_sym_LPAREN, - STATE(6261), 2, + ACTIONS(7221), 1, + sym__terminator, + STATE(6371), 2, sym_comment, sym_include, - [298286] = 5, + [305495] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8918), 1, + ACTIONS(8992), 1, sym_identifier, - STATE(6262), 2, + STATE(6372), 2, sym_comment, sym_include, - [298303] = 5, - ACTIONS(65), 1, + [305512] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8920), 1, - sym__terminator, - STATE(6263), 2, + ACTIONS(8994), 1, + sym_identifier, + STATE(6373), 2, sym_comment, sym_include, - [298320] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305529] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8922), 1, + ACTIONS(7233), 1, sym__terminator, - STATE(6264), 2, + STATE(6374), 2, sym_comment, sym_include, - [298337] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305546] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8924), 1, - sym__terminator, - STATE(6265), 2, + ACTIONS(8996), 1, + anon_sym_RBRACK, + STATE(6375), 2, sym_comment, sym_include, - [298354] = 5, - ACTIONS(65), 1, + [305563] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(178), 2, + sym_file_name, anon_sym_LBRACE, - ACTIONS(8926), 1, - aux_sym__block_terminator_token1, - STATE(6266), 2, + STATE(6376), 2, sym_comment, sym_include, - [298371] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305578] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8928), 1, + ACTIONS(7360), 1, sym__terminator, - STATE(6267), 2, + STATE(6377), 2, sym_comment, sym_include, - [298388] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305595] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8930), 1, - anon_sym_RBRACE, - STATE(6268), 2, + ACTIONS(7482), 1, + aux_sym_on_error_phrase_token2, + STATE(6378), 2, sym_comment, sym_include, - [298405] = 5, - ACTIONS(65), 1, + [305612] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8202), 1, - sym__terminator, - STATE(6269), 2, + ACTIONS(8998), 1, + sym_identifier, + STATE(6379), 2, sym_comment, sym_include, - [298422] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305629] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8932), 1, - sym__integer_literal, - STATE(6270), 2, + ACTIONS(9000), 1, + sym__terminator, + STATE(6380), 2, sym_comment, sym_include, - [298439] = 5, - ACTIONS(3), 1, + [305646] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8934), 1, - sym_identifier, - STATE(6271), 2, + ACTIONS(9002), 1, + aux_sym__block_terminator_token1, + STATE(6381), 2, sym_comment, sym_include, - [298456] = 5, - ACTIONS(3), 1, + [305663] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8936), 1, - sym_identifier, - STATE(6272), 2, + ACTIONS(9004), 1, + sym__terminator, + STATE(6382), 2, sym_comment, sym_include, - [298473] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305680] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8938), 1, - anon_sym_RBRACE, - STATE(6273), 2, + ACTIONS(9006), 1, + sym__terminator, + STATE(6383), 2, sym_comment, sym_include, - [298490] = 5, - ACTIONS(3), 1, + [305697] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8940), 1, - sym_identifier, - STATE(6274), 2, + ACTIONS(9008), 1, + anon_sym_RBRACE, + STATE(6384), 2, sym_comment, sym_include, - [298507] = 5, - ACTIONS(3), 1, + [305714] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8942), 1, - sym_identifier, - STATE(6275), 2, + ACTIONS(9010), 1, + sym__terminator, + STATE(6385), 2, sym_comment, sym_include, - [298524] = 5, - ACTIONS(3), 1, + [305731] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8944), 1, - sym_identifier, - STATE(6276), 2, + ACTIONS(9012), 1, + sym__terminator, + STATE(6386), 2, sym_comment, sym_include, - [298541] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305748] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8946), 1, - anon_sym_DOT, - STATE(6277), 2, + ACTIONS(9014), 1, + sym__terminator, + STATE(6387), 2, sym_comment, sym_include, - [298558] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305765] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8948), 1, - aux_sym__block_terminator_token1, - STATE(6278), 2, + ACTIONS(9016), 1, + sym__terminator, + STATE(6388), 2, sym_comment, sym_include, - [298575] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305782] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8950), 1, - anon_sym_RPAREN, - STATE(6279), 2, + ACTIONS(9018), 1, + anon_sym_EQ, + STATE(6389), 2, sym_comment, sym_include, - [298592] = 5, + [305799] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8952), 1, + ACTIONS(9020), 1, sym_identifier, - STATE(6280), 2, + STATE(6390), 2, sym_comment, sym_include, - [298609] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305816] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8954), 1, - anon_sym_LPAREN, - STATE(6281), 2, + ACTIONS(9022), 1, + sym__terminator, + STATE(6391), 2, sym_comment, sym_include, - [298626] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305833] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8956), 1, + ACTIONS(9024), 1, sym__terminator, - STATE(6282), 2, + STATE(6392), 2, sym_comment, sym_include, - [298643] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305850] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8958), 1, + ACTIONS(9026), 1, sym__terminator, - STATE(6283), 2, + STATE(6393), 2, sym_comment, sym_include, - [298660] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305867] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8960), 1, - sym__terminator, - STATE(6284), 2, + ACTIONS(9028), 1, + aux_sym__block_terminator_token1, + STATE(6394), 2, sym_comment, sym_include, - [298677] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305884] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6490), 1, + ACTIONS(9030), 1, sym__terminator, - STATE(6285), 2, + STATE(6395), 2, sym_comment, sym_include, - [298694] = 5, - ACTIONS(65), 1, + [305901] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8962), 1, - aux_sym__block_terminator_token1, - STATE(6286), 2, + ACTIONS(9032), 1, + sym_identifier, + STATE(6396), 2, sym_comment, sym_include, - [298711] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305918] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8964), 1, - anon_sym_COMMA, - STATE(6287), 2, + ACTIONS(9034), 1, + sym__terminator, + STATE(6397), 2, sym_comment, sym_include, - [298728] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305935] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8966), 1, - aux_sym_sort_clause_token2, - STATE(6288), 2, + ACTIONS(9036), 1, + aux_sym__block_terminator_token1, + STATE(6398), 2, sym_comment, sym_include, - [298745] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [305952] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7186), 1, + ACTIONS(9038), 1, sym__terminator, - STATE(6289), 2, + STATE(6399), 2, sym_comment, sym_include, - [298762] = 5, + [305969] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8968), 1, + ACTIONS(9040), 1, sym_identifier, - STATE(6290), 2, + STATE(6400), 2, sym_comment, sym_include, - [298779] = 5, - ACTIONS(3), 1, + [305986] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8970), 1, - sym_identifier, - STATE(6291), 2, + ACTIONS(9042), 1, + sym__terminator, + STATE(6401), 2, sym_comment, sym_include, - [298796] = 5, + [306003] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8972), 1, + ACTIONS(9044), 1, sym_identifier, - STATE(6292), 2, + STATE(6402), 2, sym_comment, sym_include, - [298813] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306020] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8974), 1, + ACTIONS(6516), 1, sym__terminator, - STATE(6293), 2, + STATE(6403), 2, sym_comment, sym_include, - [298830] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306037] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(8976), 1, - aux_sym__block_terminator_token1, - STATE(6294), 2, - sym_comment, - sym_include, - [298847] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8978), 1, - aux_sym_buffer_definition_token2, - STATE(6295), 2, + ACTIONS(9046), 1, + sym__terminator, + STATE(6404), 2, sym_comment, sym_include, - [298864] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306054] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8980), 1, + ACTIONS(7379), 1, sym__terminator, - STATE(6296), 2, + STATE(6405), 2, sym_comment, sym_include, - [298881] = 5, - ACTIONS(65), 1, + [306071] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8982), 1, - aux_sym_buffer_definition_token2, - STATE(6297), 2, + ACTIONS(9048), 1, + sym_identifier, + STATE(6406), 2, sym_comment, sym_include, - [298898] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306088] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8984), 1, + ACTIONS(9050), 1, aux_sym__block_terminator_token1, - STATE(6298), 2, + STATE(6407), 2, sym_comment, sym_include, - [298915] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306105] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(8986), 1, - sym__terminator, - STATE(6299), 2, - sym_comment, - sym_include, - [298932] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8988), 1, - aux_sym_buffer_definition_token2, - STATE(6300), 2, + ACTIONS(9052), 1, + aux_sym__block_terminator_token1, + STATE(6408), 2, sym_comment, sym_include, - [298949] = 5, + [306122] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8990), 1, + ACTIONS(9054), 1, sym_identifier, - STATE(6301), 2, + STATE(6409), 2, sym_comment, sym_include, - [298966] = 5, + [306139] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8992), 1, + ACTIONS(9056), 1, sym_identifier, - STATE(6302), 2, + STATE(6410), 2, sym_comment, sym_include, - [298983] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306156] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7176), 1, + ACTIONS(9058), 1, sym__terminator, - STATE(6303), 2, + STATE(6411), 2, sym_comment, sym_include, - [299000] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306173] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8994), 1, + ACTIONS(9060), 1, sym__terminator, - STATE(6304), 2, + STATE(6412), 2, sym_comment, sym_include, - [299017] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306190] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(8996), 1, - anon_sym_RBRACE, - STATE(6305), 2, - sym_comment, - sym_include, - [299034] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8998), 1, - sym__integer_literal, - STATE(6306), 2, + ACTIONS(6504), 1, + sym__terminator, + STATE(6413), 2, sym_comment, sym_include, - [299051] = 5, - ACTIONS(3), 1, + [306207] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9000), 1, - sym_identifier, - STATE(6307), 2, + ACTIONS(7269), 1, + sym__terminator, + STATE(6414), 2, sym_comment, sym_include, - [299068] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306224] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9002), 1, - anon_sym_RBRACE, - STATE(6308), 2, + ACTIONS(8182), 1, + sym__terminator, + STATE(6415), 2, sym_comment, sym_include, - [299085] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306241] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9004), 1, - anon_sym_COMMA, - STATE(6309), 2, + ACTIONS(7387), 1, + sym__terminator, + STATE(6416), 2, sym_comment, sym_include, - [299102] = 5, + [306258] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9006), 1, + ACTIONS(9062), 1, sym_identifier, - STATE(6310), 2, + STATE(6417), 2, sym_comment, sym_include, - [299119] = 5, + [306275] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9008), 1, + ACTIONS(9064), 1, sym_identifier, - STATE(6311), 2, - sym_comment, - sym_include, - [299136] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(9010), 1, - sym__terminator, - STATE(6312), 2, + STATE(6418), 2, sym_comment, sym_include, - [299153] = 5, + [306292] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9012), 1, + ACTIONS(9066), 1, sym_identifier, - STATE(6313), 2, + STATE(6419), 2, sym_comment, sym_include, - [299170] = 5, + [306309] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9014), 1, + ACTIONS(9068), 1, sym_identifier, - STATE(6314), 2, + STATE(6420), 2, sym_comment, sym_include, - [299187] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306326] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6526), 1, + ACTIONS(9070), 1, sym__terminator, - STATE(6315), 2, + STATE(6421), 2, sym_comment, sym_include, - [299204] = 5, - ACTIONS(3), 1, + [306343] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9016), 1, - sym_identifier, - STATE(6316), 2, + ACTIONS(9072), 1, + anon_sym_RBRACE, + STATE(6422), 2, sym_comment, sym_include, - [299221] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306360] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9018), 1, - anon_sym_EQ, - STATE(6317), 2, + ACTIONS(9074), 1, + sym__integer_literal, + STATE(6423), 2, sym_comment, sym_include, - [299238] = 5, - ACTIONS(65), 1, + [306377] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(6462), 1, + sym__terminator, + STATE(6424), 2, + sym_comment, + sym_include, + [306394] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9020), 1, - aux_sym_buffer_definition_token2, - STATE(6318), 2, + ACTIONS(7403), 1, + sym__terminator, + STATE(6425), 2, sym_comment, sym_include, - [299255] = 5, - ACTIONS(65), 1, + [306411] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(9076), 1, + aux_sym__block_terminator_token1, + STATE(6426), 2, + sym_comment, + sym_include, + [306428] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9022), 1, + ACTIONS(9078), 1, sym__terminator, - STATE(6319), 2, + STATE(6427), 2, sym_comment, sym_include, - [299272] = 5, + [306445] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9024), 1, + ACTIONS(9080), 1, sym_identifier, - STATE(6320), 2, + STATE(6428), 2, sym_comment, sym_include, - [299289] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306462] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7333), 1, - sym__terminator, - STATE(6321), 2, + ACTIONS(9082), 1, + anon_sym_RBRACE, + STATE(6429), 2, sym_comment, sym_include, - [299306] = 5, + [306479] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4364), 1, + ACTIONS(9084), 1, sym_identifier, - STATE(6322), 2, + STATE(6430), 2, sym_comment, sym_include, - [299323] = 5, - ACTIONS(65), 1, + [306496] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(166), 1, + sym__terminator, + STATE(6431), 2, + sym_comment, + sym_include, + [306513] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6455), 1, + ACTIONS(6514), 1, sym__terminator, - STATE(6323), 2, + STATE(6432), 2, sym_comment, sym_include, - [299340] = 5, - ACTIONS(3), 1, + [306530] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9026), 1, - sym_identifier, - STATE(6324), 2, + ACTIONS(9086), 1, + aux_sym_output_stream_statement_token1, + STATE(6433), 2, sym_comment, sym_include, - [299357] = 5, - ACTIONS(65), 1, + [306547] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(9088), 1, + anon_sym_RBRACE, + STATE(6434), 2, + sym_comment, + sym_include, + [306564] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8080), 1, + ACTIONS(7395), 1, sym__terminator, - STATE(6325), 2, + STATE(6435), 2, sym_comment, sym_include, - [299374] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306581] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9028), 1, + ACTIONS(9090), 1, sym__terminator, - STATE(6326), 2, + STATE(6436), 2, sym_comment, sym_include, - [299391] = 5, + [306598] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9030), 1, + ACTIONS(9092), 1, sym_identifier, - STATE(6327), 2, + STATE(6437), 2, sym_comment, sym_include, - [299408] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306615] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9032), 1, + ACTIONS(5124), 1, sym__terminator, - STATE(6328), 2, + STATE(6438), 2, sym_comment, sym_include, - [299425] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306632] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8070), 1, + ACTIONS(9094), 1, sym__terminator, - STATE(6329), 2, + STATE(6439), 2, sym_comment, sym_include, - [299442] = 5, + [306649] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9034), 1, + ACTIONS(9096), 1, sym_identifier, - STATE(6330), 2, + STATE(6440), 2, sym_comment, sym_include, - [299459] = 5, - ACTIONS(3), 1, + [306666] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9036), 1, - sym_identifier, - STATE(6331), 2, + ACTIONS(9098), 1, + sym__terminator, + STATE(6441), 2, sym_comment, sym_include, - [299476] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306683] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9038), 1, - anon_sym_RBRACE, - STATE(6332), 2, + ACTIONS(9100), 1, + sym__terminator, + STATE(6442), 2, sym_comment, sym_include, - [299493] = 5, - ACTIONS(65), 1, + [306700] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(9102), 1, + aux_sym_input_expression_token2, + STATE(6443), 2, + sym_comment, + sym_include, + [306717] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8066), 1, + ACTIONS(9104), 1, sym__terminator, - STATE(6333), 2, + STATE(6444), 2, sym_comment, sym_include, - [299510] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306734] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9040), 1, - sym__integer_literal, - STATE(6334), 2, + ACTIONS(7924), 1, + anon_sym_DOT, + STATE(6445), 2, sym_comment, sym_include, - [299527] = 5, - ACTIONS(3), 1, + [306751] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9042), 1, - sym_identifier, - STATE(6335), 2, + ACTIONS(7171), 1, + sym__terminator, + STATE(6446), 2, sym_comment, sym_include, - [299544] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306768] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9044), 1, - anon_sym_COMMA, - STATE(6336), 2, + ACTIONS(9106), 1, + aux_sym_run_tuning_token5, + STATE(6447), 2, sym_comment, sym_include, - [299561] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306785] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9046), 1, - anon_sym_RBRACE, - STATE(6337), 2, + ACTIONS(6654), 1, + sym__terminator, + STATE(6448), 2, sym_comment, sym_include, - [299578] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306802] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9048), 1, + ACTIONS(9108), 1, sym__terminator, - STATE(6338), 2, + STATE(6449), 2, sym_comment, sym_include, - [299595] = 5, - ACTIONS(3), 1, + [306819] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9050), 1, - sym_identifier, - STATE(6339), 2, + ACTIONS(9110), 1, + anon_sym_COMMA, + STATE(6450), 2, sym_comment, sym_include, - [299612] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306836] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9052), 1, + ACTIONS(9112), 1, sym__terminator, - STATE(6340), 2, + STATE(6451), 2, sym_comment, sym_include, - [299629] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306853] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8048), 1, + ACTIONS(9114), 1, sym__terminator, - STATE(6341), 2, + STATE(6452), 2, sym_comment, sym_include, - [299646] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306870] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9054), 1, - aux_sym__block_terminator_token1, - STATE(6342), 2, + ACTIONS(9116), 1, + sym__terminator, + STATE(6453), 2, sym_comment, sym_include, - [299663] = 5, + [306887] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9056), 1, + ACTIONS(9118), 1, sym_identifier, - STATE(6343), 2, + STATE(6454), 2, sym_comment, sym_include, - [299680] = 5, - ACTIONS(3), 1, + [306904] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9058), 1, - sym_identifier, - STATE(6344), 2, + ACTIONS(9120), 1, + sym__terminator, + STATE(6455), 2, sym_comment, sym_include, - [299697] = 5, - ACTIONS(65), 1, + [306921] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(8178), 1, + sym__terminator, + STATE(6456), 2, + sym_comment, + sym_include, + [306938] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9060), 1, - aux_sym_output_stream_statement_token1, - STATE(6345), 2, + ACTIONS(9122), 1, + sym__terminator, + STATE(6457), 2, sym_comment, sym_include, - [299714] = 5, + [306955] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9062), 1, + ACTIONS(9124), 1, sym_identifier, - STATE(6346), 2, + STATE(6458), 2, sym_comment, sym_include, - [299731] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306972] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9064), 1, + ACTIONS(9126), 1, sym__terminator, - STATE(6347), 2, + STATE(6459), 2, sym_comment, sym_include, - [299748] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [306989] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(9066), 1, - aux_sym__block_terminator_token1, - STATE(6348), 2, - sym_comment, - sym_include, - [299765] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9068), 1, + ACTIONS(9128), 1, sym__terminator, - STATE(6349), 2, + STATE(6460), 2, sym_comment, sym_include, - [299782] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307006] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9070), 1, - aux_sym__block_terminator_token1, - STATE(6350), 2, + ACTIONS(9130), 1, + sym__terminator, + STATE(6461), 2, sym_comment, sym_include, - [299799] = 5, + [307023] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9072), 1, + ACTIONS(9132), 1, sym_identifier, - STATE(6351), 2, + STATE(6462), 2, sym_comment, sym_include, - [299816] = 5, + [307040] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9074), 1, + ACTIONS(9134), 1, sym_identifier, - STATE(6352), 2, + STATE(6463), 2, sym_comment, sym_include, - [299833] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307057] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(9076), 1, - anon_sym_RBRACE, - STATE(6353), 2, - sym_comment, - sym_include, - [299850] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9078), 1, - sym__integer_literal, - STATE(6354), 2, + ACTIONS(9136), 1, + sym__terminator, + STATE(6464), 2, sym_comment, sym_include, - [299867] = 5, + [307074] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9080), 1, + ACTIONS(9138), 1, sym_identifier, - STATE(6355), 2, + STATE(6465), 2, sym_comment, sym_include, - [299884] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307091] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(9082), 1, - anon_sym_RBRACE, - STATE(6356), 2, - sym_comment, - sym_include, - [299901] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9084), 1, - aux_sym_input_expression_token2, - STATE(6357), 2, + ACTIONS(9140), 1, + anon_sym_COMMA, + STATE(6466), 2, sym_comment, sym_include, - [299918] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307108] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7752), 1, - anon_sym_DOT, - STATE(6358), 2, + ACTIONS(9142), 1, + sym__terminator, + STATE(6467), 2, sym_comment, sym_include, - [299935] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307125] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(8258), 1, - sym__terminator, - STATE(6359), 2, + ACTIONS(9144), 1, + anon_sym_RBRACE, + STATE(6468), 2, sym_comment, sym_include, - [299952] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307142] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7146), 1, + ACTIONS(9146), 1, sym__terminator, - STATE(6360), 2, + STATE(6469), 2, sym_comment, sym_include, - [299969] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307159] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9086), 1, - sym__terminator, - STATE(6361), 2, + ACTIONS(9148), 1, + sym__integer_literal, + STATE(6470), 2, sym_comment, sym_include, - [299986] = 5, - ACTIONS(3), 1, + [307176] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9088), 1, - sym_identifier, - STATE(6362), 2, + ACTIONS(9150), 1, + aux_sym__block_terminator_token1, + STATE(6471), 2, sym_comment, sym_include, - [300003] = 5, - ACTIONS(3), 1, + [307193] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9090), 1, - sym_identifier, - STATE(6363), 2, + ACTIONS(6494), 1, + sym__terminator, + STATE(6472), 2, sym_comment, sym_include, - [300020] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307210] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9092), 1, + ACTIONS(9152), 1, sym__terminator, - STATE(6364), 2, + STATE(6473), 2, sym_comment, sym_include, - [300037] = 5, - ACTIONS(65), 1, + [307227] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9094), 1, - sym__terminator, - STATE(6365), 2, + ACTIONS(9154), 1, + sym_identifier, + STATE(6474), 2, sym_comment, sym_include, - [300054] = 5, - ACTIONS(65), 1, + [307244] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9096), 1, - sym__terminator, - STATE(6366), 2, + ACTIONS(9156), 1, + sym_identifier, + STATE(6475), 2, sym_comment, sym_include, - [300071] = 5, - ACTIONS(65), 1, + [307261] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(8006), 1, - aux_sym_primitive_type_token1, - STATE(6367), 2, + ACTIONS(9158), 1, + sym_identifier, + STATE(6476), 2, sym_comment, sym_include, - [300088] = 5, - ACTIONS(65), 1, + [307278] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9098), 1, - aux_sym_do_block_token1, - STATE(6368), 2, + ACTIONS(9160), 1, + sym_identifier, + STATE(6477), 2, sym_comment, sym_include, - [300105] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307295] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9100), 1, - aux_sym_buffer_definition_token2, - STATE(6369), 2, + ACTIONS(9162), 1, + anon_sym_RBRACE, + STATE(6478), 2, sym_comment, sym_include, - [300122] = 5, + [307312] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9102), 1, + ACTIONS(9164), 1, sym_identifier, - STATE(6370), 2, + STATE(6479), 2, sym_comment, sym_include, - [300139] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307329] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9104), 1, - aux_sym__block_terminator_token1, - STATE(6371), 2, + ACTIONS(9166), 1, + anon_sym_RBRACE, + STATE(6480), 2, sym_comment, sym_include, - [300156] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307346] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7206), 1, + ACTIONS(7447), 1, sym__terminator, - STATE(6372), 2, + STATE(6481), 2, sym_comment, sym_include, - [300173] = 5, - ACTIONS(3), 1, + [307363] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9106), 1, - sym_identifier, - STATE(6373), 2, + ACTIONS(9168), 1, + aux_sym__block_terminator_token1, + STATE(6482), 2, sym_comment, sym_include, - [300190] = 5, + [307380] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9108), 1, + ACTIONS(9170), 1, sym_identifier, - STATE(6374), 2, + STATE(6483), 2, sym_comment, sym_include, - [300207] = 5, + [307397] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9110), 1, + ACTIONS(9172), 1, sym_identifier, - STATE(6375), 2, + STATE(6484), 2, sym_comment, sym_include, - [300224] = 5, + [307414] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9112), 1, + ACTIONS(9174), 1, sym_identifier, - STATE(6376), 2, + STATE(6485), 2, sym_comment, sym_include, - [300241] = 5, + [307431] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9114), 1, + ACTIONS(9176), 1, sym_identifier, - STATE(6377), 2, + STATE(6486), 2, sym_comment, sym_include, - [300258] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307448] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9116), 1, - anon_sym_RPAREN, - STATE(6378), 2, + ACTIONS(9178), 1, + aux_sym__block_terminator_token1, + STATE(6487), 2, sym_comment, sym_include, - [300275] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307465] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7194), 1, + ACTIONS(8044), 1, sym__terminator, - STATE(6379), 2, + STATE(6488), 2, sym_comment, sym_include, - [300292] = 5, - ACTIONS(65), 1, + [307482] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9118), 1, - aux_sym_field_option_token7, - STATE(6380), 2, + ACTIONS(9180), 1, + sym_identifier, + STATE(6489), 2, sym_comment, sym_include, - [300309] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307499] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9120), 1, + ACTIONS(9182), 1, anon_sym_LPAREN, - STATE(6381), 2, + STATE(6490), 2, sym_comment, sym_include, - [300326] = 5, + [307516] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9122), 1, + ACTIONS(9184), 1, sym_identifier, - STATE(6382), 2, + STATE(6491), 2, sym_comment, sym_include, - [300343] = 5, + [307533] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9124), 1, + ACTIONS(9186), 1, sym_identifier, - STATE(6383), 2, + STATE(6492), 2, sym_comment, sym_include, - [300360] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [307550] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(198), 2, - sym_file_name, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(6384), 2, + ACTIONS(9188), 1, + anon_sym_RBRACK, + STATE(6493), 2, sym_comment, sym_include, - [300375] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307567] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9126), 1, - anon_sym_RBRACE, - STATE(6385), 2, + ACTIONS(9190), 1, + sym__terminator, + STATE(6494), 2, sym_comment, sym_include, - [300392] = 5, + [307584] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9128), 1, + ACTIONS(9192), 1, sym_identifier, - STATE(6386), 2, + STATE(6495), 2, sym_comment, sym_include, - [300409] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307601] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6488), 1, - sym__terminator, - STATE(6387), 2, + ACTIONS(9194), 1, + aux_sym__block_terminator_token1, + STATE(6496), 2, sym_comment, sym_include, - [300426] = 5, - ACTIONS(65), 1, + [307618] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9130), 1, - aux_sym__block_terminator_token1, - STATE(6388), 2, + ACTIONS(9196), 1, + sym_identifier, + STATE(6497), 2, sym_comment, sym_include, - [300443] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307635] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9132), 1, - sym__terminator, - STATE(6389), 2, + ACTIONS(9198), 1, + aux_sym_do_block_token1, + STATE(6498), 2, sym_comment, sym_include, - [300460] = 5, - ACTIONS(3), 1, + [307652] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9134), 1, - sym_identifier, - STATE(6390), 2, + ACTIONS(9200), 1, + anon_sym_COMMA, + STATE(6499), 2, sym_comment, sym_include, - [300477] = 5, + [307669] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9136), 1, + ACTIONS(9202), 1, sym_identifier, - STATE(6391), 2, + STATE(6500), 2, sym_comment, sym_include, - [300494] = 5, + [307686] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9138), 1, + ACTIONS(9204), 1, sym_identifier, - STATE(6392), 2, + STATE(6501), 2, sym_comment, sym_include, - [300511] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307703] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9140), 1, + ACTIONS(9206), 1, sym__terminator, - STATE(6393), 2, + STATE(6502), 2, sym_comment, sym_include, - [300528] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307720] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9142), 1, - anon_sym_EQ, - STATE(6394), 2, + ACTIONS(9208), 1, + anon_sym_COMMA, + STATE(6503), 2, sym_comment, sym_include, - [300545] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307737] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7978), 1, - sym__terminator, - STATE(6395), 2, + ACTIONS(9210), 1, + anon_sym_COMMA, + STATE(6504), 2, sym_comment, sym_include, - [300562] = 5, - ACTIONS(3), 1, + [307754] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9144), 1, - sym_identifier, - STATE(6396), 2, + ACTIONS(9212), 1, + anon_sym_RBRACE, + STATE(6505), 2, sym_comment, sym_include, - [300579] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307771] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9146), 1, + ACTIONS(9214), 1, anon_sym_COMMA, - STATE(6397), 2, + STATE(6506), 2, sym_comment, sym_include, - [300596] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307788] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7451), 1, - sym__terminator, - STATE(6398), 2, + ACTIONS(9216), 1, + sym__integer_literal, + STATE(6507), 2, sym_comment, sym_include, - [300613] = 5, + [307805] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9148), 1, + ACTIONS(9218), 1, sym_identifier, - STATE(6399), 2, + STATE(6508), 2, sym_comment, sym_include, - [300630] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307822] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9150), 1, + ACTIONS(9220), 1, aux_sym_buffer_definition_token2, - STATE(6400), 2, + STATE(6509), 2, sym_comment, sym_include, - [300647] = 5, + [307839] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9152), 1, + ACTIONS(9222), 1, sym_identifier, - STATE(6401), 2, + STATE(6510), 2, sym_comment, sym_include, - [300664] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307856] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9154), 1, + ACTIONS(9224), 1, aux_sym_buffer_definition_token2, - STATE(6402), 2, + STATE(6511), 2, sym_comment, sym_include, - [300681] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307873] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9156), 1, + ACTIONS(9226), 1, aux_sym_buffer_definition_token2, - STATE(6403), 2, + STATE(6512), 2, sym_comment, sym_include, - [300698] = 5, + [307890] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9158), 1, + ACTIONS(9228), 1, sym_identifier, - STATE(6404), 2, + STATE(6513), 2, sym_comment, sym_include, - [300715] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307907] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9160), 1, + ACTIONS(9230), 1, aux_sym_on_error_phrase_token3, - STATE(6405), 2, + STATE(6514), 2, sym_comment, sym_include, - [300732] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307924] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9162), 1, + ACTIONS(9232), 1, aux_sym_on_error_phrase_token3, - STATE(6406), 2, + STATE(6515), 2, sym_comment, sym_include, - [300749] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307941] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7133), 1, + ACTIONS(7484), 1, aux_sym_on_stop_phrase_token1, - STATE(6407), 2, + STATE(6516), 2, sym_comment, sym_include, - [300766] = 5, - ACTIONS(65), 1, + [307958] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9164), 1, - sym__terminator, - STATE(6408), 2, + ACTIONS(9234), 1, + sym_identifier, + STATE(6517), 2, sym_comment, sym_include, - [300783] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [307975] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7037), 1, + ACTIONS(6896), 1, aux_sym_of_token1, - STATE(6409), 2, + STATE(6518), 2, sym_comment, sym_include, - [300800] = 5, - ACTIONS(3), 1, + [307992] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9166), 1, - sym_identifier, - STATE(6410), 2, + ACTIONS(7499), 1, + sym__terminator, + STATE(6519), 2, sym_comment, sym_include, - [300817] = 5, - ACTIONS(3), 1, + [308009] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9168), 1, - sym_identifier, - STATE(6411), 2, + ACTIONS(9236), 1, + sym__terminator, + STATE(6520), 2, sym_comment, sym_include, - [300834] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308026] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9170), 1, - sym__terminator, - STATE(6412), 2, + ACTIONS(9238), 1, + anon_sym_RBRACE, + STATE(6521), 2, sym_comment, sym_include, - [300851] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308043] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9172), 1, + ACTIONS(7465), 1, sym__terminator, - STATE(6413), 2, + STATE(6522), 2, sym_comment, sym_include, - [300868] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308060] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9174), 1, + ACTIONS(9240), 1, aux_sym_buffer_definition_token2, - STATE(6414), 2, + STATE(6523), 2, sym_comment, sym_include, - [300885] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308077] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9176), 1, + ACTIONS(9242), 1, aux_sym_buffer_definition_token2, - STATE(6415), 2, + STATE(6524), 2, sym_comment, sym_include, - [300902] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308094] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9178), 1, + ACTIONS(9244), 1, aux_sym_buffer_definition_token2, - STATE(6416), 2, + STATE(6525), 2, sym_comment, sym_include, - [300919] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308111] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9180), 1, + ACTIONS(9246), 1, aux_sym_of_token1, - STATE(6417), 2, + STATE(6526), 2, sym_comment, sym_include, - [300936] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308128] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9182), 1, + ACTIONS(9248), 1, sym__terminator, - STATE(6418), 2, + STATE(6527), 2, sym_comment, sym_include, - [300953] = 5, - ACTIONS(65), 1, + [308145] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9184), 1, - anon_sym_RBRACE, - STATE(6419), 2, + ACTIONS(9250), 1, + sym_identifier, + STATE(6528), 2, sym_comment, sym_include, - [300970] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308162] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9186), 1, + ACTIONS(7473), 1, sym__terminator, - STATE(6420), 2, + STATE(6529), 2, sym_comment, sym_include, - [300987] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308179] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9188), 1, - sym__integer_literal, - STATE(6421), 2, + ACTIONS(9252), 1, + anon_sym_RBRACK, + STATE(6530), 2, sym_comment, sym_include, - [301004] = 5, - ACTIONS(3), 1, + [308196] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9190), 1, - sym_identifier, - STATE(6422), 2, + ACTIONS(9254), 1, + aux_sym__block_terminator_token1, + STATE(6531), 2, sym_comment, sym_include, - [301021] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308213] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9192), 1, + ACTIONS(7507), 1, sym__terminator, - STATE(6423), 2, + STATE(6532), 2, sym_comment, sym_include, - [301038] = 5, - ACTIONS(65), 1, + [308230] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9194), 1, - sym__terminator, - STATE(6424), 2, + ACTIONS(9256), 1, + sym_identifier, + STATE(6533), 2, sym_comment, sym_include, - [301055] = 5, - ACTIONS(65), 1, + [308247] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9196), 1, - sym__terminator, - STATE(6425), 2, + ACTIONS(9258), 1, + sym_identifier, + STATE(6534), 2, sym_comment, sym_include, - [301072] = 5, + [308264] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9198), 1, + ACTIONS(9260), 1, sym_identifier, - STATE(6426), 2, + STATE(6535), 2, sym_comment, sym_include, - [301089] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308281] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9200), 1, - aux_sym__block_terminator_token1, - STATE(6427), 2, + ACTIONS(9262), 1, + sym__terminator, + STATE(6536), 2, sym_comment, sym_include, - [301106] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308298] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9202), 1, + ACTIONS(6638), 1, sym__terminator, - STATE(6428), 2, + STATE(6537), 2, sym_comment, sym_include, - [301123] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308315] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9204), 1, - anon_sym_RBRACE, - STATE(6429), 2, + ACTIONS(9264), 1, + sym__terminator, + STATE(6538), 2, sym_comment, sym_include, - [301140] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308332] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9206), 1, + ACTIONS(9266), 1, anon_sym_LPAREN, - STATE(6430), 2, + STATE(6539), 2, sym_comment, sym_include, - [301157] = 5, + [308349] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9208), 1, + ACTIONS(9268), 1, sym_identifier, - STATE(6431), 2, + STATE(6540), 2, sym_comment, sym_include, - [301174] = 5, + [308366] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9210), 1, + ACTIONS(9270), 1, sym_identifier, - STATE(6432), 2, + STATE(6541), 2, sym_comment, sym_include, - [301191] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308383] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9212), 1, - sym__terminator, - STATE(6433), 2, + ACTIONS(6900), 1, + aux_sym_of_token1, + STATE(6542), 2, sym_comment, sym_include, - [301208] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308400] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9214), 1, + ACTIONS(9272), 1, sym__terminator, - STATE(6434), 2, + STATE(6543), 2, sym_comment, sym_include, - [301225] = 5, + [308417] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9216), 1, + ACTIONS(9274), 1, sym_identifier, - STATE(6435), 2, + STATE(6544), 2, sym_comment, sym_include, - [301242] = 5, - ACTIONS(65), 1, + [308434] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9218), 1, - sym__terminator, - STATE(6436), 2, + ACTIONS(9276), 1, + sym_identifier, + STATE(6545), 2, sym_comment, sym_include, - [301259] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308451] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6551), 1, + ACTIONS(9278), 1, sym__terminator, - STATE(6437), 2, + STATE(6546), 2, sym_comment, sym_include, - [301276] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308468] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9220), 1, - sym__terminator, - STATE(6438), 2, + ACTIONS(9280), 1, + aux_sym__block_terminator_token1, + STATE(6547), 2, sym_comment, sym_include, - [301293] = 5, - ACTIONS(65), 1, + [308485] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7277), 1, - sym__terminator, - STATE(6439), 2, + ACTIONS(9282), 1, + sym_identifier, + STATE(6548), 2, sym_comment, sym_include, - [301310] = 5, + [308502] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9222), 1, + ACTIONS(9284), 1, sym_identifier, - STATE(6440), 2, + STATE(6549), 2, sym_comment, sym_include, - [301327] = 5, + [308519] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9224), 1, + ACTIONS(9286), 1, sym_identifier, - STATE(6441), 2, + STATE(6550), 2, sym_comment, sym_include, - [301344] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308536] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9226), 1, + ACTIONS(9288), 1, sym__terminator, - STATE(6442), 2, + STATE(6551), 2, sym_comment, sym_include, - [301361] = 5, - ACTIONS(65), 1, + [308553] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9228), 1, - anon_sym_RBRACK, - STATE(6443), 2, + ACTIONS(9290), 1, + sym_identifier, + STATE(6552), 2, sym_comment, sym_include, - [301378] = 5, - ACTIONS(65), 1, + [308570] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7202), 1, - sym__terminator, - STATE(6444), 2, + ACTIONS(9292), 1, + sym_identifier, + STATE(6553), 2, sym_comment, sym_include, - [301395] = 5, - ACTIONS(65), 1, + [308587] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9230), 1, - aux_sym__block_terminator_token1, - STATE(6445), 2, + ACTIONS(9294), 1, + sym_identifier, + STATE(6554), 2, sym_comment, sym_include, - [301412] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308604] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9232), 1, + ACTIONS(9296), 1, anon_sym_COMMA, - STATE(6446), 2, + STATE(6555), 2, sym_comment, sym_include, - [301429] = 5, - ACTIONS(65), 1, + [308621] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9234), 1, - aux_sym__block_terminator_token1, - STATE(6447), 2, + ACTIONS(9298), 1, + sym_identifier, + STATE(6556), 2, sym_comment, sym_include, - [301446] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308638] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9236), 1, - anon_sym_COMMA, - STATE(6448), 2, + ACTIONS(9300), 1, + sym__terminator, + STATE(6557), 2, sym_comment, sym_include, - [301463] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308655] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9238), 1, + ACTIONS(9302), 1, aux_sym_buffer_definition_token2, - STATE(6449), 2, + STATE(6558), 2, sym_comment, sym_include, - [301480] = 5, + [308672] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9240), 1, + ACTIONS(9304), 1, sym_identifier, - STATE(6450), 2, + STATE(6559), 2, sym_comment, sym_include, - [301497] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308689] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9242), 1, + ACTIONS(9306), 1, aux_sym_buffer_definition_token2, - STATE(6451), 2, + STATE(6560), 2, sym_comment, sym_include, - [301514] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308706] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9244), 1, + ACTIONS(9308), 1, aux_sym_buffer_definition_token2, - STATE(6452), 2, + STATE(6561), 2, sym_comment, sym_include, - [301531] = 5, + [308723] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9246), 1, + ACTIONS(9310), 1, sym_identifier, - STATE(6453), 2, + STATE(6562), 2, sym_comment, sym_include, - [301548] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308740] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9248), 1, + ACTIONS(9312), 1, aux_sym_on_error_phrase_token3, - STATE(6454), 2, + STATE(6563), 2, sym_comment, sym_include, - [301565] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308757] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7129), 1, + ACTIONS(9314), 1, sym__terminator, - STATE(6455), 2, + STATE(6564), 2, sym_comment, sym_include, - [301582] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308774] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7087), 1, + ACTIONS(6858), 1, aux_sym_of_token1, - STATE(6456), 2, + STATE(6565), 2, sym_comment, sym_include, - [301599] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308791] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9250), 1, - anon_sym_COMMA, - STATE(6457), 2, + ACTIONS(7730), 1, + anon_sym_DOT, + STATE(6566), 2, sym_comment, sym_include, - [301616] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308808] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9252), 1, - anon_sym_COMMA, - STATE(6458), 2, + ACTIONS(9316), 1, + anon_sym_LPAREN, + STATE(6567), 2, sym_comment, sym_include, - [301633] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308825] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7954), 1, + ACTIONS(9318), 1, sym__terminator, - STATE(6459), 2, + STATE(6568), 2, sym_comment, sym_include, - [301650] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308842] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9254), 1, - aux_sym_run_tuning_token5, - STATE(6460), 2, + ACTIONS(9320), 1, + sym__terminator, + STATE(6569), 2, sym_comment, sym_include, - [301667] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308859] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9256), 1, + ACTIONS(9322), 1, aux_sym_buffer_definition_token2, - STATE(6461), 2, + STATE(6570), 2, sym_comment, sym_include, - [301684] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308876] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9258), 1, + ACTIONS(9324), 1, aux_sym_buffer_definition_token2, - STATE(6462), 2, + STATE(6571), 2, sym_comment, sym_include, - [301701] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308893] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9260), 1, + ACTIONS(9326), 1, aux_sym_buffer_definition_token2, - STATE(6463), 2, + STATE(6572), 2, sym_comment, sym_include, - [301718] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308910] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9262), 1, + ACTIONS(9328), 1, aux_sym_of_token1, - STATE(6464), 2, + STATE(6573), 2, sym_comment, sym_include, - [301735] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308927] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9264), 1, - sym__terminator, - STATE(6465), 2, + ACTIONS(9330), 1, + aux_sym__block_terminator_token1, + STATE(6574), 2, sym_comment, sym_include, - [301752] = 5, + [308944] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9266), 1, + ACTIONS(9332), 1, sym_identifier, - STATE(6466), 2, + STATE(6575), 2, sym_comment, sym_include, - [301769] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [308961] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(9334), 1, sym__terminator, - STATE(6467), 2, + STATE(6576), 2, sym_comment, sym_include, - [301786] = 5, + [308978] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9268), 1, + ACTIONS(9336), 1, sym_identifier, - STATE(6468), 2, + STATE(6577), 2, sym_comment, sym_include, - [301803] = 5, + [308995] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9270), 1, + ACTIONS(9338), 1, sym_identifier, - STATE(6469), 2, - sym_comment, - sym_include, - [301820] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(9272), 1, - aux_sym__block_terminator_token1, - STATE(6470), 2, + STATE(6578), 2, sym_comment, sym_include, - [301837] = 5, - ACTIONS(65), 1, + [309012] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9274), 1, - sym__terminator, - STATE(6471), 2, + ACTIONS(9340), 1, + sym_identifier, + STATE(6579), 2, sym_comment, sym_include, - [301854] = 5, + [309029] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9276), 1, + ACTIONS(9342), 1, sym_identifier, - STATE(6472), 2, + STATE(6580), 2, sym_comment, sym_include, - [301871] = 5, + [309046] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9278), 1, + ACTIONS(9344), 1, sym_identifier, - STATE(6473), 2, + STATE(6581), 2, sym_comment, sym_include, - [301888] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309063] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7109), 1, - sym__terminator, - STATE(6474), 2, + ACTIONS(9346), 1, + aux_sym__block_terminator_token1, + STATE(6582), 2, sym_comment, sym_include, - [301905] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309080] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9280), 1, - anon_sym_RBRACK, - STATE(6475), 2, + ACTIONS(9348), 1, + aux_sym__block_terminator_token1, + STATE(6583), 2, sym_comment, sym_include, - [301922] = 5, - ACTIONS(65), 1, + [309097] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(9350), 1, + sym__terminator, + STATE(6584), 2, + sym_comment, + sym_include, + [309114] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9282), 1, + ACTIONS(9352), 1, anon_sym_LPAREN, - STATE(6476), 2, + STATE(6585), 2, sym_comment, sym_include, - [301939] = 5, + [309131] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9284), 1, + ACTIONS(9354), 1, sym_identifier, - STATE(6477), 2, + STATE(6586), 2, sym_comment, sym_include, - [301956] = 5, + [309148] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9286), 1, + ACTIONS(9356), 1, sym_identifier, - STATE(6478), 2, + STATE(6587), 2, sym_comment, sym_include, - [301973] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309165] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(9288), 1, - aux_sym_image_phrase_token8, - STATE(6479), 2, - sym_comment, - sym_include, - [301990] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9288), 1, - aux_sym_image_phrase_token10, - STATE(6480), 2, + ACTIONS(9358), 1, + aux_sym__block_terminator_token1, + STATE(6588), 2, sym_comment, sym_include, - [302007] = 5, - ACTIONS(3), 1, + [309182] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9290), 1, - sym_identifier, - STATE(6481), 2, + ACTIONS(9360), 1, + sym__terminator, + STATE(6589), 2, sym_comment, sym_include, - [302024] = 5, + [309199] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9292), 1, + ACTIONS(9362), 1, sym_identifier, - STATE(6482), 2, + STATE(6590), 2, sym_comment, sym_include, - [302041] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309216] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9294), 1, - anon_sym_RBRACE, - STATE(6483), 2, + ACTIONS(9364), 1, + sym__terminator, + STATE(6591), 2, sym_comment, sym_include, - [302058] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309233] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9296), 1, - sym__integer_literal, - STATE(6484), 2, + ACTIONS(9366), 1, + sym__terminator, + STATE(6592), 2, sym_comment, sym_include, - [302075] = 5, + [309250] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9368), 1, sym_identifier, - STATE(6485), 2, + STATE(6593), 2, + sym_comment, + sym_include, + [309267] = 5, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(9370), 1, + sym__terminator, + STATE(6594), 2, sym_comment, sym_include, - [302092] = 5, + [309284] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9300), 1, + ACTIONS(9372), 1, sym_identifier, - STATE(6486), 2, + STATE(6595), 2, sym_comment, sym_include, - [302109] = 5, + [309301] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9302), 1, + ACTIONS(9374), 1, sym_identifier, - STATE(6487), 2, + STATE(6596), 2, sym_comment, sym_include, - [302126] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309318] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9304), 1, - sym__terminator, - STATE(6488), 2, + ACTIONS(9376), 1, + anon_sym_RBRACE, + STATE(6597), 2, sym_comment, sym_include, - [302143] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309335] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9306), 1, - aux_sym__block_terminator_token1, - STATE(6489), 2, + ACTIONS(9378), 1, + aux_sym_output_stream_statement_token1, + STATE(6598), 2, sym_comment, sym_include, - [302160] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309352] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9308), 1, - sym__terminator, - STATE(6490), 2, + ACTIONS(9380), 1, + sym__integer_literal, + STATE(6599), 2, sym_comment, sym_include, - [302177] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309369] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9310), 1, + ACTIONS(9382), 1, anon_sym_COMMA, - STATE(6491), 2, + STATE(6600), 2, sym_comment, sym_include, - [302194] = 5, - ACTIONS(3), 1, + [309386] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9312), 1, - sym_identifier, - STATE(6492), 2, + ACTIONS(9384), 1, + sym__terminator, + STATE(6601), 2, sym_comment, sym_include, - [302211] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309403] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9314), 1, + ACTIONS(9386), 1, sym__terminator, - STATE(6493), 2, + STATE(6602), 2, sym_comment, sym_include, - [302228] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309420] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9316), 1, + ACTIONS(9388), 1, aux_sym_buffer_definition_token2, - STATE(6494), 2, + STATE(6603), 2, sym_comment, sym_include, - [302245] = 5, + [309437] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9318), 1, + ACTIONS(9390), 1, sym_identifier, - STATE(6495), 2, + STATE(6604), 2, sym_comment, sym_include, - [302262] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309454] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9320), 1, + ACTIONS(9392), 1, aux_sym_buffer_definition_token2, - STATE(6496), 2, + STATE(6605), 2, sym_comment, sym_include, - [302279] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309471] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9322), 1, + ACTIONS(9394), 1, aux_sym_buffer_definition_token2, - STATE(6497), 2, + STATE(6606), 2, sym_comment, sym_include, - [302296] = 5, + [309488] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9324), 1, + ACTIONS(9396), 1, sym_identifier, - STATE(6498), 2, + STATE(6607), 2, sym_comment, sym_include, - [302313] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309505] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9326), 1, - anon_sym_RBRACE, - STATE(6499), 2, + ACTIONS(7423), 1, + aux_sym_on_stop_phrase_token1, + STATE(6608), 2, sym_comment, sym_include, - [302330] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309522] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7049), 1, + ACTIONS(6848), 1, aux_sym_of_token1, - STATE(6500), 2, + STATE(6609), 2, sym_comment, sym_include, - [302347] = 5, - ACTIONS(3), 1, + [309539] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9328), 1, - sym_identifier, - STATE(6501), 2, + ACTIONS(9398), 1, + sym__terminator, + STATE(6610), 2, sym_comment, sym_include, - [302364] = 5, - ACTIONS(3), 1, + [309556] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9330), 1, - sym_identifier, - STATE(6502), 2, + ACTIONS(9400), 1, + sym__terminator, + STATE(6611), 2, sym_comment, sym_include, - [302381] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309573] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7906), 1, - sym__terminator, - STATE(6503), 2, + ACTIONS(9402), 1, + aux_sym__block_terminator_token1, + STATE(6612), 2, sym_comment, sym_include, - [302398] = 5, + [309590] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9332), 1, + ACTIONS(9404), 1, sym_identifier, - STATE(6504), 2, + STATE(6613), 2, sym_comment, sym_include, - [302415] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309607] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9334), 1, + ACTIONS(9406), 1, aux_sym_buffer_definition_token2, - STATE(6505), 2, + STATE(6614), 2, sym_comment, sym_include, - [302432] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309624] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9336), 1, + ACTIONS(9408), 1, aux_sym_buffer_definition_token2, - STATE(6506), 2, + STATE(6615), 2, sym_comment, sym_include, - [302449] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309641] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9338), 1, + ACTIONS(9410), 1, aux_sym_buffer_definition_token2, - STATE(6507), 2, + STATE(6616), 2, sym_comment, sym_include, - [302466] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309658] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9340), 1, + ACTIONS(9412), 1, aux_sym_of_token1, - STATE(6508), 2, + STATE(6617), 2, sym_comment, sym_include, - [302483] = 5, - ACTIONS(65), 1, + [309675] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9342), 1, - sym__terminator, - STATE(6509), 2, + ACTIONS(9414), 1, + sym_identifier, + STATE(6618), 2, sym_comment, sym_include, - [302500] = 5, + [309692] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9344), 1, + ACTIONS(9416), 1, sym_identifier, - STATE(6510), 2, + STATE(6619), 2, sym_comment, sym_include, - [302517] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309709] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9346), 1, - aux_sym__block_terminator_token1, - STATE(6511), 2, + ACTIONS(7918), 1, + sym__terminator, + STATE(6620), 2, sym_comment, sym_include, - [302534] = 5, + [309726] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9348), 1, + ACTIONS(9418), 1, sym_identifier, - STATE(6512), 2, + STATE(6621), 2, sym_comment, sym_include, - [302551] = 5, - ACTIONS(3), 1, + [309743] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9350), 1, - sym_identifier, - STATE(6513), 2, + ACTIONS(9420), 1, + sym__terminator, + STATE(6622), 2, sym_comment, sym_include, - [302568] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309760] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9352), 1, - anon_sym_RBRACE, - STATE(6514), 2, + ACTIONS(9422), 1, + aux_sym__block_terminator_token1, + STATE(6623), 2, sym_comment, sym_include, - [302585] = 5, + [309777] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9354), 1, + ACTIONS(9424), 1, sym_identifier, - STATE(6515), 2, + STATE(6624), 2, sym_comment, sym_include, - [302602] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309794] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(9356), 1, - sym__integer_literal, - STATE(6516), 2, - sym_comment, - sym_include, - [302619] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9358), 1, + ACTIONS(9426), 1, sym__terminator, - STATE(6517), 2, + STATE(6625), 2, sym_comment, sym_include, - [302636] = 5, + [309811] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9360), 1, + ACTIONS(9428), 1, sym_identifier, - STATE(6518), 2, + STATE(6626), 2, sym_comment, sym_include, - [302653] = 5, - ACTIONS(65), 1, + [309828] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(9430), 1, + sym__terminator, + STATE(6627), 2, + sym_comment, + sym_include, + [309845] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9362), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - STATE(6519), 2, + STATE(6628), 2, sym_comment, sym_include, - [302670] = 5, + [309862] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9364), 1, + ACTIONS(9434), 1, sym_identifier, - STATE(6520), 2, + STATE(6629), 2, sym_comment, sym_include, - [302687] = 5, + [309879] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9366), 1, + ACTIONS(9436), 1, sym_identifier, - STATE(6521), 2, + STATE(6630), 2, sym_comment, sym_include, - [302704] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309896] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(9368), 1, - aux_sym_input_expression_token2, - STATE(6522), 2, - sym_comment, - sym_include, - [302721] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7882), 1, - sym__terminator, - STATE(6523), 2, + ACTIONS(9438), 1, + aux_sym__block_terminator_token1, + STATE(6631), 2, sym_comment, sym_include, - [302738] = 5, + [309913] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9370), 1, + ACTIONS(9440), 1, sym_identifier, - STATE(6524), 2, + STATE(6632), 2, sym_comment, sym_include, - [302755] = 5, + [309930] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9372), 1, + ACTIONS(9442), 1, sym_identifier, - STATE(6525), 2, + STATE(6633), 2, sym_comment, sym_include, - [302772] = 5, - ACTIONS(3), 1, + [309947] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9374), 1, - sym_identifier, - STATE(6526), 2, + ACTIONS(9444), 1, + aux_sym__block_terminator_token1, + STATE(6634), 2, sym_comment, sym_include, - [302789] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [309964] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9376), 1, - anon_sym_RBRACE, - STATE(6527), 2, + ACTIONS(9446), 1, + sym__terminator, + STATE(6635), 2, sym_comment, sym_include, - [302806] = 5, - ACTIONS(65), 1, + [309981] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(9448), 1, + sym_identifier, + STATE(6636), 2, + sym_comment, + sym_include, + [309998] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9378), 1, - aux_sym__block_terminator_token1, - STATE(6528), 2, + ACTIONS(7896), 1, + sym__terminator, + STATE(6637), 2, sym_comment, sym_include, - [302823] = 5, + [310015] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9380), 1, + ACTIONS(9450), 1, sym_identifier, - STATE(6529), 2, + STATE(6638), 2, sym_comment, sym_include, - [302840] = 5, + [310032] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9382), 1, + ACTIONS(9452), 1, sym_identifier, - STATE(6530), 2, + STATE(6639), 2, sym_comment, sym_include, - [302857] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310049] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9454), 1, sym__terminator, - STATE(6531), 2, + STATE(6640), 2, sym_comment, sym_include, - [302874] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310066] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9386), 1, + ACTIONS(7546), 1, sym__terminator, - STATE(6532), 2, + STATE(6641), 2, sym_comment, sym_include, - [302891] = 5, + [310083] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9388), 1, + ACTIONS(9456), 1, sym_identifier, - STATE(6533), 2, + STATE(6642), 2, sym_comment, sym_include, - [302908] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310100] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9390), 1, + ACTIONS(9458), 1, anon_sym_COMMA, - STATE(6534), 2, + STATE(6643), 2, sym_comment, sym_include, - [302925] = 5, - ACTIONS(65), 1, + [310117] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9392), 1, - sym__terminator, - STATE(6535), 2, + ACTIONS(9460), 1, + sym_identifier, + STATE(6644), 2, sym_comment, sym_include, - [302942] = 5, - ACTIONS(65), 1, + [310134] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6549), 1, - sym__terminator, - STATE(6536), 2, + ACTIONS(9462), 1, + sym_identifier, + STATE(6645), 2, sym_comment, sym_include, - [302959] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310151] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9394), 1, + ACTIONS(9464), 1, aux_sym_buffer_definition_token2, - STATE(6537), 2, + STATE(6646), 2, sym_comment, sym_include, - [302976] = 5, + [310168] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9396), 1, + ACTIONS(9466), 1, sym_identifier, - STATE(6538), 2, + STATE(6647), 2, sym_comment, sym_include, - [302993] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310185] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9398), 1, + ACTIONS(9468), 1, aux_sym_buffer_definition_token2, - STATE(6539), 2, + STATE(6648), 2, sym_comment, sym_include, - [303010] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310202] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9400), 1, + ACTIONS(9470), 1, aux_sym_buffer_definition_token2, - STATE(6540), 2, + STATE(6649), 2, sym_comment, sym_include, - [303027] = 5, + [310219] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9402), 1, + ACTIONS(9472), 1, sym_identifier, - STATE(6541), 2, + STATE(6650), 2, sym_comment, sym_include, - [303044] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310236] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7249), 1, + ACTIONS(7561), 1, sym__terminator, - STATE(6542), 2, + STATE(6651), 2, sym_comment, sym_include, - [303061] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310253] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6988), 1, + ACTIONS(6832), 1, aux_sym_of_token1, - STATE(6543), 2, + STATE(6652), 2, sym_comment, sym_include, - [303078] = 5, + [310270] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9404), 1, + ACTIONS(9474), 1, sym_identifier, - STATE(6544), 2, + STATE(6653), 2, sym_comment, sym_include, - [303095] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310287] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9406), 1, + ACTIONS(9476), 1, sym__terminator, - STATE(6545), 2, + STATE(6654), 2, sym_comment, sym_include, - [303112] = 5, - ACTIONS(3), 1, + [310304] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9408), 1, - sym_identifier, - STATE(6546), 2, + ACTIONS(9478), 1, + sym__terminator, + STATE(6655), 2, sym_comment, sym_include, - [303129] = 5, + [310321] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9410), 1, + ACTIONS(9480), 1, sym_identifier, - STATE(6547), 2, + STATE(6656), 2, sym_comment, sym_include, - [303146] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310338] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9412), 1, + ACTIONS(9482), 1, aux_sym_buffer_definition_token2, - STATE(6548), 2, + STATE(6657), 2, sym_comment, sym_include, - [303163] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310355] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9414), 1, + ACTIONS(9484), 1, aux_sym_buffer_definition_token2, - STATE(6549), 2, + STATE(6658), 2, sym_comment, sym_include, - [303180] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310372] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9416), 1, + ACTIONS(9486), 1, aux_sym_buffer_definition_token2, - STATE(6550), 2, + STATE(6659), 2, sym_comment, sym_include, - [303197] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310389] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(9418), 1, - aux_sym_of_token1, - STATE(6551), 2, - sym_comment, - sym_include, - [303214] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(9420), 1, - sym__terminator, - STATE(6552), 2, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(9488), 1, + aux_sym_of_token1, + STATE(6660), 2, sym_comment, sym_include, - [303231] = 5, - ACTIONS(3), 1, + [310406] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9422), 1, - sym_identifier, - STATE(6553), 2, + ACTIONS(5110), 1, + sym__terminator, + STATE(6661), 2, sym_comment, sym_include, - [303248] = 5, + [310423] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9424), 1, + ACTIONS(9490), 1, sym_identifier, - STATE(6554), 2, + STATE(6662), 2, sym_comment, sym_include, - [303265] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310440] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9426), 1, - aux_sym__block_terminator_token1, - STATE(6555), 2, + ACTIONS(7876), 1, + sym__terminator, + STATE(6663), 2, sym_comment, sym_include, - [303282] = 5, - ACTIONS(65), 1, + [310457] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9428), 1, - sym__terminator, - STATE(6556), 2, + ACTIONS(9492), 1, + sym_identifier, + STATE(6664), 2, sym_comment, sym_include, - [303299] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310474] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9430), 1, + ACTIONS(9494), 1, anon_sym_LPAREN, - STATE(6557), 2, + STATE(6665), 2, sym_comment, sym_include, - [303316] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310491] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9432), 1, + ACTIONS(7880), 1, sym__terminator, - STATE(6558), 2, + STATE(6666), 2, sym_comment, sym_include, - [303333] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310508] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9434), 1, + ACTIONS(9496), 1, anon_sym_LPAREN, - STATE(6559), 2, + STATE(6667), 2, sym_comment, sym_include, - [303350] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310525] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(182), 1, + ACTIONS(6518), 1, sym__terminator, - STATE(6560), 2, + STATE(6668), 2, sym_comment, sym_include, - [303367] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310542] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9436), 1, + ACTIONS(9498), 1, anon_sym_LPAREN, - STATE(6561), 2, + STATE(6669), 2, sym_comment, sym_include, - [303384] = 5, + [310559] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9438), 1, + ACTIONS(9500), 1, sym_identifier, - STATE(6562), 2, + STATE(6670), 2, sym_comment, sym_include, - [303401] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310576] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9440), 1, + ACTIONS(9502), 1, anon_sym_LPAREN, - STATE(6563), 2, + STATE(6671), 2, sym_comment, sym_include, - [303418] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310593] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9442), 1, - aux_sym_output_stream_statement_token1, - STATE(6564), 2, + ACTIONS(9504), 1, + aux_sym_on_error_phrase_token3, + STATE(6672), 2, sym_comment, sym_include, - [303435] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310610] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9444), 1, + ACTIONS(9506), 1, anon_sym_LPAREN, - STATE(6565), 2, + STATE(6673), 2, sym_comment, sym_include, - [303452] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310627] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9446), 1, - anon_sym_DOT, - STATE(6566), 2, + ACTIONS(7856), 1, + sym__terminator, + STATE(6674), 2, sym_comment, sym_include, - [303469] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310644] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9448), 1, + ACTIONS(9508), 1, anon_sym_LPAREN, - STATE(6567), 2, + STATE(6675), 2, sym_comment, sym_include, - [303486] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310661] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9450), 1, - anon_sym_RBRACE, - STATE(6568), 2, + ACTIONS(9510), 1, + anon_sym_LPAREN, + STATE(6676), 2, sym_comment, sym_include, - [303503] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310678] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9452), 1, - anon_sym_LPAREN, - STATE(6569), 2, + ACTIONS(9512), 1, + anon_sym_RBRACE, + STATE(6677), 2, sym_comment, sym_include, - [303520] = 5, + [310695] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9454), 1, + ACTIONS(9514), 1, sym_identifier, - STATE(6570), 2, + STATE(6678), 2, sym_comment, sym_include, - [303537] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310712] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9456), 1, + ACTIONS(9516), 1, anon_sym_LPAREN, - STATE(6571), 2, + STATE(6679), 2, sym_comment, sym_include, - [303554] = 5, - ACTIONS(3), 1, + [310729] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9458), 1, - sym_identifier, - STATE(6572), 2, + ACTIONS(9518), 1, + aux_sym_sort_clause_token2, + STATE(6680), 2, sym_comment, sym_include, - [303571] = 5, - ACTIONS(3), 1, + [310746] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9460), 1, - sym_identifier, - STATE(6573), 2, + ACTIONS(7846), 1, + sym__terminator, + STATE(6681), 2, sym_comment, sym_include, - [303588] = 5, - ACTIONS(3), 1, + [310763] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9462), 1, - sym_identifier, - STATE(6574), 2, + ACTIONS(9520), 1, + aux_sym_on_error_phrase_token3, + STATE(6682), 2, sym_comment, sym_include, - [303605] = 5, - ACTIONS(65), 1, + [310780] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9464), 1, - sym__terminator, - STATE(6575), 2, + ACTIONS(9522), 1, + sym_identifier, + STATE(6683), 2, sym_comment, sym_include, - [303622] = 5, - ACTIONS(65), 1, + [310797] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9466), 1, - anon_sym_EQ, - STATE(6576), 2, + ACTIONS(9524), 1, + sym_identifier, + STATE(6684), 2, sym_comment, sym_include, - [303639] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310814] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9468), 1, - sym__terminator, - STATE(6577), 2, + ACTIONS(9526), 1, + aux_sym_image_phrase_token8, + STATE(6685), 2, sym_comment, sym_include, - [303656] = 5, - ACTIONS(65), 1, + [310831] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9470), 1, - sym__terminator, - STATE(6578), 2, + ACTIONS(9528), 1, + sym_identifier, + STATE(6686), 2, sym_comment, sym_include, - [303673] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310848] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9472), 1, - aux_sym_sort_clause_token2, - STATE(6579), 2, + ACTIONS(9530), 1, + aux_sym__block_terminator_token1, + STATE(6687), 2, sym_comment, sym_include, - [303690] = 5, + [310865] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9474), 1, + ACTIONS(9532), 1, sym_identifier, - STATE(6580), 2, + STATE(6688), 2, sym_comment, sym_include, - [303707] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310882] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9476), 1, + ACTIONS(7840), 1, sym__terminator, - STATE(6581), 2, + STATE(6689), 2, sym_comment, sym_include, - [303724] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310899] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(6785), 1, - aux_sym_of_token1, - STATE(6582), 2, + ACTIONS(9534), 1, + sym__terminator, + STATE(6690), 2, sym_comment, sym_include, - [303741] = 5, - ACTIONS(3), 1, + [310916] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9478), 1, - sym_identifier, - STATE(6583), 2, + ACTIONS(9536), 1, + sym__terminator, + STATE(6691), 2, sym_comment, sym_include, - [303758] = 5, + [310933] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9480), 1, + ACTIONS(9538), 1, sym_identifier, - STATE(6584), 2, + STATE(6692), 2, sym_comment, sym_include, - [303775] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310950] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9482), 1, - aux_sym__block_terminator_token1, - STATE(6585), 2, + ACTIONS(9540), 1, + sym__terminator, + STATE(6693), 2, sym_comment, sym_include, - [303792] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [310967] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9484), 1, - sym__terminator, - STATE(6586), 2, + ACTIONS(9542), 1, + anon_sym_LPAREN, + STATE(6694), 2, sym_comment, sym_include, - [303809] = 5, - ACTIONS(3), 1, + [310984] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9486), 1, - sym_identifier, - STATE(6587), 2, + ACTIONS(7748), 1, + aux_sym_primitive_type_token1, + STATE(6695), 2, sym_comment, sym_include, - [303826] = 5, - ACTIONS(3), 1, + [311001] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9488), 1, - sym_identifier, - STATE(6588), 2, + ACTIONS(9544), 1, + aux_sym_image_phrase_token3, + STATE(6696), 2, sym_comment, sym_include, - [303843] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [311018] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9490), 1, - sym__terminator, - STATE(6589), 2, + ACTIONS(9546), 1, + aux_sym_buffer_definition_token2, + STATE(6697), 2, sym_comment, sym_include, - [303860] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [311035] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9492), 1, + ACTIONS(9548), 1, sym__terminator, - STATE(6590), 2, + STATE(6698), 2, sym_comment, sym_include, - [303877] = 5, - ACTIONS(65), 1, + [311052] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9494), 1, - anon_sym_LPAREN, - STATE(6591), 2, + ACTIONS(9550), 1, + sym_identifier, + STATE(6699), 2, sym_comment, sym_include, - [303894] = 5, - ACTIONS(65), 1, + [311069] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9496), 1, - aux_sym__block_terminator_token1, - STATE(6592), 2, + ACTIONS(4353), 1, + sym_identifier, + STATE(6700), 2, sym_comment, sym_include, - [303911] = 5, + [311086] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9498), 1, + ACTIONS(9552), 1, sym_identifier, - STATE(6593), 2, + STATE(6701), 2, sym_comment, sym_include, - [303928] = 5, - ACTIONS(65), 1, + [311103] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9500), 1, - aux_sym_image_phrase_token3, - STATE(6594), 2, + ACTIONS(9554), 1, + sym_identifier, + STATE(6702), 2, sym_comment, sym_include, - [303945] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [311120] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9502), 1, - aux_sym_sort_clause_token2, - STATE(6595), 2, + ACTIONS(9556), 1, + sym__terminator, + STATE(6703), 2, sym_comment, sym_include, - [303962] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [311137] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9504), 1, - sym__terminator, - STATE(6596), 2, + ACTIONS(8022), 1, + anon_sym_DOT, + STATE(6704), 2, sym_comment, sym_include, - [303979] = 5, + [311154] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9506), 1, + ACTIONS(9558), 1, aux_sym_comment_token1, - STATE(6597), 2, + STATE(6705), 2, sym_comment, sym_include, - [303996] = 5, - ACTIONS(65), 1, + [311171] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9508), 1, - anon_sym_LPAREN, - STATE(6598), 2, + ACTIONS(9560), 1, + sym_identifier, + STATE(6706), 2, sym_comment, sym_include, - [304013] = 5, + [311188] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9510), 1, + ACTIONS(9562), 1, sym_identifier, - STATE(6599), 2, + STATE(6707), 2, sym_comment, sym_include, - [304030] = 5, - ACTIONS(3), 1, + [311205] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9512), 1, - sym_identifier, - STATE(6600), 2, + ACTIONS(9564), 1, + sym__terminator, + STATE(6708), 2, sym_comment, sym_include, - [304047] = 5, + [311222] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9514), 1, + ACTIONS(9566), 1, sym_identifier, - STATE(6601), 2, + STATE(6709), 2, sym_comment, sym_include, - [304064] = 5, + [311239] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9516), 1, + ACTIONS(9568), 1, sym_identifier, - STATE(6602), 2, + STATE(6710), 2, sym_comment, sym_include, - [304081] = 5, + [311256] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9518), 1, + ACTIONS(4150), 1, sym_identifier, - STATE(6603), 2, + STATE(6711), 2, sym_comment, sym_include, - [304098] = 5, - ACTIONS(65), 1, + [311273] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7760), 1, - sym__terminator, - STATE(6604), 2, + ACTIONS(9570), 1, + sym_identifier, + STATE(6712), 2, sym_comment, sym_include, - [304115] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [311290] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9520), 1, - anon_sym_RBRACE, - STATE(6605), 2, + ACTIONS(9572), 1, + sym__terminator, + STATE(6713), 2, sym_comment, sym_include, - [304132] = 5, + [311307] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9522), 1, + ACTIONS(9574), 1, sym_identifier, - STATE(6606), 2, + STATE(6714), 2, sym_comment, sym_include, - [304149] = 5, + [311324] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9524), 1, + ACTIONS(9576), 1, sym_identifier, - STATE(6607), 2, + STATE(6715), 2, sym_comment, sym_include, - [304166] = 5, + [311341] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9526), 1, + ACTIONS(9578), 1, sym_identifier, - STATE(6608), 2, + STATE(6716), 2, sym_comment, sym_include, - [304183] = 5, - ACTIONS(3), 1, + [311358] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9528), 1, - sym_identifier, - STATE(6609), 2, + ACTIONS(9580), 1, + sym__terminator, + STATE(6717), 2, sym_comment, sym_include, - [304200] = 5, + [311375] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9530), 1, + ACTIONS(9582), 1, sym_identifier, - STATE(6610), 2, + STATE(6718), 2, sym_comment, sym_include, - [304217] = 5, + [311392] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9532), 1, + ACTIONS(9584), 1, sym_identifier, - STATE(6611), 2, + STATE(6719), 2, sym_comment, sym_include, - [304234] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [311409] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9534), 1, - aux_sym__block_terminator_token1, - STATE(6612), 2, + ACTIONS(7814), 1, + sym__terminator, + STATE(6720), 2, sym_comment, sym_include, - [304251] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [311426] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(9586), 1, sym__terminator, - STATE(6613), 2, + STATE(6721), 2, sym_comment, sym_include, - [304268] = 5, - ACTIONS(3), 1, + [311443] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9536), 1, - sym_identifier, - STATE(6614), 2, + ACTIONS(9588), 1, + anon_sym_RBRACE, + STATE(6722), 2, sym_comment, sym_include, - [304285] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [311460] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7259), 1, - aux_sym_on_stop_phrase_token1, - STATE(6615), 2, + ACTIONS(9590), 1, + sym__terminator, + STATE(6723), 2, sym_comment, sym_include, - [304302] = 5, - ACTIONS(65), 1, + [311477] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9538), 1, - sym__terminator, - STATE(6616), 2, + ACTIONS(9592), 1, + sym_identifier, + STATE(6724), 2, sym_comment, sym_include, - [304319] = 5, + [311494] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9540), 1, + ACTIONS(9594), 1, sym_identifier, - STATE(6617), 2, + STATE(6725), 2, sym_comment, sym_include, - [304336] = 5, + [311511] = 5, + ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(9596), 1, + sym__integer_literal, + STATE(6726), 2, + sym_comment, + sym_include, + [311528] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9542), 1, + ACTIONS(9598), 1, sym_identifier, - STATE(6618), 2, + STATE(6727), 2, sym_comment, sym_include, - [304353] = 5, + [311545] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9544), 1, + ACTIONS(9600), 1, sym_identifier, - STATE(6619), 2, + STATE(6728), 2, sym_comment, sym_include, - [304370] = 5, + [311562] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9546), 1, + ACTIONS(9602), 1, sym_identifier, - STATE(6620), 2, + STATE(6729), 2, sym_comment, sym_include, - [304387] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [311579] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9548), 1, + ACTIONS(9604), 1, sym__terminator, - STATE(6621), 2, + STATE(6730), 2, sym_comment, sym_include, - [304404] = 5, - ACTIONS(3), 1, + [311596] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9550), 1, - sym_identifier, - STATE(6622), 2, + ACTIONS(9606), 1, + anon_sym_DOT, + STATE(6731), 2, sym_comment, sym_include, - [304421] = 5, + [311613] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9552), 1, + ACTIONS(9608), 1, sym_identifier, - STATE(6623), 2, + STATE(6732), 2, sym_comment, sym_include, - [304438] = 5, + [311630] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9554), 1, + ACTIONS(9610), 1, sym_identifier, - STATE(6624), 2, + STATE(6733), 2, sym_comment, sym_include, - [304455] = 5, + [311647] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9556), 1, + ACTIONS(9612), 1, sym_identifier, - STATE(6625), 2, + STATE(6734), 2, sym_comment, sym_include, - [304472] = 5, + [311664] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9558), 1, + ACTIONS(9614), 1, sym_identifier, - STATE(6626), 2, - sym_comment, - sym_include, - [304489] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, - ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(9560), 1, - aux_sym_on_error_phrase_token3, - STATE(6627), 2, + STATE(6735), 2, sym_comment, sym_include, - [304506] = 5, + [311681] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9562), 1, + ACTIONS(9616), 1, sym_identifier, - STATE(6628), 2, + STATE(6736), 2, sym_comment, sym_include, - [304523] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [311698] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9564), 1, - sym__integer_literal, - STATE(6629), 2, + ACTIONS(9618), 1, + anon_sym_DOT, + STATE(6737), 2, sym_comment, sym_include, - [304540] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [311715] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9566), 1, - aux_sym_on_error_phrase_token3, - STATE(6630), 2, + ACTIONS(9620), 1, + aux_sym_input_expression_token2, + STATE(6738), 2, sym_comment, sym_include, - [304557] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [311732] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9568), 1, - aux_sym__block_terminator_token1, - STATE(6631), 2, + ACTIONS(9622), 1, + sym__terminator, + STATE(6739), 2, sym_comment, sym_include, - [304574] = 5, + [311749] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9570), 1, + ACTIONS(9624), 1, sym_identifier, - STATE(6632), 2, + STATE(6740), 2, sym_comment, sym_include, - [304591] = 5, - ACTIONS(3), 1, + [311766] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9572), 1, - sym_identifier, - STATE(6633), 2, + ACTIONS(9626), 1, + sym__terminator, + STATE(6741), 2, sym_comment, sym_include, - [304608] = 5, + [311783] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9574), 1, + ACTIONS(9628), 1, sym_identifier, - STATE(6634), 2, + STATE(6742), 2, sym_comment, sym_include, - [304625] = 5, - ACTIONS(3), 1, + [311800] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9576), 1, - sym_identifier, - STATE(6635), 2, + ACTIONS(9630), 1, + sym__terminator, + STATE(6743), 2, sym_comment, sym_include, - [304642] = 5, + [311817] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9578), 1, + ACTIONS(9632), 1, sym_identifier, - STATE(6636), 2, + STATE(6744), 2, sym_comment, sym_include, - [304659] = 5, + [311834] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9580), 1, + ACTIONS(9634), 1, sym_identifier, - STATE(6637), 2, + STATE(6745), 2, sym_comment, sym_include, - [304676] = 5, + [311851] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(9636), 2, + sym_file_name, anon_sym_LBRACE, - ACTIONS(9582), 1, - sym_identifier, - STATE(6638), 2, + STATE(6746), 2, sym_comment, sym_include, - [304693] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [311866] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9584), 1, - aux_sym_buffer_definition_token2, - STATE(6639), 2, + ACTIONS(9638), 1, + sym__terminator, + STATE(6747), 2, sym_comment, sym_include, - [304710] = 5, - ACTIONS(3), 1, + [311883] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9586), 1, - sym_identifier, - STATE(6640), 2, + ACTIONS(9640), 1, + sym__terminator, + STATE(6748), 2, sym_comment, sym_include, - [304727] = 5, + [311900] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9588), 1, + ACTIONS(9642), 1, sym_identifier, - STATE(6641), 2, + STATE(6749), 2, sym_comment, sym_include, - [304744] = 5, + [311917] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9590), 1, + ACTIONS(9644), 1, sym_identifier, - STATE(6642), 2, + STATE(6750), 2, sym_comment, sym_include, - [304761] = 5, + [311934] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9592), 1, + ACTIONS(9646), 1, sym_identifier, - STATE(6643), 2, + STATE(6751), 2, sym_comment, sym_include, - [304778] = 5, - ACTIONS(3), 1, + [311951] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9594), 1, - sym_identifier, - STATE(6644), 2, + ACTIONS(9648), 1, + sym__terminator, + STATE(6752), 2, sym_comment, sym_include, - [304795] = 5, - ACTIONS(65), 1, + [311968] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(9650), 1, + sym__terminator, + STATE(6753), 2, + sym_comment, + sym_include, + [311985] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9596), 1, - aux_sym_primitive_type_token1, - STATE(6645), 2, + ACTIONS(9652), 1, + sym__terminator, + STATE(6754), 2, sym_comment, sym_include, - [304812] = 5, + [312002] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9598), 1, + ACTIONS(9654), 1, sym_identifier, - STATE(6646), 2, + STATE(6755), 2, sym_comment, sym_include, - [304829] = 5, - ACTIONS(65), 1, + [312019] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9600), 1, - aux_sym__block_terminator_token1, - STATE(6647), 2, + ACTIONS(9656), 1, + sym_identifier, + STATE(6756), 2, sym_comment, sym_include, - [304846] = 5, - ACTIONS(65), 1, + [312036] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9602), 1, - aux_sym__block_terminator_token1, - STATE(6648), 2, + ACTIONS(9658), 1, + sym_identifier, + STATE(6757), 2, sym_comment, sym_include, - [304863] = 5, - ACTIONS(65), 1, + [312053] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9604), 1, - aux_sym__block_terminator_token1, - STATE(6649), 2, + ACTIONS(9660), 1, + sym_identifier, + STATE(6758), 2, sym_comment, sym_include, - [304880] = 4, - ACTIONS(3), 1, + [312070] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(9662), 1, + anon_sym_RBRACE, + STATE(6759), 2, + sym_comment, + sym_include, + [312087] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(9606), 2, - sym_file_name, + ACTIONS(73), 1, anon_sym_LBRACE, - STATE(6650), 2, + ACTIONS(7752), 1, + sym__terminator, + STATE(6760), 2, sym_comment, sym_include, - [304895] = 5, + [312104] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9608), 1, + ACTIONS(9664), 1, sym_identifier, - STATE(6651), 2, + STATE(6761), 2, sym_comment, sym_include, - [304912] = 5, - ACTIONS(3), 1, + [312121] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9610), 1, - sym_identifier, - STATE(6652), 2, + ACTIONS(9666), 1, + aux_sym__block_terminator_token1, + STATE(6762), 2, sym_comment, sym_include, - [304929] = 5, + [312138] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9612), 1, + ACTIONS(9668), 1, sym_identifier, - STATE(6653), 2, + STATE(6763), 2, sym_comment, sym_include, - [304946] = 5, + [312155] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9614), 1, + ACTIONS(9670), 1, sym_identifier, - STATE(6654), 2, + STATE(6764), 2, sym_comment, sym_include, - [304963] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [312172] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9616), 1, - sym__terminator, - STATE(6655), 2, + ACTIONS(9672), 1, + anon_sym_SLASH, + STATE(6765), 2, sym_comment, sym_include, - [304980] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [312189] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9618), 1, + ACTIONS(9674), 1, aux_sym__block_terminator_token1, - STATE(6656), 2, + STATE(6766), 2, sym_comment, sym_include, - [304997] = 5, - ACTIONS(3), 1, + [312206] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9620), 1, - sym_identifier, - STATE(6657), 2, + ACTIONS(9676), 1, + sym__terminator, + STATE(6767), 2, sym_comment, sym_include, - [305014] = 5, + [312223] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9622), 1, + ACTIONS(9678), 1, sym_identifier, - STATE(6658), 2, + STATE(6768), 2, sym_comment, sym_include, - [305031] = 5, + [312240] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9624), 1, + ACTIONS(9680), 1, sym_identifier, - STATE(6659), 2, + STATE(6769), 2, sym_comment, sym_include, - [305048] = 5, + [312257] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9626), 1, + ACTIONS(9682), 1, sym_identifier, - STATE(6660), 2, + STATE(6770), 2, sym_comment, sym_include, - [305065] = 5, - ACTIONS(3), 1, + [312274] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9628), 1, - sym_identifier, - STATE(6661), 2, + ACTIONS(9684), 1, + sym__terminator, + STATE(6771), 2, sym_comment, sym_include, - [305082] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [312291] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9630), 1, - aux_sym__block_terminator_token1, - STATE(6662), 2, + ACTIONS(9686), 1, + anon_sym_LPAREN, + STATE(6772), 2, sym_comment, sym_include, - [305099] = 5, - ACTIONS(3), 1, + [312308] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9632), 1, - sym_identifier, - STATE(6663), 2, + ACTIONS(9688), 1, + aux_sym_type_tuning_token1, + STATE(6773), 2, sym_comment, sym_include, - [305116] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [312325] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9634), 1, - anon_sym_SLASH, - STATE(6664), 2, + ACTIONS(9690), 1, + sym__integer_literal, + STATE(6774), 2, sym_comment, sym_include, - [305133] = 5, - ACTIONS(65), 1, + [312342] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(7734), 1, + sym__terminator, + STATE(6775), 2, + sym_comment, + sym_include, + [312359] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9636), 1, - aux_sym_type_tuning_token1, - STATE(6665), 2, + ACTIONS(9692), 1, + anon_sym_RBRACE, + STATE(6776), 2, sym_comment, sym_include, - [305150] = 5, + [312376] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9638), 1, + ACTIONS(9694), 1, sym_identifier, - STATE(6666), 2, + STATE(6777), 2, sym_comment, sym_include, - [305167] = 5, + [312393] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(242), 2, + sym_file_name, anon_sym_LBRACE, - ACTIONS(9640), 1, - sym_identifier, - STATE(6667), 2, + STATE(6778), 2, sym_comment, sym_include, - [305184] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [312408] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9642), 1, - sym__integer_literal, - STATE(6668), 2, + ACTIONS(7656), 1, + sym__terminator, + STATE(6779), 2, sym_comment, sym_include, - [305201] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [312425] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9644), 1, - anon_sym_RBRACE, - STATE(6669), 2, + ACTIONS(9696), 1, + aux_sym_buffer_definition_token2, + STATE(6780), 2, sym_comment, sym_include, - [305218] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [312442] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9646), 1, + ACTIONS(9698), 1, sym__terminator, - STATE(6670), 2, + STATE(6781), 2, sym_comment, sym_include, - [305235] = 5, + [312459] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9648), 1, + ACTIONS(9700), 1, sym_identifier, - STATE(6671), 2, + STATE(6782), 2, sym_comment, sym_include, - [305252] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [312476] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9650), 1, - sym__terminator, - STATE(6672), 2, + ACTIONS(9702), 1, + ts_builtin_sym_end, + STATE(6783), 2, sym_comment, sym_include, - [305269] = 5, - ACTIONS(65), 1, + [312493] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(9704), 1, + aux_sym__block_terminator_token1, + STATE(6784), 2, + sym_comment, + sym_include, + [312510] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(7573), 1, - anon_sym_EQ, - STATE(6673), 2, + ACTIONS(9706), 1, + aux_sym_buffer_definition_token2, + STATE(6785), 2, sym_comment, sym_include, - [305286] = 5, - ACTIONS(65), 1, + [312527] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, + ACTIONS(69), 1, + anon_sym_SLASH_STAR, + ACTIONS(73), 1, + anon_sym_LBRACE, + ACTIONS(9708), 1, + aux_sym_buffer_definition_token2, + STATE(6786), 2, + sym_comment, + sym_include, + [312544] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9652), 1, - ts_builtin_sym_end, - STATE(6674), 2, + ACTIONS(9710), 1, + sym__terminator, + STATE(6787), 2, sym_comment, sym_include, - [305303] = 5, + [312561] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9654), 1, + ACTIONS(9712), 1, sym_identifier, - STATE(6675), 2, + STATE(6788), 2, sym_comment, sym_include, - [305320] = 5, + [312578] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9656), 1, + ACTIONS(9714), 1, sym_identifier, - STATE(6676), 2, + STATE(6789), 2, sym_comment, sym_include, - [305337] = 5, + [312595] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9658), 1, + ACTIONS(9716), 1, sym_identifier, - STATE(6677), 2, + STATE(6790), 2, sym_comment, sym_include, - [305354] = 5, - ACTIONS(3), 1, + [312612] = 5, + ACTIONS(67), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9660), 1, - sym_identifier, - STATE(6678), 2, + ACTIONS(9718), 1, + anon_sym_RPAREN, + STATE(6791), 2, sym_comment, sym_include, - [305371] = 5, + [312629] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9662), 1, + ACTIONS(4085), 1, sym_identifier, - STATE(6679), 2, + STATE(6792), 2, sym_comment, sym_include, - [305388] = 5, + [312646] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9664), 1, + ACTIONS(9720), 1, sym_identifier, - STATE(6680), 2, + STATE(6793), 2, sym_comment, sym_include, - [305405] = 5, - ACTIONS(65), 1, + [312663] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7794), 1, - anon_sym_DOT, - STATE(6681), 2, + ACTIONS(9722), 1, + sym_identifier, + STATE(6794), 2, sym_comment, sym_include, - [305422] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [312680] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9666), 1, + ACTIONS(5093), 1, sym__terminator, - STATE(6682), 2, + STATE(6795), 2, sym_comment, sym_include, - [305439] = 5, - ACTIONS(65), 1, + [312697] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9668), 1, - sym__terminator, - STATE(6683), 2, + ACTIONS(9724), 1, + sym_identifier, + STATE(6796), 2, sym_comment, sym_include, - [305456] = 5, - ACTIONS(65), 1, + [312714] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9670), 1, - aux_sym_buffer_definition_token2, - STATE(6684), 2, + ACTIONS(9726), 1, + sym_identifier, + STATE(6797), 2, sym_comment, sym_include, - [305473] = 5, - ACTIONS(65), 1, + [312731] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9672), 1, - aux_sym_input_expression_token2, - STATE(6685), 2, + ACTIONS(9728), 1, + sym_identifier, + STATE(6798), 2, sym_comment, sym_include, - [305490] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [312748] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9674), 1, + ACTIONS(9730), 1, sym__terminator, - STATE(6686), 2, + STATE(6799), 2, sym_comment, sym_include, - [305507] = 5, + [312765] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9676), 1, + ACTIONS(9732), 1, sym_identifier, - STATE(6687), 2, + STATE(6800), 2, sym_comment, sym_include, - [305524] = 5, + [312782] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9678), 1, + ACTIONS(9734), 1, sym_identifier, - STATE(6688), 2, + STATE(6801), 2, sym_comment, sym_include, - [305541] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [312799] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9680), 1, + ACTIONS(9736), 1, sym__terminator, - STATE(6689), 2, + STATE(6802), 2, sym_comment, sym_include, - [305558] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [312816] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9682), 1, + ACTIONS(9738), 1, sym__terminator, - STATE(6690), 2, + STATE(6803), 2, sym_comment, sym_include, - [305575] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [312833] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9684), 1, - sym__terminator, - STATE(6691), 2, + ACTIONS(9740), 1, + aux_sym_type_tuning_token1, + STATE(6804), 2, sym_comment, sym_include, - [305592] = 5, + [312850] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9686), 1, + ACTIONS(9742), 1, sym_identifier, - STATE(6692), 2, + STATE(6805), 2, sym_comment, sym_include, - [305609] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [312867] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(9688), 1, - aux_sym_buffer_definition_token2, - STATE(6693), 2, - sym_comment, - sym_include, - [305626] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9690), 1, - aux_sym_type_tuning_token1, - STATE(6694), 2, + ACTIONS(9744), 1, + aux_sym_field_option_token7, + STATE(6806), 2, sym_comment, sym_include, - [305643] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [312884] = 5, ACTIONS(67), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - anon_sym_LBRACE, - ACTIONS(9692), 1, - sym__terminator, - STATE(6695), 2, - sym_comment, - sym_include, - [305660] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(9694), 1, - sym_identifier, - STATE(6696), 2, - sym_comment, - sym_include, - [305677] = 5, - ACTIONS(65), 1, anon_sym_SLASH_SLASH, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9696), 1, + ACTIONS(9746), 1, aux_sym_type_tuning_token1, - STATE(6697), 2, + STATE(6807), 2, sym_comment, sym_include, - [305694] = 5, + [312901] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9698), 1, + ACTIONS(9748), 1, sym_identifier, - STATE(6698), 2, + STATE(6808), 2, sym_comment, sym_include, - [305711] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [312918] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9700), 1, + ACTIONS(7557), 1, sym__terminator, - STATE(6699), 2, + STATE(6809), 2, sym_comment, sym_include, - [305728] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [312935] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9702), 1, + ACTIONS(9750), 1, aux_sym_type_tuning_token1, - STATE(6700), 2, + STATE(6810), 2, sym_comment, sym_include, - [305745] = 5, + [312952] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(9704), 1, + ACTIONS(9752), 1, aux_sym_comment_token2, - STATE(6701), 2, + STATE(6811), 2, sym_comment, sym_include, - [305762] = 5, - ACTIONS(65), 1, - anon_sym_SLASH_SLASH, + [312969] = 5, ACTIONS(67), 1, + anon_sym_SLASH_SLASH, + ACTIONS(69), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(9706), 1, - sym__terminator, - STATE(6702), 2, + ACTIONS(9526), 1, + aux_sym_image_phrase_token10, + STATE(6812), 2, sym_comment, sym_include, - [305779] = 1, - ACTIONS(9708), 1, + [312986] = 1, + ACTIONS(9754), 1, ts_builtin_sym_end, - [305783] = 1, - ACTIONS(9710), 1, + [312990] = 1, + ACTIONS(9756), 1, ts_builtin_sym_end, - [305787] = 1, - ACTIONS(9712), 1, + [312994] = 1, + ACTIONS(9758), 1, ts_builtin_sym_end, - [305791] = 1, - ACTIONS(9714), 1, + [312998] = 1, + ACTIONS(9760), 1, ts_builtin_sym_end, - [305795] = 1, - ACTIONS(9716), 1, + [313002] = 1, + ACTIONS(9762), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(199)] = 0, - [SMALL_STATE(200)] = 131, - [SMALL_STATE(201)] = 226, - [SMALL_STATE(202)] = 307, - [SMALL_STATE(203)] = 438, - [SMALL_STATE(204)] = 519, - [SMALL_STATE(205)] = 600, - [SMALL_STATE(206)] = 681, - [SMALL_STATE(207)] = 762, - [SMALL_STATE(208)] = 841, - [SMALL_STATE(209)] = 920, - [SMALL_STATE(210)] = 1049, - [SMALL_STATE(211)] = 1139, - [SMALL_STATE(212)] = 1227, - [SMALL_STATE(213)] = 1303, - [SMALL_STATE(214)] = 1381, - [SMALL_STATE(215)] = 1459, - [SMALL_STATE(216)] = 1537, - [SMALL_STATE(217)] = 1615, - [SMALL_STATE(218)] = 1693, - [SMALL_STATE(219)] = 1769, - [SMALL_STATE(220)] = 1845, - [SMALL_STATE(221)] = 1923, - [SMALL_STATE(222)] = 1999, - [SMALL_STATE(223)] = 2085, - [SMALL_STATE(224)] = 2167, - [SMALL_STATE(225)] = 2251, - [SMALL_STATE(226)] = 2341, - [SMALL_STATE(227)] = 2417, - [SMALL_STATE(228)] = 2497, - [SMALL_STATE(229)] = 2587, - [SMALL_STATE(230)] = 2663, - [SMALL_STATE(231)] = 2739, - [SMALL_STATE(232)] = 2815, - [SMALL_STATE(233)] = 2905, - [SMALL_STATE(234)] = 2995, - [SMALL_STATE(235)] = 3085, - [SMALL_STATE(236)] = 3175, - [SMALL_STATE(237)] = 3265, - [SMALL_STATE(238)] = 3340, - [SMALL_STATE(239)] = 3413, - [SMALL_STATE(240)] = 3486, - [SMALL_STATE(241)] = 3575, - [SMALL_STATE(242)] = 3648, - [SMALL_STATE(243)] = 3725, - [SMALL_STATE(244)] = 3800, - [SMALL_STATE(245)] = 3875, - [SMALL_STATE(246)] = 4000, - [SMALL_STATE(247)] = 4125, - [SMALL_STATE(248)] = 4250, - [SMALL_STATE(249)] = 4325, - [SMALL_STATE(250)] = 4400, - [SMALL_STATE(251)] = 4475, - [SMALL_STATE(252)] = 4550, - [SMALL_STATE(253)] = 4625, - [SMALL_STATE(254)] = 4716, - [SMALL_STATE(255)] = 4791, - [SMALL_STATE(256)] = 4916, - [SMALL_STATE(257)] = 5041, - [SMALL_STATE(258)] = 5164, - [SMALL_STATE(259)] = 5289, - [SMALL_STATE(260)] = 5414, - [SMALL_STATE(261)] = 5539, - [SMALL_STATE(262)] = 5662, - [SMALL_STATE(263)] = 5787, - [SMALL_STATE(264)] = 5866, - [SMALL_STATE(265)] = 5943, - [SMALL_STATE(266)] = 6018, - [SMALL_STATE(267)] = 6093, - [SMALL_STATE(268)] = 6218, - [SMALL_STATE(269)] = 6291, - [SMALL_STATE(270)] = 6416, - [SMALL_STATE(271)] = 6541, - [SMALL_STATE(272)] = 6666, - [SMALL_STATE(273)] = 6791, - [SMALL_STATE(274)] = 6866, - [SMALL_STATE(275)] = 6939, - [SMALL_STATE(276)] = 7014, - [SMALL_STATE(277)] = 7139, - [SMALL_STATE(278)] = 7214, - [SMALL_STATE(279)] = 7339, - [SMALL_STATE(280)] = 7464, - [SMALL_STATE(281)] = 7589, - [SMALL_STATE(282)] = 7662, - [SMALL_STATE(283)] = 7787, - [SMALL_STATE(284)] = 7860, - [SMALL_STATE(285)] = 7935, - [SMALL_STATE(286)] = 8010, - [SMALL_STATE(287)] = 8085, - [SMALL_STATE(288)] = 8160, - [SMALL_STATE(289)] = 8285, - [SMALL_STATE(290)] = 8410, - [SMALL_STATE(291)] = 8535, - [SMALL_STATE(292)] = 8610, - [SMALL_STATE(293)] = 8735, - [SMALL_STATE(294)] = 8812, - [SMALL_STATE(295)] = 8937, - [SMALL_STATE(296)] = 9062, - [SMALL_STATE(297)] = 9135, - [SMALL_STATE(298)] = 9208, - [SMALL_STATE(299)] = 9283, - [SMALL_STATE(300)] = 9358, - [SMALL_STATE(301)] = 9433, - [SMALL_STATE(302)] = 9558, - [SMALL_STATE(303)] = 9683, - [SMALL_STATE(304)] = 9758, - [SMALL_STATE(305)] = 9833, - [SMALL_STATE(306)] = 9958, - [SMALL_STATE(307)] = 10083, - [SMALL_STATE(308)] = 10158, - [SMALL_STATE(309)] = 10283, - [SMALL_STATE(310)] = 10358, - [SMALL_STATE(311)] = 10483, - [SMALL_STATE(312)] = 10558, - [SMALL_STATE(313)] = 10633, - [SMALL_STATE(314)] = 10708, - [SMALL_STATE(315)] = 10833, - [SMALL_STATE(316)] = 10958, - [SMALL_STATE(317)] = 11033, - [SMALL_STATE(318)] = 11109, - [SMALL_STATE(319)] = 11181, - [SMALL_STATE(320)] = 11253, - [SMALL_STATE(321)] = 11343, - [SMALL_STATE(322)] = 11415, - [SMALL_STATE(323)] = 11487, - [SMALL_STATE(324)] = 11559, - [SMALL_STATE(325)] = 11631, - [SMALL_STATE(326)] = 11703, - [SMALL_STATE(327)] = 11775, - [SMALL_STATE(328)] = 11847, - [SMALL_STATE(329)] = 11919, - [SMALL_STATE(330)] = 11991, - [SMALL_STATE(331)] = 12063, - [SMALL_STATE(332)] = 12135, - [SMALL_STATE(333)] = 12207, - [SMALL_STATE(334)] = 12279, - [SMALL_STATE(335)] = 12357, - [SMALL_STATE(336)] = 12445, - [SMALL_STATE(337)] = 12517, - [SMALL_STATE(338)] = 12589, - [SMALL_STATE(339)] = 12661, - [SMALL_STATE(340)] = 12733, - [SMALL_STATE(341)] = 12811, - [SMALL_STATE(342)] = 12883, - [SMALL_STATE(343)] = 12955, - [SMALL_STATE(344)] = 13077, - [SMALL_STATE(345)] = 13199, - [SMALL_STATE(346)] = 13321, - [SMALL_STATE(347)] = 13397, - [SMALL_STATE(348)] = 13473, - [SMALL_STATE(349)] = 13545, - [SMALL_STATE(350)] = 13617, - [SMALL_STATE(351)] = 13689, - [SMALL_STATE(352)] = 13765, - [SMALL_STATE(353)] = 13839, - [SMALL_STATE(354)] = 13913, - [SMALL_STATE(355)] = 13985, - [SMALL_STATE(356)] = 14107, - [SMALL_STATE(357)] = 14179, - [SMALL_STATE(358)] = 14251, - [SMALL_STATE(359)] = 14327, - [SMALL_STATE(360)] = 14401, - [SMALL_STATE(361)] = 14477, - [SMALL_STATE(362)] = 14599, - [SMALL_STATE(363)] = 14718, - [SMALL_STATE(364)] = 14837, - [SMALL_STATE(365)] = 14956, - [SMALL_STATE(366)] = 15075, - [SMALL_STATE(367)] = 15194, - [SMALL_STATE(368)] = 15313, - [SMALL_STATE(369)] = 15432, - [SMALL_STATE(370)] = 15551, - [SMALL_STATE(371)] = 15670, - [SMALL_STATE(372)] = 15789, - [SMALL_STATE(373)] = 15908, - [SMALL_STATE(374)] = 16027, - [SMALL_STATE(375)] = 16146, - [SMALL_STATE(376)] = 16265, - [SMALL_STATE(377)] = 16384, - [SMALL_STATE(378)] = 16503, - [SMALL_STATE(379)] = 16622, - [SMALL_STATE(380)] = 16741, - [SMALL_STATE(381)] = 16860, - [SMALL_STATE(382)] = 16979, - [SMALL_STATE(383)] = 17098, - [SMALL_STATE(384)] = 17217, - [SMALL_STATE(385)] = 17336, - [SMALL_STATE(386)] = 17455, - [SMALL_STATE(387)] = 17574, - [SMALL_STATE(388)] = 17693, - [SMALL_STATE(389)] = 17812, - [SMALL_STATE(390)] = 17931, - [SMALL_STATE(391)] = 18050, - [SMALL_STATE(392)] = 18169, - [SMALL_STATE(393)] = 18288, - [SMALL_STATE(394)] = 18407, - [SMALL_STATE(395)] = 18526, - [SMALL_STATE(396)] = 18645, - [SMALL_STATE(397)] = 18764, - [SMALL_STATE(398)] = 18883, - [SMALL_STATE(399)] = 19002, - [SMALL_STATE(400)] = 19121, - [SMALL_STATE(401)] = 19240, - [SMALL_STATE(402)] = 19359, - [SMALL_STATE(403)] = 19478, - [SMALL_STATE(404)] = 19597, - [SMALL_STATE(405)] = 19716, - [SMALL_STATE(406)] = 19835, - [SMALL_STATE(407)] = 19954, - [SMALL_STATE(408)] = 20073, - [SMALL_STATE(409)] = 20192, - [SMALL_STATE(410)] = 20311, - [SMALL_STATE(411)] = 20430, - [SMALL_STATE(412)] = 20549, - [SMALL_STATE(413)] = 20668, - [SMALL_STATE(414)] = 20787, - [SMALL_STATE(415)] = 20906, - [SMALL_STATE(416)] = 21025, - [SMALL_STATE(417)] = 21144, - [SMALL_STATE(418)] = 21263, - [SMALL_STATE(419)] = 21382, - [SMALL_STATE(420)] = 21501, - [SMALL_STATE(421)] = 21620, - [SMALL_STATE(422)] = 21739, - [SMALL_STATE(423)] = 21858, - [SMALL_STATE(424)] = 21977, - [SMALL_STATE(425)] = 22096, - [SMALL_STATE(426)] = 22215, - [SMALL_STATE(427)] = 22334, - [SMALL_STATE(428)] = 22453, - [SMALL_STATE(429)] = 22572, - [SMALL_STATE(430)] = 22691, - [SMALL_STATE(431)] = 22810, - [SMALL_STATE(432)] = 22929, - [SMALL_STATE(433)] = 23048, - [SMALL_STATE(434)] = 23167, - [SMALL_STATE(435)] = 23286, - [SMALL_STATE(436)] = 23405, - [SMALL_STATE(437)] = 23524, - [SMALL_STATE(438)] = 23643, - [SMALL_STATE(439)] = 23762, - [SMALL_STATE(440)] = 23881, - [SMALL_STATE(441)] = 24000, - [SMALL_STATE(442)] = 24119, - [SMALL_STATE(443)] = 24238, - [SMALL_STATE(444)] = 24357, - [SMALL_STATE(445)] = 24476, - [SMALL_STATE(446)] = 24595, - [SMALL_STATE(447)] = 24714, - [SMALL_STATE(448)] = 24833, - [SMALL_STATE(449)] = 24952, - [SMALL_STATE(450)] = 25071, - [SMALL_STATE(451)] = 25190, - [SMALL_STATE(452)] = 25309, - [SMALL_STATE(453)] = 25428, - [SMALL_STATE(454)] = 25547, - [SMALL_STATE(455)] = 25666, - [SMALL_STATE(456)] = 25785, - [SMALL_STATE(457)] = 25904, - [SMALL_STATE(458)] = 26023, - [SMALL_STATE(459)] = 26142, - [SMALL_STATE(460)] = 26261, - [SMALL_STATE(461)] = 26380, - [SMALL_STATE(462)] = 26499, - [SMALL_STATE(463)] = 26618, - [SMALL_STATE(464)] = 26737, - [SMALL_STATE(465)] = 26856, - [SMALL_STATE(466)] = 26975, - [SMALL_STATE(467)] = 27094, - [SMALL_STATE(468)] = 27213, - [SMALL_STATE(469)] = 27332, - [SMALL_STATE(470)] = 27451, - [SMALL_STATE(471)] = 27570, - [SMALL_STATE(472)] = 27689, - [SMALL_STATE(473)] = 27808, - [SMALL_STATE(474)] = 27927, - [SMALL_STATE(475)] = 28046, - [SMALL_STATE(476)] = 28165, - [SMALL_STATE(477)] = 28284, - [SMALL_STATE(478)] = 28403, - [SMALL_STATE(479)] = 28522, - [SMALL_STATE(480)] = 28641, - [SMALL_STATE(481)] = 28760, - [SMALL_STATE(482)] = 28879, - [SMALL_STATE(483)] = 28998, - [SMALL_STATE(484)] = 29117, - [SMALL_STATE(485)] = 29236, - [SMALL_STATE(486)] = 29355, - [SMALL_STATE(487)] = 29474, - [SMALL_STATE(488)] = 29593, - [SMALL_STATE(489)] = 29712, - [SMALL_STATE(490)] = 29831, - [SMALL_STATE(491)] = 29950, - [SMALL_STATE(492)] = 30069, - [SMALL_STATE(493)] = 30188, - [SMALL_STATE(494)] = 30307, - [SMALL_STATE(495)] = 30426, - [SMALL_STATE(496)] = 30545, - [SMALL_STATE(497)] = 30664, - [SMALL_STATE(498)] = 30783, - [SMALL_STATE(499)] = 30902, - [SMALL_STATE(500)] = 31021, - [SMALL_STATE(501)] = 31140, - [SMALL_STATE(502)] = 31259, - [SMALL_STATE(503)] = 31378, - [SMALL_STATE(504)] = 31497, - [SMALL_STATE(505)] = 31616, - [SMALL_STATE(506)] = 31735, - [SMALL_STATE(507)] = 31854, - [SMALL_STATE(508)] = 31973, - [SMALL_STATE(509)] = 32092, - [SMALL_STATE(510)] = 32211, - [SMALL_STATE(511)] = 32330, - [SMALL_STATE(512)] = 32449, - [SMALL_STATE(513)] = 32568, - [SMALL_STATE(514)] = 32641, - [SMALL_STATE(515)] = 32760, - [SMALL_STATE(516)] = 32879, - [SMALL_STATE(517)] = 32950, - [SMALL_STATE(518)] = 33069, - [SMALL_STATE(519)] = 33188, - [SMALL_STATE(520)] = 33307, - [SMALL_STATE(521)] = 33426, - [SMALL_STATE(522)] = 33545, - [SMALL_STATE(523)] = 33664, - [SMALL_STATE(524)] = 33783, - [SMALL_STATE(525)] = 33902, - [SMALL_STATE(526)] = 34021, - [SMALL_STATE(527)] = 34140, - [SMALL_STATE(528)] = 34259, - [SMALL_STATE(529)] = 34378, - [SMALL_STATE(530)] = 34497, - [SMALL_STATE(531)] = 34616, - [SMALL_STATE(532)] = 34735, - [SMALL_STATE(533)] = 34854, - [SMALL_STATE(534)] = 34973, - [SMALL_STATE(535)] = 35092, - [SMALL_STATE(536)] = 35211, - [SMALL_STATE(537)] = 35330, - [SMALL_STATE(538)] = 35449, - [SMALL_STATE(539)] = 35568, - [SMALL_STATE(540)] = 35687, - [SMALL_STATE(541)] = 35806, - [SMALL_STATE(542)] = 35925, - [SMALL_STATE(543)] = 36044, - [SMALL_STATE(544)] = 36163, - [SMALL_STATE(545)] = 36282, - [SMALL_STATE(546)] = 36401, - [SMALL_STATE(547)] = 36520, - [SMALL_STATE(548)] = 36639, - [SMALL_STATE(549)] = 36758, - [SMALL_STATE(550)] = 36877, - [SMALL_STATE(551)] = 36996, - [SMALL_STATE(552)] = 37115, - [SMALL_STATE(553)] = 37234, - [SMALL_STATE(554)] = 37353, - [SMALL_STATE(555)] = 37472, - [SMALL_STATE(556)] = 37591, - [SMALL_STATE(557)] = 37710, - [SMALL_STATE(558)] = 37829, - [SMALL_STATE(559)] = 37948, - [SMALL_STATE(560)] = 38067, - [SMALL_STATE(561)] = 38186, - [SMALL_STATE(562)] = 38305, - [SMALL_STATE(563)] = 38424, - [SMALL_STATE(564)] = 38543, - [SMALL_STATE(565)] = 38662, - [SMALL_STATE(566)] = 38781, - [SMALL_STATE(567)] = 38900, - [SMALL_STATE(568)] = 39019, - [SMALL_STATE(569)] = 39138, - [SMALL_STATE(570)] = 39257, - [SMALL_STATE(571)] = 39376, - [SMALL_STATE(572)] = 39495, - [SMALL_STATE(573)] = 39614, - [SMALL_STATE(574)] = 39733, - [SMALL_STATE(575)] = 39852, - [SMALL_STATE(576)] = 39971, - [SMALL_STATE(577)] = 40090, - [SMALL_STATE(578)] = 40209, - [SMALL_STATE(579)] = 40328, - [SMALL_STATE(580)] = 40447, - [SMALL_STATE(581)] = 40566, - [SMALL_STATE(582)] = 40685, - [SMALL_STATE(583)] = 40804, - [SMALL_STATE(584)] = 40923, - [SMALL_STATE(585)] = 41042, - [SMALL_STATE(586)] = 41161, - [SMALL_STATE(587)] = 41280, - [SMALL_STATE(588)] = 41399, - [SMALL_STATE(589)] = 41518, - [SMALL_STATE(590)] = 41637, - [SMALL_STATE(591)] = 41756, - [SMALL_STATE(592)] = 41875, - [SMALL_STATE(593)] = 41994, - [SMALL_STATE(594)] = 42113, - [SMALL_STATE(595)] = 42232, - [SMALL_STATE(596)] = 42351, - [SMALL_STATE(597)] = 42470, - [SMALL_STATE(598)] = 42589, - [SMALL_STATE(599)] = 42708, - [SMALL_STATE(600)] = 42827, - [SMALL_STATE(601)] = 42946, - [SMALL_STATE(602)] = 43065, - [SMALL_STATE(603)] = 43184, - [SMALL_STATE(604)] = 43303, - [SMALL_STATE(605)] = 43422, - [SMALL_STATE(606)] = 43541, - [SMALL_STATE(607)] = 43660, - [SMALL_STATE(608)] = 43779, - [SMALL_STATE(609)] = 43898, - [SMALL_STATE(610)] = 44017, - [SMALL_STATE(611)] = 44136, - [SMALL_STATE(612)] = 44255, - [SMALL_STATE(613)] = 44374, - [SMALL_STATE(614)] = 44493, - [SMALL_STATE(615)] = 44612, - [SMALL_STATE(616)] = 44731, - [SMALL_STATE(617)] = 44850, - [SMALL_STATE(618)] = 44969, - [SMALL_STATE(619)] = 45088, - [SMALL_STATE(620)] = 45207, - [SMALL_STATE(621)] = 45326, - [SMALL_STATE(622)] = 45445, - [SMALL_STATE(623)] = 45564, - [SMALL_STATE(624)] = 45683, - [SMALL_STATE(625)] = 45802, - [SMALL_STATE(626)] = 45921, - [SMALL_STATE(627)] = 45992, - [SMALL_STATE(628)] = 46063, - [SMALL_STATE(629)] = 46182, - [SMALL_STATE(630)] = 46301, - [SMALL_STATE(631)] = 46420, - [SMALL_STATE(632)] = 46539, - [SMALL_STATE(633)] = 46658, - [SMALL_STATE(634)] = 46777, - [SMALL_STATE(635)] = 46896, - [SMALL_STATE(636)] = 47015, - [SMALL_STATE(637)] = 47134, - [SMALL_STATE(638)] = 47253, - [SMALL_STATE(639)] = 47372, - [SMALL_STATE(640)] = 47491, - [SMALL_STATE(641)] = 47610, - [SMALL_STATE(642)] = 47729, - [SMALL_STATE(643)] = 47848, - [SMALL_STATE(644)] = 47967, - [SMALL_STATE(645)] = 48086, - [SMALL_STATE(646)] = 48205, - [SMALL_STATE(647)] = 48324, - [SMALL_STATE(648)] = 48443, - [SMALL_STATE(649)] = 48562, - [SMALL_STATE(650)] = 48681, - [SMALL_STATE(651)] = 48800, - [SMALL_STATE(652)] = 48919, - [SMALL_STATE(653)] = 49038, - [SMALL_STATE(654)] = 49157, - [SMALL_STATE(655)] = 49276, - [SMALL_STATE(656)] = 49395, - [SMALL_STATE(657)] = 49514, - [SMALL_STATE(658)] = 49633, - [SMALL_STATE(659)] = 49752, - [SMALL_STATE(660)] = 49871, - [SMALL_STATE(661)] = 49990, - [SMALL_STATE(662)] = 50109, - [SMALL_STATE(663)] = 50228, - [SMALL_STATE(664)] = 50347, - [SMALL_STATE(665)] = 50466, - [SMALL_STATE(666)] = 50585, - [SMALL_STATE(667)] = 50704, - [SMALL_STATE(668)] = 50823, - [SMALL_STATE(669)] = 50942, - [SMALL_STATE(670)] = 51061, - [SMALL_STATE(671)] = 51180, - [SMALL_STATE(672)] = 51299, - [SMALL_STATE(673)] = 51418, - [SMALL_STATE(674)] = 51537, - [SMALL_STATE(675)] = 51656, - [SMALL_STATE(676)] = 51775, - [SMALL_STATE(677)] = 51894, - [SMALL_STATE(678)] = 52013, - [SMALL_STATE(679)] = 52132, - [SMALL_STATE(680)] = 52251, - [SMALL_STATE(681)] = 52370, - [SMALL_STATE(682)] = 52489, - [SMALL_STATE(683)] = 52608, - [SMALL_STATE(684)] = 52727, - [SMALL_STATE(685)] = 52846, - [SMALL_STATE(686)] = 52965, - [SMALL_STATE(687)] = 53084, - [SMALL_STATE(688)] = 53203, - [SMALL_STATE(689)] = 53322, - [SMALL_STATE(690)] = 53441, - [SMALL_STATE(691)] = 53560, - [SMALL_STATE(692)] = 53679, - [SMALL_STATE(693)] = 53798, - [SMALL_STATE(694)] = 53917, - [SMALL_STATE(695)] = 54036, - [SMALL_STATE(696)] = 54155, - [SMALL_STATE(697)] = 54274, - [SMALL_STATE(698)] = 54393, - [SMALL_STATE(699)] = 54470, - [SMALL_STATE(700)] = 54589, - [SMALL_STATE(701)] = 54708, - [SMALL_STATE(702)] = 54827, - [SMALL_STATE(703)] = 54946, - [SMALL_STATE(704)] = 55065, - [SMALL_STATE(705)] = 55184, - [SMALL_STATE(706)] = 55259, - [SMALL_STATE(707)] = 55378, - [SMALL_STATE(708)] = 55497, - [SMALL_STATE(709)] = 55616, - [SMALL_STATE(710)] = 55735, - [SMALL_STATE(711)] = 55854, - [SMALL_STATE(712)] = 55973, - [SMALL_STATE(713)] = 56092, - [SMALL_STATE(714)] = 56211, - [SMALL_STATE(715)] = 56330, - [SMALL_STATE(716)] = 56449, - [SMALL_STATE(717)] = 56568, - [SMALL_STATE(718)] = 56687, - [SMALL_STATE(719)] = 56806, - [SMALL_STATE(720)] = 56925, - [SMALL_STATE(721)] = 57044, - [SMALL_STATE(722)] = 57163, - [SMALL_STATE(723)] = 57282, - [SMALL_STATE(724)] = 57401, - [SMALL_STATE(725)] = 57520, - [SMALL_STATE(726)] = 57639, - [SMALL_STATE(727)] = 57758, - [SMALL_STATE(728)] = 57877, - [SMALL_STATE(729)] = 57996, - [SMALL_STATE(730)] = 58115, - [SMALL_STATE(731)] = 58234, - [SMALL_STATE(732)] = 58353, - [SMALL_STATE(733)] = 58472, - [SMALL_STATE(734)] = 58591, - [SMALL_STATE(735)] = 58710, - [SMALL_STATE(736)] = 58829, - [SMALL_STATE(737)] = 58948, - [SMALL_STATE(738)] = 59067, - [SMALL_STATE(739)] = 59186, - [SMALL_STATE(740)] = 59305, - [SMALL_STATE(741)] = 59424, - [SMALL_STATE(742)] = 59543, - [SMALL_STATE(743)] = 59662, - [SMALL_STATE(744)] = 59781, - [SMALL_STATE(745)] = 59900, - [SMALL_STATE(746)] = 60019, - [SMALL_STATE(747)] = 60138, - [SMALL_STATE(748)] = 60257, - [SMALL_STATE(749)] = 60376, - [SMALL_STATE(750)] = 60495, - [SMALL_STATE(751)] = 60614, - [SMALL_STATE(752)] = 60733, - [SMALL_STATE(753)] = 60852, - [SMALL_STATE(754)] = 60971, - [SMALL_STATE(755)] = 61090, - [SMALL_STATE(756)] = 61209, - [SMALL_STATE(757)] = 61328, - [SMALL_STATE(758)] = 61447, - [SMALL_STATE(759)] = 61566, - [SMALL_STATE(760)] = 61685, - [SMALL_STATE(761)] = 61804, - [SMALL_STATE(762)] = 61923, - [SMALL_STATE(763)] = 62042, - [SMALL_STATE(764)] = 62161, - [SMALL_STATE(765)] = 62280, - [SMALL_STATE(766)] = 62399, - [SMALL_STATE(767)] = 62518, - [SMALL_STATE(768)] = 62637, - [SMALL_STATE(769)] = 62756, - [SMALL_STATE(770)] = 62875, - [SMALL_STATE(771)] = 62994, - [SMALL_STATE(772)] = 63067, - [SMALL_STATE(773)] = 63186, - [SMALL_STATE(774)] = 63259, - [SMALL_STATE(775)] = 63378, - [SMALL_STATE(776)] = 63497, - [SMALL_STATE(777)] = 63616, - [SMALL_STATE(778)] = 63735, - [SMALL_STATE(779)] = 63854, - [SMALL_STATE(780)] = 63973, - [SMALL_STATE(781)] = 64092, - [SMALL_STATE(782)] = 64211, - [SMALL_STATE(783)] = 64330, - [SMALL_STATE(784)] = 64449, - [SMALL_STATE(785)] = 64568, - [SMALL_STATE(786)] = 64687, - [SMALL_STATE(787)] = 64806, - [SMALL_STATE(788)] = 64925, - [SMALL_STATE(789)] = 64996, - [SMALL_STATE(790)] = 65067, - [SMALL_STATE(791)] = 65186, - [SMALL_STATE(792)] = 65305, - [SMALL_STATE(793)] = 65424, - [SMALL_STATE(794)] = 65543, - [SMALL_STATE(795)] = 65662, - [SMALL_STATE(796)] = 65781, - [SMALL_STATE(797)] = 65900, - [SMALL_STATE(798)] = 66019, - [SMALL_STATE(799)] = 66138, - [SMALL_STATE(800)] = 66257, - [SMALL_STATE(801)] = 66376, - [SMALL_STATE(802)] = 66495, - [SMALL_STATE(803)] = 66614, - [SMALL_STATE(804)] = 66733, - [SMALL_STATE(805)] = 66852, - [SMALL_STATE(806)] = 66971, - [SMALL_STATE(807)] = 67090, - [SMALL_STATE(808)] = 67209, - [SMALL_STATE(809)] = 67328, - [SMALL_STATE(810)] = 67447, - [SMALL_STATE(811)] = 67566, - [SMALL_STATE(812)] = 67685, - [SMALL_STATE(813)] = 67804, - [SMALL_STATE(814)] = 67923, - [SMALL_STATE(815)] = 68042, - [SMALL_STATE(816)] = 68161, - [SMALL_STATE(817)] = 68280, - [SMALL_STATE(818)] = 68399, - [SMALL_STATE(819)] = 68518, - [SMALL_STATE(820)] = 68637, - [SMALL_STATE(821)] = 68756, - [SMALL_STATE(822)] = 68875, - [SMALL_STATE(823)] = 68994, - [SMALL_STATE(824)] = 69113, - [SMALL_STATE(825)] = 69232, - [SMALL_STATE(826)] = 69351, - [SMALL_STATE(827)] = 69470, - [SMALL_STATE(828)] = 69589, - [SMALL_STATE(829)] = 69708, - [SMALL_STATE(830)] = 69827, - [SMALL_STATE(831)] = 69946, - [SMALL_STATE(832)] = 70065, - [SMALL_STATE(833)] = 70184, - [SMALL_STATE(834)] = 70303, - [SMALL_STATE(835)] = 70422, - [SMALL_STATE(836)] = 70541, - [SMALL_STATE(837)] = 70660, - [SMALL_STATE(838)] = 70779, - [SMALL_STATE(839)] = 70898, - [SMALL_STATE(840)] = 71017, - [SMALL_STATE(841)] = 71136, - [SMALL_STATE(842)] = 71255, - [SMALL_STATE(843)] = 71374, - [SMALL_STATE(844)] = 71493, - [SMALL_STATE(845)] = 71612, - [SMALL_STATE(846)] = 71731, - [SMALL_STATE(847)] = 71850, - [SMALL_STATE(848)] = 71969, - [SMALL_STATE(849)] = 72088, - [SMALL_STATE(850)] = 72207, - [SMALL_STATE(851)] = 72278, - [SMALL_STATE(852)] = 72397, - [SMALL_STATE(853)] = 72516, - [SMALL_STATE(854)] = 72635, - [SMALL_STATE(855)] = 72754, - [SMALL_STATE(856)] = 72873, - [SMALL_STATE(857)] = 72992, - [SMALL_STATE(858)] = 73111, - [SMALL_STATE(859)] = 73230, - [SMALL_STATE(860)] = 73349, - [SMALL_STATE(861)] = 73468, - [SMALL_STATE(862)] = 73541, - [SMALL_STATE(863)] = 73660, - [SMALL_STATE(864)] = 73779, - [SMALL_STATE(865)] = 73898, - [SMALL_STATE(866)] = 74017, - [SMALL_STATE(867)] = 74136, - [SMALL_STATE(868)] = 74255, - [SMALL_STATE(869)] = 74374, - [SMALL_STATE(870)] = 74493, - [SMALL_STATE(871)] = 74612, - [SMALL_STATE(872)] = 74731, - [SMALL_STATE(873)] = 74850, - [SMALL_STATE(874)] = 74969, - [SMALL_STATE(875)] = 75088, - [SMALL_STATE(876)] = 75207, - [SMALL_STATE(877)] = 75326, - [SMALL_STATE(878)] = 75445, - [SMALL_STATE(879)] = 75564, - [SMALL_STATE(880)] = 75683, - [SMALL_STATE(881)] = 75802, - [SMALL_STATE(882)] = 75921, - [SMALL_STATE(883)] = 76040, - [SMALL_STATE(884)] = 76159, - [SMALL_STATE(885)] = 76278, - [SMALL_STATE(886)] = 76397, - [SMALL_STATE(887)] = 76516, - [SMALL_STATE(888)] = 76635, - [SMALL_STATE(889)] = 76754, - [SMALL_STATE(890)] = 76873, - [SMALL_STATE(891)] = 76992, - [SMALL_STATE(892)] = 77111, - [SMALL_STATE(893)] = 77230, - [SMALL_STATE(894)] = 77349, - [SMALL_STATE(895)] = 77468, - [SMALL_STATE(896)] = 77587, - [SMALL_STATE(897)] = 77706, - [SMALL_STATE(898)] = 77825, - [SMALL_STATE(899)] = 77944, - [SMALL_STATE(900)] = 78063, - [SMALL_STATE(901)] = 78138, - [SMALL_STATE(902)] = 78257, - [SMALL_STATE(903)] = 78376, - [SMALL_STATE(904)] = 78495, - [SMALL_STATE(905)] = 78614, - [SMALL_STATE(906)] = 78733, - [SMALL_STATE(907)] = 78852, - [SMALL_STATE(908)] = 78971, - [SMALL_STATE(909)] = 79090, - [SMALL_STATE(910)] = 79209, - [SMALL_STATE(911)] = 79328, - [SMALL_STATE(912)] = 79447, - [SMALL_STATE(913)] = 79566, - [SMALL_STATE(914)] = 79685, - [SMALL_STATE(915)] = 79804, - [SMALL_STATE(916)] = 79923, - [SMALL_STATE(917)] = 80042, - [SMALL_STATE(918)] = 80161, - [SMALL_STATE(919)] = 80280, - [SMALL_STATE(920)] = 80399, - [SMALL_STATE(921)] = 80518, - [SMALL_STATE(922)] = 80637, - [SMALL_STATE(923)] = 80756, - [SMALL_STATE(924)] = 80875, - [SMALL_STATE(925)] = 80994, - [SMALL_STATE(926)] = 81113, - [SMALL_STATE(927)] = 81232, - [SMALL_STATE(928)] = 81351, - [SMALL_STATE(929)] = 81470, - [SMALL_STATE(930)] = 81589, - [SMALL_STATE(931)] = 81708, - [SMALL_STATE(932)] = 81827, - [SMALL_STATE(933)] = 81946, - [SMALL_STATE(934)] = 82065, - [SMALL_STATE(935)] = 82184, - [SMALL_STATE(936)] = 82303, - [SMALL_STATE(937)] = 82422, - [SMALL_STATE(938)] = 82541, - [SMALL_STATE(939)] = 82660, - [SMALL_STATE(940)] = 82779, - [SMALL_STATE(941)] = 82898, - [SMALL_STATE(942)] = 83017, - [SMALL_STATE(943)] = 83136, - [SMALL_STATE(944)] = 83255, - [SMALL_STATE(945)] = 83326, - [SMALL_STATE(946)] = 83445, - [SMALL_STATE(947)] = 83564, - [SMALL_STATE(948)] = 83683, - [SMALL_STATE(949)] = 83802, - [SMALL_STATE(950)] = 83921, - [SMALL_STATE(951)] = 84040, - [SMALL_STATE(952)] = 84159, - [SMALL_STATE(953)] = 84278, - [SMALL_STATE(954)] = 84397, - [SMALL_STATE(955)] = 84516, - [SMALL_STATE(956)] = 84635, - [SMALL_STATE(957)] = 84754, - [SMALL_STATE(958)] = 84873, - [SMALL_STATE(959)] = 84992, - [SMALL_STATE(960)] = 85111, - [SMALL_STATE(961)] = 85230, - [SMALL_STATE(962)] = 85349, - [SMALL_STATE(963)] = 85468, - [SMALL_STATE(964)] = 85587, - [SMALL_STATE(965)] = 85706, - [SMALL_STATE(966)] = 85825, - [SMALL_STATE(967)] = 85896, - [SMALL_STATE(968)] = 86015, - [SMALL_STATE(969)] = 86086, - [SMALL_STATE(970)] = 86205, - [SMALL_STATE(971)] = 86324, - [SMALL_STATE(972)] = 86394, - [SMALL_STATE(973)] = 86478, - [SMALL_STATE(974)] = 86564, - [SMALL_STATE(975)] = 86650, - [SMALL_STATE(976)] = 86736, - [SMALL_STATE(977)] = 86806, - [SMALL_STATE(978)] = 86876, - [SMALL_STATE(979)] = 86946, - [SMALL_STATE(980)] = 87016, - [SMALL_STATE(981)] = 87086, - [SMALL_STATE(982)] = 87156, - [SMALL_STATE(983)] = 87226, - [SMALL_STATE(984)] = 87296, - [SMALL_STATE(985)] = 87366, - [SMALL_STATE(986)] = 87436, - [SMALL_STATE(987)] = 87506, - [SMALL_STATE(988)] = 87576, - [SMALL_STATE(989)] = 87646, - [SMALL_STATE(990)] = 87716, - [SMALL_STATE(991)] = 87786, - [SMALL_STATE(992)] = 87856, - [SMALL_STATE(993)] = 87942, - [SMALL_STATE(994)] = 88012, - [SMALL_STATE(995)] = 88082, - [SMALL_STATE(996)] = 88152, - [SMALL_STATE(997)] = 88222, - [SMALL_STATE(998)] = 88292, - [SMALL_STATE(999)] = 88378, - [SMALL_STATE(1000)] = 88464, - [SMALL_STATE(1001)] = 88534, - [SMALL_STATE(1002)] = 88604, - [SMALL_STATE(1003)] = 88674, - [SMALL_STATE(1004)] = 88744, - [SMALL_STATE(1005)] = 88814, - [SMALL_STATE(1006)] = 88896, - [SMALL_STATE(1007)] = 88974, - [SMALL_STATE(1008)] = 89060, - [SMALL_STATE(1009)] = 89146, - [SMALL_STATE(1010)] = 89226, - [SMALL_STATE(1011)] = 89311, - [SMALL_STATE(1012)] = 89388, - [SMALL_STATE(1013)] = 89467, - [SMALL_STATE(1014)] = 89552, - [SMALL_STATE(1015)] = 89637, - [SMALL_STATE(1016)] = 89722, - [SMALL_STATE(1017)] = 89809, - [SMALL_STATE(1018)] = 89894, - [SMALL_STATE(1019)] = 89979, - [SMALL_STATE(1020)] = 90064, - [SMALL_STATE(1021)] = 90145, - [SMALL_STATE(1022)] = 90228, - [SMALL_STATE(1023)] = 90299, - [SMALL_STATE(1024)] = 90384, - [SMALL_STATE(1025)] = 90469, - [SMALL_STATE(1026)] = 90554, - [SMALL_STATE(1027)] = 90626, - [SMALL_STATE(1028)] = 90698, - [SMALL_STATE(1029)] = 90772, - [SMALL_STATE(1030)] = 90842, - [SMALL_STATE(1031)] = 90912, - [SMALL_STATE(1032)] = 90982, - [SMALL_STATE(1033)] = 91066, - [SMALL_STATE(1034)] = 91138, - [SMALL_STATE(1035)] = 91210, - [SMALL_STATE(1036)] = 91282, - [SMALL_STATE(1037)] = 91353, - [SMALL_STATE(1038)] = 91424, - [SMALL_STATE(1039)] = 91493, - [SMALL_STATE(1040)] = 91566, - [SMALL_STATE(1041)] = 91633, - [SMALL_STATE(1042)] = 91700, - [SMALL_STATE(1043)] = 91771, - [SMALL_STATE(1044)] = 91838, - [SMALL_STATE(1045)] = 91907, - [SMALL_STATE(1046)] = 91976, - [SMALL_STATE(1047)] = 92047, - [SMALL_STATE(1048)] = 92114, - [SMALL_STATE(1049)] = 92183, - [SMALL_STATE(1050)] = 92252, - [SMALL_STATE(1051)] = 92321, - [SMALL_STATE(1052)] = 92392, - [SMALL_STATE(1053)] = 92463, - [SMALL_STATE(1054)] = 92530, - [SMALL_STATE(1055)] = 92597, - [SMALL_STATE(1056)] = 92668, - [SMALL_STATE(1057)] = 92735, - [SMALL_STATE(1058)] = 92808, - [SMALL_STATE(1059)] = 92875, - [SMALL_STATE(1060)] = 92942, - [SMALL_STATE(1061)] = 93008, - [SMALL_STATE(1062)] = 93074, - [SMALL_STATE(1063)] = 93140, - [SMALL_STATE(1064)] = 93206, - [SMALL_STATE(1065)] = 93272, - [SMALL_STATE(1066)] = 93338, - [SMALL_STATE(1067)] = 93404, - [SMALL_STATE(1068)] = 93470, - [SMALL_STATE(1069)] = 93536, - [SMALL_STATE(1070)] = 93602, - [SMALL_STATE(1071)] = 93668, - [SMALL_STATE(1072)] = 93736, - [SMALL_STATE(1073)] = 93802, - [SMALL_STATE(1074)] = 93872, - [SMALL_STATE(1075)] = 93938, - [SMALL_STATE(1076)] = 94004, - [SMALL_STATE(1077)] = 94070, - [SMALL_STATE(1078)] = 94136, - [SMALL_STATE(1079)] = 94206, - [SMALL_STATE(1080)] = 94272, - [SMALL_STATE(1081)] = 94338, - [SMALL_STATE(1082)] = 94404, - [SMALL_STATE(1083)] = 94470, - [SMALL_STATE(1084)] = 94536, - [SMALL_STATE(1085)] = 94602, - [SMALL_STATE(1086)] = 94668, - [SMALL_STATE(1087)] = 94740, - [SMALL_STATE(1088)] = 94806, - [SMALL_STATE(1089)] = 94872, - [SMALL_STATE(1090)] = 94938, - [SMALL_STATE(1091)] = 95004, - [SMALL_STATE(1092)] = 95070, - [SMALL_STATE(1093)] = 95136, - [SMALL_STATE(1094)] = 95202, - [SMALL_STATE(1095)] = 95268, - [SMALL_STATE(1096)] = 95334, - [SMALL_STATE(1097)] = 95400, - [SMALL_STATE(1098)] = 95466, - [SMALL_STATE(1099)] = 95532, - [SMALL_STATE(1100)] = 95598, - [SMALL_STATE(1101)] = 95666, - [SMALL_STATE(1102)] = 95734, - [SMALL_STATE(1103)] = 95799, - [SMALL_STATE(1104)] = 95864, - [SMALL_STATE(1105)] = 95951, - [SMALL_STATE(1106)] = 96038, - [SMALL_STATE(1107)] = 96125, - [SMALL_STATE(1108)] = 96210, - [SMALL_STATE(1109)] = 96275, - [SMALL_STATE(1110)] = 96362, - [SMALL_STATE(1111)] = 96427, - [SMALL_STATE(1112)] = 96492, - [SMALL_STATE(1113)] = 96557, - [SMALL_STATE(1114)] = 96622, - [SMALL_STATE(1115)] = 96687, - [SMALL_STATE(1116)] = 96774, - [SMALL_STATE(1117)] = 96839, - [SMALL_STATE(1118)] = 96926, - [SMALL_STATE(1119)] = 96991, - [SMALL_STATE(1120)] = 97078, - [SMALL_STATE(1121)] = 97143, - [SMALL_STATE(1122)] = 97208, - [SMALL_STATE(1123)] = 97273, - [SMALL_STATE(1124)] = 97338, - [SMALL_STATE(1125)] = 97403, - [SMALL_STATE(1126)] = 97468, - [SMALL_STATE(1127)] = 97533, - [SMALL_STATE(1128)] = 97598, - [SMALL_STATE(1129)] = 97663, - [SMALL_STATE(1130)] = 97750, - [SMALL_STATE(1131)] = 97815, - [SMALL_STATE(1132)] = 97880, - [SMALL_STATE(1133)] = 97945, - [SMALL_STATE(1134)] = 98010, - [SMALL_STATE(1135)] = 98097, - [SMALL_STATE(1136)] = 98162, - [SMALL_STATE(1137)] = 98227, - [SMALL_STATE(1138)] = 98292, - [SMALL_STATE(1139)] = 98357, - [SMALL_STATE(1140)] = 98438, - [SMALL_STATE(1141)] = 98517, - [SMALL_STATE(1142)] = 98592, - [SMALL_STATE(1143)] = 98664, - [SMALL_STATE(1144)] = 98733, - [SMALL_STATE(1145)] = 98825, - [SMALL_STATE(1146)] = 98917, - [SMALL_STATE(1147)] = 98983, - [SMALL_STATE(1148)] = 99075, - [SMALL_STATE(1149)] = 99167, - [SMALL_STATE(1150)] = 99259, - [SMALL_STATE(1151)] = 99323, - [SMALL_STATE(1152)] = 99415, - [SMALL_STATE(1153)] = 99507, - [SMALL_STATE(1154)] = 99571, - [SMALL_STATE(1155)] = 99663, - [SMALL_STATE(1156)] = 99755, - [SMALL_STATE(1157)] = 99819, - [SMALL_STATE(1158)] = 99911, - [SMALL_STATE(1159)] = 99994, - [SMALL_STATE(1160)] = 100073, - [SMALL_STATE(1161)] = 100154, - [SMALL_STATE(1162)] = 100225, - [SMALL_STATE(1163)] = 100302, - [SMALL_STATE(1164)] = 100383, - [SMALL_STATE(1165)] = 100464, - [SMALL_STATE(1166)] = 100539, - [SMALL_STATE(1167)] = 100620, - [SMALL_STATE(1168)] = 100701, - [SMALL_STATE(1169)] = 100782, - [SMALL_STATE(1170)] = 100863, - [SMALL_STATE(1171)] = 100944, - [SMALL_STATE(1172)] = 101024, - [SMALL_STATE(1173)] = 101102, - [SMALL_STATE(1174)] = 101182, - [SMALL_STATE(1175)] = 101262, - [SMALL_STATE(1176)] = 101342, - [SMALL_STATE(1177)] = 101422, - [SMALL_STATE(1178)] = 101496, - [SMALL_STATE(1179)] = 101576, - [SMALL_STATE(1180)] = 101652, - [SMALL_STATE(1181)] = 101720, - [SMALL_STATE(1182)] = 101800, - [SMALL_STATE(1183)] = 101880, - [SMALL_STATE(1184)] = 101960, - [SMALL_STATE(1185)] = 102040, - [SMALL_STATE(1186)] = 102110, - [SMALL_STATE(1187)] = 102190, - [SMALL_STATE(1188)] = 102270, - [SMALL_STATE(1189)] = 102351, - [SMALL_STATE(1190)] = 102416, - [SMALL_STATE(1191)] = 102497, - [SMALL_STATE(1192)] = 102578, - [SMALL_STATE(1193)] = 102655, - [SMALL_STATE(1194)] = 102734, - [SMALL_STATE(1195)] = 102801, - [SMALL_STATE(1196)] = 102882, - [SMALL_STATE(1197)] = 102963, - [SMALL_STATE(1198)] = 103044, - [SMALL_STATE(1199)] = 103125, - [SMALL_STATE(1200)] = 103206, - [SMALL_STATE(1201)] = 103287, - [SMALL_STATE(1202)] = 103362, - [SMALL_STATE(1203)] = 103435, - [SMALL_STATE(1204)] = 103504, - [SMALL_STATE(1205)] = 103584, - [SMALL_STATE(1206)] = 103664, - [SMALL_STATE(1207)] = 103732, - [SMALL_STATE(1208)] = 103798, - [SMALL_STATE(1209)] = 103878, - [SMALL_STATE(1210)] = 103958, - [SMALL_STATE(1211)] = 104038, - [SMALL_STATE(1212)] = 104116, - [SMALL_STATE(1213)] = 104196, - [SMALL_STATE(1214)] = 104276, - [SMALL_STATE(1215)] = 104350, - [SMALL_STATE(1216)] = 104422, - [SMALL_STATE(1217)] = 104486, - [SMALL_STATE(1218)] = 104566, - [SMALL_STATE(1219)] = 104646, - [SMALL_STATE(1220)] = 104739, - [SMALL_STATE(1221)] = 104832, - [SMALL_STATE(1222)] = 104925, - [SMALL_STATE(1223)] = 105018, - [SMALL_STATE(1224)] = 105111, - [SMALL_STATE(1225)] = 105204, - [SMALL_STATE(1226)] = 105297, - [SMALL_STATE(1227)] = 105390, - [SMALL_STATE(1228)] = 105483, - [SMALL_STATE(1229)] = 105576, - [SMALL_STATE(1230)] = 105669, - [SMALL_STATE(1231)] = 105762, - [SMALL_STATE(1232)] = 105855, - [SMALL_STATE(1233)] = 105948, - [SMALL_STATE(1234)] = 106041, - [SMALL_STATE(1235)] = 106134, - [SMALL_STATE(1236)] = 106227, - [SMALL_STATE(1237)] = 106320, - [SMALL_STATE(1238)] = 106383, - [SMALL_STATE(1239)] = 106476, - [SMALL_STATE(1240)] = 106569, - [SMALL_STATE(1241)] = 106662, - [SMALL_STATE(1242)] = 106755, - [SMALL_STATE(1243)] = 106848, - [SMALL_STATE(1244)] = 106941, - [SMALL_STATE(1245)] = 107034, - [SMALL_STATE(1246)] = 107099, - [SMALL_STATE(1247)] = 107192, - [SMALL_STATE(1248)] = 107266, - [SMALL_STATE(1249)] = 107340, - [SMALL_STATE(1250)] = 107402, - [SMALL_STATE(1251)] = 107476, - [SMALL_STATE(1252)] = 107550, - [SMALL_STATE(1253)] = 107624, - [SMALL_STATE(1254)] = 107698, - [SMALL_STATE(1255)] = 107772, - [SMALL_STATE(1256)] = 107849, - [SMALL_STATE(1257)] = 107918, - [SMALL_STATE(1258)] = 107983, - [SMALL_STATE(1259)] = 108044, - [SMALL_STATE(1260)] = 108121, - [SMALL_STATE(1261)] = 108198, - [SMALL_STATE(1262)] = 108275, - [SMALL_STATE(1263)] = 108352, - [SMALL_STATE(1264)] = 108427, - [SMALL_STATE(1265)] = 108498, - [SMALL_STATE(1266)] = 108575, - [SMALL_STATE(1267)] = 108652, - [SMALL_STATE(1268)] = 108729, - [SMALL_STATE(1269)] = 108788, - [SMALL_STATE(1270)] = 108865, - [SMALL_STATE(1271)] = 108933, - [SMALL_STATE(1272)] = 109007, - [SMALL_STATE(1273)] = 109091, - [SMALL_STATE(1274)] = 109165, - [SMALL_STATE(1275)] = 109221, - [SMALL_STATE(1276)] = 109283, - [SMALL_STATE(1277)] = 109367, - [SMALL_STATE(1278)] = 109439, - [SMALL_STATE(1279)] = 109523, - [SMALL_STATE(1280)] = 109607, - [SMALL_STATE(1281)] = 109681, - [SMALL_STATE(1282)] = 109743, - [SMALL_STATE(1283)] = 109827, - [SMALL_STATE(1284)] = 109901, - [SMALL_STATE(1285)] = 109975, - [SMALL_STATE(1286)] = 110059, - [SMALL_STATE(1287)] = 110133, - [SMALL_STATE(1288)] = 110207, - [SMALL_STATE(1289)] = 110281, - [SMALL_STATE(1290)] = 110365, - [SMALL_STATE(1291)] = 110429, - [SMALL_STATE(1292)] = 110513, - [SMALL_STATE(1293)] = 110597, - [SMALL_STATE(1294)] = 110671, - [SMALL_STATE(1295)] = 110741, - [SMALL_STATE(1296)] = 110825, - [SMALL_STATE(1297)] = 110888, - [SMALL_STATE(1298)] = 110947, - [SMALL_STATE(1299)] = 111020, - [SMALL_STATE(1300)] = 111087, - [SMALL_STATE(1301)] = 111160, - [SMALL_STATE(1302)] = 111233, - [SMALL_STATE(1303)] = 111306, - [SMALL_STATE(1304)] = 111379, - [SMALL_STATE(1305)] = 111436, - [SMALL_STATE(1306)] = 111509, - [SMALL_STATE(1307)] = 111582, - [SMALL_STATE(1308)] = 111651, - [SMALL_STATE(1309)] = 111726, - [SMALL_STATE(1310)] = 111785, - [SMALL_STATE(1311)] = 111844, - [SMALL_STATE(1312)] = 111903, - [SMALL_STATE(1313)] = 111960, - [SMALL_STATE(1314)] = 112031, - [SMALL_STATE(1315)] = 112090, - [SMALL_STATE(1316)] = 112145, - [SMALL_STATE(1317)] = 112218, - [SMALL_STATE(1318)] = 112279, - [SMALL_STATE(1319)] = 112338, - [SMALL_STATE(1320)] = 112395, - [SMALL_STATE(1321)] = 112481, - [SMALL_STATE(1322)] = 112535, - [SMALL_STATE(1323)] = 112591, - [SMALL_STATE(1324)] = 112677, - [SMALL_STATE(1325)] = 112749, - [SMALL_STATE(1326)] = 112805, - [SMALL_STATE(1327)] = 112865, - [SMALL_STATE(1328)] = 112951, - [SMALL_STATE(1329)] = 113005, - [SMALL_STATE(1330)] = 113067, - [SMALL_STATE(1331)] = 113121, - [SMALL_STATE(1332)] = 113187, - [SMALL_STATE(1333)] = 113255, - [SMALL_STATE(1334)] = 113341, - [SMALL_STATE(1335)] = 113411, - [SMALL_STATE(1336)] = 113483, - [SMALL_STATE(1337)] = 113555, - [SMALL_STATE(1338)] = 113627, - [SMALL_STATE(1339)] = 113713, - [SMALL_STATE(1340)] = 113767, - [SMALL_STATE(1341)] = 113839, - [SMALL_STATE(1342)] = 113893, - [SMALL_STATE(1343)] = 113965, - [SMALL_STATE(1344)] = 114025, - [SMALL_STATE(1345)] = 114097, - [SMALL_STATE(1346)] = 114167, - [SMALL_STATE(1347)] = 114239, - [SMALL_STATE(1348)] = 114293, - [SMALL_STATE(1349)] = 114365, - [SMALL_STATE(1350)] = 114437, - [SMALL_STATE(1351)] = 114491, - [SMALL_STATE(1352)] = 114563, - [SMALL_STATE(1353)] = 114635, - [SMALL_STATE(1354)] = 114721, - [SMALL_STATE(1355)] = 114793, - [SMALL_STATE(1356)] = 114859, - [SMALL_STATE(1357)] = 114921, - [SMALL_STATE(1358)] = 114989, - [SMALL_STATE(1359)] = 115047, - [SMALL_STATE(1360)] = 115133, - [SMALL_STATE(1361)] = 115205, - [SMALL_STATE(1362)] = 115257, - [SMALL_STATE(1363)] = 115343, - [SMALL_STATE(1364)] = 115429, - [SMALL_STATE(1365)] = 115515, - [SMALL_STATE(1366)] = 115587, - [SMALL_STATE(1367)] = 115673, - [SMALL_STATE(1368)] = 115745, - [SMALL_STATE(1369)] = 115817, - [SMALL_STATE(1370)] = 115889, - [SMALL_STATE(1371)] = 115975, - [SMALL_STATE(1372)] = 116031, - [SMALL_STATE(1373)] = 116103, - [SMALL_STATE(1374)] = 116157, - [SMALL_STATE(1375)] = 116229, - [SMALL_STATE(1376)] = 116315, - [SMALL_STATE(1377)] = 116401, - [SMALL_STATE(1378)] = 116487, - [SMALL_STATE(1379)] = 116559, - [SMALL_STATE(1380)] = 116630, - [SMALL_STATE(1381)] = 116683, - [SMALL_STATE(1382)] = 116736, - [SMALL_STATE(1383)] = 116789, - [SMALL_STATE(1384)] = 116860, - [SMALL_STATE(1385)] = 116913, - [SMALL_STATE(1386)] = 116986, - [SMALL_STATE(1387)] = 117059, - [SMALL_STATE(1388)] = 117126, - [SMALL_STATE(1389)] = 117195, - [SMALL_STATE(1390)] = 117256, - [SMALL_STATE(1391)] = 117309, - [SMALL_STATE(1392)] = 117374, - [SMALL_STATE(1393)] = 117433, - [SMALL_STATE(1394)] = 117492, - [SMALL_STATE(1395)] = 117565, - [SMALL_STATE(1396)] = 117618, - [SMALL_STATE(1397)] = 117673, - [SMALL_STATE(1398)] = 117726, - [SMALL_STATE(1399)] = 117779, - [SMALL_STATE(1400)] = 117850, - [SMALL_STATE(1401)] = 117919, - [SMALL_STATE(1402)] = 117992, - [SMALL_STATE(1403)] = 118045, - [SMALL_STATE(1404)] = 118102, - [SMALL_STATE(1405)] = 118175, - [SMALL_STATE(1406)] = 118228, - [SMALL_STATE(1407)] = 118281, - [SMALL_STATE(1408)] = 118354, - [SMALL_STATE(1409)] = 118427, - [SMALL_STATE(1410)] = 118480, - [SMALL_STATE(1411)] = 118533, - [SMALL_STATE(1412)] = 118586, - [SMALL_STATE(1413)] = 118639, - [SMALL_STATE(1414)] = 118692, - [SMALL_STATE(1415)] = 118745, - [SMALL_STATE(1416)] = 118798, - [SMALL_STATE(1417)] = 118871, - [SMALL_STATE(1418)] = 118924, - [SMALL_STATE(1419)] = 118997, - [SMALL_STATE(1420)] = 119050, - [SMALL_STATE(1421)] = 119103, - [SMALL_STATE(1422)] = 119156, - [SMALL_STATE(1423)] = 119209, - [SMALL_STATE(1424)] = 119262, - [SMALL_STATE(1425)] = 119315, - [SMALL_STATE(1426)] = 119368, - [SMALL_STATE(1427)] = 119421, - [SMALL_STATE(1428)] = 119489, - [SMALL_STATE(1429)] = 119545, - [SMALL_STATE(1430)] = 119611, - [SMALL_STATE(1431)] = 119679, - [SMALL_STATE(1432)] = 119749, - [SMALL_STATE(1433)] = 119819, - [SMALL_STATE(1434)] = 119889, - [SMALL_STATE(1435)] = 119959, - [SMALL_STATE(1436)] = 120027, - [SMALL_STATE(1437)] = 120091, - [SMALL_STATE(1438)] = 120145, - [SMALL_STATE(1439)] = 120215, - [SMALL_STATE(1440)] = 120285, - [SMALL_STATE(1441)] = 120355, - [SMALL_STATE(1442)] = 120425, - [SMALL_STATE(1443)] = 120481, - [SMALL_STATE(1444)] = 120539, - [SMALL_STATE(1445)] = 120599, - [SMALL_STATE(1446)] = 120669, - [SMALL_STATE(1447)] = 120735, - [SMALL_STATE(1448)] = 120805, - [SMALL_STATE(1449)] = 120875, - [SMALL_STATE(1450)] = 120942, - [SMALL_STATE(1451)] = 121009, - [SMALL_STATE(1452)] = 121066, - [SMALL_STATE(1453)] = 121121, - [SMALL_STATE(1454)] = 121189, - [SMALL_STATE(1455)] = 121245, - [SMALL_STATE(1456)] = 121313, - [SMALL_STATE(1457)] = 121381, - [SMALL_STATE(1458)] = 121447, - [SMALL_STATE(1459)] = 121501, - [SMALL_STATE(1460)] = 121571, - [SMALL_STATE(1461)] = 121625, - [SMALL_STATE(1462)] = 121679, - [SMALL_STATE(1463)] = 121747, - [SMALL_STATE(1464)] = 121815, - [SMALL_STATE(1465)] = 121869, - [SMALL_STATE(1466)] = 121931, - [SMALL_STATE(1467)] = 121999, - [SMALL_STATE(1468)] = 122067, - [SMALL_STATE(1469)] = 122135, - [SMALL_STATE(1470)] = 122191, - [SMALL_STATE(1471)] = 122257, - [SMALL_STATE(1472)] = 122315, - [SMALL_STATE(1473)] = 122371, - [SMALL_STATE(1474)] = 122439, - [SMALL_STATE(1475)] = 122507, - [SMALL_STATE(1476)] = 122575, - [SMALL_STATE(1477)] = 122639, - [SMALL_STATE(1478)] = 122707, - [SMALL_STATE(1479)] = 122759, - [SMALL_STATE(1480)] = 122815, - [SMALL_STATE(1481)] = 122879, - [SMALL_STATE(1482)] = 122927, - [SMALL_STATE(1483)] = 122979, - [SMALL_STATE(1484)] = 123027, - [SMALL_STATE(1485)] = 123081, - [SMALL_STATE(1486)] = 123137, - [SMALL_STATE(1487)] = 123193, - [SMALL_STATE(1488)] = 123247, - [SMALL_STATE(1489)] = 123295, - [SMALL_STATE(1490)] = 123347, - [SMALL_STATE(1491)] = 123401, - [SMALL_STATE(1492)] = 123455, - [SMALL_STATE(1493)] = 123523, - [SMALL_STATE(1494)] = 123571, - [SMALL_STATE(1495)] = 123639, - [SMALL_STATE(1496)] = 123709, - [SMALL_STATE(1497)] = 123767, - [SMALL_STATE(1498)] = 123835, - [SMALL_STATE(1499)] = 123903, - [SMALL_STATE(1500)] = 123957, - [SMALL_STATE(1501)] = 124019, - [SMALL_STATE(1502)] = 124073, - [SMALL_STATE(1503)] = 124125, - [SMALL_STATE(1504)] = 124188, - [SMALL_STATE(1505)] = 124255, - [SMALL_STATE(1506)] = 124318, - [SMALL_STATE(1507)] = 124385, - [SMALL_STATE(1508)] = 124448, - [SMALL_STATE(1509)] = 124511, - [SMALL_STATE(1510)] = 124574, - [SMALL_STATE(1511)] = 124641, - [SMALL_STATE(1512)] = 124726, - [SMALL_STATE(1513)] = 124789, - [SMALL_STATE(1514)] = 124856, - [SMALL_STATE(1515)] = 124919, - [SMALL_STATE(1516)] = 124986, - [SMALL_STATE(1517)] = 125053, - [SMALL_STATE(1518)] = 125120, - [SMALL_STATE(1519)] = 125187, - [SMALL_STATE(1520)] = 125248, - [SMALL_STATE(1521)] = 125315, - [SMALL_STATE(1522)] = 125382, - [SMALL_STATE(1523)] = 125449, - [SMALL_STATE(1524)] = 125516, - [SMALL_STATE(1525)] = 125583, - [SMALL_STATE(1526)] = 125648, - [SMALL_STATE(1527)] = 125705, - [SMALL_STATE(1528)] = 125768, - [SMALL_STATE(1529)] = 125827, - [SMALL_STATE(1530)] = 125884, - [SMALL_STATE(1531)] = 125945, - [SMALL_STATE(1532)] = 126012, - [SMALL_STATE(1533)] = 126075, - [SMALL_STATE(1534)] = 126138, - [SMALL_STATE(1535)] = 126187, - [SMALL_STATE(1536)] = 126254, - [SMALL_STATE(1537)] = 126309, - [SMALL_STATE(1538)] = 126362, - [SMALL_STATE(1539)] = 126429, - [SMALL_STATE(1540)] = 126492, - [SMALL_STATE(1541)] = 126549, - [SMALL_STATE(1542)] = 126634, - [SMALL_STATE(1543)] = 126689, - [SMALL_STATE(1544)] = 126756, - [SMALL_STATE(1545)] = 126807, - [SMALL_STATE(1546)] = 126892, - [SMALL_STATE(1547)] = 126977, - [SMALL_STATE(1548)] = 127062, - [SMALL_STATE(1549)] = 127110, - [SMALL_STATE(1550)] = 127156, - [SMALL_STATE(1551)] = 127202, - [SMALL_STATE(1552)] = 127248, - [SMALL_STATE(1553)] = 127294, - [SMALL_STATE(1554)] = 127340, - [SMALL_STATE(1555)] = 127386, - [SMALL_STATE(1556)] = 127432, - [SMALL_STATE(1557)] = 127480, - [SMALL_STATE(1558)] = 127528, - [SMALL_STATE(1559)] = 127576, - [SMALL_STATE(1560)] = 127624, - [SMALL_STATE(1561)] = 127670, - [SMALL_STATE(1562)] = 127718, - [SMALL_STATE(1563)] = 127766, - [SMALL_STATE(1564)] = 127812, - [SMALL_STATE(1565)] = 127860, - [SMALL_STATE(1566)] = 127908, - [SMALL_STATE(1567)] = 127954, - [SMALL_STATE(1568)] = 128000, - [SMALL_STATE(1569)] = 128062, - [SMALL_STATE(1570)] = 128108, - [SMALL_STATE(1571)] = 128174, - [SMALL_STATE(1572)] = 128220, - [SMALL_STATE(1573)] = 128280, - [SMALL_STATE(1574)] = 128326, - [SMALL_STATE(1575)] = 128372, - [SMALL_STATE(1576)] = 128418, - [SMALL_STATE(1577)] = 128464, - [SMALL_STATE(1578)] = 128510, - [SMALL_STATE(1579)] = 128566, - [SMALL_STATE(1580)] = 128628, - [SMALL_STATE(1581)] = 128694, - [SMALL_STATE(1582)] = 128740, - [SMALL_STATE(1583)] = 128786, - [SMALL_STATE(1584)] = 128832, - [SMALL_STATE(1585)] = 128886, - [SMALL_STATE(1586)] = 128932, - [SMALL_STATE(1587)] = 128978, - [SMALL_STATE(1588)] = 129024, - [SMALL_STATE(1589)] = 129070, - [SMALL_STATE(1590)] = 129118, - [SMALL_STATE(1591)] = 129166, - [SMALL_STATE(1592)] = 129214, - [SMALL_STATE(1593)] = 129260, - [SMALL_STATE(1594)] = 129306, - [SMALL_STATE(1595)] = 129352, - [SMALL_STATE(1596)] = 129398, - [SMALL_STATE(1597)] = 129444, - [SMALL_STATE(1598)] = 129490, - [SMALL_STATE(1599)] = 129536, - [SMALL_STATE(1600)] = 129582, - [SMALL_STATE(1601)] = 129628, - [SMALL_STATE(1602)] = 129674, - [SMALL_STATE(1603)] = 129720, - [SMALL_STATE(1604)] = 129768, - [SMALL_STATE(1605)] = 129816, - [SMALL_STATE(1606)] = 129864, - [SMALL_STATE(1607)] = 129910, - [SMALL_STATE(1608)] = 129956, - [SMALL_STATE(1609)] = 130002, - [SMALL_STATE(1610)] = 130048, - [SMALL_STATE(1611)] = 130094, - [SMALL_STATE(1612)] = 130160, - [SMALL_STATE(1613)] = 130206, - [SMALL_STATE(1614)] = 130252, - [SMALL_STATE(1615)] = 130298, - [SMALL_STATE(1616)] = 130344, - [SMALL_STATE(1617)] = 130392, - [SMALL_STATE(1618)] = 130440, - [SMALL_STATE(1619)] = 130488, - [SMALL_STATE(1620)] = 130534, - [SMALL_STATE(1621)] = 130580, - [SMALL_STATE(1622)] = 130626, - [SMALL_STATE(1623)] = 130672, - [SMALL_STATE(1624)] = 130718, - [SMALL_STATE(1625)] = 130764, - [SMALL_STATE(1626)] = 130810, - [SMALL_STATE(1627)] = 130858, - [SMALL_STATE(1628)] = 130904, - [SMALL_STATE(1629)] = 130950, - [SMALL_STATE(1630)] = 130996, - [SMALL_STATE(1631)] = 131042, - [SMALL_STATE(1632)] = 131090, - [SMALL_STATE(1633)] = 131138, - [SMALL_STATE(1634)] = 131184, - [SMALL_STATE(1635)] = 131230, - [SMALL_STATE(1636)] = 131276, - [SMALL_STATE(1637)] = 131322, - [SMALL_STATE(1638)] = 131370, - [SMALL_STATE(1639)] = 131416, - [SMALL_STATE(1640)] = 131462, - [SMALL_STATE(1641)] = 131510, - [SMALL_STATE(1642)] = 131558, - [SMALL_STATE(1643)] = 131606, - [SMALL_STATE(1644)] = 131652, - [SMALL_STATE(1645)] = 131700, - [SMALL_STATE(1646)] = 131748, - [SMALL_STATE(1647)] = 131794, - [SMALL_STATE(1648)] = 131840, - [SMALL_STATE(1649)] = 131886, - [SMALL_STATE(1650)] = 131932, - [SMALL_STATE(1651)] = 131978, - [SMALL_STATE(1652)] = 132024, - [SMALL_STATE(1653)] = 132070, - [SMALL_STATE(1654)] = 132116, - [SMALL_STATE(1655)] = 132162, - [SMALL_STATE(1656)] = 132208, - [SMALL_STATE(1657)] = 132256, - [SMALL_STATE(1658)] = 132302, - [SMALL_STATE(1659)] = 132348, - [SMALL_STATE(1660)] = 132394, - [SMALL_STATE(1661)] = 132440, - [SMALL_STATE(1662)] = 132486, - [SMALL_STATE(1663)] = 132532, - [SMALL_STATE(1664)] = 132578, - [SMALL_STATE(1665)] = 132624, - [SMALL_STATE(1666)] = 132670, - [SMALL_STATE(1667)] = 132716, - [SMALL_STATE(1668)] = 132782, - [SMALL_STATE(1669)] = 132848, - [SMALL_STATE(1670)] = 132894, - [SMALL_STATE(1671)] = 132940, - [SMALL_STATE(1672)] = 132986, - [SMALL_STATE(1673)] = 133032, - [SMALL_STATE(1674)] = 133078, - [SMALL_STATE(1675)] = 133124, - [SMALL_STATE(1676)] = 133190, - [SMALL_STATE(1677)] = 133256, - [SMALL_STATE(1678)] = 133322, - [SMALL_STATE(1679)] = 133368, - [SMALL_STATE(1680)] = 133414, - [SMALL_STATE(1681)] = 133460, - [SMALL_STATE(1682)] = 133506, - [SMALL_STATE(1683)] = 133552, - [SMALL_STATE(1684)] = 133618, - [SMALL_STATE(1685)] = 133664, - [SMALL_STATE(1686)] = 133728, - [SMALL_STATE(1687)] = 133774, - [SMALL_STATE(1688)] = 133820, - [SMALL_STATE(1689)] = 133866, - [SMALL_STATE(1690)] = 133912, - [SMALL_STATE(1691)] = 133958, - [SMALL_STATE(1692)] = 134004, - [SMALL_STATE(1693)] = 134050, - [SMALL_STATE(1694)] = 134098, - [SMALL_STATE(1695)] = 134146, - [SMALL_STATE(1696)] = 134192, - [SMALL_STATE(1697)] = 134238, - [SMALL_STATE(1698)] = 134284, - [SMALL_STATE(1699)] = 134330, - [SMALL_STATE(1700)] = 134382, - [SMALL_STATE(1701)] = 134448, - [SMALL_STATE(1702)] = 134520, - [SMALL_STATE(1703)] = 134582, - [SMALL_STATE(1704)] = 134638, - [SMALL_STATE(1705)] = 134710, - [SMALL_STATE(1706)] = 134756, - [SMALL_STATE(1707)] = 134816, - [SMALL_STATE(1708)] = 134882, - [SMALL_STATE(1709)] = 134928, - [SMALL_STATE(1710)] = 134974, - [SMALL_STATE(1711)] = 135020, - [SMALL_STATE(1712)] = 135066, - [SMALL_STATE(1713)] = 135112, - [SMALL_STATE(1714)] = 135158, - [SMALL_STATE(1715)] = 135204, - [SMALL_STATE(1716)] = 135250, - [SMALL_STATE(1717)] = 135296, - [SMALL_STATE(1718)] = 135342, - [SMALL_STATE(1719)] = 135388, - [SMALL_STATE(1720)] = 135454, - [SMALL_STATE(1721)] = 135500, - [SMALL_STATE(1722)] = 135546, - [SMALL_STATE(1723)] = 135592, - [SMALL_STATE(1724)] = 135658, - [SMALL_STATE(1725)] = 135704, - [SMALL_STATE(1726)] = 135770, - [SMALL_STATE(1727)] = 135836, - [SMALL_STATE(1728)] = 135882, - [SMALL_STATE(1729)] = 135928, - [SMALL_STATE(1730)] = 135974, - [SMALL_STATE(1731)] = 136020, - [SMALL_STATE(1732)] = 136068, - [SMALL_STATE(1733)] = 136114, - [SMALL_STATE(1734)] = 136174, - [SMALL_STATE(1735)] = 136230, - [SMALL_STATE(1736)] = 136288, - [SMALL_STATE(1737)] = 136350, - [SMALL_STATE(1738)] = 136412, - [SMALL_STATE(1739)] = 136462, - [SMALL_STATE(1740)] = 136508, - [SMALL_STATE(1741)] = 136554, - [SMALL_STATE(1742)] = 136600, - [SMALL_STATE(1743)] = 136646, - [SMALL_STATE(1744)] = 136692, - [SMALL_STATE(1745)] = 136738, - [SMALL_STATE(1746)] = 136784, - [SMALL_STATE(1747)] = 136830, - [SMALL_STATE(1748)] = 136876, - [SMALL_STATE(1749)] = 136922, - [SMALL_STATE(1750)] = 136994, - [SMALL_STATE(1751)] = 137060, - [SMALL_STATE(1752)] = 137124, - [SMALL_STATE(1753)] = 137170, - [SMALL_STATE(1754)] = 137216, - [SMALL_STATE(1755)] = 137262, - [SMALL_STATE(1756)] = 137308, - [SMALL_STATE(1757)] = 137354, - [SMALL_STATE(1758)] = 137400, - [SMALL_STATE(1759)] = 137472, - [SMALL_STATE(1760)] = 137518, - [SMALL_STATE(1761)] = 137564, - [SMALL_STATE(1762)] = 137610, - [SMALL_STATE(1763)] = 137656, - [SMALL_STATE(1764)] = 137702, - [SMALL_STATE(1765)] = 137764, - [SMALL_STATE(1766)] = 137826, - [SMALL_STATE(1767)] = 137872, - [SMALL_STATE(1768)] = 137934, - [SMALL_STATE(1769)] = 137996, - [SMALL_STATE(1770)] = 138042, - [SMALL_STATE(1771)] = 138088, - [SMALL_STATE(1772)] = 138134, - [SMALL_STATE(1773)] = 138196, - [SMALL_STATE(1774)] = 138258, - [SMALL_STATE(1775)] = 138304, - [SMALL_STATE(1776)] = 138350, - [SMALL_STATE(1777)] = 138398, - [SMALL_STATE(1778)] = 138444, - [SMALL_STATE(1779)] = 138490, - [SMALL_STATE(1780)] = 138536, - [SMALL_STATE(1781)] = 138582, - [SMALL_STATE(1782)] = 138628, - [SMALL_STATE(1783)] = 138674, - [SMALL_STATE(1784)] = 138760, - [SMALL_STATE(1785)] = 138806, - [SMALL_STATE(1786)] = 138852, - [SMALL_STATE(1787)] = 138898, - [SMALL_STATE(1788)] = 138944, - [SMALL_STATE(1789)] = 138990, - [SMALL_STATE(1790)] = 139036, - [SMALL_STATE(1791)] = 139082, - [SMALL_STATE(1792)] = 139128, - [SMALL_STATE(1793)] = 139180, - [SMALL_STATE(1794)] = 139226, - [SMALL_STATE(1795)] = 139272, - [SMALL_STATE(1796)] = 139318, - [SMALL_STATE(1797)] = 139364, - [SMALL_STATE(1798)] = 139410, - [SMALL_STATE(1799)] = 139458, - [SMALL_STATE(1800)] = 139506, - [SMALL_STATE(1801)] = 139554, - [SMALL_STATE(1802)] = 139602, - [SMALL_STATE(1803)] = 139650, - [SMALL_STATE(1804)] = 139698, - [SMALL_STATE(1805)] = 139746, - [SMALL_STATE(1806)] = 139794, - [SMALL_STATE(1807)] = 139842, - [SMALL_STATE(1808)] = 139890, - [SMALL_STATE(1809)] = 139938, - [SMALL_STATE(1810)] = 139986, - [SMALL_STATE(1811)] = 140034, - [SMALL_STATE(1812)] = 140082, - [SMALL_STATE(1813)] = 140130, - [SMALL_STATE(1814)] = 140178, - [SMALL_STATE(1815)] = 140226, - [SMALL_STATE(1816)] = 140274, - [SMALL_STATE(1817)] = 140322, - [SMALL_STATE(1818)] = 140370, - [SMALL_STATE(1819)] = 140418, - [SMALL_STATE(1820)] = 140466, - [SMALL_STATE(1821)] = 140514, - [SMALL_STATE(1822)] = 140562, - [SMALL_STATE(1823)] = 140610, - [SMALL_STATE(1824)] = 140658, - [SMALL_STATE(1825)] = 140706, - [SMALL_STATE(1826)] = 140754, - [SMALL_STATE(1827)] = 140802, - [SMALL_STATE(1828)] = 140850, - [SMALL_STATE(1829)] = 140898, - [SMALL_STATE(1830)] = 140944, - [SMALL_STATE(1831)] = 140992, - [SMALL_STATE(1832)] = 141040, - [SMALL_STATE(1833)] = 141088, - [SMALL_STATE(1834)] = 141136, - [SMALL_STATE(1835)] = 141184, - [SMALL_STATE(1836)] = 141232, - [SMALL_STATE(1837)] = 141280, - [SMALL_STATE(1838)] = 141328, - [SMALL_STATE(1839)] = 141376, - [SMALL_STATE(1840)] = 141424, - [SMALL_STATE(1841)] = 141472, - [SMALL_STATE(1842)] = 141520, - [SMALL_STATE(1843)] = 141568, - [SMALL_STATE(1844)] = 141616, - [SMALL_STATE(1845)] = 141664, - [SMALL_STATE(1846)] = 141712, - [SMALL_STATE(1847)] = 141760, - [SMALL_STATE(1848)] = 141808, - [SMALL_STATE(1849)] = 141854, - [SMALL_STATE(1850)] = 141902, - [SMALL_STATE(1851)] = 141948, - [SMALL_STATE(1852)] = 141994, - [SMALL_STATE(1853)] = 142042, - [SMALL_STATE(1854)] = 142090, - [SMALL_STATE(1855)] = 142138, - [SMALL_STATE(1856)] = 142186, - [SMALL_STATE(1857)] = 142234, - [SMALL_STATE(1858)] = 142282, - [SMALL_STATE(1859)] = 142330, - [SMALL_STATE(1860)] = 142378, - [SMALL_STATE(1861)] = 142426, - [SMALL_STATE(1862)] = 142474, - [SMALL_STATE(1863)] = 142522, - [SMALL_STATE(1864)] = 142570, - [SMALL_STATE(1865)] = 142618, - [SMALL_STATE(1866)] = 142666, - [SMALL_STATE(1867)] = 142714, - [SMALL_STATE(1868)] = 142762, - [SMALL_STATE(1869)] = 142810, - [SMALL_STATE(1870)] = 142858, - [SMALL_STATE(1871)] = 142906, - [SMALL_STATE(1872)] = 142954, - [SMALL_STATE(1873)] = 143002, - [SMALL_STATE(1874)] = 143050, - [SMALL_STATE(1875)] = 143098, - [SMALL_STATE(1876)] = 143146, - [SMALL_STATE(1877)] = 143200, - [SMALL_STATE(1878)] = 143248, - [SMALL_STATE(1879)] = 143310, - [SMALL_STATE(1880)] = 143358, - [SMALL_STATE(1881)] = 143404, - [SMALL_STATE(1882)] = 143452, - [SMALL_STATE(1883)] = 143500, - [SMALL_STATE(1884)] = 143546, - [SMALL_STATE(1885)] = 143594, - [SMALL_STATE(1886)] = 143642, - [SMALL_STATE(1887)] = 143688, - [SMALL_STATE(1888)] = 143734, - [SMALL_STATE(1889)] = 143780, - [SMALL_STATE(1890)] = 143826, - [SMALL_STATE(1891)] = 143892, - [SMALL_STATE(1892)] = 143954, - [SMALL_STATE(1893)] = 144002, - [SMALL_STATE(1894)] = 144050, - [SMALL_STATE(1895)] = 144098, - [SMALL_STATE(1896)] = 144160, - [SMALL_STATE(1897)] = 144214, - [SMALL_STATE(1898)] = 144276, - [SMALL_STATE(1899)] = 144338, - [SMALL_STATE(1900)] = 144400, - [SMALL_STATE(1901)] = 144462, - [SMALL_STATE(1902)] = 144524, - [SMALL_STATE(1903)] = 144572, - [SMALL_STATE(1904)] = 144620, - [SMALL_STATE(1905)] = 144668, - [SMALL_STATE(1906)] = 144716, - [SMALL_STATE(1907)] = 144764, - [SMALL_STATE(1908)] = 144812, - [SMALL_STATE(1909)] = 144860, - [SMALL_STATE(1910)] = 144908, - [SMALL_STATE(1911)] = 144970, - [SMALL_STATE(1912)] = 145028, - [SMALL_STATE(1913)] = 145084, - [SMALL_STATE(1914)] = 145132, - [SMALL_STATE(1915)] = 145192, - [SMALL_STATE(1916)] = 145252, - [SMALL_STATE(1917)] = 145300, - [SMALL_STATE(1918)] = 145348, - [SMALL_STATE(1919)] = 145396, - [SMALL_STATE(1920)] = 145448, - [SMALL_STATE(1921)] = 145508, - [SMALL_STATE(1922)] = 145568, - [SMALL_STATE(1923)] = 145628, - [SMALL_STATE(1924)] = 145688, - [SMALL_STATE(1925)] = 145748, - [SMALL_STATE(1926)] = 145796, - [SMALL_STATE(1927)] = 145844, - [SMALL_STATE(1928)] = 145904, - [SMALL_STATE(1929)] = 145954, - [SMALL_STATE(1930)] = 146002, - [SMALL_STATE(1931)] = 146062, - [SMALL_STATE(1932)] = 146122, - [SMALL_STATE(1933)] = 146178, - [SMALL_STATE(1934)] = 146232, - [SMALL_STATE(1935)] = 146290, - [SMALL_STATE(1936)] = 146350, - [SMALL_STATE(1937)] = 146422, - [SMALL_STATE(1938)] = 146472, - [SMALL_STATE(1939)] = 146520, - [SMALL_STATE(1940)] = 146568, - [SMALL_STATE(1941)] = 146616, - [SMALL_STATE(1942)] = 146664, - [SMALL_STATE(1943)] = 146712, - [SMALL_STATE(1944)] = 146760, - [SMALL_STATE(1945)] = 146808, - [SMALL_STATE(1946)] = 146856, - [SMALL_STATE(1947)] = 146904, - [SMALL_STATE(1948)] = 146952, - [SMALL_STATE(1949)] = 147000, - [SMALL_STATE(1950)] = 147048, - [SMALL_STATE(1951)] = 147096, - [SMALL_STATE(1952)] = 147144, - [SMALL_STATE(1953)] = 147192, - [SMALL_STATE(1954)] = 147240, - [SMALL_STATE(1955)] = 147288, - [SMALL_STATE(1956)] = 147334, - [SMALL_STATE(1957)] = 147382, - [SMALL_STATE(1958)] = 147430, - [SMALL_STATE(1959)] = 147478, - [SMALL_STATE(1960)] = 147526, - [SMALL_STATE(1961)] = 147574, - [SMALL_STATE(1962)] = 147622, - [SMALL_STATE(1963)] = 147688, - [SMALL_STATE(1964)] = 147736, - [SMALL_STATE(1965)] = 147784, - [SMALL_STATE(1966)] = 147832, - [SMALL_STATE(1967)] = 147884, - [SMALL_STATE(1968)] = 147936, - [SMALL_STATE(1969)] = 147982, - [SMALL_STATE(1970)] = 148028, - [SMALL_STATE(1971)] = 148074, - [SMALL_STATE(1972)] = 148122, - [SMALL_STATE(1973)] = 148170, - [SMALL_STATE(1974)] = 148218, - [SMALL_STATE(1975)] = 148266, - [SMALL_STATE(1976)] = 148314, - [SMALL_STATE(1977)] = 148360, - [SMALL_STATE(1978)] = 148408, - [SMALL_STATE(1979)] = 148456, - [SMALL_STATE(1980)] = 148504, - [SMALL_STATE(1981)] = 148552, - [SMALL_STATE(1982)] = 148600, - [SMALL_STATE(1983)] = 148648, - [SMALL_STATE(1984)] = 148696, - [SMALL_STATE(1985)] = 148744, - [SMALL_STATE(1986)] = 148792, - [SMALL_STATE(1987)] = 148840, - [SMALL_STATE(1988)] = 148888, - [SMALL_STATE(1989)] = 148936, - [SMALL_STATE(1990)] = 148984, - [SMALL_STATE(1991)] = 149032, - [SMALL_STATE(1992)] = 149080, - [SMALL_STATE(1993)] = 149128, - [SMALL_STATE(1994)] = 149176, - [SMALL_STATE(1995)] = 149224, - [SMALL_STATE(1996)] = 149272, - [SMALL_STATE(1997)] = 149320, - [SMALL_STATE(1998)] = 149368, - [SMALL_STATE(1999)] = 149416, - [SMALL_STATE(2000)] = 149464, - [SMALL_STATE(2001)] = 149512, - [SMALL_STATE(2002)] = 149557, - [SMALL_STATE(2003)] = 149604, - [SMALL_STATE(2004)] = 149651, - [SMALL_STATE(2005)] = 149702, - [SMALL_STATE(2006)] = 149763, - [SMALL_STATE(2007)] = 149824, - [SMALL_STATE(2008)] = 149885, - [SMALL_STATE(2009)] = 149946, - [SMALL_STATE(2010)] = 149993, - [SMALL_STATE(2011)] = 150054, - [SMALL_STATE(2012)] = 150115, - [SMALL_STATE(2013)] = 150162, - [SMALL_STATE(2014)] = 150227, - [SMALL_STATE(2015)] = 150288, - [SMALL_STATE(2016)] = 150349, - [SMALL_STATE(2017)] = 150404, - [SMALL_STATE(2018)] = 150463, - [SMALL_STATE(2019)] = 150514, - [SMALL_STATE(2020)] = 150579, - [SMALL_STATE(2021)] = 150626, - [SMALL_STATE(2022)] = 150687, - [SMALL_STATE(2023)] = 150734, - [SMALL_STATE(2024)] = 150799, - [SMALL_STATE(2025)] = 150860, - [SMALL_STATE(2026)] = 150907, - [SMALL_STATE(2027)] = 150964, - [SMALL_STATE(2028)] = 151019, - [SMALL_STATE(2029)] = 151072, - [SMALL_STATE(2030)] = 151119, - [SMALL_STATE(2031)] = 151166, - [SMALL_STATE(2032)] = 151231, - [SMALL_STATE(2033)] = 151290, - [SMALL_STATE(2034)] = 151337, - [SMALL_STATE(2035)] = 151382, - [SMALL_STATE(2036)] = 151433, - [SMALL_STATE(2037)] = 151480, - [SMALL_STATE(2038)] = 151527, - [SMALL_STATE(2039)] = 151574, - [SMALL_STATE(2040)] = 151621, - [SMALL_STATE(2041)] = 151668, - [SMALL_STATE(2042)] = 151715, - [SMALL_STATE(2043)] = 151808, - [SMALL_STATE(2044)] = 151869, - [SMALL_STATE(2045)] = 151916, - [SMALL_STATE(2046)] = 151981, - [SMALL_STATE(2047)] = 152028, - [SMALL_STATE(2048)] = 152075, - [SMALL_STATE(2049)] = 152122, - [SMALL_STATE(2050)] = 152169, - [SMALL_STATE(2051)] = 152216, - [SMALL_STATE(2052)] = 152263, - [SMALL_STATE(2053)] = 152328, - [SMALL_STATE(2054)] = 152393, - [SMALL_STATE(2055)] = 152438, - [SMALL_STATE(2056)] = 152503, - [SMALL_STATE(2057)] = 152566, - [SMALL_STATE(2058)] = 152613, - [SMALL_STATE(2059)] = 152658, - [SMALL_STATE(2060)] = 152703, - [SMALL_STATE(2061)] = 152748, - [SMALL_STATE(2062)] = 152793, - [SMALL_STATE(2063)] = 152838, - [SMALL_STATE(2064)] = 152883, - [SMALL_STATE(2065)] = 152936, - [SMALL_STATE(2066)] = 152983, - [SMALL_STATE(2067)] = 153034, - [SMALL_STATE(2068)] = 153081, - [SMALL_STATE(2069)] = 153128, - [SMALL_STATE(2070)] = 153173, - [SMALL_STATE(2071)] = 153218, - [SMALL_STATE(2072)] = 153263, - [SMALL_STATE(2073)] = 153308, - [SMALL_STATE(2074)] = 153353, - [SMALL_STATE(2075)] = 153398, - [SMALL_STATE(2076)] = 153443, - [SMALL_STATE(2077)] = 153488, - [SMALL_STATE(2078)] = 153533, - [SMALL_STATE(2079)] = 153578, - [SMALL_STATE(2080)] = 153623, - [SMALL_STATE(2081)] = 153668, - [SMALL_STATE(2082)] = 153713, - [SMALL_STATE(2083)] = 153758, - [SMALL_STATE(2084)] = 153803, - [SMALL_STATE(2085)] = 153848, - [SMALL_STATE(2086)] = 153893, - [SMALL_STATE(2087)] = 153938, - [SMALL_STATE(2088)] = 153985, - [SMALL_STATE(2089)] = 154032, - [SMALL_STATE(2090)] = 154079, - [SMALL_STATE(2091)] = 154124, - [SMALL_STATE(2092)] = 154169, - [SMALL_STATE(2093)] = 154230, - [SMALL_STATE(2094)] = 154291, - [SMALL_STATE(2095)] = 154336, - [SMALL_STATE(2096)] = 154383, - [SMALL_STATE(2097)] = 154444, - [SMALL_STATE(2098)] = 154489, - [SMALL_STATE(2099)] = 154536, - [SMALL_STATE(2100)] = 154583, - [SMALL_STATE(2101)] = 154630, - [SMALL_STATE(2102)] = 154691, - [SMALL_STATE(2103)] = 154736, - [SMALL_STATE(2104)] = 154781, - [SMALL_STATE(2105)] = 154826, - [SMALL_STATE(2106)] = 154887, - [SMALL_STATE(2107)] = 154934, - [SMALL_STATE(2108)] = 154979, - [SMALL_STATE(2109)] = 155024, - [SMALL_STATE(2110)] = 155069, - [SMALL_STATE(2111)] = 155114, - [SMALL_STATE(2112)] = 155159, - [SMALL_STATE(2113)] = 155204, - [SMALL_STATE(2114)] = 155249, - [SMALL_STATE(2115)] = 155294, - [SMALL_STATE(2116)] = 155339, - [SMALL_STATE(2117)] = 155384, - [SMALL_STATE(2118)] = 155429, - [SMALL_STATE(2119)] = 155474, - [SMALL_STATE(2120)] = 155519, - [SMALL_STATE(2121)] = 155570, - [SMALL_STATE(2122)] = 155623, - [SMALL_STATE(2123)] = 155670, - [SMALL_STATE(2124)] = 155717, - [SMALL_STATE(2125)] = 155764, - [SMALL_STATE(2126)] = 155811, - [SMALL_STATE(2127)] = 155858, - [SMALL_STATE(2128)] = 155903, - [SMALL_STATE(2129)] = 155948, - [SMALL_STATE(2130)] = 155993, - [SMALL_STATE(2131)] = 156038, - [SMALL_STATE(2132)] = 156083, - [SMALL_STATE(2133)] = 156128, - [SMALL_STATE(2134)] = 156173, - [SMALL_STATE(2135)] = 156218, - [SMALL_STATE(2136)] = 156263, - [SMALL_STATE(2137)] = 156308, - [SMALL_STATE(2138)] = 156355, - [SMALL_STATE(2139)] = 156402, - [SMALL_STATE(2140)] = 156449, - [SMALL_STATE(2141)] = 156494, - [SMALL_STATE(2142)] = 156541, - [SMALL_STATE(2143)] = 156588, - [SMALL_STATE(2144)] = 156649, - [SMALL_STATE(2145)] = 156694, - [SMALL_STATE(2146)] = 156741, - [SMALL_STATE(2147)] = 156788, - [SMALL_STATE(2148)] = 156835, - [SMALL_STATE(2149)] = 156884, - [SMALL_STATE(2150)] = 156953, - [SMALL_STATE(2151)] = 156998, - [SMALL_STATE(2152)] = 157043, - [SMALL_STATE(2153)] = 157088, - [SMALL_STATE(2154)] = 157133, - [SMALL_STATE(2155)] = 157180, - [SMALL_STATE(2156)] = 157233, - [SMALL_STATE(2157)] = 157278, - [SMALL_STATE(2158)] = 157323, - [SMALL_STATE(2159)] = 157384, - [SMALL_STATE(2160)] = 157429, - [SMALL_STATE(2161)] = 157474, - [SMALL_STATE(2162)] = 157519, - [SMALL_STATE(2163)] = 157564, - [SMALL_STATE(2164)] = 157609, - [SMALL_STATE(2165)] = 157654, - [SMALL_STATE(2166)] = 157699, - [SMALL_STATE(2167)] = 157744, - [SMALL_STATE(2168)] = 157789, - [SMALL_STATE(2169)] = 157834, - [SMALL_STATE(2170)] = 157895, - [SMALL_STATE(2171)] = 157952, - [SMALL_STATE(2172)] = 157997, - [SMALL_STATE(2173)] = 158042, - [SMALL_STATE(2174)] = 158097, - [SMALL_STATE(2175)] = 158156, - [SMALL_STATE(2176)] = 158203, - [SMALL_STATE(2177)] = 158250, - [SMALL_STATE(2178)] = 158295, - [SMALL_STATE(2179)] = 158340, - [SMALL_STATE(2180)] = 158385, - [SMALL_STATE(2181)] = 158430, - [SMALL_STATE(2182)] = 158475, - [SMALL_STATE(2183)] = 158520, - [SMALL_STATE(2184)] = 158581, - [SMALL_STATE(2185)] = 158628, - [SMALL_STATE(2186)] = 158675, - [SMALL_STATE(2187)] = 158724, - [SMALL_STATE(2188)] = 158777, - [SMALL_STATE(2189)] = 158824, - [SMALL_STATE(2190)] = 158869, - [SMALL_STATE(2191)] = 158920, - [SMALL_STATE(2192)] = 158967, - [SMALL_STATE(2193)] = 159014, - [SMALL_STATE(2194)] = 159059, - [SMALL_STATE(2195)] = 159104, - [SMALL_STATE(2196)] = 159149, - [SMALL_STATE(2197)] = 159194, - [SMALL_STATE(2198)] = 159239, - [SMALL_STATE(2199)] = 159290, - [SMALL_STATE(2200)] = 159337, - [SMALL_STATE(2201)] = 159430, - [SMALL_STATE(2202)] = 159477, - [SMALL_STATE(2203)] = 159522, - [SMALL_STATE(2204)] = 159567, - [SMALL_STATE(2205)] = 159614, - [SMALL_STATE(2206)] = 159661, - [SMALL_STATE(2207)] = 159708, - [SMALL_STATE(2208)] = 159759, - [SMALL_STATE(2209)] = 159806, - [SMALL_STATE(2210)] = 159853, - [SMALL_STATE(2211)] = 159898, - [SMALL_STATE(2212)] = 159943, - [SMALL_STATE(2213)] = 159992, - [SMALL_STATE(2214)] = 160085, - [SMALL_STATE(2215)] = 160132, - [SMALL_STATE(2216)] = 160179, - [SMALL_STATE(2217)] = 160226, - [SMALL_STATE(2218)] = 160273, - [SMALL_STATE(2219)] = 160318, - [SMALL_STATE(2220)] = 160363, - [SMALL_STATE(2221)] = 160408, - [SMALL_STATE(2222)] = 160453, - [SMALL_STATE(2223)] = 160500, - [SMALL_STATE(2224)] = 160545, - [SMALL_STATE(2225)] = 160594, - [SMALL_STATE(2226)] = 160639, - [SMALL_STATE(2227)] = 160684, - [SMALL_STATE(2228)] = 160729, - [SMALL_STATE(2229)] = 160774, - [SMALL_STATE(2230)] = 160819, - [SMALL_STATE(2231)] = 160864, - [SMALL_STATE(2232)] = 160911, - [SMALL_STATE(2233)] = 160958, - [SMALL_STATE(2234)] = 161005, - [SMALL_STATE(2235)] = 161050, - [SMALL_STATE(2236)] = 161095, - [SMALL_STATE(2237)] = 161140, - [SMALL_STATE(2238)] = 161185, - [SMALL_STATE(2239)] = 161230, - [SMALL_STATE(2240)] = 161275, - [SMALL_STATE(2241)] = 161320, - [SMALL_STATE(2242)] = 161365, - [SMALL_STATE(2243)] = 161410, - [SMALL_STATE(2244)] = 161457, - [SMALL_STATE(2245)] = 161504, - [SMALL_STATE(2246)] = 161551, - [SMALL_STATE(2247)] = 161596, - [SMALL_STATE(2248)] = 161643, - [SMALL_STATE(2249)] = 161690, - [SMALL_STATE(2250)] = 161759, - [SMALL_STATE(2251)] = 161804, - [SMALL_STATE(2252)] = 161849, - [SMALL_STATE(2253)] = 161894, - [SMALL_STATE(2254)] = 161939, - [SMALL_STATE(2255)] = 161984, - [SMALL_STATE(2256)] = 162029, - [SMALL_STATE(2257)] = 162076, - [SMALL_STATE(2258)] = 162121, - [SMALL_STATE(2259)] = 162168, - [SMALL_STATE(2260)] = 162213, - [SMALL_STATE(2261)] = 162258, - [SMALL_STATE(2262)] = 162303, - [SMALL_STATE(2263)] = 162350, - [SMALL_STATE(2264)] = 162395, - [SMALL_STATE(2265)] = 162442, - [SMALL_STATE(2266)] = 162487, - [SMALL_STATE(2267)] = 162580, - [SMALL_STATE(2268)] = 162627, - [SMALL_STATE(2269)] = 162672, - [SMALL_STATE(2270)] = 162717, - [SMALL_STATE(2271)] = 162764, - [SMALL_STATE(2272)] = 162811, - [SMALL_STATE(2273)] = 162856, - [SMALL_STATE(2274)] = 162903, - [SMALL_STATE(2275)] = 162948, - [SMALL_STATE(2276)] = 162993, - [SMALL_STATE(2277)] = 163038, - [SMALL_STATE(2278)] = 163083, - [SMALL_STATE(2279)] = 163128, - [SMALL_STATE(2280)] = 163173, - [SMALL_STATE(2281)] = 163218, - [SMALL_STATE(2282)] = 163263, - [SMALL_STATE(2283)] = 163308, - [SMALL_STATE(2284)] = 163355, - [SMALL_STATE(2285)] = 163402, - [SMALL_STATE(2286)] = 163463, - [SMALL_STATE(2287)] = 163556, - [SMALL_STATE(2288)] = 163603, - [SMALL_STATE(2289)] = 163650, - [SMALL_STATE(2290)] = 163697, - [SMALL_STATE(2291)] = 163744, - [SMALL_STATE(2292)] = 163789, - [SMALL_STATE(2293)] = 163834, - [SMALL_STATE(2294)] = 163879, - [SMALL_STATE(2295)] = 163924, - [SMALL_STATE(2296)] = 163969, - [SMALL_STATE(2297)] = 164014, - [SMALL_STATE(2298)] = 164059, - [SMALL_STATE(2299)] = 164104, - [SMALL_STATE(2300)] = 164149, - [SMALL_STATE(2301)] = 164196, - [SMALL_STATE(2302)] = 164241, - [SMALL_STATE(2303)] = 164286, - [SMALL_STATE(2304)] = 164333, - [SMALL_STATE(2305)] = 164380, - [SMALL_STATE(2306)] = 164425, - [SMALL_STATE(2307)] = 164470, - [SMALL_STATE(2308)] = 164517, - [SMALL_STATE(2309)] = 164564, - [SMALL_STATE(2310)] = 164611, - [SMALL_STATE(2311)] = 164656, - [SMALL_STATE(2312)] = 164703, - [SMALL_STATE(2313)] = 164748, - [SMALL_STATE(2314)] = 164793, - [SMALL_STATE(2315)] = 164838, - [SMALL_STATE(2316)] = 164883, - [SMALL_STATE(2317)] = 164928, - [SMALL_STATE(2318)] = 164975, - [SMALL_STATE(2319)] = 165022, - [SMALL_STATE(2320)] = 165073, - [SMALL_STATE(2321)] = 165118, - [SMALL_STATE(2322)] = 165163, - [SMALL_STATE(2323)] = 165210, - [SMALL_STATE(2324)] = 165257, - [SMALL_STATE(2325)] = 165302, - [SMALL_STATE(2326)] = 165347, - [SMALL_STATE(2327)] = 165394, - [SMALL_STATE(2328)] = 165441, - [SMALL_STATE(2329)] = 165488, - [SMALL_STATE(2330)] = 165533, - [SMALL_STATE(2331)] = 165578, - [SMALL_STATE(2332)] = 165623, - [SMALL_STATE(2333)] = 165668, - [SMALL_STATE(2334)] = 165713, - [SMALL_STATE(2335)] = 165760, - [SMALL_STATE(2336)] = 165807, - [SMALL_STATE(2337)] = 165854, - [SMALL_STATE(2338)] = 165899, - [SMALL_STATE(2339)] = 165944, - [SMALL_STATE(2340)] = 165989, - [SMALL_STATE(2341)] = 166034, - [SMALL_STATE(2342)] = 166081, - [SMALL_STATE(2343)] = 166128, - [SMALL_STATE(2344)] = 166173, - [SMALL_STATE(2345)] = 166218, - [SMALL_STATE(2346)] = 166265, - [SMALL_STATE(2347)] = 166310, - [SMALL_STATE(2348)] = 166355, - [SMALL_STATE(2349)] = 166402, - [SMALL_STATE(2350)] = 166449, - [SMALL_STATE(2351)] = 166496, - [SMALL_STATE(2352)] = 166541, - [SMALL_STATE(2353)] = 166586, - [SMALL_STATE(2354)] = 166631, - [SMALL_STATE(2355)] = 166678, - [SMALL_STATE(2356)] = 166771, - [SMALL_STATE(2357)] = 166818, - [SMALL_STATE(2358)] = 166865, - [SMALL_STATE(2359)] = 166910, - [SMALL_STATE(2360)] = 166955, - [SMALL_STATE(2361)] = 167000, - [SMALL_STATE(2362)] = 167093, - [SMALL_STATE(2363)] = 167140, - [SMALL_STATE(2364)] = 167187, - [SMALL_STATE(2365)] = 167232, - [SMALL_STATE(2366)] = 167283, - [SMALL_STATE(2367)] = 167328, - [SMALL_STATE(2368)] = 167375, - [SMALL_STATE(2369)] = 167422, - [SMALL_STATE(2370)] = 167469, - [SMALL_STATE(2371)] = 167516, - [SMALL_STATE(2372)] = 167563, - [SMALL_STATE(2373)] = 167610, - [SMALL_STATE(2374)] = 167657, - [SMALL_STATE(2375)] = 167704, - [SMALL_STATE(2376)] = 167751, - [SMALL_STATE(2377)] = 167798, - [SMALL_STATE(2378)] = 167845, - [SMALL_STATE(2379)] = 167892, - [SMALL_STATE(2380)] = 167939, - [SMALL_STATE(2381)] = 167986, - [SMALL_STATE(2382)] = 168033, - [SMALL_STATE(2383)] = 168080, - [SMALL_STATE(2384)] = 168127, - [SMALL_STATE(2385)] = 168174, - [SMALL_STATE(2386)] = 168267, - [SMALL_STATE(2387)] = 168314, - [SMALL_STATE(2388)] = 168361, - [SMALL_STATE(2389)] = 168408, - [SMALL_STATE(2390)] = 168455, - [SMALL_STATE(2391)] = 168502, - [SMALL_STATE(2392)] = 168549, - [SMALL_STATE(2393)] = 168596, - [SMALL_STATE(2394)] = 168643, - [SMALL_STATE(2395)] = 168690, - [SMALL_STATE(2396)] = 168737, - [SMALL_STATE(2397)] = 168830, - [SMALL_STATE(2398)] = 168877, - [SMALL_STATE(2399)] = 168924, - [SMALL_STATE(2400)] = 168971, - [SMALL_STATE(2401)] = 169018, - [SMALL_STATE(2402)] = 169065, - [SMALL_STATE(2403)] = 169112, - [SMALL_STATE(2404)] = 169159, - [SMALL_STATE(2405)] = 169206, - [SMALL_STATE(2406)] = 169253, - [SMALL_STATE(2407)] = 169300, - [SMALL_STATE(2408)] = 169369, - [SMALL_STATE(2409)] = 169416, - [SMALL_STATE(2410)] = 169463, - [SMALL_STATE(2411)] = 169510, - [SMALL_STATE(2412)] = 169579, - [SMALL_STATE(2413)] = 169626, - [SMALL_STATE(2414)] = 169673, - [SMALL_STATE(2415)] = 169720, - [SMALL_STATE(2416)] = 169767, - [SMALL_STATE(2417)] = 169814, - [SMALL_STATE(2418)] = 169861, - [SMALL_STATE(2419)] = 169926, - [SMALL_STATE(2420)] = 169973, - [SMALL_STATE(2421)] = 170020, - [SMALL_STATE(2422)] = 170067, - [SMALL_STATE(2423)] = 170114, - [SMALL_STATE(2424)] = 170161, - [SMALL_STATE(2425)] = 170208, - [SMALL_STATE(2426)] = 170255, - [SMALL_STATE(2427)] = 170302, - [SMALL_STATE(2428)] = 170349, - [SMALL_STATE(2429)] = 170396, - [SMALL_STATE(2430)] = 170443, - [SMALL_STATE(2431)] = 170490, - [SMALL_STATE(2432)] = 170537, - [SMALL_STATE(2433)] = 170584, - [SMALL_STATE(2434)] = 170677, - [SMALL_STATE(2435)] = 170724, - [SMALL_STATE(2436)] = 170771, - [SMALL_STATE(2437)] = 170818, - [SMALL_STATE(2438)] = 170865, - [SMALL_STATE(2439)] = 170929, - [SMALL_STATE(2440)] = 170987, - [SMALL_STATE(2441)] = 171035, - [SMALL_STATE(2442)] = 171083, - [SMALL_STATE(2443)] = 171147, - [SMALL_STATE(2444)] = 171197, - [SMALL_STATE(2445)] = 171249, - [SMALL_STATE(2446)] = 171295, - [SMALL_STATE(2447)] = 171345, - [SMALL_STATE(2448)] = 171391, - [SMALL_STATE(2449)] = 171437, - [SMALL_STATE(2450)] = 171485, - [SMALL_STATE(2451)] = 171531, - [SMALL_STATE(2452)] = 171579, - [SMALL_STATE(2453)] = 171627, - [SMALL_STATE(2454)] = 171679, - [SMALL_STATE(2455)] = 171727, - [SMALL_STATE(2456)] = 171777, - [SMALL_STATE(2457)] = 171825, - [SMALL_STATE(2458)] = 171871, - [SMALL_STATE(2459)] = 171919, - [SMALL_STATE(2460)] = 171967, - [SMALL_STATE(2461)] = 172017, - [SMALL_STATE(2462)] = 172067, - [SMALL_STATE(2463)] = 172117, - [SMALL_STATE(2464)] = 172165, - [SMALL_STATE(2465)] = 172211, - [SMALL_STATE(2466)] = 172273, - [SMALL_STATE(2467)] = 172323, - [SMALL_STATE(2468)] = 172387, - [SMALL_STATE(2469)] = 172451, - [SMALL_STATE(2470)] = 172515, - [SMALL_STATE(2471)] = 172565, - [SMALL_STATE(2472)] = 172615, - [SMALL_STATE(2473)] = 172679, - [SMALL_STATE(2474)] = 172743, - [SMALL_STATE(2475)] = 172789, - [SMALL_STATE(2476)] = 172841, - [SMALL_STATE(2477)] = 172889, - [SMALL_STATE(2478)] = 172935, - [SMALL_STATE(2479)] = 172999, - [SMALL_STATE(2480)] = 173063, - [SMALL_STATE(2481)] = 173109, - [SMALL_STATE(2482)] = 173155, - [SMALL_STATE(2483)] = 173201, - [SMALL_STATE(2484)] = 173251, - [SMALL_STATE(2485)] = 173297, - [SMALL_STATE(2486)] = 173341, - [SMALL_STATE(2487)] = 173391, - [SMALL_STATE(2488)] = 173435, - [SMALL_STATE(2489)] = 173487, - [SMALL_STATE(2490)] = 173551, - [SMALL_STATE(2491)] = 173615, - [SMALL_STATE(2492)] = 173665, - [SMALL_STATE(2493)] = 173709, - [SMALL_STATE(2494)] = 173757, - [SMALL_STATE(2495)] = 173807, - [SMALL_STATE(2496)] = 173865, - [SMALL_STATE(2497)] = 173919, - [SMALL_STATE(2498)] = 173979, - [SMALL_STATE(2499)] = 174043, - [SMALL_STATE(2500)] = 174095, - [SMALL_STATE(2501)] = 174159, - [SMALL_STATE(2502)] = 174219, - [SMALL_STATE(2503)] = 174273, - [SMALL_STATE(2504)] = 174331, - [SMALL_STATE(2505)] = 174393, - [SMALL_STATE(2506)] = 174457, - [SMALL_STATE(2507)] = 174521, - [SMALL_STATE(2508)] = 174585, - [SMALL_STATE(2509)] = 174649, - [SMALL_STATE(2510)] = 174713, - [SMALL_STATE(2511)] = 174767, - [SMALL_STATE(2512)] = 174827, - [SMALL_STATE(2513)] = 174891, - [SMALL_STATE(2514)] = 174955, - [SMALL_STATE(2515)] = 175019, - [SMALL_STATE(2516)] = 175083, - [SMALL_STATE(2517)] = 175145, - [SMALL_STATE(2518)] = 175197, - [SMALL_STATE(2519)] = 175261, - [SMALL_STATE(2520)] = 175325, - [SMALL_STATE(2521)] = 175389, - [SMALL_STATE(2522)] = 175453, - [SMALL_STATE(2523)] = 175503, - [SMALL_STATE(2524)] = 175567, - [SMALL_STATE(2525)] = 175620, - [SMALL_STATE(2526)] = 175683, - [SMALL_STATE(2527)] = 175746, - [SMALL_STATE(2528)] = 175791, - [SMALL_STATE(2529)] = 175852, - [SMALL_STATE(2530)] = 175915, - [SMALL_STATE(2531)] = 175960, - [SMALL_STATE(2532)] = 176023, - [SMALL_STATE(2533)] = 176086, - [SMALL_STATE(2534)] = 176149, - [SMALL_STATE(2535)] = 176212, - [SMALL_STATE(2536)] = 176275, - [SMALL_STATE(2537)] = 176322, - [SMALL_STATE(2538)] = 176409, - [SMALL_STATE(2539)] = 176472, - [SMALL_STATE(2540)] = 176521, - [SMALL_STATE(2541)] = 176584, - [SMALL_STATE(2542)] = 176633, - [SMALL_STATE(2543)] = 176696, - [SMALL_STATE(2544)] = 176759, - [SMALL_STATE(2545)] = 176804, - [SMALL_STATE(2546)] = 176849, - [SMALL_STATE(2547)] = 176934, - [SMALL_STATE(2548)] = 176983, - [SMALL_STATE(2549)] = 177068, - [SMALL_STATE(2550)] = 177113, - [SMALL_STATE(2551)] = 177176, - [SMALL_STATE(2552)] = 177221, - [SMALL_STATE(2553)] = 177284, - [SMALL_STATE(2554)] = 177347, - [SMALL_STATE(2555)] = 177410, - [SMALL_STATE(2556)] = 177457, - [SMALL_STATE(2557)] = 177502, - [SMALL_STATE(2558)] = 177553, - [SMALL_STATE(2559)] = 177598, - [SMALL_STATE(2560)] = 177643, - [SMALL_STATE(2561)] = 177700, - [SMALL_STATE(2562)] = 177749, - [SMALL_STATE(2563)] = 177794, - [SMALL_STATE(2564)] = 177839, - [SMALL_STATE(2565)] = 177884, - [SMALL_STATE(2566)] = 177933, - [SMALL_STATE(2567)] = 178020, - [SMALL_STATE(2568)] = 178065, - [SMALL_STATE(2569)] = 178128, - [SMALL_STATE(2570)] = 178191, - [SMALL_STATE(2571)] = 178236, - [SMALL_STATE(2572)] = 178299, - [SMALL_STATE(2573)] = 178348, - [SMALL_STATE(2574)] = 178393, - [SMALL_STATE(2575)] = 178436, - [SMALL_STATE(2576)] = 178499, - [SMALL_STATE(2577)] = 178542, - [SMALL_STATE(2578)] = 178629, - [SMALL_STATE(2579)] = 178682, - [SMALL_STATE(2580)] = 178769, - [SMALL_STATE(2581)] = 178828, - [SMALL_STATE(2582)] = 178871, - [SMALL_STATE(2583)] = 178916, - [SMALL_STATE(2584)] = 179003, - [SMALL_STATE(2585)] = 179066, - [SMALL_STATE(2586)] = 179129, - [SMALL_STATE(2587)] = 179192, - [SMALL_STATE(2588)] = 179255, - [SMALL_STATE(2589)] = 179318, - [SMALL_STATE(2590)] = 179381, - [SMALL_STATE(2591)] = 179444, - [SMALL_STATE(2592)] = 179507, - [SMALL_STATE(2593)] = 179570, - [SMALL_STATE(2594)] = 179633, - [SMALL_STATE(2595)] = 179696, - [SMALL_STATE(2596)] = 179759, - [SMALL_STATE(2597)] = 179804, - [SMALL_STATE(2598)] = 179867, - [SMALL_STATE(2599)] = 179930, - [SMALL_STATE(2600)] = 179991, - [SMALL_STATE(2601)] = 180036, - [SMALL_STATE(2602)] = 180081, - [SMALL_STATE(2603)] = 180144, - [SMALL_STATE(2604)] = 180207, - [SMALL_STATE(2605)] = 180270, - [SMALL_STATE(2606)] = 180315, - [SMALL_STATE(2607)] = 180364, - [SMALL_STATE(2608)] = 180427, - [SMALL_STATE(2609)] = 180490, - [SMALL_STATE(2610)] = 180535, - [SMALL_STATE(2611)] = 180598, - [SMALL_STATE(2612)] = 180661, - [SMALL_STATE(2613)] = 180724, - [SMALL_STATE(2614)] = 180787, - [SMALL_STATE(2615)] = 180850, - [SMALL_STATE(2616)] = 180913, - [SMALL_STATE(2617)] = 180956, - [SMALL_STATE(2618)] = 181019, - [SMALL_STATE(2619)] = 181082, - [SMALL_STATE(2620)] = 181125, - [SMALL_STATE(2621)] = 181188, - [SMALL_STATE(2622)] = 181251, - [SMALL_STATE(2623)] = 181314, - [SMALL_STATE(2624)] = 181377, - [SMALL_STATE(2625)] = 181420, - [SMALL_STATE(2626)] = 181465, - [SMALL_STATE(2627)] = 181528, - [SMALL_STATE(2628)] = 181575, - [SMALL_STATE(2629)] = 181620, - [SMALL_STATE(2630)] = 181683, - [SMALL_STATE(2631)] = 181726, - [SMALL_STATE(2632)] = 181789, - [SMALL_STATE(2633)] = 181876, - [SMALL_STATE(2634)] = 181939, - [SMALL_STATE(2635)] = 182002, - [SMALL_STATE(2636)] = 182059, - [SMALL_STATE(2637)] = 182110, - [SMALL_STATE(2638)] = 182159, - [SMALL_STATE(2639)] = 182222, - [SMALL_STATE(2640)] = 182273, - [SMALL_STATE(2641)] = 182336, - [SMALL_STATE(2642)] = 182389, - [SMALL_STATE(2643)] = 182452, - [SMALL_STATE(2644)] = 182515, - [SMALL_STATE(2645)] = 182574, - [SMALL_STATE(2646)] = 182637, - [SMALL_STATE(2647)] = 182682, - [SMALL_STATE(2648)] = 182745, - [SMALL_STATE(2649)] = 182808, - [SMALL_STATE(2650)] = 182895, - [SMALL_STATE(2651)] = 182958, - [SMALL_STATE(2652)] = 183021, - [SMALL_STATE(2653)] = 183084, - [SMALL_STATE(2654)] = 183147, - [SMALL_STATE(2655)] = 183210, - [SMALL_STATE(2656)] = 183273, - [SMALL_STATE(2657)] = 183336, - [SMALL_STATE(2658)] = 183381, - [SMALL_STATE(2659)] = 183444, - [SMALL_STATE(2660)] = 183507, - [SMALL_STATE(2661)] = 183556, - [SMALL_STATE(2662)] = 183603, - [SMALL_STATE(2663)] = 183666, - [SMALL_STATE(2664)] = 183729, - [SMALL_STATE(2665)] = 183792, - [SMALL_STATE(2666)] = 183855, - [SMALL_STATE(2667)] = 183918, - [SMALL_STATE(2668)] = 183981, - [SMALL_STATE(2669)] = 184030, - [SMALL_STATE(2670)] = 184081, - [SMALL_STATE(2671)] = 184124, - [SMALL_STATE(2672)] = 184169, - [SMALL_STATE(2673)] = 184214, - [SMALL_STATE(2674)] = 184277, - [SMALL_STATE(2675)] = 184340, - [SMALL_STATE(2676)] = 184403, - [SMALL_STATE(2677)] = 184466, - [SMALL_STATE(2678)] = 184511, - [SMALL_STATE(2679)] = 184560, - [SMALL_STATE(2680)] = 184623, - [SMALL_STATE(2681)] = 184686, - [SMALL_STATE(2682)] = 184735, - [SMALL_STATE(2683)] = 184822, - [SMALL_STATE(2684)] = 184885, - [SMALL_STATE(2685)] = 184948, - [SMALL_STATE(2686)] = 184993, - [SMALL_STATE(2687)] = 185056, - [SMALL_STATE(2688)] = 185119, - [SMALL_STATE(2689)] = 185182, - [SMALL_STATE(2690)] = 185227, - [SMALL_STATE(2691)] = 185272, - [SMALL_STATE(2692)] = 185335, - [SMALL_STATE(2693)] = 185380, - [SMALL_STATE(2694)] = 185443, - [SMALL_STATE(2695)] = 185488, - [SMALL_STATE(2696)] = 185535, - [SMALL_STATE(2697)] = 185598, - [SMALL_STATE(2698)] = 185645, - [SMALL_STATE(2699)] = 185708, - [SMALL_STATE(2700)] = 185753, - [SMALL_STATE(2701)] = 185798, - [SMALL_STATE(2702)] = 185859, - [SMALL_STATE(2703)] = 185922, - [SMALL_STATE(2704)] = 185985, - [SMALL_STATE(2705)] = 186032, - [SMALL_STATE(2706)] = 186077, - [SMALL_STATE(2707)] = 186164, - [SMALL_STATE(2708)] = 186227, - [SMALL_STATE(2709)] = 186290, - [SMALL_STATE(2710)] = 186353, - [SMALL_STATE(2711)] = 186416, - [SMALL_STATE(2712)] = 186479, - [SMALL_STATE(2713)] = 186542, - [SMALL_STATE(2714)] = 186591, - [SMALL_STATE(2715)] = 186654, - [SMALL_STATE(2716)] = 186717, - [SMALL_STATE(2717)] = 186780, - [SMALL_STATE(2718)] = 186825, - [SMALL_STATE(2719)] = 186888, - [SMALL_STATE(2720)] = 186951, - [SMALL_STATE(2721)] = 187014, - [SMALL_STATE(2722)] = 187077, - [SMALL_STATE(2723)] = 187140, - [SMALL_STATE(2724)] = 187197, - [SMALL_STATE(2725)] = 187260, - [SMALL_STATE(2726)] = 187311, - [SMALL_STATE(2727)] = 187374, - [SMALL_STATE(2728)] = 187461, - [SMALL_STATE(2729)] = 187524, - [SMALL_STATE(2730)] = 187569, - [SMALL_STATE(2731)] = 187628, - [SMALL_STATE(2732)] = 187691, - [SMALL_STATE(2733)] = 187736, - [SMALL_STATE(2734)] = 187781, - [SMALL_STATE(2735)] = 187844, - [SMALL_STATE(2736)] = 187907, - [SMALL_STATE(2737)] = 187954, - [SMALL_STATE(2738)] = 188017, - [SMALL_STATE(2739)] = 188060, - [SMALL_STATE(2740)] = 188109, - [SMALL_STATE(2741)] = 188172, - [SMALL_STATE(2742)] = 188235, - [SMALL_STATE(2743)] = 188280, - [SMALL_STATE(2744)] = 188331, - [SMALL_STATE(2745)] = 188394, - [SMALL_STATE(2746)] = 188457, - [SMALL_STATE(2747)] = 188502, - [SMALL_STATE(2748)] = 188565, - [SMALL_STATE(2749)] = 188628, - [SMALL_STATE(2750)] = 188691, - [SMALL_STATE(2751)] = 188754, - [SMALL_STATE(2752)] = 188799, - [SMALL_STATE(2753)] = 188844, - [SMALL_STATE(2754)] = 188907, - [SMALL_STATE(2755)] = 188970, - [SMALL_STATE(2756)] = 189033, - [SMALL_STATE(2757)] = 189096, - [SMALL_STATE(2758)] = 189159, - [SMALL_STATE(2759)] = 189206, - [SMALL_STATE(2760)] = 189269, - [SMALL_STATE(2761)] = 189332, - [SMALL_STATE(2762)] = 189395, - [SMALL_STATE(2763)] = 189458, - [SMALL_STATE(2764)] = 189507, - [SMALL_STATE(2765)] = 189570, - [SMALL_STATE(2766)] = 189633, - [SMALL_STATE(2767)] = 189696, - [SMALL_STATE(2768)] = 189743, - [SMALL_STATE(2769)] = 189806, - [SMALL_STATE(2770)] = 189869, - [SMALL_STATE(2771)] = 189932, - [SMALL_STATE(2772)] = 189976, - [SMALL_STATE(2773)] = 190018, - [SMALL_STATE(2774)] = 190066, - [SMALL_STATE(2775)] = 190108, - [SMALL_STATE(2776)] = 190178, - [SMALL_STATE(2777)] = 190222, - [SMALL_STATE(2778)] = 190292, - [SMALL_STATE(2779)] = 190336, - [SMALL_STATE(2780)] = 190380, - [SMALL_STATE(2781)] = 190432, - [SMALL_STATE(2782)] = 190476, - [SMALL_STATE(2783)] = 190520, - [SMALL_STATE(2784)] = 190564, - [SMALL_STATE(2785)] = 190608, - [SMALL_STATE(2786)] = 190652, - [SMALL_STATE(2787)] = 190698, - [SMALL_STATE(2788)] = 190742, - [SMALL_STATE(2789)] = 190812, - [SMALL_STATE(2790)] = 190856, - [SMALL_STATE(2791)] = 190904, - [SMALL_STATE(2792)] = 190952, - [SMALL_STATE(2793)] = 190996, - [SMALL_STATE(2794)] = 191040, - [SMALL_STATE(2795)] = 191084, - [SMALL_STATE(2796)] = 191128, - [SMALL_STATE(2797)] = 191172, - [SMALL_STATE(2798)] = 191220, - [SMALL_STATE(2799)] = 191264, - [SMALL_STATE(2800)] = 191310, - [SMALL_STATE(2801)] = 191354, - [SMALL_STATE(2802)] = 191398, - [SMALL_STATE(2803)] = 191442, - [SMALL_STATE(2804)] = 191486, - [SMALL_STATE(2805)] = 191528, - [SMALL_STATE(2806)] = 191572, - [SMALL_STATE(2807)] = 191618, - [SMALL_STATE(2808)] = 191670, - [SMALL_STATE(2809)] = 191714, - [SMALL_STATE(2810)] = 191762, - [SMALL_STATE(2811)] = 191804, - [SMALL_STATE(2812)] = 191848, - [SMALL_STATE(2813)] = 191918, - [SMALL_STATE(2814)] = 191962, - [SMALL_STATE(2815)] = 192014, - [SMALL_STATE(2816)] = 192058, - [SMALL_STATE(2817)] = 192102, - [SMALL_STATE(2818)] = 192172, - [SMALL_STATE(2819)] = 192242, - [SMALL_STATE(2820)] = 192312, - [SMALL_STATE(2821)] = 192356, - [SMALL_STATE(2822)] = 192426, - [SMALL_STATE(2823)] = 192470, - [SMALL_STATE(2824)] = 192514, - [SMALL_STATE(2825)] = 192558, - [SMALL_STATE(2826)] = 192628, - [SMALL_STATE(2827)] = 192672, - [SMALL_STATE(2828)] = 192724, - [SMALL_STATE(2829)] = 192768, - [SMALL_STATE(2830)] = 192812, - [SMALL_STATE(2831)] = 192862, - [SMALL_STATE(2832)] = 192906, - [SMALL_STATE(2833)] = 192950, - [SMALL_STATE(2834)] = 192992, - [SMALL_STATE(2835)] = 193036, - [SMALL_STATE(2836)] = 193080, - [SMALL_STATE(2837)] = 193124, - [SMALL_STATE(2838)] = 193194, - [SMALL_STATE(2839)] = 193238, - [SMALL_STATE(2840)] = 193308, - [SMALL_STATE(2841)] = 193352, - [SMALL_STATE(2842)] = 193422, - [SMALL_STATE(2843)] = 193466, - [SMALL_STATE(2844)] = 193510, - [SMALL_STATE(2845)] = 193554, - [SMALL_STATE(2846)] = 193624, - [SMALL_STATE(2847)] = 193668, - [SMALL_STATE(2848)] = 193712, - [SMALL_STATE(2849)] = 193756, - [SMALL_STATE(2850)] = 193800, - [SMALL_STATE(2851)] = 193842, - [SMALL_STATE(2852)] = 193912, - [SMALL_STATE(2853)] = 193954, - [SMALL_STATE(2854)] = 193996, - [SMALL_STATE(2855)] = 194040, - [SMALL_STATE(2856)] = 194084, - [SMALL_STATE(2857)] = 194128, - [SMALL_STATE(2858)] = 194170, - [SMALL_STATE(2859)] = 194214, - [SMALL_STATE(2860)] = 194284, - [SMALL_STATE(2861)] = 194334, - [SMALL_STATE(2862)] = 194378, - [SMALL_STATE(2863)] = 194448, - [SMALL_STATE(2864)] = 194518, - [SMALL_STATE(2865)] = 194588, - [SMALL_STATE(2866)] = 194658, - [SMALL_STATE(2867)] = 194700, - [SMALL_STATE(2868)] = 194770, - [SMALL_STATE(2869)] = 194814, - [SMALL_STATE(2870)] = 194856, - [SMALL_STATE(2871)] = 194898, - [SMALL_STATE(2872)] = 194944, - [SMALL_STATE(2873)] = 195012, - [SMALL_STATE(2874)] = 195064, - [SMALL_STATE(2875)] = 195108, - [SMALL_STATE(2876)] = 195150, - [SMALL_STATE(2877)] = 195196, - [SMALL_STATE(2878)] = 195240, - [SMALL_STATE(2879)] = 195284, - [SMALL_STATE(2880)] = 195326, - [SMALL_STATE(2881)] = 195370, - [SMALL_STATE(2882)] = 195412, - [SMALL_STATE(2883)] = 195456, - [SMALL_STATE(2884)] = 195500, - [SMALL_STATE(2885)] = 195544, - [SMALL_STATE(2886)] = 195588, - [SMALL_STATE(2887)] = 195632, - [SMALL_STATE(2888)] = 195674, - [SMALL_STATE(2889)] = 195724, - [SMALL_STATE(2890)] = 195766, - [SMALL_STATE(2891)] = 195808, - [SMALL_STATE(2892)] = 195852, - [SMALL_STATE(2893)] = 195894, - [SMALL_STATE(2894)] = 195936, - [SMALL_STATE(2895)] = 195978, - [SMALL_STATE(2896)] = 196022, - [SMALL_STATE(2897)] = 196066, - [SMALL_STATE(2898)] = 196108, - [SMALL_STATE(2899)] = 196150, - [SMALL_STATE(2900)] = 196192, - [SMALL_STATE(2901)] = 196234, - [SMALL_STATE(2902)] = 196276, - [SMALL_STATE(2903)] = 196322, - [SMALL_STATE(2904)] = 196364, - [SMALL_STATE(2905)] = 196408, - [SMALL_STATE(2906)] = 196450, - [SMALL_STATE(2907)] = 196493, - [SMALL_STATE(2908)] = 196536, - [SMALL_STATE(2909)] = 196617, - [SMALL_STATE(2910)] = 196660, - [SMALL_STATE(2911)] = 196703, - [SMALL_STATE(2912)] = 196784, - [SMALL_STATE(2913)] = 196827, - [SMALL_STATE(2914)] = 196870, - [SMALL_STATE(2915)] = 196915, - [SMALL_STATE(2916)] = 196958, - [SMALL_STATE(2917)] = 197001, - [SMALL_STATE(2918)] = 197044, - [SMALL_STATE(2919)] = 197087, - [SMALL_STATE(2920)] = 197130, - [SMALL_STATE(2921)] = 197173, - [SMALL_STATE(2922)] = 197216, - [SMALL_STATE(2923)] = 197297, - [SMALL_STATE(2924)] = 197376, - [SMALL_STATE(2925)] = 197419, - [SMALL_STATE(2926)] = 197462, - [SMALL_STATE(2927)] = 197505, - [SMALL_STATE(2928)] = 197548, - [SMALL_STATE(2929)] = 197617, - [SMALL_STATE(2930)] = 197660, - [SMALL_STATE(2931)] = 197741, - [SMALL_STATE(2932)] = 197784, - [SMALL_STATE(2933)] = 197827, - [SMALL_STATE(2934)] = 197908, - [SMALL_STATE(2935)] = 197951, - [SMALL_STATE(2936)] = 197994, - [SMALL_STATE(2937)] = 198037, - [SMALL_STATE(2938)] = 198080, - [SMALL_STATE(2939)] = 198123, - [SMALL_STATE(2940)] = 198202, - [SMALL_STATE(2941)] = 198245, - [SMALL_STATE(2942)] = 198326, - [SMALL_STATE(2943)] = 198407, - [SMALL_STATE(2944)] = 198488, - [SMALL_STATE(2945)] = 198531, - [SMALL_STATE(2946)] = 198574, - [SMALL_STATE(2947)] = 198617, - [SMALL_STATE(2948)] = 198664, - [SMALL_STATE(2949)] = 198707, - [SMALL_STATE(2950)] = 198750, - [SMALL_STATE(2951)] = 198797, - [SMALL_STATE(2952)] = 198840, - [SMALL_STATE(2953)] = 198921, - [SMALL_STATE(2954)] = 198964, - [SMALL_STATE(2955)] = 199007, - [SMALL_STATE(2956)] = 199050, - [SMALL_STATE(2957)] = 199093, - [SMALL_STATE(2958)] = 199136, - [SMALL_STATE(2959)] = 199179, - [SMALL_STATE(2960)] = 199222, - [SMALL_STATE(2961)] = 199265, - [SMALL_STATE(2962)] = 199308, - [SMALL_STATE(2963)] = 199351, - [SMALL_STATE(2964)] = 199394, - [SMALL_STATE(2965)] = 199437, - [SMALL_STATE(2966)] = 199478, - [SMALL_STATE(2967)] = 199525, - [SMALL_STATE(2968)] = 199606, - [SMALL_STATE(2969)] = 199649, - [SMALL_STATE(2970)] = 199690, - [SMALL_STATE(2971)] = 199731, - [SMALL_STATE(2972)] = 199774, - [SMALL_STATE(2973)] = 199815, - [SMALL_STATE(2974)] = 199858, - [SMALL_STATE(2975)] = 199899, - [SMALL_STATE(2976)] = 199942, - [SMALL_STATE(2977)] = 199985, - [SMALL_STATE(2978)] = 200028, - [SMALL_STATE(2979)] = 200071, - [SMALL_STATE(2980)] = 200114, - [SMALL_STATE(2981)] = 200157, - [SMALL_STATE(2982)] = 200200, - [SMALL_STATE(2983)] = 200243, - [SMALL_STATE(2984)] = 200286, - [SMALL_STATE(2985)] = 200329, - [SMALL_STATE(2986)] = 200407, - [SMALL_STATE(2987)] = 200485, - [SMALL_STATE(2988)] = 200563, - [SMALL_STATE(2989)] = 200611, - [SMALL_STATE(2990)] = 200689, - [SMALL_STATE(2991)] = 200767, - [SMALL_STATE(2992)] = 200809, - [SMALL_STATE(2993)] = 200857, - [SMALL_STATE(2994)] = 200935, - [SMALL_STATE(2995)] = 201013, - [SMALL_STATE(2996)] = 201057, - [SMALL_STATE(2997)] = 201101, - [SMALL_STATE(2998)] = 201179, - [SMALL_STATE(2999)] = 201257, - [SMALL_STATE(3000)] = 201301, - [SMALL_STATE(3001)] = 201379, - [SMALL_STATE(3002)] = 201457, - [SMALL_STATE(3003)] = 201535, - [SMALL_STATE(3004)] = 201613, - [SMALL_STATE(3005)] = 201661, - [SMALL_STATE(3006)] = 201739, - [SMALL_STATE(3007)] = 201817, - [SMALL_STATE(3008)] = 201895, - [SMALL_STATE(3009)] = 201973, - [SMALL_STATE(3010)] = 202051, - [SMALL_STATE(3011)] = 202129, - [SMALL_STATE(3012)] = 202207, - [SMALL_STATE(3013)] = 202280, - [SMALL_STATE(3014)] = 202339, - [SMALL_STATE(3015)] = 202380, - [SMALL_STATE(3016)] = 202453, - [SMALL_STATE(3017)] = 202494, - [SMALL_STATE(3018)] = 202535, - [SMALL_STATE(3019)] = 202576, - [SMALL_STATE(3020)] = 202617, - [SMALL_STATE(3021)] = 202658, - [SMALL_STATE(3022)] = 202730, - [SMALL_STATE(3023)] = 202802, - [SMALL_STATE(3024)] = 202874, - [SMALL_STATE(3025)] = 202946, - [SMALL_STATE(3026)] = 203018, - [SMALL_STATE(3027)] = 203090, - [SMALL_STATE(3028)] = 203162, - [SMALL_STATE(3029)] = 203234, - [SMALL_STATE(3030)] = 203306, - [SMALL_STATE(3031)] = 203378, - [SMALL_STATE(3032)] = 203450, - [SMALL_STATE(3033)] = 203522, - [SMALL_STATE(3034)] = 203592, - [SMALL_STATE(3035)] = 203664, - [SMALL_STATE(3036)] = 203736, - [SMALL_STATE(3037)] = 203808, - [SMALL_STATE(3038)] = 203880, - [SMALL_STATE(3039)] = 203952, - [SMALL_STATE(3040)] = 204024, - [SMALL_STATE(3041)] = 204096, - [SMALL_STATE(3042)] = 204168, - [SMALL_STATE(3043)] = 204240, - [SMALL_STATE(3044)] = 204312, - [SMALL_STATE(3045)] = 204384, - [SMALL_STATE(3046)] = 204456, - [SMALL_STATE(3047)] = 204528, - [SMALL_STATE(3048)] = 204600, - [SMALL_STATE(3049)] = 204672, - [SMALL_STATE(3050)] = 204744, - [SMALL_STATE(3051)] = 204816, - [SMALL_STATE(3052)] = 204888, - [SMALL_STATE(3053)] = 204960, - [SMALL_STATE(3054)] = 205014, - [SMALL_STATE(3055)] = 205086, - [SMALL_STATE(3056)] = 205158, - [SMALL_STATE(3057)] = 205230, - [SMALL_STATE(3058)] = 205302, - [SMALL_STATE(3059)] = 205374, - [SMALL_STATE(3060)] = 205446, - [SMALL_STATE(3061)] = 205518, - [SMALL_STATE(3062)] = 205590, - [SMALL_STATE(3063)] = 205662, - [SMALL_STATE(3064)] = 205734, - [SMALL_STATE(3065)] = 205806, - [SMALL_STATE(3066)] = 205878, - [SMALL_STATE(3067)] = 205950, - [SMALL_STATE(3068)] = 206022, - [SMALL_STATE(3069)] = 206094, - [SMALL_STATE(3070)] = 206164, - [SMALL_STATE(3071)] = 206236, - [SMALL_STATE(3072)] = 206308, - [SMALL_STATE(3073)] = 206380, - [SMALL_STATE(3074)] = 206452, - [SMALL_STATE(3075)] = 206524, - [SMALL_STATE(3076)] = 206596, - [SMALL_STATE(3077)] = 206668, - [SMALL_STATE(3078)] = 206740, - [SMALL_STATE(3079)] = 206812, - [SMALL_STATE(3080)] = 206884, - [SMALL_STATE(3081)] = 206954, - [SMALL_STATE(3082)] = 207026, - [SMALL_STATE(3083)] = 207098, - [SMALL_STATE(3084)] = 207170, - [SMALL_STATE(3085)] = 207240, - [SMALL_STATE(3086)] = 207312, - [SMALL_STATE(3087)] = 207384, - [SMALL_STATE(3088)] = 207456, - [SMALL_STATE(3089)] = 207528, - [SMALL_STATE(3090)] = 207600, - [SMALL_STATE(3091)] = 207672, - [SMALL_STATE(3092)] = 207744, - [SMALL_STATE(3093)] = 207816, - [SMALL_STATE(3094)] = 207888, - [SMALL_STATE(3095)] = 207960, - [SMALL_STATE(3096)] = 208032, - [SMALL_STATE(3097)] = 208071, - [SMALL_STATE(3098)] = 208110, - [SMALL_STATE(3099)] = 208149, - [SMALL_STATE(3100)] = 208213, - [SMALL_STATE(3101)] = 208259, - [SMALL_STATE(3102)] = 208303, - [SMALL_STATE(3103)] = 208367, - [SMALL_STATE(3104)] = 208407, - [SMALL_STATE(3105)] = 208471, - [SMALL_STATE(3106)] = 208535, - [SMALL_STATE(3107)] = 208599, - [SMALL_STATE(3108)] = 208663, - [SMALL_STATE(3109)] = 208709, - [SMALL_STATE(3110)] = 208755, - [SMALL_STATE(3111)] = 208801, - [SMALL_STATE(3112)] = 208847, - [SMALL_STATE(3113)] = 208911, - [SMALL_STATE(3114)] = 208957, - [SMALL_STATE(3115)] = 209003, - [SMALL_STATE(3116)] = 209067, - [SMALL_STATE(3117)] = 209105, - [SMALL_STATE(3118)] = 209151, - [SMALL_STATE(3119)] = 209215, - [SMALL_STATE(3120)] = 209261, - [SMALL_STATE(3121)] = 209301, - [SMALL_STATE(3122)] = 209347, - [SMALL_STATE(3123)] = 209393, - [SMALL_STATE(3124)] = 209439, - [SMALL_STATE(3125)] = 209503, - [SMALL_STATE(3126)] = 209567, - [SMALL_STATE(3127)] = 209613, - [SMALL_STATE(3128)] = 209659, - [SMALL_STATE(3129)] = 209723, - [SMALL_STATE(3130)] = 209787, - [SMALL_STATE(3131)] = 209833, - [SMALL_STATE(3132)] = 209897, - [SMALL_STATE(3133)] = 209936, - [SMALL_STATE(3134)] = 209995, - [SMALL_STATE(3135)] = 210058, - [SMALL_STATE(3136)] = 210109, - [SMALL_STATE(3137)] = 210176, - [SMALL_STATE(3138)] = 210239, - [SMALL_STATE(3139)] = 210302, - [SMALL_STATE(3140)] = 210361, - [SMALL_STATE(3141)] = 210428, - [SMALL_STATE(3142)] = 210495, - [SMALL_STATE(3143)] = 210558, - [SMALL_STATE(3144)] = 210621, - [SMALL_STATE(3145)] = 210688, - [SMALL_STATE(3146)] = 210755, - [SMALL_STATE(3147)] = 210822, - [SMALL_STATE(3148)] = 210869, - [SMALL_STATE(3149)] = 210936, - [SMALL_STATE(3150)] = 210999, - [SMALL_STATE(3151)] = 211058, - [SMALL_STATE(3152)] = 211125, - [SMALL_STATE(3153)] = 211188, - [SMALL_STATE(3154)] = 211247, - [SMALL_STATE(3155)] = 211296, - [SMALL_STATE(3156)] = 211363, - [SMALL_STATE(3157)] = 211408, - [SMALL_STATE(3158)] = 211459, - [SMALL_STATE(3159)] = 211522, - [SMALL_STATE(3160)] = 211585, - [SMALL_STATE(3161)] = 211628, - [SMALL_STATE(3162)] = 211695, - [SMALL_STATE(3163)] = 211734, - [SMALL_STATE(3164)] = 211797, - [SMALL_STATE(3165)] = 211832, - [SMALL_STATE(3166)] = 211880, - [SMALL_STATE(3167)] = 211918, - [SMALL_STATE(3168)] = 211978, - [SMALL_STATE(3169)] = 212028, - [SMALL_STATE(3170)] = 212074, - [SMALL_STATE(3171)] = 212134, - [SMALL_STATE(3172)] = 212192, - [SMALL_STATE(3173)] = 212226, - [SMALL_STATE(3174)] = 212274, - [SMALL_STATE(3175)] = 212334, - [SMALL_STATE(3176)] = 212382, - [SMALL_STATE(3177)] = 212442, - [SMALL_STATE(3178)] = 212490, - [SMALL_STATE(3179)] = 212528, - [SMALL_STATE(3180)] = 212590, - [SMALL_STATE(3181)] = 212634, - [SMALL_STATE(3182)] = 212694, - [SMALL_STATE(3183)] = 212744, - [SMALL_STATE(3184)] = 212782, - [SMALL_STATE(3185)] = 212840, - [SMALL_STATE(3186)] = 212900, - [SMALL_STATE(3187)] = 212962, - [SMALL_STATE(3188)] = 213020, - [SMALL_STATE(3189)] = 213068, - [SMALL_STATE(3190)] = 213116, - [SMALL_STATE(3191)] = 213164, - [SMALL_STATE(3192)] = 213226, - [SMALL_STATE(3193)] = 213288, - [SMALL_STATE(3194)] = 213350, - [SMALL_STATE(3195)] = 213410, - [SMALL_STATE(3196)] = 213444, - [SMALL_STATE(3197)] = 213504, - [SMALL_STATE(3198)] = 213562, - [SMALL_STATE(3199)] = 213620, - [SMALL_STATE(3200)] = 213680, - [SMALL_STATE(3201)] = 213728, - [SMALL_STATE(3202)] = 213764, - [SMALL_STATE(3203)] = 213824, - [SMALL_STATE(3204)] = 213857, - [SMALL_STATE(3205)] = 213904, - [SMALL_STATE(3206)] = 213937, - [SMALL_STATE(3207)] = 213970, - [SMALL_STATE(3208)] = 214017, - [SMALL_STATE(3209)] = 214062, - [SMALL_STATE(3210)] = 214097, - [SMALL_STATE(3211)] = 214132, - [SMALL_STATE(3212)] = 214167, - [SMALL_STATE(3213)] = 214212, - [SMALL_STATE(3214)] = 214259, - [SMALL_STATE(3215)] = 214306, - [SMALL_STATE(3216)] = 214341, - [SMALL_STATE(3217)] = 214380, - [SMALL_STATE(3218)] = 214412, - [SMALL_STATE(3219)] = 214466, - [SMALL_STATE(3220)] = 214518, - [SMALL_STATE(3221)] = 214560, - [SMALL_STATE(3222)] = 214614, - [SMALL_STATE(3223)] = 214666, - [SMALL_STATE(3224)] = 214706, - [SMALL_STATE(3225)] = 214758, - [SMALL_STATE(3226)] = 214812, - [SMALL_STATE(3227)] = 214864, - [SMALL_STATE(3228)] = 214916, - [SMALL_STATE(3229)] = 214968, - [SMALL_STATE(3230)] = 215022, - [SMALL_STATE(3231)] = 215076, - [SMALL_STATE(3232)] = 215130, - [SMALL_STATE(3233)] = 215184, - [SMALL_STATE(3234)] = 215236, - [SMALL_STATE(3235)] = 215290, - [SMALL_STATE(3236)] = 215322, - [SMALL_STATE(3237)] = 215364, - [SMALL_STATE(3238)] = 215416, - [SMALL_STATE(3239)] = 215448, - [SMALL_STATE(3240)] = 215500, - [SMALL_STATE(3241)] = 215554, - [SMALL_STATE(3242)] = 215606, - [SMALL_STATE(3243)] = 215648, - [SMALL_STATE(3244)] = 215702, - [SMALL_STATE(3245)] = 215749, - [SMALL_STATE(3246)] = 215796, - [SMALL_STATE(3247)] = 215839, - [SMALL_STATE(3248)] = 215882, - [SMALL_STATE(3249)] = 215925, - [SMALL_STATE(3250)] = 215972, - [SMALL_STATE(3251)] = 216017, - [SMALL_STATE(3252)] = 216064, - [SMALL_STATE(3253)] = 216111, - [SMALL_STATE(3254)] = 216158, - [SMALL_STATE(3255)] = 216195, - [SMALL_STATE(3256)] = 216242, - [SMALL_STATE(3257)] = 216289, - [SMALL_STATE(3258)] = 216336, - [SMALL_STATE(3259)] = 216383, - [SMALL_STATE(3260)] = 216430, - [SMALL_STATE(3261)] = 216477, - [SMALL_STATE(3262)] = 216524, - [SMALL_STATE(3263)] = 216571, - [SMALL_STATE(3264)] = 216618, - [SMALL_STATE(3265)] = 216665, - [SMALL_STATE(3266)] = 216712, - [SMALL_STATE(3267)] = 216759, - [SMALL_STATE(3268)] = 216806, - [SMALL_STATE(3269)] = 216853, - [SMALL_STATE(3270)] = 216888, - [SMALL_STATE(3271)] = 216935, - [SMALL_STATE(3272)] = 216982, - [SMALL_STATE(3273)] = 217025, - [SMALL_STATE(3274)] = 217072, - [SMALL_STATE(3275)] = 217119, - [SMALL_STATE(3276)] = 217166, - [SMALL_STATE(3277)] = 217213, - [SMALL_STATE(3278)] = 217260, - [SMALL_STATE(3279)] = 217307, - [SMALL_STATE(3280)] = 217354, - [SMALL_STATE(3281)] = 217401, - [SMALL_STATE(3282)] = 217442, - [SMALL_STATE(3283)] = 217489, - [SMALL_STATE(3284)] = 217536, - [SMALL_STATE(3285)] = 217583, - [SMALL_STATE(3286)] = 217630, - [SMALL_STATE(3287)] = 217677, - [SMALL_STATE(3288)] = 217724, - [SMALL_STATE(3289)] = 217771, - [SMALL_STATE(3290)] = 217818, - [SMALL_STATE(3291)] = 217865, - [SMALL_STATE(3292)] = 217912, - [SMALL_STATE(3293)] = 217959, - [SMALL_STATE(3294)] = 218006, - [SMALL_STATE(3295)] = 218049, - [SMALL_STATE(3296)] = 218096, - [SMALL_STATE(3297)] = 218143, - [SMALL_STATE(3298)] = 218190, - [SMALL_STATE(3299)] = 218237, - [SMALL_STATE(3300)] = 218284, - [SMALL_STATE(3301)] = 218315, - [SMALL_STATE(3302)] = 218362, - [SMALL_STATE(3303)] = 218409, - [SMALL_STATE(3304)] = 218456, - [SMALL_STATE(3305)] = 218503, - [SMALL_STATE(3306)] = 218550, - [SMALL_STATE(3307)] = 218597, - [SMALL_STATE(3308)] = 218647, - [SMALL_STATE(3309)] = 218679, - [SMALL_STATE(3310)] = 218727, - [SMALL_STATE(3311)] = 218763, - [SMALL_STATE(3312)] = 218793, - [SMALL_STATE(3313)] = 218843, - [SMALL_STATE(3314)] = 218891, - [SMALL_STATE(3315)] = 218939, - [SMALL_STATE(3316)] = 218989, - [SMALL_STATE(3317)] = 219027, - [SMALL_STATE(3318)] = 219065, - [SMALL_STATE(3319)] = 219103, - [SMALL_STATE(3320)] = 219153, - [SMALL_STATE(3321)] = 219201, - [SMALL_STATE(3322)] = 219231, - [SMALL_STATE(3323)] = 219281, - [SMALL_STATE(3324)] = 219331, - [SMALL_STATE(3325)] = 219379, - [SMALL_STATE(3326)] = 219429, - [SMALL_STATE(3327)] = 219479, - [SMALL_STATE(3328)] = 219511, - [SMALL_STATE(3329)] = 219561, - [SMALL_STATE(3330)] = 219609, - [SMALL_STATE(3331)] = 219647, - [SMALL_STATE(3332)] = 219681, - [SMALL_STATE(3333)] = 219731, - [SMALL_STATE(3334)] = 219781, - [SMALL_STATE(3335)] = 219819, - [SMALL_STATE(3336)] = 219867, - [SMALL_STATE(3337)] = 219915, - [SMALL_STATE(3338)] = 219963, - [SMALL_STATE(3339)] = 220011, - [SMALL_STATE(3340)] = 220060, - [SMALL_STATE(3341)] = 220113, - [SMALL_STATE(3342)] = 220150, - [SMALL_STATE(3343)] = 220203, - [SMALL_STATE(3344)] = 220240, - [SMALL_STATE(3345)] = 220271, - [SMALL_STATE(3346)] = 220324, - [SMALL_STATE(3347)] = 220355, - [SMALL_STATE(3348)] = 220404, - [SMALL_STATE(3349)] = 220433, - [SMALL_STATE(3350)] = 220482, - [SMALL_STATE(3351)] = 220513, - [SMALL_STATE(3352)] = 220562, - [SMALL_STATE(3353)] = 220607, - [SMALL_STATE(3354)] = 220638, - [SMALL_STATE(3355)] = 220683, - [SMALL_STATE(3356)] = 220714, - [SMALL_STATE(3357)] = 220759, - [SMALL_STATE(3358)] = 220808, - [SMALL_STATE(3359)] = 220857, - [SMALL_STATE(3360)] = 220898, - [SMALL_STATE(3361)] = 220933, - [SMALL_STATE(3362)] = 220986, - [SMALL_STATE(3363)] = 221035, - [SMALL_STATE(3364)] = 221080, - [SMALL_STATE(3365)] = 221133, - [SMALL_STATE(3366)] = 221164, - [SMALL_STATE(3367)] = 221213, - [SMALL_STATE(3368)] = 221244, - [SMALL_STATE(3369)] = 221293, - [SMALL_STATE(3370)] = 221324, - [SMALL_STATE(3371)] = 221369, - [SMALL_STATE(3372)] = 221414, - [SMALL_STATE(3373)] = 221467, - [SMALL_STATE(3374)] = 221498, - [SMALL_STATE(3375)] = 221547, - [SMALL_STATE(3376)] = 221596, - [SMALL_STATE(3377)] = 221645, - [SMALL_STATE(3378)] = 221698, - [SMALL_STATE(3379)] = 221743, - [SMALL_STATE(3380)] = 221788, - [SMALL_STATE(3381)] = 221841, - [SMALL_STATE(3382)] = 221894, - [SMALL_STATE(3383)] = 221943, - [SMALL_STATE(3384)] = 221974, - [SMALL_STATE(3385)] = 222007, - [SMALL_STATE(3386)] = 222052, - [SMALL_STATE(3387)] = 222083, - [SMALL_STATE(3388)] = 222132, - [SMALL_STATE(3389)] = 222181, - [SMALL_STATE(3390)] = 222230, - [SMALL_STATE(3391)] = 222279, - [SMALL_STATE(3392)] = 222328, - [SMALL_STATE(3393)] = 222373, - [SMALL_STATE(3394)] = 222422, - [SMALL_STATE(3395)] = 222467, - [SMALL_STATE(3396)] = 222512, - [SMALL_STATE(3397)] = 222557, - [SMALL_STATE(3398)] = 222606, - [SMALL_STATE(3399)] = 222651, - [SMALL_STATE(3400)] = 222704, - [SMALL_STATE(3401)] = 222741, - [SMALL_STATE(3402)] = 222790, - [SMALL_STATE(3403)] = 222835, - [SMALL_STATE(3404)] = 222866, - [SMALL_STATE(3405)] = 222915, - [SMALL_STATE(3406)] = 222960, - [SMALL_STATE(3407)] = 222989, - [SMALL_STATE(3408)] = 223034, - [SMALL_STATE(3409)] = 223083, - [SMALL_STATE(3410)] = 223132, - [SMALL_STATE(3411)] = 223163, - [SMALL_STATE(3412)] = 223212, - [SMALL_STATE(3413)] = 223257, - [SMALL_STATE(3414)] = 223306, - [SMALL_STATE(3415)] = 223337, - [SMALL_STATE(3416)] = 223368, - [SMALL_STATE(3417)] = 223417, - [SMALL_STATE(3418)] = 223462, - [SMALL_STATE(3419)] = 223493, - [SMALL_STATE(3420)] = 223542, - [SMALL_STATE(3421)] = 223587, - [SMALL_STATE(3422)] = 223636, - [SMALL_STATE(3423)] = 223667, - [SMALL_STATE(3424)] = 223716, - [SMALL_STATE(3425)] = 223766, - [SMALL_STATE(3426)] = 223816, - [SMALL_STATE(3427)] = 223854, - [SMALL_STATE(3428)] = 223904, - [SMALL_STATE(3429)] = 223942, - [SMALL_STATE(3430)] = 223992, - [SMALL_STATE(3431)] = 224030, - [SMALL_STATE(3432)] = 224080, - [SMALL_STATE(3433)] = 224118, - [SMALL_STATE(3434)] = 224168, - [SMALL_STATE(3435)] = 224218, - [SMALL_STATE(3436)] = 224268, - [SMALL_STATE(3437)] = 224318, - [SMALL_STATE(3438)] = 224368, - [SMALL_STATE(3439)] = 224418, - [SMALL_STATE(3440)] = 224468, - [SMALL_STATE(3441)] = 224518, - [SMALL_STATE(3442)] = 224568, - [SMALL_STATE(3443)] = 224618, - [SMALL_STATE(3444)] = 224668, - [SMALL_STATE(3445)] = 224718, - [SMALL_STATE(3446)] = 224756, - [SMALL_STATE(3447)] = 224806, - [SMALL_STATE(3448)] = 224856, - [SMALL_STATE(3449)] = 224906, - [SMALL_STATE(3450)] = 224956, - [SMALL_STATE(3451)] = 225006, - [SMALL_STATE(3452)] = 225034, - [SMALL_STATE(3453)] = 225084, - [SMALL_STATE(3454)] = 225134, - [SMALL_STATE(3455)] = 225172, - [SMALL_STATE(3456)] = 225222, - [SMALL_STATE(3457)] = 225272, - [SMALL_STATE(3458)] = 225322, - [SMALL_STATE(3459)] = 225360, - [SMALL_STATE(3460)] = 225410, - [SMALL_STATE(3461)] = 225460, - [SMALL_STATE(3462)] = 225510, - [SMALL_STATE(3463)] = 225538, - [SMALL_STATE(3464)] = 225576, - [SMALL_STATE(3465)] = 225626, - [SMALL_STATE(3466)] = 225676, - [SMALL_STATE(3467)] = 225726, - [SMALL_STATE(3468)] = 225776, - [SMALL_STATE(3469)] = 225804, - [SMALL_STATE(3470)] = 225854, - [SMALL_STATE(3471)] = 225904, - [SMALL_STATE(3472)] = 225954, - [SMALL_STATE(3473)] = 226004, - [SMALL_STATE(3474)] = 226042, - [SMALL_STATE(3475)] = 226092, - [SMALL_STATE(3476)] = 226142, - [SMALL_STATE(3477)] = 226180, - [SMALL_STATE(3478)] = 226230, - [SMALL_STATE(3479)] = 226280, - [SMALL_STATE(3480)] = 226330, - [SMALL_STATE(3481)] = 226362, - [SMALL_STATE(3482)] = 226398, - [SMALL_STATE(3483)] = 226448, - [SMALL_STATE(3484)] = 226498, - [SMALL_STATE(3485)] = 226548, - [SMALL_STATE(3486)] = 226598, - [SMALL_STATE(3487)] = 226648, - [SMALL_STATE(3488)] = 226698, - [SMALL_STATE(3489)] = 226748, - [SMALL_STATE(3490)] = 226787, - [SMALL_STATE(3491)] = 226830, - [SMALL_STATE(3492)] = 226873, - [SMALL_STATE(3493)] = 226912, - [SMALL_STATE(3494)] = 226955, - [SMALL_STATE(3495)] = 227002, - [SMALL_STATE(3496)] = 227031, - [SMALL_STATE(3497)] = 227060, - [SMALL_STATE(3498)] = 227089, - [SMALL_STATE(3499)] = 227128, - [SMALL_STATE(3500)] = 227175, - [SMALL_STATE(3501)] = 227218, - [SMALL_STATE(3502)] = 227261, - [SMALL_STATE(3503)] = 227300, - [SMALL_STATE(3504)] = 227329, - [SMALL_STATE(3505)] = 227368, - [SMALL_STATE(3506)] = 227415, - [SMALL_STATE(3507)] = 227454, - [SMALL_STATE(3508)] = 227497, - [SMALL_STATE(3509)] = 227536, - [SMALL_STATE(3510)] = 227579, - [SMALL_STATE(3511)] = 227608, - [SMALL_STATE(3512)] = 227635, - [SMALL_STATE(3513)] = 227674, - [SMALL_STATE(3514)] = 227703, - [SMALL_STATE(3515)] = 227732, - [SMALL_STATE(3516)] = 227761, - [SMALL_STATE(3517)] = 227788, - [SMALL_STATE(3518)] = 227827, - [SMALL_STATE(3519)] = 227866, - [SMALL_STATE(3520)] = 227905, - [SMALL_STATE(3521)] = 227944, - [SMALL_STATE(3522)] = 227983, - [SMALL_STATE(3523)] = 228022, - [SMALL_STATE(3524)] = 228051, - [SMALL_STATE(3525)] = 228080, - [SMALL_STATE(3526)] = 228107, - [SMALL_STATE(3527)] = 228146, - [SMALL_STATE(3528)] = 228175, - [SMALL_STATE(3529)] = 228222, - [SMALL_STATE(3530)] = 228269, - [SMALL_STATE(3531)] = 228308, - [SMALL_STATE(3532)] = 228347, - [SMALL_STATE(3533)] = 228386, - [SMALL_STATE(3534)] = 228425, - [SMALL_STATE(3535)] = 228464, - [SMALL_STATE(3536)] = 228505, - [SMALL_STATE(3537)] = 228544, - [SMALL_STATE(3538)] = 228587, - [SMALL_STATE(3539)] = 228626, - [SMALL_STATE(3540)] = 228663, - [SMALL_STATE(3541)] = 228702, - [SMALL_STATE(3542)] = 228745, - [SMALL_STATE(3543)] = 228788, - [SMALL_STATE(3544)] = 228827, - [SMALL_STATE(3545)] = 228870, - [SMALL_STATE(3546)] = 228909, - [SMALL_STATE(3547)] = 228948, - [SMALL_STATE(3548)] = 228987, - [SMALL_STATE(3549)] = 229016, - [SMALL_STATE(3550)] = 229055, - [SMALL_STATE(3551)] = 229094, - [SMALL_STATE(3552)] = 229133, - [SMALL_STATE(3553)] = 229172, - [SMALL_STATE(3554)] = 229211, - [SMALL_STATE(3555)] = 229250, - [SMALL_STATE(3556)] = 229289, - [SMALL_STATE(3557)] = 229328, - [SMALL_STATE(3558)] = 229367, - [SMALL_STATE(3559)] = 229406, - [SMALL_STATE(3560)] = 229433, - [SMALL_STATE(3561)] = 229472, - [SMALL_STATE(3562)] = 229501, - [SMALL_STATE(3563)] = 229540, - [SMALL_STATE(3564)] = 229569, - [SMALL_STATE(3565)] = 229608, - [SMALL_STATE(3566)] = 229647, - [SMALL_STATE(3567)] = 229690, - [SMALL_STATE(3568)] = 229729, - [SMALL_STATE(3569)] = 229758, - [SMALL_STATE(3570)] = 229797, - [SMALL_STATE(3571)] = 229836, - [SMALL_STATE(3572)] = 229875, - [SMALL_STATE(3573)] = 229922, - [SMALL_STATE(3574)] = 229961, - [SMALL_STATE(3575)] = 230000, - [SMALL_STATE(3576)] = 230039, - [SMALL_STATE(3577)] = 230078, - [SMALL_STATE(3578)] = 230117, - [SMALL_STATE(3579)] = 230156, - [SMALL_STATE(3580)] = 230195, - [SMALL_STATE(3581)] = 230224, - [SMALL_STATE(3582)] = 230253, - [SMALL_STATE(3583)] = 230292, - [SMALL_STATE(3584)] = 230339, - [SMALL_STATE(3585)] = 230382, - [SMALL_STATE(3586)] = 230409, - [SMALL_STATE(3587)] = 230448, - [SMALL_STATE(3588)] = 230477, - [SMALL_STATE(3589)] = 230506, - [SMALL_STATE(3590)] = 230545, - [SMALL_STATE(3591)] = 230574, - [SMALL_STATE(3592)] = 230603, - [SMALL_STATE(3593)] = 230646, - [SMALL_STATE(3594)] = 230685, - [SMALL_STATE(3595)] = 230724, - [SMALL_STATE(3596)] = 230767, - [SMALL_STATE(3597)] = 230806, - [SMALL_STATE(3598)] = 230845, - [SMALL_STATE(3599)] = 230888, - [SMALL_STATE(3600)] = 230931, - [SMALL_STATE(3601)] = 230970, - [SMALL_STATE(3602)] = 230999, - [SMALL_STATE(3603)] = 231038, - [SMALL_STATE(3604)] = 231081, - [SMALL_STATE(3605)] = 231120, - [SMALL_STATE(3606)] = 231159, - [SMALL_STATE(3607)] = 231202, - [SMALL_STATE(3608)] = 231245, - [SMALL_STATE(3609)] = 231284, - [SMALL_STATE(3610)] = 231313, - [SMALL_STATE(3611)] = 231342, - [SMALL_STATE(3612)] = 231371, - [SMALL_STATE(3613)] = 231400, - [SMALL_STATE(3614)] = 231429, - [SMALL_STATE(3615)] = 231472, - [SMALL_STATE(3616)] = 231511, - [SMALL_STATE(3617)] = 231550, - [SMALL_STATE(3618)] = 231589, - [SMALL_STATE(3619)] = 231628, - [SMALL_STATE(3620)] = 231667, - [SMALL_STATE(3621)] = 231714, - [SMALL_STATE(3622)] = 231741, - [SMALL_STATE(3623)] = 231784, - [SMALL_STATE(3624)] = 231827, - [SMALL_STATE(3625)] = 231856, - [SMALL_STATE(3626)] = 231903, - [SMALL_STATE(3627)] = 231946, - [SMALL_STATE(3628)] = 231993, - [SMALL_STATE(3629)] = 232020, - [SMALL_STATE(3630)] = 232049, - [SMALL_STATE(3631)] = 232090, - [SMALL_STATE(3632)] = 232131, - [SMALL_STATE(3633)] = 232160, - [SMALL_STATE(3634)] = 232203, - [SMALL_STATE(3635)] = 232232, - [SMALL_STATE(3636)] = 232261, - [SMALL_STATE(3637)] = 232304, - [SMALL_STATE(3638)] = 232343, - [SMALL_STATE(3639)] = 232382, - [SMALL_STATE(3640)] = 232429, - [SMALL_STATE(3641)] = 232468, - [SMALL_STATE(3642)] = 232497, - [SMALL_STATE(3643)] = 232524, - [SMALL_STATE(3644)] = 232563, - [SMALL_STATE(3645)] = 232610, - [SMALL_STATE(3646)] = 232637, - [SMALL_STATE(3647)] = 232680, - [SMALL_STATE(3648)] = 232727, - [SMALL_STATE(3649)] = 232766, - [SMALL_STATE(3650)] = 232795, - [SMALL_STATE(3651)] = 232836, - [SMALL_STATE(3652)] = 232883, - [SMALL_STATE(3653)] = 232926, - [SMALL_STATE(3654)] = 232965, - [SMALL_STATE(3655)] = 233004, - [SMALL_STATE(3656)] = 233033, - [SMALL_STATE(3657)] = 233076, - [SMALL_STATE(3658)] = 233105, - [SMALL_STATE(3659)] = 233132, - [SMALL_STATE(3660)] = 233171, - [SMALL_STATE(3661)] = 233210, - [SMALL_STATE(3662)] = 233249, - [SMALL_STATE(3663)] = 233288, - [SMALL_STATE(3664)] = 233315, - [SMALL_STATE(3665)] = 233354, - [SMALL_STATE(3666)] = 233393, - [SMALL_STATE(3667)] = 233432, - [SMALL_STATE(3668)] = 233459, - [SMALL_STATE(3669)] = 233498, - [SMALL_STATE(3670)] = 233525, - [SMALL_STATE(3671)] = 233554, - [SMALL_STATE(3672)] = 233583, - [SMALL_STATE(3673)] = 233622, - [SMALL_STATE(3674)] = 233651, - [SMALL_STATE(3675)] = 233690, - [SMALL_STATE(3676)] = 233729, - [SMALL_STATE(3677)] = 233768, - [SMALL_STATE(3678)] = 233807, - [SMALL_STATE(3679)] = 233846, - [SMALL_STATE(3680)] = 233893, - [SMALL_STATE(3681)] = 233936, - [SMALL_STATE(3682)] = 233979, - [SMALL_STATE(3683)] = 234022, - [SMALL_STATE(3684)] = 234061, - [SMALL_STATE(3685)] = 234100, - [SMALL_STATE(3686)] = 234139, - [SMALL_STATE(3687)] = 234178, - [SMALL_STATE(3688)] = 234221, - [SMALL_STATE(3689)] = 234260, - [SMALL_STATE(3690)] = 234287, - [SMALL_STATE(3691)] = 234330, - [SMALL_STATE(3692)] = 234369, - [SMALL_STATE(3693)] = 234408, - [SMALL_STATE(3694)] = 234447, - [SMALL_STATE(3695)] = 234486, - [SMALL_STATE(3696)] = 234515, - [SMALL_STATE(3697)] = 234554, - [SMALL_STATE(3698)] = 234589, - [SMALL_STATE(3699)] = 234628, - [SMALL_STATE(3700)] = 234667, - [SMALL_STATE(3701)] = 234706, - [SMALL_STATE(3702)] = 234745, - [SMALL_STATE(3703)] = 234784, - [SMALL_STATE(3704)] = 234823, - [SMALL_STATE(3705)] = 234858, - [SMALL_STATE(3706)] = 234901, - [SMALL_STATE(3707)] = 234940, - [SMALL_STATE(3708)] = 234979, - [SMALL_STATE(3709)] = 235018, - [SMALL_STATE(3710)] = 235047, - [SMALL_STATE(3711)] = 235086, - [SMALL_STATE(3712)] = 235125, - [SMALL_STATE(3713)] = 235164, - [SMALL_STATE(3714)] = 235203, - [SMALL_STATE(3715)] = 235247, - [SMALL_STATE(3716)] = 235291, - [SMALL_STATE(3717)] = 235333, - [SMALL_STATE(3718)] = 235377, - [SMALL_STATE(3719)] = 235421, - [SMALL_STATE(3720)] = 235465, - [SMALL_STATE(3721)] = 235509, - [SMALL_STATE(3722)] = 235547, - [SMALL_STATE(3723)] = 235591, - [SMALL_STATE(3724)] = 235621, - [SMALL_STATE(3725)] = 235665, - [SMALL_STATE(3726)] = 235709, - [SMALL_STATE(3727)] = 235751, - [SMALL_STATE(3728)] = 235795, - [SMALL_STATE(3729)] = 235837, - [SMALL_STATE(3730)] = 235881, - [SMALL_STATE(3731)] = 235925, - [SMALL_STATE(3732)] = 235951, - [SMALL_STATE(3733)] = 235995, - [SMALL_STATE(3734)] = 236039, - [SMALL_STATE(3735)] = 236081, - [SMALL_STATE(3736)] = 236125, - [SMALL_STATE(3737)] = 236159, - [SMALL_STATE(3738)] = 236203, - [SMALL_STATE(3739)] = 236247, - [SMALL_STATE(3740)] = 236289, - [SMALL_STATE(3741)] = 236333, - [SMALL_STATE(3742)] = 236375, - [SMALL_STATE(3743)] = 236419, - [SMALL_STATE(3744)] = 236445, - [SMALL_STATE(3745)] = 236489, - [SMALL_STATE(3746)] = 236531, - [SMALL_STATE(3747)] = 236575, - [SMALL_STATE(3748)] = 236617, - [SMALL_STATE(3749)] = 236661, - [SMALL_STATE(3750)] = 236705, - [SMALL_STATE(3751)] = 236749, - [SMALL_STATE(3752)] = 236775, - [SMALL_STATE(3753)] = 236819, - [SMALL_STATE(3754)] = 236845, - [SMALL_STATE(3755)] = 236889, - [SMALL_STATE(3756)] = 236931, - [SMALL_STATE(3757)] = 236967, - [SMALL_STATE(3758)] = 237011, - [SMALL_STATE(3759)] = 237053, - [SMALL_STATE(3760)] = 237097, - [SMALL_STATE(3761)] = 237123, - [SMALL_STATE(3762)] = 237149, - [SMALL_STATE(3763)] = 237187, - [SMALL_STATE(3764)] = 237231, - [SMALL_STATE(3765)] = 237275, - [SMALL_STATE(3766)] = 237319, - [SMALL_STATE(3767)] = 237363, - [SMALL_STATE(3768)] = 237407, - [SMALL_STATE(3769)] = 237451, - [SMALL_STATE(3770)] = 237495, - [SMALL_STATE(3771)] = 237539, - [SMALL_STATE(3772)] = 237583, - [SMALL_STATE(3773)] = 237619, - [SMALL_STATE(3774)] = 237657, - [SMALL_STATE(3775)] = 237701, - [SMALL_STATE(3776)] = 237745, - [SMALL_STATE(3777)] = 237789, - [SMALL_STATE(3778)] = 237833, - [SMALL_STATE(3779)] = 237877, - [SMALL_STATE(3780)] = 237921, - [SMALL_STATE(3781)] = 237965, - [SMALL_STATE(3782)] = 238009, - [SMALL_STATE(3783)] = 238053, - [SMALL_STATE(3784)] = 238097, - [SMALL_STATE(3785)] = 238139, - [SMALL_STATE(3786)] = 238183, - [SMALL_STATE(3787)] = 238227, - [SMALL_STATE(3788)] = 238271, - [SMALL_STATE(3789)] = 238315, - [SMALL_STATE(3790)] = 238359, - [SMALL_STATE(3791)] = 238403, - [SMALL_STATE(3792)] = 238447, - [SMALL_STATE(3793)] = 238491, - [SMALL_STATE(3794)] = 238532, - [SMALL_STATE(3795)] = 238569, - [SMALL_STATE(3796)] = 238596, - [SMALL_STATE(3797)] = 238623, - [SMALL_STATE(3798)] = 238664, - [SMALL_STATE(3799)] = 238701, - [SMALL_STATE(3800)] = 238742, - [SMALL_STATE(3801)] = 238769, - [SMALL_STATE(3802)] = 238796, - [SMALL_STATE(3803)] = 238823, - [SMALL_STATE(3804)] = 238850, - [SMALL_STATE(3805)] = 238877, - [SMALL_STATE(3806)] = 238914, - [SMALL_STATE(3807)] = 238955, - [SMALL_STATE(3808)] = 238996, - [SMALL_STATE(3809)] = 239033, - [SMALL_STATE(3810)] = 239074, - [SMALL_STATE(3811)] = 239101, - [SMALL_STATE(3812)] = 239142, - [SMALL_STATE(3813)] = 239183, - [SMALL_STATE(3814)] = 239224, - [SMALL_STATE(3815)] = 239265, - [SMALL_STATE(3816)] = 239292, - [SMALL_STATE(3817)] = 239319, - [SMALL_STATE(3818)] = 239346, - [SMALL_STATE(3819)] = 239387, - [SMALL_STATE(3820)] = 239414, - [SMALL_STATE(3821)] = 239455, - [SMALL_STATE(3822)] = 239482, - [SMALL_STATE(3823)] = 239509, - [SMALL_STATE(3824)] = 239536, - [SMALL_STATE(3825)] = 239563, - [SMALL_STATE(3826)] = 239592, - [SMALL_STATE(3827)] = 239619, - [SMALL_STATE(3828)] = 239646, - [SMALL_STATE(3829)] = 239673, - [SMALL_STATE(3830)] = 239710, - [SMALL_STATE(3831)] = 239751, - [SMALL_STATE(3832)] = 239792, - [SMALL_STATE(3833)] = 239821, - [SMALL_STATE(3834)] = 239848, - [SMALL_STATE(3835)] = 239879, - [SMALL_STATE(3836)] = 239908, - [SMALL_STATE(3837)] = 239949, - [SMALL_STATE(3838)] = 239990, - [SMALL_STATE(3839)] = 240027, - [SMALL_STATE(3840)] = 240054, - [SMALL_STATE(3841)] = 240081, - [SMALL_STATE(3842)] = 240108, - [SMALL_STATE(3843)] = 240135, - [SMALL_STATE(3844)] = 240172, - [SMALL_STATE(3845)] = 240199, - [SMALL_STATE(3846)] = 240240, - [SMALL_STATE(3847)] = 240275, - [SMALL_STATE(3848)] = 240302, - [SMALL_STATE(3849)] = 240329, - [SMALL_STATE(3850)] = 240370, - [SMALL_STATE(3851)] = 240397, - [SMALL_STATE(3852)] = 240438, - [SMALL_STATE(3853)] = 240467, - [SMALL_STATE(3854)] = 240494, - [SMALL_STATE(3855)] = 240521, - [SMALL_STATE(3856)] = 240548, - [SMALL_STATE(3857)] = 240589, - [SMALL_STATE(3858)] = 240630, - [SMALL_STATE(3859)] = 240659, - [SMALL_STATE(3860)] = 240696, - [SMALL_STATE(3861)] = 240733, - [SMALL_STATE(3862)] = 240768, - [SMALL_STATE(3863)] = 240809, - [SMALL_STATE(3864)] = 240836, - [SMALL_STATE(3865)] = 240863, - [SMALL_STATE(3866)] = 240892, - [SMALL_STATE(3867)] = 240919, - [SMALL_STATE(3868)] = 240946, - [SMALL_STATE(3869)] = 240987, - [SMALL_STATE(3870)] = 241028, - [SMALL_STATE(3871)] = 241065, - [SMALL_STATE(3872)] = 241106, - [SMALL_STATE(3873)] = 241135, - [SMALL_STATE(3874)] = 241173, - [SMALL_STATE(3875)] = 241207, - [SMALL_STATE(3876)] = 241241, - [SMALL_STATE(3877)] = 241271, - [SMALL_STATE(3878)] = 241305, - [SMALL_STATE(3879)] = 241339, - [SMALL_STATE(3880)] = 241373, - [SMALL_STATE(3881)] = 241407, - [SMALL_STATE(3882)] = 241443, - [SMALL_STATE(3883)] = 241477, - [SMALL_STATE(3884)] = 241511, - [SMALL_STATE(3885)] = 241545, - [SMALL_STATE(3886)] = 241569, - [SMALL_STATE(3887)] = 241603, - [SMALL_STATE(3888)] = 241635, - [SMALL_STATE(3889)] = 241667, - [SMALL_STATE(3890)] = 241695, - [SMALL_STATE(3891)] = 241729, - [SMALL_STATE(3892)] = 241761, - [SMALL_STATE(3893)] = 241793, - [SMALL_STATE(3894)] = 241823, - [SMALL_STATE(3895)] = 241861, - [SMALL_STATE(3896)] = 241891, - [SMALL_STATE(3897)] = 241923, - [SMALL_STATE(3898)] = 241955, - [SMALL_STATE(3899)] = 241989, - [SMALL_STATE(3900)] = 242023, - [SMALL_STATE(3901)] = 242061, - [SMALL_STATE(3902)] = 242095, - [SMALL_STATE(3903)] = 242131, - [SMALL_STATE(3904)] = 242167, - [SMALL_STATE(3905)] = 242201, - [SMALL_STATE(3906)] = 242235, - [SMALL_STATE(3907)] = 242269, - [SMALL_STATE(3908)] = 242305, - [SMALL_STATE(3909)] = 242343, - [SMALL_STATE(3910)] = 242373, - [SMALL_STATE(3911)] = 242403, - [SMALL_STATE(3912)] = 242437, - [SMALL_STATE(3913)] = 242469, - [SMALL_STATE(3914)] = 242503, - [SMALL_STATE(3915)] = 242539, - [SMALL_STATE(3916)] = 242573, - [SMALL_STATE(3917)] = 242603, - [SMALL_STATE(3918)] = 242637, - [SMALL_STATE(3919)] = 242671, - [SMALL_STATE(3920)] = 242705, - [SMALL_STATE(3921)] = 242739, - [SMALL_STATE(3922)] = 242773, - [SMALL_STATE(3923)] = 242809, - [SMALL_STATE(3924)] = 242843, - [SMALL_STATE(3925)] = 242877, - [SMALL_STATE(3926)] = 242911, - [SMALL_STATE(3927)] = 242945, - [SMALL_STATE(3928)] = 242979, - [SMALL_STATE(3929)] = 243011, - [SMALL_STATE(3930)] = 243045, - [SMALL_STATE(3931)] = 243079, - [SMALL_STATE(3932)] = 243113, - [SMALL_STATE(3933)] = 243151, - [SMALL_STATE(3934)] = 243185, - [SMALL_STATE(3935)] = 243219, - [SMALL_STATE(3936)] = 243253, - [SMALL_STATE(3937)] = 243291, - [SMALL_STATE(3938)] = 243325, - [SMALL_STATE(3939)] = 243355, - [SMALL_STATE(3940)] = 243387, - [SMALL_STATE(3941)] = 243421, - [SMALL_STATE(3942)] = 243455, - [SMALL_STATE(3943)] = 243493, - [SMALL_STATE(3944)] = 243529, - [SMALL_STATE(3945)] = 243561, - [SMALL_STATE(3946)] = 243593, - [SMALL_STATE(3947)] = 243627, - [SMALL_STATE(3948)] = 243663, - [SMALL_STATE(3949)] = 243697, - [SMALL_STATE(3950)] = 243731, - [SMALL_STATE(3951)] = 243765, - [SMALL_STATE(3952)] = 243801, - [SMALL_STATE(3953)] = 243837, - [SMALL_STATE(3954)] = 243871, - [SMALL_STATE(3955)] = 243905, - [SMALL_STATE(3956)] = 243935, - [SMALL_STATE(3957)] = 243971, - [SMALL_STATE(3958)] = 244005, - [SMALL_STATE(3959)] = 244039, - [SMALL_STATE(3960)] = 244077, - [SMALL_STATE(3961)] = 244111, - [SMALL_STATE(3962)] = 244147, - [SMALL_STATE(3963)] = 244177, - [SMALL_STATE(3964)] = 244211, - [SMALL_STATE(3965)] = 244245, - [SMALL_STATE(3966)] = 244279, - [SMALL_STATE(3967)] = 244313, - [SMALL_STATE(3968)] = 244347, - [SMALL_STATE(3969)] = 244381, - [SMALL_STATE(3970)] = 244413, - [SMALL_STATE(3971)] = 244449, - [SMALL_STATE(3972)] = 244487, - [SMALL_STATE(3973)] = 244523, - [SMALL_STATE(3974)] = 244559, - [SMALL_STATE(3975)] = 244593, - [SMALL_STATE(3976)] = 244627, - [SMALL_STATE(3977)] = 244659, - [SMALL_STATE(3978)] = 244693, - [SMALL_STATE(3979)] = 244723, - [SMALL_STATE(3980)] = 244757, - [SMALL_STATE(3981)] = 244791, - [SMALL_STATE(3982)] = 244825, - [SMALL_STATE(3983)] = 244861, - [SMALL_STATE(3984)] = 244896, - [SMALL_STATE(3985)] = 244931, - [SMALL_STATE(3986)] = 244966, - [SMALL_STATE(3987)] = 244989, - [SMALL_STATE(3988)] = 245024, - [SMALL_STATE(3989)] = 245059, - [SMALL_STATE(3990)] = 245094, - [SMALL_STATE(3991)] = 245129, - [SMALL_STATE(3992)] = 245164, - [SMALL_STATE(3993)] = 245199, - [SMALL_STATE(3994)] = 245234, - [SMALL_STATE(3995)] = 245269, - [SMALL_STATE(3996)] = 245304, - [SMALL_STATE(3997)] = 245337, - [SMALL_STATE(3998)] = 245372, - [SMALL_STATE(3999)] = 245407, - [SMALL_STATE(4000)] = 245442, - [SMALL_STATE(4001)] = 245477, - [SMALL_STATE(4002)] = 245512, - [SMALL_STATE(4003)] = 245547, - [SMALL_STATE(4004)] = 245582, - [SMALL_STATE(4005)] = 245617, - [SMALL_STATE(4006)] = 245652, - [SMALL_STATE(4007)] = 245687, - [SMALL_STATE(4008)] = 245722, - [SMALL_STATE(4009)] = 245757, - [SMALL_STATE(4010)] = 245792, - [SMALL_STATE(4011)] = 245827, - [SMALL_STATE(4012)] = 245862, - [SMALL_STATE(4013)] = 245897, - [SMALL_STATE(4014)] = 245932, - [SMALL_STATE(4015)] = 245967, - [SMALL_STATE(4016)] = 246002, - [SMALL_STATE(4017)] = 246037, - [SMALL_STATE(4018)] = 246072, - [SMALL_STATE(4019)] = 246107, - [SMALL_STATE(4020)] = 246136, - [SMALL_STATE(4021)] = 246171, - [SMALL_STATE(4022)] = 246206, - [SMALL_STATE(4023)] = 246233, - [SMALL_STATE(4024)] = 246268, - [SMALL_STATE(4025)] = 246303, - [SMALL_STATE(4026)] = 246338, - [SMALL_STATE(4027)] = 246373, - [SMALL_STATE(4028)] = 246408, - [SMALL_STATE(4029)] = 246443, - [SMALL_STATE(4030)] = 246478, - [SMALL_STATE(4031)] = 246513, - [SMALL_STATE(4032)] = 246548, - [SMALL_STATE(4033)] = 246583, - [SMALL_STATE(4034)] = 246618, - [SMALL_STATE(4035)] = 246653, - [SMALL_STATE(4036)] = 246688, - [SMALL_STATE(4037)] = 246717, - [SMALL_STATE(4038)] = 246752, - [SMALL_STATE(4039)] = 246783, - [SMALL_STATE(4040)] = 246816, - [SMALL_STATE(4041)] = 246851, - [SMALL_STATE(4042)] = 246886, - [SMALL_STATE(4043)] = 246921, - [SMALL_STATE(4044)] = 246956, - [SMALL_STATE(4045)] = 246991, - [SMALL_STATE(4046)] = 247026, - [SMALL_STATE(4047)] = 247061, - [SMALL_STATE(4048)] = 247096, - [SMALL_STATE(4049)] = 247131, - [SMALL_STATE(4050)] = 247166, - [SMALL_STATE(4051)] = 247201, - [SMALL_STATE(4052)] = 247236, - [SMALL_STATE(4053)] = 247269, - [SMALL_STATE(4054)] = 247304, - [SMALL_STATE(4055)] = 247337, - [SMALL_STATE(4056)] = 247372, - [SMALL_STATE(4057)] = 247395, - [SMALL_STATE(4058)] = 247430, - [SMALL_STATE(4059)] = 247465, - [SMALL_STATE(4060)] = 247500, - [SMALL_STATE(4061)] = 247527, - [SMALL_STATE(4062)] = 247562, - [SMALL_STATE(4063)] = 247597, - [SMALL_STATE(4064)] = 247632, - [SMALL_STATE(4065)] = 247667, - [SMALL_STATE(4066)] = 247702, - [SMALL_STATE(4067)] = 247725, - [SMALL_STATE(4068)] = 247760, - [SMALL_STATE(4069)] = 247795, - [SMALL_STATE(4070)] = 247830, - [SMALL_STATE(4071)] = 247865, - [SMALL_STATE(4072)] = 247900, - [SMALL_STATE(4073)] = 247923, - [SMALL_STATE(4074)] = 247958, - [SMALL_STATE(4075)] = 247993, - [SMALL_STATE(4076)] = 248016, - [SMALL_STATE(4077)] = 248051, - [SMALL_STATE(4078)] = 248086, - [SMALL_STATE(4079)] = 248121, - [SMALL_STATE(4080)] = 248148, - [SMALL_STATE(4081)] = 248183, - [SMALL_STATE(4082)] = 248218, - [SMALL_STATE(4083)] = 248241, - [SMALL_STATE(4084)] = 248276, - [SMALL_STATE(4085)] = 248311, - [SMALL_STATE(4086)] = 248346, - [SMALL_STATE(4087)] = 248381, - [SMALL_STATE(4088)] = 248416, - [SMALL_STATE(4089)] = 248447, - [SMALL_STATE(4090)] = 248482, - [SMALL_STATE(4091)] = 248515, - [SMALL_STATE(4092)] = 248550, - [SMALL_STATE(4093)] = 248573, - [SMALL_STATE(4094)] = 248608, - [SMALL_STATE(4095)] = 248643, - [SMALL_STATE(4096)] = 248678, - [SMALL_STATE(4097)] = 248713, - [SMALL_STATE(4098)] = 248748, - [SMALL_STATE(4099)] = 248783, - [SMALL_STATE(4100)] = 248818, - [SMALL_STATE(4101)] = 248841, - [SMALL_STATE(4102)] = 248874, - [SMALL_STATE(4103)] = 248909, - [SMALL_STATE(4104)] = 248944, - [SMALL_STATE(4105)] = 248967, - [SMALL_STATE(4106)] = 249002, - [SMALL_STATE(4107)] = 249037, - [SMALL_STATE(4108)] = 249072, - [SMALL_STATE(4109)] = 249107, - [SMALL_STATE(4110)] = 249142, - [SMALL_STATE(4111)] = 249177, - [SMALL_STATE(4112)] = 249200, - [SMALL_STATE(4113)] = 249235, - [SMALL_STATE(4114)] = 249270, - [SMALL_STATE(4115)] = 249305, - [SMALL_STATE(4116)] = 249340, - [SMALL_STATE(4117)] = 249375, - [SMALL_STATE(4118)] = 249410, - [SMALL_STATE(4119)] = 249445, - [SMALL_STATE(4120)] = 249480, - [SMALL_STATE(4121)] = 249515, - [SMALL_STATE(4122)] = 249550, - [SMALL_STATE(4123)] = 249585, - [SMALL_STATE(4124)] = 249618, - [SMALL_STATE(4125)] = 249653, - [SMALL_STATE(4126)] = 249686, - [SMALL_STATE(4127)] = 249721, - [SMALL_STATE(4128)] = 249756, - [SMALL_STATE(4129)] = 249791, - [SMALL_STATE(4130)] = 249826, - [SMALL_STATE(4131)] = 249861, - [SMALL_STATE(4132)] = 249896, - [SMALL_STATE(4133)] = 249931, - [SMALL_STATE(4134)] = 249966, - [SMALL_STATE(4135)] = 250001, - [SMALL_STATE(4136)] = 250034, - [SMALL_STATE(4137)] = 250069, - [SMALL_STATE(4138)] = 250104, - [SMALL_STATE(4139)] = 250139, - [SMALL_STATE(4140)] = 250174, - [SMALL_STATE(4141)] = 250207, - [SMALL_STATE(4142)] = 250242, - [SMALL_STATE(4143)] = 250277, - [SMALL_STATE(4144)] = 250312, - [SMALL_STATE(4145)] = 250347, - [SMALL_STATE(4146)] = 250382, - [SMALL_STATE(4147)] = 250417, - [SMALL_STATE(4148)] = 250452, - [SMALL_STATE(4149)] = 250487, - [SMALL_STATE(4150)] = 250522, - [SMALL_STATE(4151)] = 250557, - [SMALL_STATE(4152)] = 250592, - [SMALL_STATE(4153)] = 250627, - [SMALL_STATE(4154)] = 250662, - [SMALL_STATE(4155)] = 250697, - [SMALL_STATE(4156)] = 250732, - [SMALL_STATE(4157)] = 250767, - [SMALL_STATE(4158)] = 250802, - [SMALL_STATE(4159)] = 250837, - [SMALL_STATE(4160)] = 250872, - [SMALL_STATE(4161)] = 250903, - [SMALL_STATE(4162)] = 250938, - [SMALL_STATE(4163)] = 250973, - [SMALL_STATE(4164)] = 251008, - [SMALL_STATE(4165)] = 251043, - [SMALL_STATE(4166)] = 251078, - [SMALL_STATE(4167)] = 251113, - [SMALL_STATE(4168)] = 251148, - [SMALL_STATE(4169)] = 251183, - [SMALL_STATE(4170)] = 251218, - [SMALL_STATE(4171)] = 251253, - [SMALL_STATE(4172)] = 251288, - [SMALL_STATE(4173)] = 251323, - [SMALL_STATE(4174)] = 251358, - [SMALL_STATE(4175)] = 251393, - [SMALL_STATE(4176)] = 251428, - [SMALL_STATE(4177)] = 251457, - [SMALL_STATE(4178)] = 251492, - [SMALL_STATE(4179)] = 251527, - [SMALL_STATE(4180)] = 251562, - [SMALL_STATE(4181)] = 251597, - [SMALL_STATE(4182)] = 251632, - [SMALL_STATE(4183)] = 251667, - [SMALL_STATE(4184)] = 251702, - [SMALL_STATE(4185)] = 251737, - [SMALL_STATE(4186)] = 251772, - [SMALL_STATE(4187)] = 251797, - [SMALL_STATE(4188)] = 251832, - [SMALL_STATE(4189)] = 251863, - [SMALL_STATE(4190)] = 251898, - [SMALL_STATE(4191)] = 251933, - [SMALL_STATE(4192)] = 251964, - [SMALL_STATE(4193)] = 251999, - [SMALL_STATE(4194)] = 252034, - [SMALL_STATE(4195)] = 252069, - [SMALL_STATE(4196)] = 252104, - [SMALL_STATE(4197)] = 252139, - [SMALL_STATE(4198)] = 252171, - [SMALL_STATE(4199)] = 252201, - [SMALL_STATE(4200)] = 252229, - [SMALL_STATE(4201)] = 252253, - [SMALL_STATE(4202)] = 252275, - [SMALL_STATE(4203)] = 252297, - [SMALL_STATE(4204)] = 252329, - [SMALL_STATE(4205)] = 252359, - [SMALL_STATE(4206)] = 252389, - [SMALL_STATE(4207)] = 252419, - [SMALL_STATE(4208)] = 252451, - [SMALL_STATE(4209)] = 252479, - [SMALL_STATE(4210)] = 252509, - [SMALL_STATE(4211)] = 252539, - [SMALL_STATE(4212)] = 252567, - [SMALL_STATE(4213)] = 252599, - [SMALL_STATE(4214)] = 252631, - [SMALL_STATE(4215)] = 252655, - [SMALL_STATE(4216)] = 252685, - [SMALL_STATE(4217)] = 252715, - [SMALL_STATE(4218)] = 252743, - [SMALL_STATE(4219)] = 252765, - [SMALL_STATE(4220)] = 252789, - [SMALL_STATE(4221)] = 252817, - [SMALL_STATE(4222)] = 252841, - [SMALL_STATE(4223)] = 252865, - [SMALL_STATE(4224)] = 252897, - [SMALL_STATE(4225)] = 252929, - [SMALL_STATE(4226)] = 252953, - [SMALL_STATE(4227)] = 252977, - [SMALL_STATE(4228)] = 253005, - [SMALL_STATE(4229)] = 253033, - [SMALL_STATE(4230)] = 253057, - [SMALL_STATE(4231)] = 253081, - [SMALL_STATE(4232)] = 253105, - [SMALL_STATE(4233)] = 253133, - [SMALL_STATE(4234)] = 253165, - [SMALL_STATE(4235)] = 253197, - [SMALL_STATE(4236)] = 253221, - [SMALL_STATE(4237)] = 253249, - [SMALL_STATE(4238)] = 253281, - [SMALL_STATE(4239)] = 253309, - [SMALL_STATE(4240)] = 253339, - [SMALL_STATE(4241)] = 253365, - [SMALL_STATE(4242)] = 253395, - [SMALL_STATE(4243)] = 253427, - [SMALL_STATE(4244)] = 253457, - [SMALL_STATE(4245)] = 253485, - [SMALL_STATE(4246)] = 253515, - [SMALL_STATE(4247)] = 253539, - [SMALL_STATE(4248)] = 253563, - [SMALL_STATE(4249)] = 253589, - [SMALL_STATE(4250)] = 253619, - [SMALL_STATE(4251)] = 253649, - [SMALL_STATE(4252)] = 253677, - [SMALL_STATE(4253)] = 253707, - [SMALL_STATE(4254)] = 253739, - [SMALL_STATE(4255)] = 253763, - [SMALL_STATE(4256)] = 253793, - [SMALL_STATE(4257)] = 253823, - [SMALL_STATE(4258)] = 253851, - [SMALL_STATE(4259)] = 253881, - [SMALL_STATE(4260)] = 253913, - [SMALL_STATE(4261)] = 253943, - [SMALL_STATE(4262)] = 253973, - [SMALL_STATE(4263)] = 254001, - [SMALL_STATE(4264)] = 254023, - [SMALL_STATE(4265)] = 254053, - [SMALL_STATE(4266)] = 254085, - [SMALL_STATE(4267)] = 254111, - [SMALL_STATE(4268)] = 254133, - [SMALL_STATE(4269)] = 254155, - [SMALL_STATE(4270)] = 254177, - [SMALL_STATE(4271)] = 254209, - [SMALL_STATE(4272)] = 254239, - [SMALL_STATE(4273)] = 254269, - [SMALL_STATE(4274)] = 254299, - [SMALL_STATE(4275)] = 254329, - [SMALL_STATE(4276)] = 254361, - [SMALL_STATE(4277)] = 254393, - [SMALL_STATE(4278)] = 254417, - [SMALL_STATE(4279)] = 254447, - [SMALL_STATE(4280)] = 254477, - [SMALL_STATE(4281)] = 254509, - [SMALL_STATE(4282)] = 254537, - [SMALL_STATE(4283)] = 254565, - [SMALL_STATE(4284)] = 254597, - [SMALL_STATE(4285)] = 254623, - [SMALL_STATE(4286)] = 254655, - [SMALL_STATE(4287)] = 254685, - [SMALL_STATE(4288)] = 254717, - [SMALL_STATE(4289)] = 254747, - [SMALL_STATE(4290)] = 254777, - [SMALL_STATE(4291)] = 254807, - [SMALL_STATE(4292)] = 254835, - [SMALL_STATE(4293)] = 254867, - [SMALL_STATE(4294)] = 254897, - [SMALL_STATE(4295)] = 254925, - [SMALL_STATE(4296)] = 254955, - [SMALL_STATE(4297)] = 254979, - [SMALL_STATE(4298)] = 255011, - [SMALL_STATE(4299)] = 255043, - [SMALL_STATE(4300)] = 255073, - [SMALL_STATE(4301)] = 255097, - [SMALL_STATE(4302)] = 255129, - [SMALL_STATE(4303)] = 255159, - [SMALL_STATE(4304)] = 255189, - [SMALL_STATE(4305)] = 255219, - [SMALL_STATE(4306)] = 255251, - [SMALL_STATE(4307)] = 255283, - [SMALL_STATE(4308)] = 255313, - [SMALL_STATE(4309)] = 255339, - [SMALL_STATE(4310)] = 255371, - [SMALL_STATE(4311)] = 255397, - [SMALL_STATE(4312)] = 255425, - [SMALL_STATE(4313)] = 255457, - [SMALL_STATE(4314)] = 255481, - [SMALL_STATE(4315)] = 255513, - [SMALL_STATE(4316)] = 255545, - [SMALL_STATE(4317)] = 255573, - [SMALL_STATE(4318)] = 255601, - [SMALL_STATE(4319)] = 255625, - [SMALL_STATE(4320)] = 255657, - [SMALL_STATE(4321)] = 255689, - [SMALL_STATE(4322)] = 255721, - [SMALL_STATE(4323)] = 255751, - [SMALL_STATE(4324)] = 255781, - [SMALL_STATE(4325)] = 255813, - [SMALL_STATE(4326)] = 255841, - [SMALL_STATE(4327)] = 255873, - [SMALL_STATE(4328)] = 255905, - [SMALL_STATE(4329)] = 255937, - [SMALL_STATE(4330)] = 255967, - [SMALL_STATE(4331)] = 255989, - [SMALL_STATE(4332)] = 256019, - [SMALL_STATE(4333)] = 256051, - [SMALL_STATE(4334)] = 256075, - [SMALL_STATE(4335)] = 256103, - [SMALL_STATE(4336)] = 256127, - [SMALL_STATE(4337)] = 256155, - [SMALL_STATE(4338)] = 256187, - [SMALL_STATE(4339)] = 256219, - [SMALL_STATE(4340)] = 256251, - [SMALL_STATE(4341)] = 256279, - [SMALL_STATE(4342)] = 256303, - [SMALL_STATE(4343)] = 256333, - [SMALL_STATE(4344)] = 256365, - [SMALL_STATE(4345)] = 256395, - [SMALL_STATE(4346)] = 256427, - [SMALL_STATE(4347)] = 256449, - [SMALL_STATE(4348)] = 256481, - [SMALL_STATE(4349)] = 256513, - [SMALL_STATE(4350)] = 256535, - [SMALL_STATE(4351)] = 256567, - [SMALL_STATE(4352)] = 256589, - [SMALL_STATE(4353)] = 256619, - [SMALL_STATE(4354)] = 256651, - [SMALL_STATE(4355)] = 256683, - [SMALL_STATE(4356)] = 256705, - [SMALL_STATE(4357)] = 256735, - [SMALL_STATE(4358)] = 256765, - [SMALL_STATE(4359)] = 256795, - [SMALL_STATE(4360)] = 256817, - [SMALL_STATE(4361)] = 256841, - [SMALL_STATE(4362)] = 256865, - [SMALL_STATE(4363)] = 256895, - [SMALL_STATE(4364)] = 256925, - [SMALL_STATE(4365)] = 256957, - [SMALL_STATE(4366)] = 256985, - [SMALL_STATE(4367)] = 257017, - [SMALL_STATE(4368)] = 257049, - [SMALL_STATE(4369)] = 257081, - [SMALL_STATE(4370)] = 257113, - [SMALL_STATE(4371)] = 257143, - [SMALL_STATE(4372)] = 257173, - [SMALL_STATE(4373)] = 257203, - [SMALL_STATE(4374)] = 257233, - [SMALL_STATE(4375)] = 257265, - [SMALL_STATE(4376)] = 257295, - [SMALL_STATE(4377)] = 257323, - [SMALL_STATE(4378)] = 257355, - [SMALL_STATE(4379)] = 257385, - [SMALL_STATE(4380)] = 257415, - [SMALL_STATE(4381)] = 257443, - [SMALL_STATE(4382)] = 257473, - [SMALL_STATE(4383)] = 257501, - [SMALL_STATE(4384)] = 257531, - [SMALL_STATE(4385)] = 257559, - [SMALL_STATE(4386)] = 257591, - [SMALL_STATE(4387)] = 257615, - [SMALL_STATE(4388)] = 257647, - [SMALL_STATE(4389)] = 257671, - [SMALL_STATE(4390)] = 257699, - [SMALL_STATE(4391)] = 257727, - [SMALL_STATE(4392)] = 257753, - [SMALL_STATE(4393)] = 257777, - [SMALL_STATE(4394)] = 257807, - [SMALL_STATE(4395)] = 257839, - [SMALL_STATE(4396)] = 257863, - [SMALL_STATE(4397)] = 257895, - [SMALL_STATE(4398)] = 257923, - [SMALL_STATE(4399)] = 257955, - [SMALL_STATE(4400)] = 257985, - [SMALL_STATE(4401)] = 258017, - [SMALL_STATE(4402)] = 258047, - [SMALL_STATE(4403)] = 258079, - [SMALL_STATE(4404)] = 258109, - [SMALL_STATE(4405)] = 258141, - [SMALL_STATE(4406)] = 258173, - [SMALL_STATE(4407)] = 258201, - [SMALL_STATE(4408)] = 258231, - [SMALL_STATE(4409)] = 258263, - [SMALL_STATE(4410)] = 258291, - [SMALL_STATE(4411)] = 258323, - [SMALL_STATE(4412)] = 258353, - [SMALL_STATE(4413)] = 258385, - [SMALL_STATE(4414)] = 258409, - [SMALL_STATE(4415)] = 258441, - [SMALL_STATE(4416)] = 258471, - [SMALL_STATE(4417)] = 258501, - [SMALL_STATE(4418)] = 258533, - [SMALL_STATE(4419)] = 258563, - [SMALL_STATE(4420)] = 258595, - [SMALL_STATE(4421)] = 258625, - [SMALL_STATE(4422)] = 258655, - [SMALL_STATE(4423)] = 258687, - [SMALL_STATE(4424)] = 258719, - [SMALL_STATE(4425)] = 258751, - [SMALL_STATE(4426)] = 258783, - [SMALL_STATE(4427)] = 258813, - [SMALL_STATE(4428)] = 258843, - [SMALL_STATE(4429)] = 258873, - [SMALL_STATE(4430)] = 258903, - [SMALL_STATE(4431)] = 258935, - [SMALL_STATE(4432)] = 258967, - [SMALL_STATE(4433)] = 258999, - [SMALL_STATE(4434)] = 259031, - [SMALL_STATE(4435)] = 259059, - [SMALL_STATE(4436)] = 259087, - [SMALL_STATE(4437)] = 259117, - [SMALL_STATE(4438)] = 259149, - [SMALL_STATE(4439)] = 259177, - [SMALL_STATE(4440)] = 259207, - [SMALL_STATE(4441)] = 259239, - [SMALL_STATE(4442)] = 259269, - [SMALL_STATE(4443)] = 259297, - [SMALL_STATE(4444)] = 259323, - [SMALL_STATE(4445)] = 259351, - [SMALL_STATE(4446)] = 259381, - [SMALL_STATE(4447)] = 259411, - [SMALL_STATE(4448)] = 259441, - [SMALL_STATE(4449)] = 259471, - [SMALL_STATE(4450)] = 259501, - [SMALL_STATE(4451)] = 259533, - [SMALL_STATE(4452)] = 259565, - [SMALL_STATE(4453)] = 259597, - [SMALL_STATE(4454)] = 259625, - [SMALL_STATE(4455)] = 259655, - [SMALL_STATE(4456)] = 259685, - [SMALL_STATE(4457)] = 259713, - [SMALL_STATE(4458)] = 259743, - [SMALL_STATE(4459)] = 259773, - [SMALL_STATE(4460)] = 259805, - [SMALL_STATE(4461)] = 259835, - [SMALL_STATE(4462)] = 259865, - [SMALL_STATE(4463)] = 259897, - [SMALL_STATE(4464)] = 259927, - [SMALL_STATE(4465)] = 259957, - [SMALL_STATE(4466)] = 259986, - [SMALL_STATE(4467)] = 260011, - [SMALL_STATE(4468)] = 260040, - [SMALL_STATE(4469)] = 260065, - [SMALL_STATE(4470)] = 260090, - [SMALL_STATE(4471)] = 260117, - [SMALL_STATE(4472)] = 260142, - [SMALL_STATE(4473)] = 260167, - [SMALL_STATE(4474)] = 260192, - [SMALL_STATE(4475)] = 260221, - [SMALL_STATE(4476)] = 260246, - [SMALL_STATE(4477)] = 260273, - [SMALL_STATE(4478)] = 260302, - [SMALL_STATE(4479)] = 260329, - [SMALL_STATE(4480)] = 260358, - [SMALL_STATE(4481)] = 260385, - [SMALL_STATE(4482)] = 260414, - [SMALL_STATE(4483)] = 260437, - [SMALL_STATE(4484)] = 260466, - [SMALL_STATE(4485)] = 260495, - [SMALL_STATE(4486)] = 260522, - [SMALL_STATE(4487)] = 260551, - [SMALL_STATE(4488)] = 260572, - [SMALL_STATE(4489)] = 260601, - [SMALL_STATE(4490)] = 260630, - [SMALL_STATE(4491)] = 260655, - [SMALL_STATE(4492)] = 260680, - [SMALL_STATE(4493)] = 260709, - [SMALL_STATE(4494)] = 260738, - [SMALL_STATE(4495)] = 260765, - [SMALL_STATE(4496)] = 260794, - [SMALL_STATE(4497)] = 260819, - [SMALL_STATE(4498)] = 260848, - [SMALL_STATE(4499)] = 260875, - [SMALL_STATE(4500)] = 260904, - [SMALL_STATE(4501)] = 260931, - [SMALL_STATE(4502)] = 260956, - [SMALL_STATE(4503)] = 260979, - [SMALL_STATE(4504)] = 261000, - [SMALL_STATE(4505)] = 261029, - [SMALL_STATE(4506)] = 261050, - [SMALL_STATE(4507)] = 261071, - [SMALL_STATE(4508)] = 261094, - [SMALL_STATE(4509)] = 261119, - [SMALL_STATE(4510)] = 261148, - [SMALL_STATE(4511)] = 261171, - [SMALL_STATE(4512)] = 261200, - [SMALL_STATE(4513)] = 261221, - [SMALL_STATE(4514)] = 261246, - [SMALL_STATE(4515)] = 261271, - [SMALL_STATE(4516)] = 261300, - [SMALL_STATE(4517)] = 261321, - [SMALL_STATE(4518)] = 261348, - [SMALL_STATE(4519)] = 261377, - [SMALL_STATE(4520)] = 261406, - [SMALL_STATE(4521)] = 261435, - [SMALL_STATE(4522)] = 261462, - [SMALL_STATE(4523)] = 261489, - [SMALL_STATE(4524)] = 261516, - [SMALL_STATE(4525)] = 261545, - [SMALL_STATE(4526)] = 261574, - [SMALL_STATE(4527)] = 261599, - [SMALL_STATE(4528)] = 261626, - [SMALL_STATE(4529)] = 261649, - [SMALL_STATE(4530)] = 261678, - [SMALL_STATE(4531)] = 261705, - [SMALL_STATE(4532)] = 261734, - [SMALL_STATE(4533)] = 261757, - [SMALL_STATE(4534)] = 261778, - [SMALL_STATE(4535)] = 261803, - [SMALL_STATE(4536)] = 261826, - [SMALL_STATE(4537)] = 261847, - [SMALL_STATE(4538)] = 261874, - [SMALL_STATE(4539)] = 261901, - [SMALL_STATE(4540)] = 261926, - [SMALL_STATE(4541)] = 261955, - [SMALL_STATE(4542)] = 261980, - [SMALL_STATE(4543)] = 262005, - [SMALL_STATE(4544)] = 262026, - [SMALL_STATE(4545)] = 262055, - [SMALL_STATE(4546)] = 262080, - [SMALL_STATE(4547)] = 262109, - [SMALL_STATE(4548)] = 262138, - [SMALL_STATE(4549)] = 262167, - [SMALL_STATE(4550)] = 262188, - [SMALL_STATE(4551)] = 262217, - [SMALL_STATE(4552)] = 262246, - [SMALL_STATE(4553)] = 262275, - [SMALL_STATE(4554)] = 262304, - [SMALL_STATE(4555)] = 262333, - [SMALL_STATE(4556)] = 262358, - [SMALL_STATE(4557)] = 262379, - [SMALL_STATE(4558)] = 262406, - [SMALL_STATE(4559)] = 262433, - [SMALL_STATE(4560)] = 262454, - [SMALL_STATE(4561)] = 262475, - [SMALL_STATE(4562)] = 262498, - [SMALL_STATE(4563)] = 262519, - [SMALL_STATE(4564)] = 262542, - [SMALL_STATE(4565)] = 262568, - [SMALL_STATE(4566)] = 262594, - [SMALL_STATE(4567)] = 262614, - [SMALL_STATE(4568)] = 262640, - [SMALL_STATE(4569)] = 262666, - [SMALL_STATE(4570)] = 262690, - [SMALL_STATE(4571)] = 262710, - [SMALL_STATE(4572)] = 262730, - [SMALL_STATE(4573)] = 262756, - [SMALL_STATE(4574)] = 262776, - [SMALL_STATE(4575)] = 262796, - [SMALL_STATE(4576)] = 262816, - [SMALL_STATE(4577)] = 262840, - [SMALL_STATE(4578)] = 262860, - [SMALL_STATE(4579)] = 262886, - [SMALL_STATE(4580)] = 262912, - [SMALL_STATE(4581)] = 262932, - [SMALL_STATE(4582)] = 262958, - [SMALL_STATE(4583)] = 262982, - [SMALL_STATE(4584)] = 263008, - [SMALL_STATE(4585)] = 263034, - [SMALL_STATE(4586)] = 263060, - [SMALL_STATE(4587)] = 263080, - [SMALL_STATE(4588)] = 263106, - [SMALL_STATE(4589)] = 263126, - [SMALL_STATE(4590)] = 263150, - [SMALL_STATE(4591)] = 263170, - [SMALL_STATE(4592)] = 263196, - [SMALL_STATE(4593)] = 263222, - [SMALL_STATE(4594)] = 263242, - [SMALL_STATE(4595)] = 263262, - [SMALL_STATE(4596)] = 263286, - [SMALL_STATE(4597)] = 263310, - [SMALL_STATE(4598)] = 263336, - [SMALL_STATE(4599)] = 263360, - [SMALL_STATE(4600)] = 263380, - [SMALL_STATE(4601)] = 263400, - [SMALL_STATE(4602)] = 263420, - [SMALL_STATE(4603)] = 263446, - [SMALL_STATE(4604)] = 263472, - [SMALL_STATE(4605)] = 263492, - [SMALL_STATE(4606)] = 263518, - [SMALL_STATE(4607)] = 263544, - [SMALL_STATE(4608)] = 263564, - [SMALL_STATE(4609)] = 263588, - [SMALL_STATE(4610)] = 263614, - [SMALL_STATE(4611)] = 263640, - [SMALL_STATE(4612)] = 263664, - [SMALL_STATE(4613)] = 263690, - [SMALL_STATE(4614)] = 263716, - [SMALL_STATE(4615)] = 263742, - [SMALL_STATE(4616)] = 263764, - [SMALL_STATE(4617)] = 263788, - [SMALL_STATE(4618)] = 263814, - [SMALL_STATE(4619)] = 263840, - [SMALL_STATE(4620)] = 263866, - [SMALL_STATE(4621)] = 263892, - [SMALL_STATE(4622)] = 263918, - [SMALL_STATE(4623)] = 263944, - [SMALL_STATE(4624)] = 263970, - [SMALL_STATE(4625)] = 263996, - [SMALL_STATE(4626)] = 264020, - [SMALL_STATE(4627)] = 264046, - [SMALL_STATE(4628)] = 264072, - [SMALL_STATE(4629)] = 264098, - [SMALL_STATE(4630)] = 264124, - [SMALL_STATE(4631)] = 264150, - [SMALL_STATE(4632)] = 264176, - [SMALL_STATE(4633)] = 264202, - [SMALL_STATE(4634)] = 264228, - [SMALL_STATE(4635)] = 264248, - [SMALL_STATE(4636)] = 264268, - [SMALL_STATE(4637)] = 264294, - [SMALL_STATE(4638)] = 264320, - [SMALL_STATE(4639)] = 264346, - [SMALL_STATE(4640)] = 264372, - [SMALL_STATE(4641)] = 264398, - [SMALL_STATE(4642)] = 264424, - [SMALL_STATE(4643)] = 264450, - [SMALL_STATE(4644)] = 264476, - [SMALL_STATE(4645)] = 264502, - [SMALL_STATE(4646)] = 264528, - [SMALL_STATE(4647)] = 264554, - [SMALL_STATE(4648)] = 264574, - [SMALL_STATE(4649)] = 264600, - [SMALL_STATE(4650)] = 264620, - [SMALL_STATE(4651)] = 264640, - [SMALL_STATE(4652)] = 264660, - [SMALL_STATE(4653)] = 264686, - [SMALL_STATE(4654)] = 264712, - [SMALL_STATE(4655)] = 264738, - [SMALL_STATE(4656)] = 264758, - [SMALL_STATE(4657)] = 264784, - [SMALL_STATE(4658)] = 264804, - [SMALL_STATE(4659)] = 264824, - [SMALL_STATE(4660)] = 264850, - [SMALL_STATE(4661)] = 264876, - [SMALL_STATE(4662)] = 264902, - [SMALL_STATE(4663)] = 264922, - [SMALL_STATE(4664)] = 264942, - [SMALL_STATE(4665)] = 264968, - [SMALL_STATE(4666)] = 264994, - [SMALL_STATE(4667)] = 265020, - [SMALL_STATE(4668)] = 265046, - [SMALL_STATE(4669)] = 265072, - [SMALL_STATE(4670)] = 265098, - [SMALL_STATE(4671)] = 265118, - [SMALL_STATE(4672)] = 265142, - [SMALL_STATE(4673)] = 265166, - [SMALL_STATE(4674)] = 265192, - [SMALL_STATE(4675)] = 265218, - [SMALL_STATE(4676)] = 265242, - [SMALL_STATE(4677)] = 265264, - [SMALL_STATE(4678)] = 265286, - [SMALL_STATE(4679)] = 265308, - [SMALL_STATE(4680)] = 265328, - [SMALL_STATE(4681)] = 265354, - [SMALL_STATE(4682)] = 265374, - [SMALL_STATE(4683)] = 265400, - [SMALL_STATE(4684)] = 265426, - [SMALL_STATE(4685)] = 265452, - [SMALL_STATE(4686)] = 265478, - [SMALL_STATE(4687)] = 265504, - [SMALL_STATE(4688)] = 265530, - [SMALL_STATE(4689)] = 265556, - [SMALL_STATE(4690)] = 265580, - [SMALL_STATE(4691)] = 265606, - [SMALL_STATE(4692)] = 265632, - [SMALL_STATE(4693)] = 265658, - [SMALL_STATE(4694)] = 265682, - [SMALL_STATE(4695)] = 265702, - [SMALL_STATE(4696)] = 265728, - [SMALL_STATE(4697)] = 265754, - [SMALL_STATE(4698)] = 265780, - [SMALL_STATE(4699)] = 265800, - [SMALL_STATE(4700)] = 265824, - [SMALL_STATE(4701)] = 265850, - [SMALL_STATE(4702)] = 265876, - [SMALL_STATE(4703)] = 265902, - [SMALL_STATE(4704)] = 265928, - [SMALL_STATE(4705)] = 265952, - [SMALL_STATE(4706)] = 265978, - [SMALL_STATE(4707)] = 266000, - [SMALL_STATE(4708)] = 266024, - [SMALL_STATE(4709)] = 266050, - [SMALL_STATE(4710)] = 266076, - [SMALL_STATE(4711)] = 266096, - [SMALL_STATE(4712)] = 266116, - [SMALL_STATE(4713)] = 266136, - [SMALL_STATE(4714)] = 266156, - [SMALL_STATE(4715)] = 266176, - [SMALL_STATE(4716)] = 266202, - [SMALL_STATE(4717)] = 266224, - [SMALL_STATE(4718)] = 266250, - [SMALL_STATE(4719)] = 266270, - [SMALL_STATE(4720)] = 266290, - [SMALL_STATE(4721)] = 266310, - [SMALL_STATE(4722)] = 266330, - [SMALL_STATE(4723)] = 266356, - [SMALL_STATE(4724)] = 266378, - [SMALL_STATE(4725)] = 266404, - [SMALL_STATE(4726)] = 266430, - [SMALL_STATE(4727)] = 266456, - [SMALL_STATE(4728)] = 266478, - [SMALL_STATE(4729)] = 266504, - [SMALL_STATE(4730)] = 266530, - [SMALL_STATE(4731)] = 266556, - [SMALL_STATE(4732)] = 266576, - [SMALL_STATE(4733)] = 266602, - [SMALL_STATE(4734)] = 266622, - [SMALL_STATE(4735)] = 266642, - [SMALL_STATE(4736)] = 266668, - [SMALL_STATE(4737)] = 266690, - [SMALL_STATE(4738)] = 266716, - [SMALL_STATE(4739)] = 266742, - [SMALL_STATE(4740)] = 266768, - [SMALL_STATE(4741)] = 266794, - [SMALL_STATE(4742)] = 266820, - [SMALL_STATE(4743)] = 266846, - [SMALL_STATE(4744)] = 266868, - [SMALL_STATE(4745)] = 266892, - [SMALL_STATE(4746)] = 266912, - [SMALL_STATE(4747)] = 266934, - [SMALL_STATE(4748)] = 266956, - [SMALL_STATE(4749)] = 266976, - [SMALL_STATE(4750)] = 266996, - [SMALL_STATE(4751)] = 267022, - [SMALL_STATE(4752)] = 267042, - [SMALL_STATE(4753)] = 267062, - [SMALL_STATE(4754)] = 267088, - [SMALL_STATE(4755)] = 267112, - [SMALL_STATE(4756)] = 267138, - [SMALL_STATE(4757)] = 267158, - [SMALL_STATE(4758)] = 267184, - [SMALL_STATE(4759)] = 267208, - [SMALL_STATE(4760)] = 267228, - [SMALL_STATE(4761)] = 267248, - [SMALL_STATE(4762)] = 267268, - [SMALL_STATE(4763)] = 267294, - [SMALL_STATE(4764)] = 267320, - [SMALL_STATE(4765)] = 267346, - [SMALL_STATE(4766)] = 267366, - [SMALL_STATE(4767)] = 267392, - [SMALL_STATE(4768)] = 267412, - [SMALL_STATE(4769)] = 267432, - [SMALL_STATE(4770)] = 267452, - [SMALL_STATE(4771)] = 267478, - [SMALL_STATE(4772)] = 267498, - [SMALL_STATE(4773)] = 267518, - [SMALL_STATE(4774)] = 267542, - [SMALL_STATE(4775)] = 267568, - [SMALL_STATE(4776)] = 267594, - [SMALL_STATE(4777)] = 267614, - [SMALL_STATE(4778)] = 267634, - [SMALL_STATE(4779)] = 267660, - [SMALL_STATE(4780)] = 267686, - [SMALL_STATE(4781)] = 267712, - [SMALL_STATE(4782)] = 267738, - [SMALL_STATE(4783)] = 267764, - [SMALL_STATE(4784)] = 267784, - [SMALL_STATE(4785)] = 267810, - [SMALL_STATE(4786)] = 267836, - [SMALL_STATE(4787)] = 267862, - [SMALL_STATE(4788)] = 267888, - [SMALL_STATE(4789)] = 267908, - [SMALL_STATE(4790)] = 267934, - [SMALL_STATE(4791)] = 267960, - [SMALL_STATE(4792)] = 267986, - [SMALL_STATE(4793)] = 268006, - [SMALL_STATE(4794)] = 268032, - [SMALL_STATE(4795)] = 268056, - [SMALL_STATE(4796)] = 268082, - [SMALL_STATE(4797)] = 268102, - [SMALL_STATE(4798)] = 268128, - [SMALL_STATE(4799)] = 268148, - [SMALL_STATE(4800)] = 268168, - [SMALL_STATE(4801)] = 268188, - [SMALL_STATE(4802)] = 268208, - [SMALL_STATE(4803)] = 268234, - [SMALL_STATE(4804)] = 268258, - [SMALL_STATE(4805)] = 268278, - [SMALL_STATE(4806)] = 268298, - [SMALL_STATE(4807)] = 268322, - [SMALL_STATE(4808)] = 268342, - [SMALL_STATE(4809)] = 268362, - [SMALL_STATE(4810)] = 268386, - [SMALL_STATE(4811)] = 268406, - [SMALL_STATE(4812)] = 268432, - [SMALL_STATE(4813)] = 268452, - [SMALL_STATE(4814)] = 268472, - [SMALL_STATE(4815)] = 268492, - [SMALL_STATE(4816)] = 268512, - [SMALL_STATE(4817)] = 268536, - [SMALL_STATE(4818)] = 268556, - [SMALL_STATE(4819)] = 268582, - [SMALL_STATE(4820)] = 268604, - [SMALL_STATE(4821)] = 268624, - [SMALL_STATE(4822)] = 268650, - [SMALL_STATE(4823)] = 268676, - [SMALL_STATE(4824)] = 268698, - [SMALL_STATE(4825)] = 268722, - [SMALL_STATE(4826)] = 268748, - [SMALL_STATE(4827)] = 268768, - [SMALL_STATE(4828)] = 268788, - [SMALL_STATE(4829)] = 268814, - [SMALL_STATE(4830)] = 268840, - [SMALL_STATE(4831)] = 268866, - [SMALL_STATE(4832)] = 268892, - [SMALL_STATE(4833)] = 268914, - [SMALL_STATE(4834)] = 268940, - [SMALL_STATE(4835)] = 268966, - [SMALL_STATE(4836)] = 268992, - [SMALL_STATE(4837)] = 269016, - [SMALL_STATE(4838)] = 269042, - [SMALL_STATE(4839)] = 269068, - [SMALL_STATE(4840)] = 269094, - [SMALL_STATE(4841)] = 269120, - [SMALL_STATE(4842)] = 269146, - [SMALL_STATE(4843)] = 269172, - [SMALL_STATE(4844)] = 269192, - [SMALL_STATE(4845)] = 269218, - [SMALL_STATE(4846)] = 269238, - [SMALL_STATE(4847)] = 269264, - [SMALL_STATE(4848)] = 269288, - [SMALL_STATE(4849)] = 269314, - [SMALL_STATE(4850)] = 269340, - [SMALL_STATE(4851)] = 269366, - [SMALL_STATE(4852)] = 269390, - [SMALL_STATE(4853)] = 269416, - [SMALL_STATE(4854)] = 269442, - [SMALL_STATE(4855)] = 269468, - [SMALL_STATE(4856)] = 269488, - [SMALL_STATE(4857)] = 269508, - [SMALL_STATE(4858)] = 269534, - [SMALL_STATE(4859)] = 269560, - [SMALL_STATE(4860)] = 269586, - [SMALL_STATE(4861)] = 269612, - [SMALL_STATE(4862)] = 269638, - [SMALL_STATE(4863)] = 269658, - [SMALL_STATE(4864)] = 269680, - [SMALL_STATE(4865)] = 269706, - [SMALL_STATE(4866)] = 269732, - [SMALL_STATE(4867)] = 269758, - [SMALL_STATE(4868)] = 269784, - [SMALL_STATE(4869)] = 269810, - [SMALL_STATE(4870)] = 269834, - [SMALL_STATE(4871)] = 269858, - [SMALL_STATE(4872)] = 269878, - [SMALL_STATE(4873)] = 269904, - [SMALL_STATE(4874)] = 269930, - [SMALL_STATE(4875)] = 269956, - [SMALL_STATE(4876)] = 269976, - [SMALL_STATE(4877)] = 269996, - [SMALL_STATE(4878)] = 270022, - [SMALL_STATE(4879)] = 270048, - [SMALL_STATE(4880)] = 270074, - [SMALL_STATE(4881)] = 270100, - [SMALL_STATE(4882)] = 270124, - [SMALL_STATE(4883)] = 270150, - [SMALL_STATE(4884)] = 270176, - [SMALL_STATE(4885)] = 270196, - [SMALL_STATE(4886)] = 270220, - [SMALL_STATE(4887)] = 270246, - [SMALL_STATE(4888)] = 270272, - [SMALL_STATE(4889)] = 270298, - [SMALL_STATE(4890)] = 270322, - [SMALL_STATE(4891)] = 270348, - [SMALL_STATE(4892)] = 270374, - [SMALL_STATE(4893)] = 270394, - [SMALL_STATE(4894)] = 270414, - [SMALL_STATE(4895)] = 270438, - [SMALL_STATE(4896)] = 270458, - [SMALL_STATE(4897)] = 270478, - [SMALL_STATE(4898)] = 270498, - [SMALL_STATE(4899)] = 270522, - [SMALL_STATE(4900)] = 270548, - [SMALL_STATE(4901)] = 270574, - [SMALL_STATE(4902)] = 270594, - [SMALL_STATE(4903)] = 270614, - [SMALL_STATE(4904)] = 270634, - [SMALL_STATE(4905)] = 270654, - [SMALL_STATE(4906)] = 270676, - [SMALL_STATE(4907)] = 270696, - [SMALL_STATE(4908)] = 270722, - [SMALL_STATE(4909)] = 270742, - [SMALL_STATE(4910)] = 270768, - [SMALL_STATE(4911)] = 270788, - [SMALL_STATE(4912)] = 270814, - [SMALL_STATE(4913)] = 270840, - [SMALL_STATE(4914)] = 270860, - [SMALL_STATE(4915)] = 270884, - [SMALL_STATE(4916)] = 270904, - [SMALL_STATE(4917)] = 270924, - [SMALL_STATE(4918)] = 270944, - [SMALL_STATE(4919)] = 270964, - [SMALL_STATE(4920)] = 270984, - [SMALL_STATE(4921)] = 271010, - [SMALL_STATE(4922)] = 271030, - [SMALL_STATE(4923)] = 271056, - [SMALL_STATE(4924)] = 271082, - [SMALL_STATE(4925)] = 271102, - [SMALL_STATE(4926)] = 271122, - [SMALL_STATE(4927)] = 271148, - [SMALL_STATE(4928)] = 271168, - [SMALL_STATE(4929)] = 271188, - [SMALL_STATE(4930)] = 271210, - [SMALL_STATE(4931)] = 271236, - [SMALL_STATE(4932)] = 271262, - [SMALL_STATE(4933)] = 271288, - [SMALL_STATE(4934)] = 271308, - [SMALL_STATE(4935)] = 271328, - [SMALL_STATE(4936)] = 271348, - [SMALL_STATE(4937)] = 271374, - [SMALL_STATE(4938)] = 271400, - [SMALL_STATE(4939)] = 271420, - [SMALL_STATE(4940)] = 271440, - [SMALL_STATE(4941)] = 271460, - [SMALL_STATE(4942)] = 271480, - [SMALL_STATE(4943)] = 271506, - [SMALL_STATE(4944)] = 271526, - [SMALL_STATE(4945)] = 271546, - [SMALL_STATE(4946)] = 271566, - [SMALL_STATE(4947)] = 271586, - [SMALL_STATE(4948)] = 271606, - [SMALL_STATE(4949)] = 271632, - [SMALL_STATE(4950)] = 271658, - [SMALL_STATE(4951)] = 271684, - [SMALL_STATE(4952)] = 271710, - [SMALL_STATE(4953)] = 271732, - [SMALL_STATE(4954)] = 271758, - [SMALL_STATE(4955)] = 271784, - [SMALL_STATE(4956)] = 271810, - [SMALL_STATE(4957)] = 271836, - [SMALL_STATE(4958)] = 271862, - [SMALL_STATE(4959)] = 271882, - [SMALL_STATE(4960)] = 271902, - [SMALL_STATE(4961)] = 271922, - [SMALL_STATE(4962)] = 271948, - [SMALL_STATE(4963)] = 271968, - [SMALL_STATE(4964)] = 271988, - [SMALL_STATE(4965)] = 272008, - [SMALL_STATE(4966)] = 272034, - [SMALL_STATE(4967)] = 272060, - [SMALL_STATE(4968)] = 272086, - [SMALL_STATE(4969)] = 272106, - [SMALL_STATE(4970)] = 272126, - [SMALL_STATE(4971)] = 272146, - [SMALL_STATE(4972)] = 272172, - [SMALL_STATE(4973)] = 272192, - [SMALL_STATE(4974)] = 272218, - [SMALL_STATE(4975)] = 272244, - [SMALL_STATE(4976)] = 272270, - [SMALL_STATE(4977)] = 272296, - [SMALL_STATE(4978)] = 272322, - [SMALL_STATE(4979)] = 272342, - [SMALL_STATE(4980)] = 272362, - [SMALL_STATE(4981)] = 272382, - [SMALL_STATE(4982)] = 272402, - [SMALL_STATE(4983)] = 272422, - [SMALL_STATE(4984)] = 272448, - [SMALL_STATE(4985)] = 272468, - [SMALL_STATE(4986)] = 272488, - [SMALL_STATE(4987)] = 272508, - [SMALL_STATE(4988)] = 272528, - [SMALL_STATE(4989)] = 272554, - [SMALL_STATE(4990)] = 272580, - [SMALL_STATE(4991)] = 272606, - [SMALL_STATE(4992)] = 272630, - [SMALL_STATE(4993)] = 272656, - [SMALL_STATE(4994)] = 272676, - [SMALL_STATE(4995)] = 272696, - [SMALL_STATE(4996)] = 272716, - [SMALL_STATE(4997)] = 272742, - [SMALL_STATE(4998)] = 272766, - [SMALL_STATE(4999)] = 272786, - [SMALL_STATE(5000)] = 272812, - [SMALL_STATE(5001)] = 272838, - [SMALL_STATE(5002)] = 272858, - [SMALL_STATE(5003)] = 272882, - [SMALL_STATE(5004)] = 272908, - [SMALL_STATE(5005)] = 272928, - [SMALL_STATE(5006)] = 272952, - [SMALL_STATE(5007)] = 272978, - [SMALL_STATE(5008)] = 272998, - [SMALL_STATE(5009)] = 273024, - [SMALL_STATE(5010)] = 273050, - [SMALL_STATE(5011)] = 273076, - [SMALL_STATE(5012)] = 273096, - [SMALL_STATE(5013)] = 273122, - [SMALL_STATE(5014)] = 273142, - [SMALL_STATE(5015)] = 273162, - [SMALL_STATE(5016)] = 273188, - [SMALL_STATE(5017)] = 273208, - [SMALL_STATE(5018)] = 273234, - [SMALL_STATE(5019)] = 273254, - [SMALL_STATE(5020)] = 273280, - [SMALL_STATE(5021)] = 273306, - [SMALL_STATE(5022)] = 273326, - [SMALL_STATE(5023)] = 273352, - [SMALL_STATE(5024)] = 273378, - [SMALL_STATE(5025)] = 273398, - [SMALL_STATE(5026)] = 273424, - [SMALL_STATE(5027)] = 273444, - [SMALL_STATE(5028)] = 273464, - [SMALL_STATE(5029)] = 273490, - [SMALL_STATE(5030)] = 273510, - [SMALL_STATE(5031)] = 273530, - [SMALL_STATE(5032)] = 273556, - [SMALL_STATE(5033)] = 273580, - [SMALL_STATE(5034)] = 273606, - [SMALL_STATE(5035)] = 273630, - [SMALL_STATE(5036)] = 273656, - [SMALL_STATE(5037)] = 273676, - [SMALL_STATE(5038)] = 273702, - [SMALL_STATE(5039)] = 273728, - [SMALL_STATE(5040)] = 273750, - [SMALL_STATE(5041)] = 273776, - [SMALL_STATE(5042)] = 273802, - [SMALL_STATE(5043)] = 273824, - [SMALL_STATE(5044)] = 273844, - [SMALL_STATE(5045)] = 273870, - [SMALL_STATE(5046)] = 273896, - [SMALL_STATE(5047)] = 273922, - [SMALL_STATE(5048)] = 273942, - [SMALL_STATE(5049)] = 273968, - [SMALL_STATE(5050)] = 273988, - [SMALL_STATE(5051)] = 274014, - [SMALL_STATE(5052)] = 274036, - [SMALL_STATE(5053)] = 274062, - [SMALL_STATE(5054)] = 274084, - [SMALL_STATE(5055)] = 274110, - [SMALL_STATE(5056)] = 274136, - [SMALL_STATE(5057)] = 274158, - [SMALL_STATE(5058)] = 274184, - [SMALL_STATE(5059)] = 274208, - [SMALL_STATE(5060)] = 274234, - [SMALL_STATE(5061)] = 274254, - [SMALL_STATE(5062)] = 274274, - [SMALL_STATE(5063)] = 274300, - [SMALL_STATE(5064)] = 274326, - [SMALL_STATE(5065)] = 274352, - [SMALL_STATE(5066)] = 274378, - [SMALL_STATE(5067)] = 274404, - [SMALL_STATE(5068)] = 274430, - [SMALL_STATE(5069)] = 274450, - [SMALL_STATE(5070)] = 274476, - [SMALL_STATE(5071)] = 274502, - [SMALL_STATE(5072)] = 274528, - [SMALL_STATE(5073)] = 274554, - [SMALL_STATE(5074)] = 274580, - [SMALL_STATE(5075)] = 274606, - [SMALL_STATE(5076)] = 274632, - [SMALL_STATE(5077)] = 274658, - [SMALL_STATE(5078)] = 274682, - [SMALL_STATE(5079)] = 274708, - [SMALL_STATE(5080)] = 274734, - [SMALL_STATE(5081)] = 274760, - [SMALL_STATE(5082)] = 274786, - [SMALL_STATE(5083)] = 274812, - [SMALL_STATE(5084)] = 274838, - [SMALL_STATE(5085)] = 274864, - [SMALL_STATE(5086)] = 274890, - [SMALL_STATE(5087)] = 274916, - [SMALL_STATE(5088)] = 274942, - [SMALL_STATE(5089)] = 274968, - [SMALL_STATE(5090)] = 274989, - [SMALL_STATE(5091)] = 275012, - [SMALL_STATE(5092)] = 275031, - [SMALL_STATE(5093)] = 275050, - [SMALL_STATE(5094)] = 275073, - [SMALL_STATE(5095)] = 275096, - [SMALL_STATE(5096)] = 275115, - [SMALL_STATE(5097)] = 275138, - [SMALL_STATE(5098)] = 275159, - [SMALL_STATE(5099)] = 275182, - [SMALL_STATE(5100)] = 275205, - [SMALL_STATE(5101)] = 275224, - [SMALL_STATE(5102)] = 275247, - [SMALL_STATE(5103)] = 275270, - [SMALL_STATE(5104)] = 275293, - [SMALL_STATE(5105)] = 275316, - [SMALL_STATE(5106)] = 275339, - [SMALL_STATE(5107)] = 275362, - [SMALL_STATE(5108)] = 275383, - [SMALL_STATE(5109)] = 275406, - [SMALL_STATE(5110)] = 275427, - [SMALL_STATE(5111)] = 275450, - [SMALL_STATE(5112)] = 275473, - [SMALL_STATE(5113)] = 275496, - [SMALL_STATE(5114)] = 275519, - [SMALL_STATE(5115)] = 275542, - [SMALL_STATE(5116)] = 275565, - [SMALL_STATE(5117)] = 275588, - [SMALL_STATE(5118)] = 275611, - [SMALL_STATE(5119)] = 275634, - [SMALL_STATE(5120)] = 275653, - [SMALL_STATE(5121)] = 275676, - [SMALL_STATE(5122)] = 275699, - [SMALL_STATE(5123)] = 275722, - [SMALL_STATE(5124)] = 275745, - [SMALL_STATE(5125)] = 275768, - [SMALL_STATE(5126)] = 275791, - [SMALL_STATE(5127)] = 275814, - [SMALL_STATE(5128)] = 275837, - [SMALL_STATE(5129)] = 275860, - [SMALL_STATE(5130)] = 275879, - [SMALL_STATE(5131)] = 275902, - [SMALL_STATE(5132)] = 275925, - [SMALL_STATE(5133)] = 275948, - [SMALL_STATE(5134)] = 275971, - [SMALL_STATE(5135)] = 275992, - [SMALL_STATE(5136)] = 276015, - [SMALL_STATE(5137)] = 276038, - [SMALL_STATE(5138)] = 276061, - [SMALL_STATE(5139)] = 276084, - [SMALL_STATE(5140)] = 276107, - [SMALL_STATE(5141)] = 276130, - [SMALL_STATE(5142)] = 276151, - [SMALL_STATE(5143)] = 276174, - [SMALL_STATE(5144)] = 276197, - [SMALL_STATE(5145)] = 276220, - [SMALL_STATE(5146)] = 276243, - [SMALL_STATE(5147)] = 276266, - [SMALL_STATE(5148)] = 276289, - [SMALL_STATE(5149)] = 276312, - [SMALL_STATE(5150)] = 276333, - [SMALL_STATE(5151)] = 276356, - [SMALL_STATE(5152)] = 276375, - [SMALL_STATE(5153)] = 276396, - [SMALL_STATE(5154)] = 276419, - [SMALL_STATE(5155)] = 276442, - [SMALL_STATE(5156)] = 276461, - [SMALL_STATE(5157)] = 276482, - [SMALL_STATE(5158)] = 276505, - [SMALL_STATE(5159)] = 276528, - [SMALL_STATE(5160)] = 276551, - [SMALL_STATE(5161)] = 276574, - [SMALL_STATE(5162)] = 276597, - [SMALL_STATE(5163)] = 276620, - [SMALL_STATE(5164)] = 276643, - [SMALL_STATE(5165)] = 276666, - [SMALL_STATE(5166)] = 276689, - [SMALL_STATE(5167)] = 276712, - [SMALL_STATE(5168)] = 276735, - [SMALL_STATE(5169)] = 276756, - [SMALL_STATE(5170)] = 276779, - [SMALL_STATE(5171)] = 276802, - [SMALL_STATE(5172)] = 276825, - [SMALL_STATE(5173)] = 276848, - [SMALL_STATE(5174)] = 276871, - [SMALL_STATE(5175)] = 276894, - [SMALL_STATE(5176)] = 276917, - [SMALL_STATE(5177)] = 276940, - [SMALL_STATE(5178)] = 276963, - [SMALL_STATE(5179)] = 276986, - [SMALL_STATE(5180)] = 277009, - [SMALL_STATE(5181)] = 277032, - [SMALL_STATE(5182)] = 277055, - [SMALL_STATE(5183)] = 277078, - [SMALL_STATE(5184)] = 277097, - [SMALL_STATE(5185)] = 277120, - [SMALL_STATE(5186)] = 277143, - [SMALL_STATE(5187)] = 277166, - [SMALL_STATE(5188)] = 277185, - [SMALL_STATE(5189)] = 277208, - [SMALL_STATE(5190)] = 277227, - [SMALL_STATE(5191)] = 277250, - [SMALL_STATE(5192)] = 277273, - [SMALL_STATE(5193)] = 277292, - [SMALL_STATE(5194)] = 277315, - [SMALL_STATE(5195)] = 277338, - [SMALL_STATE(5196)] = 277361, - [SMALL_STATE(5197)] = 277382, - [SMALL_STATE(5198)] = 277405, - [SMALL_STATE(5199)] = 277428, - [SMALL_STATE(5200)] = 277449, - [SMALL_STATE(5201)] = 277472, - [SMALL_STATE(5202)] = 277495, - [SMALL_STATE(5203)] = 277518, - [SMALL_STATE(5204)] = 277539, - [SMALL_STATE(5205)] = 277562, - [SMALL_STATE(5206)] = 277585, - [SMALL_STATE(5207)] = 277608, - [SMALL_STATE(5208)] = 277631, - [SMALL_STATE(5209)] = 277654, - [SMALL_STATE(5210)] = 277677, - [SMALL_STATE(5211)] = 277698, - [SMALL_STATE(5212)] = 277721, - [SMALL_STATE(5213)] = 277744, - [SMALL_STATE(5214)] = 277767, - [SMALL_STATE(5215)] = 277788, - [SMALL_STATE(5216)] = 277811, - [SMALL_STATE(5217)] = 277834, - [SMALL_STATE(5218)] = 277857, - [SMALL_STATE(5219)] = 277880, - [SMALL_STATE(5220)] = 277901, - [SMALL_STATE(5221)] = 277924, - [SMALL_STATE(5222)] = 277947, - [SMALL_STATE(5223)] = 277970, - [SMALL_STATE(5224)] = 277991, - [SMALL_STATE(5225)] = 278012, - [SMALL_STATE(5226)] = 278033, - [SMALL_STATE(5227)] = 278054, - [SMALL_STATE(5228)] = 278077, - [SMALL_STATE(5229)] = 278100, - [SMALL_STATE(5230)] = 278123, - [SMALL_STATE(5231)] = 278146, - [SMALL_STATE(5232)] = 278165, - [SMALL_STATE(5233)] = 278184, - [SMALL_STATE(5234)] = 278207, - [SMALL_STATE(5235)] = 278230, - [SMALL_STATE(5236)] = 278249, - [SMALL_STATE(5237)] = 278272, - [SMALL_STATE(5238)] = 278295, - [SMALL_STATE(5239)] = 278318, - [SMALL_STATE(5240)] = 278341, - [SMALL_STATE(5241)] = 278364, - [SMALL_STATE(5242)] = 278387, - [SMALL_STATE(5243)] = 278410, - [SMALL_STATE(5244)] = 278433, - [SMALL_STATE(5245)] = 278454, - [SMALL_STATE(5246)] = 278477, - [SMALL_STATE(5247)] = 278500, - [SMALL_STATE(5248)] = 278523, - [SMALL_STATE(5249)] = 278542, - [SMALL_STATE(5250)] = 278565, - [SMALL_STATE(5251)] = 278586, - [SMALL_STATE(5252)] = 278609, - [SMALL_STATE(5253)] = 278632, - [SMALL_STATE(5254)] = 278655, - [SMALL_STATE(5255)] = 278678, - [SMALL_STATE(5256)] = 278701, - [SMALL_STATE(5257)] = 278720, - [SMALL_STATE(5258)] = 278739, - [SMALL_STATE(5259)] = 278762, - [SMALL_STATE(5260)] = 278785, - [SMALL_STATE(5261)] = 278808, - [SMALL_STATE(5262)] = 278831, - [SMALL_STATE(5263)] = 278854, - [SMALL_STATE(5264)] = 278877, - [SMALL_STATE(5265)] = 278900, - [SMALL_STATE(5266)] = 278923, - [SMALL_STATE(5267)] = 278946, - [SMALL_STATE(5268)] = 278969, - [SMALL_STATE(5269)] = 278988, - [SMALL_STATE(5270)] = 279011, - [SMALL_STATE(5271)] = 279034, - [SMALL_STATE(5272)] = 279057, - [SMALL_STATE(5273)] = 279080, - [SMALL_STATE(5274)] = 279103, - [SMALL_STATE(5275)] = 279126, - [SMALL_STATE(5276)] = 279149, - [SMALL_STATE(5277)] = 279172, - [SMALL_STATE(5278)] = 279195, - [SMALL_STATE(5279)] = 279216, - [SMALL_STATE(5280)] = 279239, - [SMALL_STATE(5281)] = 279262, - [SMALL_STATE(5282)] = 279285, - [SMALL_STATE(5283)] = 279308, - [SMALL_STATE(5284)] = 279331, - [SMALL_STATE(5285)] = 279350, - [SMALL_STATE(5286)] = 279373, - [SMALL_STATE(5287)] = 279396, - [SMALL_STATE(5288)] = 279417, - [SMALL_STATE(5289)] = 279436, - [SMALL_STATE(5290)] = 279459, - [SMALL_STATE(5291)] = 279482, - [SMALL_STATE(5292)] = 279503, - [SMALL_STATE(5293)] = 279522, - [SMALL_STATE(5294)] = 279545, - [SMALL_STATE(5295)] = 279568, - [SMALL_STATE(5296)] = 279591, - [SMALL_STATE(5297)] = 279614, - [SMALL_STATE(5298)] = 279637, - [SMALL_STATE(5299)] = 279660, - [SMALL_STATE(5300)] = 279683, - [SMALL_STATE(5301)] = 279706, - [SMALL_STATE(5302)] = 279729, - [SMALL_STATE(5303)] = 279752, - [SMALL_STATE(5304)] = 279773, - [SMALL_STATE(5305)] = 279796, - [SMALL_STATE(5306)] = 279819, - [SMALL_STATE(5307)] = 279838, - [SMALL_STATE(5308)] = 279861, - [SMALL_STATE(5309)] = 279884, - [SMALL_STATE(5310)] = 279907, - [SMALL_STATE(5311)] = 279930, - [SMALL_STATE(5312)] = 279953, - [SMALL_STATE(5313)] = 279976, - [SMALL_STATE(5314)] = 279999, - [SMALL_STATE(5315)] = 280022, - [SMALL_STATE(5316)] = 280045, - [SMALL_STATE(5317)] = 280068, - [SMALL_STATE(5318)] = 280091, - [SMALL_STATE(5319)] = 280114, - [SMALL_STATE(5320)] = 280137, - [SMALL_STATE(5321)] = 280160, - [SMALL_STATE(5322)] = 280183, - [SMALL_STATE(5323)] = 280206, - [SMALL_STATE(5324)] = 280229, - [SMALL_STATE(5325)] = 280252, - [SMALL_STATE(5326)] = 280275, - [SMALL_STATE(5327)] = 280298, - [SMALL_STATE(5328)] = 280321, - [SMALL_STATE(5329)] = 280344, - [SMALL_STATE(5330)] = 280365, - [SMALL_STATE(5331)] = 280388, - [SMALL_STATE(5332)] = 280411, - [SMALL_STATE(5333)] = 280434, - [SMALL_STATE(5334)] = 280457, - [SMALL_STATE(5335)] = 280480, - [SMALL_STATE(5336)] = 280499, - [SMALL_STATE(5337)] = 280522, - [SMALL_STATE(5338)] = 280545, - [SMALL_STATE(5339)] = 280568, - [SMALL_STATE(5340)] = 280591, - [SMALL_STATE(5341)] = 280614, - [SMALL_STATE(5342)] = 280635, - [SMALL_STATE(5343)] = 280658, - [SMALL_STATE(5344)] = 280679, - [SMALL_STATE(5345)] = 280702, - [SMALL_STATE(5346)] = 280725, - [SMALL_STATE(5347)] = 280746, - [SMALL_STATE(5348)] = 280769, - [SMALL_STATE(5349)] = 280792, - [SMALL_STATE(5350)] = 280815, - [SMALL_STATE(5351)] = 280838, - [SMALL_STATE(5352)] = 280861, - [SMALL_STATE(5353)] = 280884, - [SMALL_STATE(5354)] = 280905, - [SMALL_STATE(5355)] = 280928, - [SMALL_STATE(5356)] = 280951, - [SMALL_STATE(5357)] = 280974, - [SMALL_STATE(5358)] = 280997, - [SMALL_STATE(5359)] = 281018, - [SMALL_STATE(5360)] = 281041, - [SMALL_STATE(5361)] = 281064, - [SMALL_STATE(5362)] = 281083, - [SMALL_STATE(5363)] = 281106, - [SMALL_STATE(5364)] = 281129, - [SMALL_STATE(5365)] = 281152, - [SMALL_STATE(5366)] = 281175, - [SMALL_STATE(5367)] = 281198, - [SMALL_STATE(5368)] = 281219, - [SMALL_STATE(5369)] = 281238, - [SMALL_STATE(5370)] = 281261, - [SMALL_STATE(5371)] = 281284, - [SMALL_STATE(5372)] = 281307, - [SMALL_STATE(5373)] = 281330, - [SMALL_STATE(5374)] = 281353, - [SMALL_STATE(5375)] = 281373, - [SMALL_STATE(5376)] = 281393, - [SMALL_STATE(5377)] = 281413, - [SMALL_STATE(5378)] = 281433, - [SMALL_STATE(5379)] = 281453, - [SMALL_STATE(5380)] = 281473, - [SMALL_STATE(5381)] = 281493, - [SMALL_STATE(5382)] = 281513, - [SMALL_STATE(5383)] = 281531, - [SMALL_STATE(5384)] = 281551, - [SMALL_STATE(5385)] = 281571, - [SMALL_STATE(5386)] = 281591, - [SMALL_STATE(5387)] = 281611, - [SMALL_STATE(5388)] = 281631, - [SMALL_STATE(5389)] = 281649, - [SMALL_STATE(5390)] = 281669, - [SMALL_STATE(5391)] = 281689, - [SMALL_STATE(5392)] = 281709, - [SMALL_STATE(5393)] = 281729, - [SMALL_STATE(5394)] = 281749, - [SMALL_STATE(5395)] = 281769, - [SMALL_STATE(5396)] = 281789, - [SMALL_STATE(5397)] = 281809, - [SMALL_STATE(5398)] = 281829, - [SMALL_STATE(5399)] = 281849, - [SMALL_STATE(5400)] = 281869, - [SMALL_STATE(5401)] = 281889, - [SMALL_STATE(5402)] = 281909, - [SMALL_STATE(5403)] = 281929, - [SMALL_STATE(5404)] = 281949, - [SMALL_STATE(5405)] = 281969, - [SMALL_STATE(5406)] = 281987, - [SMALL_STATE(5407)] = 282007, - [SMALL_STATE(5408)] = 282027, - [SMALL_STATE(5409)] = 282047, - [SMALL_STATE(5410)] = 282067, - [SMALL_STATE(5411)] = 282087, - [SMALL_STATE(5412)] = 282107, - [SMALL_STATE(5413)] = 282127, - [SMALL_STATE(5414)] = 282145, - [SMALL_STATE(5415)] = 282165, - [SMALL_STATE(5416)] = 282185, - [SMALL_STATE(5417)] = 282205, - [SMALL_STATE(5418)] = 282225, - [SMALL_STATE(5419)] = 282245, - [SMALL_STATE(5420)] = 282265, - [SMALL_STATE(5421)] = 282285, - [SMALL_STATE(5422)] = 282305, - [SMALL_STATE(5423)] = 282325, - [SMALL_STATE(5424)] = 282345, - [SMALL_STATE(5425)] = 282365, - [SMALL_STATE(5426)] = 282385, - [SMALL_STATE(5427)] = 282405, - [SMALL_STATE(5428)] = 282425, - [SMALL_STATE(5429)] = 282445, - [SMALL_STATE(5430)] = 282465, - [SMALL_STATE(5431)] = 282485, - [SMALL_STATE(5432)] = 282505, - [SMALL_STATE(5433)] = 282525, - [SMALL_STATE(5434)] = 282545, - [SMALL_STATE(5435)] = 282563, - [SMALL_STATE(5436)] = 282583, - [SMALL_STATE(5437)] = 282603, - [SMALL_STATE(5438)] = 282623, - [SMALL_STATE(5439)] = 282643, - [SMALL_STATE(5440)] = 282663, - [SMALL_STATE(5441)] = 282683, - [SMALL_STATE(5442)] = 282703, - [SMALL_STATE(5443)] = 282723, - [SMALL_STATE(5444)] = 282743, - [SMALL_STATE(5445)] = 282763, - [SMALL_STATE(5446)] = 282783, - [SMALL_STATE(5447)] = 282803, - [SMALL_STATE(5448)] = 282823, - [SMALL_STATE(5449)] = 282843, - [SMALL_STATE(5450)] = 282863, - [SMALL_STATE(5451)] = 282883, - [SMALL_STATE(5452)] = 282903, - [SMALL_STATE(5453)] = 282923, - [SMALL_STATE(5454)] = 282943, - [SMALL_STATE(5455)] = 282963, - [SMALL_STATE(5456)] = 282981, - [SMALL_STATE(5457)] = 283001, - [SMALL_STATE(5458)] = 283021, - [SMALL_STATE(5459)] = 283041, - [SMALL_STATE(5460)] = 283061, - [SMALL_STATE(5461)] = 283081, - [SMALL_STATE(5462)] = 283099, - [SMALL_STATE(5463)] = 283119, - [SMALL_STATE(5464)] = 283137, - [SMALL_STATE(5465)] = 283157, - [SMALL_STATE(5466)] = 283175, - [SMALL_STATE(5467)] = 283193, - [SMALL_STATE(5468)] = 283213, - [SMALL_STATE(5469)] = 283231, - [SMALL_STATE(5470)] = 283251, - [SMALL_STATE(5471)] = 283269, - [SMALL_STATE(5472)] = 283289, - [SMALL_STATE(5473)] = 283309, - [SMALL_STATE(5474)] = 283329, - [SMALL_STATE(5475)] = 283349, - [SMALL_STATE(5476)] = 283369, - [SMALL_STATE(5477)] = 283389, - [SMALL_STATE(5478)] = 283409, - [SMALL_STATE(5479)] = 283429, - [SMALL_STATE(5480)] = 283449, - [SMALL_STATE(5481)] = 283469, - [SMALL_STATE(5482)] = 283489, - [SMALL_STATE(5483)] = 283509, - [SMALL_STATE(5484)] = 283527, - [SMALL_STATE(5485)] = 283547, - [SMALL_STATE(5486)] = 283567, - [SMALL_STATE(5487)] = 283587, - [SMALL_STATE(5488)] = 283607, - [SMALL_STATE(5489)] = 283627, - [SMALL_STATE(5490)] = 283647, - [SMALL_STATE(5491)] = 283665, - [SMALL_STATE(5492)] = 283685, - [SMALL_STATE(5493)] = 283705, - [SMALL_STATE(5494)] = 283725, - [SMALL_STATE(5495)] = 283743, - [SMALL_STATE(5496)] = 283763, - [SMALL_STATE(5497)] = 283783, - [SMALL_STATE(5498)] = 283803, - [SMALL_STATE(5499)] = 283821, - [SMALL_STATE(5500)] = 283841, - [SMALL_STATE(5501)] = 283861, - [SMALL_STATE(5502)] = 283881, - [SMALL_STATE(5503)] = 283901, - [SMALL_STATE(5504)] = 283921, - [SMALL_STATE(5505)] = 283941, - [SMALL_STATE(5506)] = 283961, - [SMALL_STATE(5507)] = 283981, - [SMALL_STATE(5508)] = 284001, - [SMALL_STATE(5509)] = 284021, - [SMALL_STATE(5510)] = 284041, - [SMALL_STATE(5511)] = 284061, - [SMALL_STATE(5512)] = 284081, - [SMALL_STATE(5513)] = 284101, - [SMALL_STATE(5514)] = 284121, - [SMALL_STATE(5515)] = 284141, - [SMALL_STATE(5516)] = 284161, - [SMALL_STATE(5517)] = 284179, - [SMALL_STATE(5518)] = 284199, - [SMALL_STATE(5519)] = 284219, - [SMALL_STATE(5520)] = 284239, - [SMALL_STATE(5521)] = 284259, - [SMALL_STATE(5522)] = 284279, - [SMALL_STATE(5523)] = 284297, - [SMALL_STATE(5524)] = 284317, - [SMALL_STATE(5525)] = 284337, - [SMALL_STATE(5526)] = 284355, - [SMALL_STATE(5527)] = 284375, - [SMALL_STATE(5528)] = 284395, - [SMALL_STATE(5529)] = 284415, - [SMALL_STATE(5530)] = 284435, - [SMALL_STATE(5531)] = 284455, - [SMALL_STATE(5532)] = 284475, - [SMALL_STATE(5533)] = 284495, - [SMALL_STATE(5534)] = 284515, - [SMALL_STATE(5535)] = 284535, - [SMALL_STATE(5536)] = 284555, - [SMALL_STATE(5537)] = 284575, - [SMALL_STATE(5538)] = 284595, - [SMALL_STATE(5539)] = 284615, - [SMALL_STATE(5540)] = 284635, - [SMALL_STATE(5541)] = 284655, - [SMALL_STATE(5542)] = 284675, - [SMALL_STATE(5543)] = 284695, - [SMALL_STATE(5544)] = 284715, - [SMALL_STATE(5545)] = 284733, - [SMALL_STATE(5546)] = 284751, - [SMALL_STATE(5547)] = 284771, - [SMALL_STATE(5548)] = 284791, - [SMALL_STATE(5549)] = 284811, - [SMALL_STATE(5550)] = 284831, - [SMALL_STATE(5551)] = 284851, - [SMALL_STATE(5552)] = 284871, - [SMALL_STATE(5553)] = 284891, - [SMALL_STATE(5554)] = 284911, - [SMALL_STATE(5555)] = 284931, - [SMALL_STATE(5556)] = 284951, - [SMALL_STATE(5557)] = 284971, - [SMALL_STATE(5558)] = 284991, - [SMALL_STATE(5559)] = 285011, - [SMALL_STATE(5560)] = 285029, - [SMALL_STATE(5561)] = 285049, - [SMALL_STATE(5562)] = 285069, - [SMALL_STATE(5563)] = 285089, - [SMALL_STATE(5564)] = 285107, - [SMALL_STATE(5565)] = 285127, - [SMALL_STATE(5566)] = 285147, - [SMALL_STATE(5567)] = 285167, - [SMALL_STATE(5568)] = 285187, - [SMALL_STATE(5569)] = 285207, - [SMALL_STATE(5570)] = 285227, - [SMALL_STATE(5571)] = 285247, - [SMALL_STATE(5572)] = 285267, - [SMALL_STATE(5573)] = 285287, - [SMALL_STATE(5574)] = 285307, - [SMALL_STATE(5575)] = 285327, - [SMALL_STATE(5576)] = 285345, - [SMALL_STATE(5577)] = 285365, - [SMALL_STATE(5578)] = 285385, - [SMALL_STATE(5579)] = 285405, - [SMALL_STATE(5580)] = 285423, - [SMALL_STATE(5581)] = 285443, - [SMALL_STATE(5582)] = 285461, - [SMALL_STATE(5583)] = 285481, - [SMALL_STATE(5584)] = 285501, - [SMALL_STATE(5585)] = 285521, - [SMALL_STATE(5586)] = 285541, - [SMALL_STATE(5587)] = 285561, - [SMALL_STATE(5588)] = 285581, - [SMALL_STATE(5589)] = 285601, - [SMALL_STATE(5590)] = 285619, - [SMALL_STATE(5591)] = 285639, - [SMALL_STATE(5592)] = 285659, - [SMALL_STATE(5593)] = 285679, - [SMALL_STATE(5594)] = 285699, - [SMALL_STATE(5595)] = 285719, - [SMALL_STATE(5596)] = 285739, - [SMALL_STATE(5597)] = 285759, - [SMALL_STATE(5598)] = 285777, - [SMALL_STATE(5599)] = 285797, - [SMALL_STATE(5600)] = 285817, - [SMALL_STATE(5601)] = 285837, - [SMALL_STATE(5602)] = 285857, - [SMALL_STATE(5603)] = 285877, - [SMALL_STATE(5604)] = 285897, - [SMALL_STATE(5605)] = 285917, - [SMALL_STATE(5606)] = 285937, - [SMALL_STATE(5607)] = 285957, - [SMALL_STATE(5608)] = 285977, - [SMALL_STATE(5609)] = 285997, - [SMALL_STATE(5610)] = 286017, - [SMALL_STATE(5611)] = 286037, - [SMALL_STATE(5612)] = 286057, - [SMALL_STATE(5613)] = 286077, - [SMALL_STATE(5614)] = 286097, - [SMALL_STATE(5615)] = 286117, - [SMALL_STATE(5616)] = 286137, - [SMALL_STATE(5617)] = 286155, - [SMALL_STATE(5618)] = 286175, - [SMALL_STATE(5619)] = 286195, - [SMALL_STATE(5620)] = 286215, - [SMALL_STATE(5621)] = 286235, - [SMALL_STATE(5622)] = 286253, - [SMALL_STATE(5623)] = 286273, - [SMALL_STATE(5624)] = 286291, - [SMALL_STATE(5625)] = 286311, - [SMALL_STATE(5626)] = 286331, - [SMALL_STATE(5627)] = 286351, - [SMALL_STATE(5628)] = 286371, - [SMALL_STATE(5629)] = 286391, - [SMALL_STATE(5630)] = 286411, - [SMALL_STATE(5631)] = 286431, - [SMALL_STATE(5632)] = 286451, - [SMALL_STATE(5633)] = 286471, - [SMALL_STATE(5634)] = 286491, - [SMALL_STATE(5635)] = 286511, - [SMALL_STATE(5636)] = 286531, - [SMALL_STATE(5637)] = 286551, - [SMALL_STATE(5638)] = 286569, - [SMALL_STATE(5639)] = 286589, - [SMALL_STATE(5640)] = 286609, - [SMALL_STATE(5641)] = 286629, - [SMALL_STATE(5642)] = 286649, - [SMALL_STATE(5643)] = 286669, - [SMALL_STATE(5644)] = 286689, - [SMALL_STATE(5645)] = 286709, - [SMALL_STATE(5646)] = 286729, - [SMALL_STATE(5647)] = 286749, - [SMALL_STATE(5648)] = 286769, - [SMALL_STATE(5649)] = 286789, - [SMALL_STATE(5650)] = 286809, - [SMALL_STATE(5651)] = 286829, - [SMALL_STATE(5652)] = 286849, - [SMALL_STATE(5653)] = 286869, - [SMALL_STATE(5654)] = 286889, - [SMALL_STATE(5655)] = 286909, - [SMALL_STATE(5656)] = 286929, - [SMALL_STATE(5657)] = 286949, - [SMALL_STATE(5658)] = 286969, - [SMALL_STATE(5659)] = 286989, - [SMALL_STATE(5660)] = 287009, - [SMALL_STATE(5661)] = 287029, - [SMALL_STATE(5662)] = 287049, - [SMALL_STATE(5663)] = 287069, - [SMALL_STATE(5664)] = 287089, - [SMALL_STATE(5665)] = 287109, - [SMALL_STATE(5666)] = 287129, - [SMALL_STATE(5667)] = 287149, - [SMALL_STATE(5668)] = 287169, - [SMALL_STATE(5669)] = 287189, - [SMALL_STATE(5670)] = 287209, - [SMALL_STATE(5671)] = 287229, - [SMALL_STATE(5672)] = 287249, - [SMALL_STATE(5673)] = 287267, - [SMALL_STATE(5674)] = 287287, - [SMALL_STATE(5675)] = 287307, - [SMALL_STATE(5676)] = 287327, - [SMALL_STATE(5677)] = 287347, - [SMALL_STATE(5678)] = 287367, - [SMALL_STATE(5679)] = 287385, - [SMALL_STATE(5680)] = 287403, - [SMALL_STATE(5681)] = 287423, - [SMALL_STATE(5682)] = 287443, - [SMALL_STATE(5683)] = 287461, - [SMALL_STATE(5684)] = 287481, - [SMALL_STATE(5685)] = 287501, - [SMALL_STATE(5686)] = 287521, - [SMALL_STATE(5687)] = 287541, - [SMALL_STATE(5688)] = 287561, - [SMALL_STATE(5689)] = 287581, - [SMALL_STATE(5690)] = 287601, - [SMALL_STATE(5691)] = 287621, - [SMALL_STATE(5692)] = 287639, - [SMALL_STATE(5693)] = 287659, - [SMALL_STATE(5694)] = 287679, - [SMALL_STATE(5695)] = 287699, - [SMALL_STATE(5696)] = 287719, - [SMALL_STATE(5697)] = 287739, - [SMALL_STATE(5698)] = 287759, - [SMALL_STATE(5699)] = 287779, - [SMALL_STATE(5700)] = 287799, - [SMALL_STATE(5701)] = 287819, - [SMALL_STATE(5702)] = 287839, - [SMALL_STATE(5703)] = 287859, - [SMALL_STATE(5704)] = 287879, - [SMALL_STATE(5705)] = 287899, - [SMALL_STATE(5706)] = 287919, - [SMALL_STATE(5707)] = 287939, - [SMALL_STATE(5708)] = 287959, - [SMALL_STATE(5709)] = 287979, - [SMALL_STATE(5710)] = 287999, - [SMALL_STATE(5711)] = 288019, - [SMALL_STATE(5712)] = 288039, - [SMALL_STATE(5713)] = 288059, - [SMALL_STATE(5714)] = 288079, - [SMALL_STATE(5715)] = 288099, - [SMALL_STATE(5716)] = 288119, - [SMALL_STATE(5717)] = 288139, - [SMALL_STATE(5718)] = 288159, - [SMALL_STATE(5719)] = 288179, - [SMALL_STATE(5720)] = 288199, - [SMALL_STATE(5721)] = 288219, - [SMALL_STATE(5722)] = 288239, - [SMALL_STATE(5723)] = 288259, - [SMALL_STATE(5724)] = 288279, - [SMALL_STATE(5725)] = 288299, - [SMALL_STATE(5726)] = 288319, - [SMALL_STATE(5727)] = 288339, - [SMALL_STATE(5728)] = 288359, - [SMALL_STATE(5729)] = 288379, - [SMALL_STATE(5730)] = 288399, - [SMALL_STATE(5731)] = 288417, - [SMALL_STATE(5732)] = 288437, - [SMALL_STATE(5733)] = 288457, - [SMALL_STATE(5734)] = 288475, - [SMALL_STATE(5735)] = 288495, - [SMALL_STATE(5736)] = 288515, - [SMALL_STATE(5737)] = 288535, - [SMALL_STATE(5738)] = 288555, - [SMALL_STATE(5739)] = 288575, - [SMALL_STATE(5740)] = 288595, - [SMALL_STATE(5741)] = 288615, - [SMALL_STATE(5742)] = 288635, - [SMALL_STATE(5743)] = 288655, - [SMALL_STATE(5744)] = 288675, - [SMALL_STATE(5745)] = 288695, - [SMALL_STATE(5746)] = 288715, - [SMALL_STATE(5747)] = 288735, - [SMALL_STATE(5748)] = 288755, - [SMALL_STATE(5749)] = 288775, - [SMALL_STATE(5750)] = 288795, - [SMALL_STATE(5751)] = 288815, - [SMALL_STATE(5752)] = 288835, - [SMALL_STATE(5753)] = 288855, - [SMALL_STATE(5754)] = 288875, - [SMALL_STATE(5755)] = 288895, - [SMALL_STATE(5756)] = 288915, - [SMALL_STATE(5757)] = 288935, - [SMALL_STATE(5758)] = 288955, - [SMALL_STATE(5759)] = 288975, - [SMALL_STATE(5760)] = 288995, - [SMALL_STATE(5761)] = 289015, - [SMALL_STATE(5762)] = 289035, - [SMALL_STATE(5763)] = 289055, - [SMALL_STATE(5764)] = 289075, - [SMALL_STATE(5765)] = 289095, - [SMALL_STATE(5766)] = 289115, - [SMALL_STATE(5767)] = 289133, - [SMALL_STATE(5768)] = 289153, - [SMALL_STATE(5769)] = 289173, - [SMALL_STATE(5770)] = 289193, - [SMALL_STATE(5771)] = 289211, - [SMALL_STATE(5772)] = 289231, - [SMALL_STATE(5773)] = 289251, - [SMALL_STATE(5774)] = 289271, - [SMALL_STATE(5775)] = 289291, - [SMALL_STATE(5776)] = 289311, - [SMALL_STATE(5777)] = 289331, - [SMALL_STATE(5778)] = 289351, - [SMALL_STATE(5779)] = 289371, - [SMALL_STATE(5780)] = 289389, - [SMALL_STATE(5781)] = 289407, - [SMALL_STATE(5782)] = 289427, - [SMALL_STATE(5783)] = 289447, - [SMALL_STATE(5784)] = 289467, - [SMALL_STATE(5785)] = 289487, - [SMALL_STATE(5786)] = 289507, - [SMALL_STATE(5787)] = 289527, - [SMALL_STATE(5788)] = 289547, - [SMALL_STATE(5789)] = 289567, - [SMALL_STATE(5790)] = 289587, - [SMALL_STATE(5791)] = 289605, - [SMALL_STATE(5792)] = 289625, - [SMALL_STATE(5793)] = 289645, - [SMALL_STATE(5794)] = 289665, - [SMALL_STATE(5795)] = 289685, - [SMALL_STATE(5796)] = 289705, - [SMALL_STATE(5797)] = 289725, - [SMALL_STATE(5798)] = 289745, - [SMALL_STATE(5799)] = 289765, - [SMALL_STATE(5800)] = 289785, - [SMALL_STATE(5801)] = 289805, - [SMALL_STATE(5802)] = 289825, - [SMALL_STATE(5803)] = 289845, - [SMALL_STATE(5804)] = 289865, - [SMALL_STATE(5805)] = 289885, - [SMALL_STATE(5806)] = 289905, - [SMALL_STATE(5807)] = 289925, - [SMALL_STATE(5808)] = 289945, - [SMALL_STATE(5809)] = 289965, - [SMALL_STATE(5810)] = 289985, - [SMALL_STATE(5811)] = 290005, - [SMALL_STATE(5812)] = 290025, - [SMALL_STATE(5813)] = 290045, - [SMALL_STATE(5814)] = 290065, - [SMALL_STATE(5815)] = 290085, - [SMALL_STATE(5816)] = 290105, - [SMALL_STATE(5817)] = 290125, - [SMALL_STATE(5818)] = 290145, - [SMALL_STATE(5819)] = 290165, - [SMALL_STATE(5820)] = 290185, - [SMALL_STATE(5821)] = 290205, - [SMALL_STATE(5822)] = 290225, - [SMALL_STATE(5823)] = 290245, - [SMALL_STATE(5824)] = 290265, - [SMALL_STATE(5825)] = 290285, - [SMALL_STATE(5826)] = 290305, - [SMALL_STATE(5827)] = 290325, - [SMALL_STATE(5828)] = 290343, - [SMALL_STATE(5829)] = 290363, - [SMALL_STATE(5830)] = 290383, - [SMALL_STATE(5831)] = 290403, - [SMALL_STATE(5832)] = 290423, - [SMALL_STATE(5833)] = 290443, - [SMALL_STATE(5834)] = 290463, - [SMALL_STATE(5835)] = 290483, - [SMALL_STATE(5836)] = 290503, - [SMALL_STATE(5837)] = 290523, - [SMALL_STATE(5838)] = 290543, - [SMALL_STATE(5839)] = 290563, - [SMALL_STATE(5840)] = 290583, - [SMALL_STATE(5841)] = 290603, - [SMALL_STATE(5842)] = 290623, - [SMALL_STATE(5843)] = 290641, - [SMALL_STATE(5844)] = 290661, - [SMALL_STATE(5845)] = 290681, - [SMALL_STATE(5846)] = 290701, - [SMALL_STATE(5847)] = 290721, - [SMALL_STATE(5848)] = 290741, - [SMALL_STATE(5849)] = 290761, - [SMALL_STATE(5850)] = 290781, - [SMALL_STATE(5851)] = 290801, - [SMALL_STATE(5852)] = 290821, - [SMALL_STATE(5853)] = 290841, - [SMALL_STATE(5854)] = 290861, - [SMALL_STATE(5855)] = 290881, - [SMALL_STATE(5856)] = 290901, - [SMALL_STATE(5857)] = 290919, - [SMALL_STATE(5858)] = 290937, - [SMALL_STATE(5859)] = 290957, - [SMALL_STATE(5860)] = 290977, - [SMALL_STATE(5861)] = 290997, - [SMALL_STATE(5862)] = 291017, - [SMALL_STATE(5863)] = 291037, - [SMALL_STATE(5864)] = 291057, - [SMALL_STATE(5865)] = 291077, - [SMALL_STATE(5866)] = 291097, - [SMALL_STATE(5867)] = 291117, - [SMALL_STATE(5868)] = 291137, - [SMALL_STATE(5869)] = 291157, - [SMALL_STATE(5870)] = 291177, - [SMALL_STATE(5871)] = 291197, - [SMALL_STATE(5872)] = 291217, - [SMALL_STATE(5873)] = 291237, - [SMALL_STATE(5874)] = 291257, - [SMALL_STATE(5875)] = 291277, - [SMALL_STATE(5876)] = 291297, - [SMALL_STATE(5877)] = 291317, - [SMALL_STATE(5878)] = 291337, - [SMALL_STATE(5879)] = 291357, - [SMALL_STATE(5880)] = 291377, - [SMALL_STATE(5881)] = 291397, - [SMALL_STATE(5882)] = 291417, - [SMALL_STATE(5883)] = 291437, - [SMALL_STATE(5884)] = 291457, - [SMALL_STATE(5885)] = 291477, - [SMALL_STATE(5886)] = 291497, - [SMALL_STATE(5887)] = 291517, - [SMALL_STATE(5888)] = 291537, - [SMALL_STATE(5889)] = 291557, - [SMALL_STATE(5890)] = 291577, - [SMALL_STATE(5891)] = 291597, - [SMALL_STATE(5892)] = 291617, - [SMALL_STATE(5893)] = 291637, - [SMALL_STATE(5894)] = 291655, - [SMALL_STATE(5895)] = 291675, - [SMALL_STATE(5896)] = 291695, - [SMALL_STATE(5897)] = 291715, - [SMALL_STATE(5898)] = 291735, - [SMALL_STATE(5899)] = 291755, - [SMALL_STATE(5900)] = 291773, - [SMALL_STATE(5901)] = 291793, - [SMALL_STATE(5902)] = 291813, - [SMALL_STATE(5903)] = 291833, - [SMALL_STATE(5904)] = 291853, - [SMALL_STATE(5905)] = 291873, - [SMALL_STATE(5906)] = 291891, - [SMALL_STATE(5907)] = 291911, - [SMALL_STATE(5908)] = 291931, - [SMALL_STATE(5909)] = 291951, - [SMALL_STATE(5910)] = 291971, - [SMALL_STATE(5911)] = 291991, - [SMALL_STATE(5912)] = 292011, - [SMALL_STATE(5913)] = 292031, - [SMALL_STATE(5914)] = 292051, - [SMALL_STATE(5915)] = 292071, - [SMALL_STATE(5916)] = 292091, - [SMALL_STATE(5917)] = 292111, - [SMALL_STATE(5918)] = 292131, - [SMALL_STATE(5919)] = 292151, - [SMALL_STATE(5920)] = 292171, - [SMALL_STATE(5921)] = 292191, - [SMALL_STATE(5922)] = 292211, - [SMALL_STATE(5923)] = 292231, - [SMALL_STATE(5924)] = 292251, - [SMALL_STATE(5925)] = 292271, - [SMALL_STATE(5926)] = 292291, - [SMALL_STATE(5927)] = 292311, - [SMALL_STATE(5928)] = 292331, - [SMALL_STATE(5929)] = 292351, - [SMALL_STATE(5930)] = 292371, - [SMALL_STATE(5931)] = 292391, - [SMALL_STATE(5932)] = 292411, - [SMALL_STATE(5933)] = 292431, - [SMALL_STATE(5934)] = 292451, - [SMALL_STATE(5935)] = 292469, - [SMALL_STATE(5936)] = 292489, - [SMALL_STATE(5937)] = 292509, - [SMALL_STATE(5938)] = 292527, - [SMALL_STATE(5939)] = 292547, - [SMALL_STATE(5940)] = 292567, - [SMALL_STATE(5941)] = 292587, - [SMALL_STATE(5942)] = 292607, - [SMALL_STATE(5943)] = 292625, - [SMALL_STATE(5944)] = 292645, - [SMALL_STATE(5945)] = 292665, - [SMALL_STATE(5946)] = 292685, - [SMALL_STATE(5947)] = 292703, - [SMALL_STATE(5948)] = 292723, - [SMALL_STATE(5949)] = 292743, - [SMALL_STATE(5950)] = 292763, - [SMALL_STATE(5951)] = 292783, - [SMALL_STATE(5952)] = 292803, - [SMALL_STATE(5953)] = 292821, - [SMALL_STATE(5954)] = 292841, - [SMALL_STATE(5955)] = 292861, - [SMALL_STATE(5956)] = 292881, - [SMALL_STATE(5957)] = 292901, - [SMALL_STATE(5958)] = 292921, - [SMALL_STATE(5959)] = 292941, - [SMALL_STATE(5960)] = 292961, - [SMALL_STATE(5961)] = 292981, - [SMALL_STATE(5962)] = 293001, - [SMALL_STATE(5963)] = 293021, - [SMALL_STATE(5964)] = 293041, - [SMALL_STATE(5965)] = 293061, - [SMALL_STATE(5966)] = 293081, - [SMALL_STATE(5967)] = 293101, - [SMALL_STATE(5968)] = 293121, - [SMALL_STATE(5969)] = 293139, - [SMALL_STATE(5970)] = 293159, - [SMALL_STATE(5971)] = 293179, - [SMALL_STATE(5972)] = 293199, - [SMALL_STATE(5973)] = 293219, - [SMALL_STATE(5974)] = 293239, - [SMALL_STATE(5975)] = 293259, - [SMALL_STATE(5976)] = 293279, - [SMALL_STATE(5977)] = 293299, - [SMALL_STATE(5978)] = 293319, - [SMALL_STATE(5979)] = 293339, - [SMALL_STATE(5980)] = 293359, - [SMALL_STATE(5981)] = 293379, - [SMALL_STATE(5982)] = 293399, - [SMALL_STATE(5983)] = 293419, - [SMALL_STATE(5984)] = 293439, - [SMALL_STATE(5985)] = 293459, - [SMALL_STATE(5986)] = 293479, - [SMALL_STATE(5987)] = 293499, - [SMALL_STATE(5988)] = 293519, - [SMALL_STATE(5989)] = 293539, - [SMALL_STATE(5990)] = 293559, - [SMALL_STATE(5991)] = 293579, - [SMALL_STATE(5992)] = 293599, - [SMALL_STATE(5993)] = 293619, - [SMALL_STATE(5994)] = 293639, - [SMALL_STATE(5995)] = 293659, - [SMALL_STATE(5996)] = 293679, - [SMALL_STATE(5997)] = 293699, - [SMALL_STATE(5998)] = 293719, - [SMALL_STATE(5999)] = 293739, - [SMALL_STATE(6000)] = 293759, - [SMALL_STATE(6001)] = 293779, - [SMALL_STATE(6002)] = 293799, - [SMALL_STATE(6003)] = 293819, - [SMALL_STATE(6004)] = 293839, - [SMALL_STATE(6005)] = 293859, - [SMALL_STATE(6006)] = 293879, - [SMALL_STATE(6007)] = 293899, - [SMALL_STATE(6008)] = 293919, - [SMALL_STATE(6009)] = 293939, - [SMALL_STATE(6010)] = 293959, - [SMALL_STATE(6011)] = 293979, - [SMALL_STATE(6012)] = 293999, - [SMALL_STATE(6013)] = 294019, - [SMALL_STATE(6014)] = 294039, - [SMALL_STATE(6015)] = 294059, - [SMALL_STATE(6016)] = 294079, - [SMALL_STATE(6017)] = 294099, - [SMALL_STATE(6018)] = 294119, - [SMALL_STATE(6019)] = 294139, - [SMALL_STATE(6020)] = 294159, - [SMALL_STATE(6021)] = 294179, - [SMALL_STATE(6022)] = 294199, - [SMALL_STATE(6023)] = 294219, - [SMALL_STATE(6024)] = 294239, - [SMALL_STATE(6025)] = 294259, - [SMALL_STATE(6026)] = 294276, - [SMALL_STATE(6027)] = 294293, - [SMALL_STATE(6028)] = 294310, - [SMALL_STATE(6029)] = 294327, - [SMALL_STATE(6030)] = 294344, - [SMALL_STATE(6031)] = 294361, - [SMALL_STATE(6032)] = 294378, - [SMALL_STATE(6033)] = 294395, - [SMALL_STATE(6034)] = 294412, - [SMALL_STATE(6035)] = 294429, - [SMALL_STATE(6036)] = 294446, - [SMALL_STATE(6037)] = 294463, - [SMALL_STATE(6038)] = 294480, - [SMALL_STATE(6039)] = 294497, - [SMALL_STATE(6040)] = 294514, - [SMALL_STATE(6041)] = 294531, - [SMALL_STATE(6042)] = 294548, - [SMALL_STATE(6043)] = 294565, - [SMALL_STATE(6044)] = 294582, - [SMALL_STATE(6045)] = 294599, - [SMALL_STATE(6046)] = 294616, - [SMALL_STATE(6047)] = 294633, - [SMALL_STATE(6048)] = 294650, - [SMALL_STATE(6049)] = 294667, - [SMALL_STATE(6050)] = 294684, - [SMALL_STATE(6051)] = 294701, - [SMALL_STATE(6052)] = 294718, - [SMALL_STATE(6053)] = 294735, - [SMALL_STATE(6054)] = 294752, - [SMALL_STATE(6055)] = 294769, - [SMALL_STATE(6056)] = 294786, - [SMALL_STATE(6057)] = 294803, - [SMALL_STATE(6058)] = 294820, - [SMALL_STATE(6059)] = 294837, - [SMALL_STATE(6060)] = 294854, - [SMALL_STATE(6061)] = 294871, - [SMALL_STATE(6062)] = 294888, - [SMALL_STATE(6063)] = 294905, - [SMALL_STATE(6064)] = 294922, - [SMALL_STATE(6065)] = 294939, - [SMALL_STATE(6066)] = 294956, - [SMALL_STATE(6067)] = 294973, - [SMALL_STATE(6068)] = 294990, - [SMALL_STATE(6069)] = 295007, - [SMALL_STATE(6070)] = 295024, - [SMALL_STATE(6071)] = 295041, - [SMALL_STATE(6072)] = 295058, - [SMALL_STATE(6073)] = 295075, - [SMALL_STATE(6074)] = 295092, - [SMALL_STATE(6075)] = 295109, - [SMALL_STATE(6076)] = 295126, - [SMALL_STATE(6077)] = 295143, - [SMALL_STATE(6078)] = 295160, - [SMALL_STATE(6079)] = 295177, - [SMALL_STATE(6080)] = 295194, - [SMALL_STATE(6081)] = 295211, - [SMALL_STATE(6082)] = 295228, - [SMALL_STATE(6083)] = 295245, - [SMALL_STATE(6084)] = 295262, - [SMALL_STATE(6085)] = 295279, - [SMALL_STATE(6086)] = 295296, - [SMALL_STATE(6087)] = 295313, - [SMALL_STATE(6088)] = 295330, - [SMALL_STATE(6089)] = 295347, - [SMALL_STATE(6090)] = 295364, - [SMALL_STATE(6091)] = 295381, - [SMALL_STATE(6092)] = 295398, - [SMALL_STATE(6093)] = 295415, - [SMALL_STATE(6094)] = 295432, - [SMALL_STATE(6095)] = 295447, - [SMALL_STATE(6096)] = 295464, - [SMALL_STATE(6097)] = 295481, - [SMALL_STATE(6098)] = 295498, - [SMALL_STATE(6099)] = 295515, - [SMALL_STATE(6100)] = 295532, - [SMALL_STATE(6101)] = 295549, - [SMALL_STATE(6102)] = 295566, - [SMALL_STATE(6103)] = 295583, - [SMALL_STATE(6104)] = 295600, - [SMALL_STATE(6105)] = 295617, - [SMALL_STATE(6106)] = 295634, - [SMALL_STATE(6107)] = 295651, - [SMALL_STATE(6108)] = 295668, - [SMALL_STATE(6109)] = 295685, - [SMALL_STATE(6110)] = 295702, - [SMALL_STATE(6111)] = 295719, - [SMALL_STATE(6112)] = 295736, - [SMALL_STATE(6113)] = 295753, - [SMALL_STATE(6114)] = 295770, - [SMALL_STATE(6115)] = 295787, - [SMALL_STATE(6116)] = 295804, - [SMALL_STATE(6117)] = 295821, - [SMALL_STATE(6118)] = 295838, - [SMALL_STATE(6119)] = 295855, - [SMALL_STATE(6120)] = 295872, - [SMALL_STATE(6121)] = 295889, - [SMALL_STATE(6122)] = 295906, - [SMALL_STATE(6123)] = 295923, - [SMALL_STATE(6124)] = 295940, - [SMALL_STATE(6125)] = 295957, - [SMALL_STATE(6126)] = 295974, - [SMALL_STATE(6127)] = 295991, - [SMALL_STATE(6128)] = 296008, - [SMALL_STATE(6129)] = 296025, - [SMALL_STATE(6130)] = 296042, - [SMALL_STATE(6131)] = 296059, - [SMALL_STATE(6132)] = 296076, - [SMALL_STATE(6133)] = 296093, - [SMALL_STATE(6134)] = 296110, - [SMALL_STATE(6135)] = 296127, - [SMALL_STATE(6136)] = 296144, - [SMALL_STATE(6137)] = 296161, - [SMALL_STATE(6138)] = 296178, - [SMALL_STATE(6139)] = 296195, - [SMALL_STATE(6140)] = 296212, - [SMALL_STATE(6141)] = 296229, - [SMALL_STATE(6142)] = 296246, - [SMALL_STATE(6143)] = 296263, - [SMALL_STATE(6144)] = 296280, - [SMALL_STATE(6145)] = 296297, - [SMALL_STATE(6146)] = 296314, - [SMALL_STATE(6147)] = 296331, - [SMALL_STATE(6148)] = 296348, - [SMALL_STATE(6149)] = 296365, - [SMALL_STATE(6150)] = 296382, - [SMALL_STATE(6151)] = 296399, - [SMALL_STATE(6152)] = 296416, - [SMALL_STATE(6153)] = 296433, - [SMALL_STATE(6154)] = 296450, - [SMALL_STATE(6155)] = 296467, - [SMALL_STATE(6156)] = 296484, - [SMALL_STATE(6157)] = 296501, - [SMALL_STATE(6158)] = 296518, - [SMALL_STATE(6159)] = 296535, - [SMALL_STATE(6160)] = 296552, - [SMALL_STATE(6161)] = 296569, - [SMALL_STATE(6162)] = 296586, - [SMALL_STATE(6163)] = 296603, - [SMALL_STATE(6164)] = 296620, - [SMALL_STATE(6165)] = 296637, - [SMALL_STATE(6166)] = 296654, - [SMALL_STATE(6167)] = 296671, - [SMALL_STATE(6168)] = 296688, - [SMALL_STATE(6169)] = 296705, - [SMALL_STATE(6170)] = 296722, - [SMALL_STATE(6171)] = 296739, - [SMALL_STATE(6172)] = 296756, - [SMALL_STATE(6173)] = 296773, - [SMALL_STATE(6174)] = 296790, - [SMALL_STATE(6175)] = 296807, - [SMALL_STATE(6176)] = 296824, - [SMALL_STATE(6177)] = 296841, - [SMALL_STATE(6178)] = 296858, - [SMALL_STATE(6179)] = 296875, - [SMALL_STATE(6180)] = 296892, - [SMALL_STATE(6181)] = 296909, - [SMALL_STATE(6182)] = 296926, - [SMALL_STATE(6183)] = 296943, - [SMALL_STATE(6184)] = 296960, - [SMALL_STATE(6185)] = 296977, - [SMALL_STATE(6186)] = 296994, - [SMALL_STATE(6187)] = 297011, - [SMALL_STATE(6188)] = 297028, - [SMALL_STATE(6189)] = 297045, - [SMALL_STATE(6190)] = 297062, - [SMALL_STATE(6191)] = 297079, - [SMALL_STATE(6192)] = 297096, - [SMALL_STATE(6193)] = 297113, - [SMALL_STATE(6194)] = 297130, - [SMALL_STATE(6195)] = 297147, - [SMALL_STATE(6196)] = 297164, - [SMALL_STATE(6197)] = 297181, - [SMALL_STATE(6198)] = 297198, - [SMALL_STATE(6199)] = 297215, - [SMALL_STATE(6200)] = 297232, - [SMALL_STATE(6201)] = 297249, - [SMALL_STATE(6202)] = 297266, - [SMALL_STATE(6203)] = 297283, - [SMALL_STATE(6204)] = 297300, - [SMALL_STATE(6205)] = 297317, - [SMALL_STATE(6206)] = 297334, - [SMALL_STATE(6207)] = 297351, - [SMALL_STATE(6208)] = 297368, - [SMALL_STATE(6209)] = 297385, - [SMALL_STATE(6210)] = 297402, - [SMALL_STATE(6211)] = 297419, - [SMALL_STATE(6212)] = 297436, - [SMALL_STATE(6213)] = 297453, - [SMALL_STATE(6214)] = 297470, - [SMALL_STATE(6215)] = 297487, - [SMALL_STATE(6216)] = 297504, - [SMALL_STATE(6217)] = 297521, - [SMALL_STATE(6218)] = 297538, - [SMALL_STATE(6219)] = 297555, - [SMALL_STATE(6220)] = 297572, - [SMALL_STATE(6221)] = 297589, - [SMALL_STATE(6222)] = 297606, - [SMALL_STATE(6223)] = 297623, - [SMALL_STATE(6224)] = 297640, - [SMALL_STATE(6225)] = 297657, - [SMALL_STATE(6226)] = 297674, - [SMALL_STATE(6227)] = 297691, - [SMALL_STATE(6228)] = 297708, - [SMALL_STATE(6229)] = 297725, - [SMALL_STATE(6230)] = 297742, - [SMALL_STATE(6231)] = 297759, - [SMALL_STATE(6232)] = 297776, - [SMALL_STATE(6233)] = 297793, - [SMALL_STATE(6234)] = 297810, - [SMALL_STATE(6235)] = 297827, - [SMALL_STATE(6236)] = 297844, - [SMALL_STATE(6237)] = 297861, - [SMALL_STATE(6238)] = 297878, - [SMALL_STATE(6239)] = 297895, - [SMALL_STATE(6240)] = 297912, - [SMALL_STATE(6241)] = 297929, - [SMALL_STATE(6242)] = 297946, - [SMALL_STATE(6243)] = 297963, - [SMALL_STATE(6244)] = 297980, - [SMALL_STATE(6245)] = 297997, - [SMALL_STATE(6246)] = 298014, - [SMALL_STATE(6247)] = 298031, - [SMALL_STATE(6248)] = 298048, - [SMALL_STATE(6249)] = 298065, - [SMALL_STATE(6250)] = 298082, - [SMALL_STATE(6251)] = 298099, - [SMALL_STATE(6252)] = 298116, - [SMALL_STATE(6253)] = 298133, - [SMALL_STATE(6254)] = 298150, - [SMALL_STATE(6255)] = 298167, - [SMALL_STATE(6256)] = 298184, - [SMALL_STATE(6257)] = 298201, - [SMALL_STATE(6258)] = 298218, - [SMALL_STATE(6259)] = 298235, - [SMALL_STATE(6260)] = 298252, - [SMALL_STATE(6261)] = 298269, - [SMALL_STATE(6262)] = 298286, - [SMALL_STATE(6263)] = 298303, - [SMALL_STATE(6264)] = 298320, - [SMALL_STATE(6265)] = 298337, - [SMALL_STATE(6266)] = 298354, - [SMALL_STATE(6267)] = 298371, - [SMALL_STATE(6268)] = 298388, - [SMALL_STATE(6269)] = 298405, - [SMALL_STATE(6270)] = 298422, - [SMALL_STATE(6271)] = 298439, - [SMALL_STATE(6272)] = 298456, - [SMALL_STATE(6273)] = 298473, - [SMALL_STATE(6274)] = 298490, - [SMALL_STATE(6275)] = 298507, - [SMALL_STATE(6276)] = 298524, - [SMALL_STATE(6277)] = 298541, - [SMALL_STATE(6278)] = 298558, - [SMALL_STATE(6279)] = 298575, - [SMALL_STATE(6280)] = 298592, - [SMALL_STATE(6281)] = 298609, - [SMALL_STATE(6282)] = 298626, - [SMALL_STATE(6283)] = 298643, - [SMALL_STATE(6284)] = 298660, - [SMALL_STATE(6285)] = 298677, - [SMALL_STATE(6286)] = 298694, - [SMALL_STATE(6287)] = 298711, - [SMALL_STATE(6288)] = 298728, - [SMALL_STATE(6289)] = 298745, - [SMALL_STATE(6290)] = 298762, - [SMALL_STATE(6291)] = 298779, - [SMALL_STATE(6292)] = 298796, - [SMALL_STATE(6293)] = 298813, - [SMALL_STATE(6294)] = 298830, - [SMALL_STATE(6295)] = 298847, - [SMALL_STATE(6296)] = 298864, - [SMALL_STATE(6297)] = 298881, - [SMALL_STATE(6298)] = 298898, - [SMALL_STATE(6299)] = 298915, - [SMALL_STATE(6300)] = 298932, - [SMALL_STATE(6301)] = 298949, - [SMALL_STATE(6302)] = 298966, - [SMALL_STATE(6303)] = 298983, - [SMALL_STATE(6304)] = 299000, - [SMALL_STATE(6305)] = 299017, - [SMALL_STATE(6306)] = 299034, - [SMALL_STATE(6307)] = 299051, - [SMALL_STATE(6308)] = 299068, - [SMALL_STATE(6309)] = 299085, - [SMALL_STATE(6310)] = 299102, - [SMALL_STATE(6311)] = 299119, - [SMALL_STATE(6312)] = 299136, - [SMALL_STATE(6313)] = 299153, - [SMALL_STATE(6314)] = 299170, - [SMALL_STATE(6315)] = 299187, - [SMALL_STATE(6316)] = 299204, - [SMALL_STATE(6317)] = 299221, - [SMALL_STATE(6318)] = 299238, - [SMALL_STATE(6319)] = 299255, - [SMALL_STATE(6320)] = 299272, - [SMALL_STATE(6321)] = 299289, - [SMALL_STATE(6322)] = 299306, - [SMALL_STATE(6323)] = 299323, - [SMALL_STATE(6324)] = 299340, - [SMALL_STATE(6325)] = 299357, - [SMALL_STATE(6326)] = 299374, - [SMALL_STATE(6327)] = 299391, - [SMALL_STATE(6328)] = 299408, - [SMALL_STATE(6329)] = 299425, - [SMALL_STATE(6330)] = 299442, - [SMALL_STATE(6331)] = 299459, - [SMALL_STATE(6332)] = 299476, - [SMALL_STATE(6333)] = 299493, - [SMALL_STATE(6334)] = 299510, - [SMALL_STATE(6335)] = 299527, - [SMALL_STATE(6336)] = 299544, - [SMALL_STATE(6337)] = 299561, - [SMALL_STATE(6338)] = 299578, - [SMALL_STATE(6339)] = 299595, - [SMALL_STATE(6340)] = 299612, - [SMALL_STATE(6341)] = 299629, - [SMALL_STATE(6342)] = 299646, - [SMALL_STATE(6343)] = 299663, - [SMALL_STATE(6344)] = 299680, - [SMALL_STATE(6345)] = 299697, - [SMALL_STATE(6346)] = 299714, - [SMALL_STATE(6347)] = 299731, - [SMALL_STATE(6348)] = 299748, - [SMALL_STATE(6349)] = 299765, - [SMALL_STATE(6350)] = 299782, - [SMALL_STATE(6351)] = 299799, - [SMALL_STATE(6352)] = 299816, - [SMALL_STATE(6353)] = 299833, - [SMALL_STATE(6354)] = 299850, - [SMALL_STATE(6355)] = 299867, - [SMALL_STATE(6356)] = 299884, - [SMALL_STATE(6357)] = 299901, - [SMALL_STATE(6358)] = 299918, - [SMALL_STATE(6359)] = 299935, - [SMALL_STATE(6360)] = 299952, - [SMALL_STATE(6361)] = 299969, - [SMALL_STATE(6362)] = 299986, - [SMALL_STATE(6363)] = 300003, - [SMALL_STATE(6364)] = 300020, - [SMALL_STATE(6365)] = 300037, - [SMALL_STATE(6366)] = 300054, - [SMALL_STATE(6367)] = 300071, - [SMALL_STATE(6368)] = 300088, - [SMALL_STATE(6369)] = 300105, - [SMALL_STATE(6370)] = 300122, - [SMALL_STATE(6371)] = 300139, - [SMALL_STATE(6372)] = 300156, - [SMALL_STATE(6373)] = 300173, - [SMALL_STATE(6374)] = 300190, - [SMALL_STATE(6375)] = 300207, - [SMALL_STATE(6376)] = 300224, - [SMALL_STATE(6377)] = 300241, - [SMALL_STATE(6378)] = 300258, - [SMALL_STATE(6379)] = 300275, - [SMALL_STATE(6380)] = 300292, - [SMALL_STATE(6381)] = 300309, - [SMALL_STATE(6382)] = 300326, - [SMALL_STATE(6383)] = 300343, - [SMALL_STATE(6384)] = 300360, - [SMALL_STATE(6385)] = 300375, - [SMALL_STATE(6386)] = 300392, - [SMALL_STATE(6387)] = 300409, - [SMALL_STATE(6388)] = 300426, - [SMALL_STATE(6389)] = 300443, - [SMALL_STATE(6390)] = 300460, - [SMALL_STATE(6391)] = 300477, - [SMALL_STATE(6392)] = 300494, - [SMALL_STATE(6393)] = 300511, - [SMALL_STATE(6394)] = 300528, - [SMALL_STATE(6395)] = 300545, - [SMALL_STATE(6396)] = 300562, - [SMALL_STATE(6397)] = 300579, - [SMALL_STATE(6398)] = 300596, - [SMALL_STATE(6399)] = 300613, - [SMALL_STATE(6400)] = 300630, - [SMALL_STATE(6401)] = 300647, - [SMALL_STATE(6402)] = 300664, - [SMALL_STATE(6403)] = 300681, - [SMALL_STATE(6404)] = 300698, - [SMALL_STATE(6405)] = 300715, - [SMALL_STATE(6406)] = 300732, - [SMALL_STATE(6407)] = 300749, - [SMALL_STATE(6408)] = 300766, - [SMALL_STATE(6409)] = 300783, - [SMALL_STATE(6410)] = 300800, - [SMALL_STATE(6411)] = 300817, - [SMALL_STATE(6412)] = 300834, - [SMALL_STATE(6413)] = 300851, - [SMALL_STATE(6414)] = 300868, - [SMALL_STATE(6415)] = 300885, - [SMALL_STATE(6416)] = 300902, - [SMALL_STATE(6417)] = 300919, - [SMALL_STATE(6418)] = 300936, - [SMALL_STATE(6419)] = 300953, - [SMALL_STATE(6420)] = 300970, - [SMALL_STATE(6421)] = 300987, - [SMALL_STATE(6422)] = 301004, - [SMALL_STATE(6423)] = 301021, - [SMALL_STATE(6424)] = 301038, - [SMALL_STATE(6425)] = 301055, - [SMALL_STATE(6426)] = 301072, - [SMALL_STATE(6427)] = 301089, - [SMALL_STATE(6428)] = 301106, - [SMALL_STATE(6429)] = 301123, - [SMALL_STATE(6430)] = 301140, - [SMALL_STATE(6431)] = 301157, - [SMALL_STATE(6432)] = 301174, - [SMALL_STATE(6433)] = 301191, - [SMALL_STATE(6434)] = 301208, - [SMALL_STATE(6435)] = 301225, - [SMALL_STATE(6436)] = 301242, - [SMALL_STATE(6437)] = 301259, - [SMALL_STATE(6438)] = 301276, - [SMALL_STATE(6439)] = 301293, - [SMALL_STATE(6440)] = 301310, - [SMALL_STATE(6441)] = 301327, - [SMALL_STATE(6442)] = 301344, - [SMALL_STATE(6443)] = 301361, - [SMALL_STATE(6444)] = 301378, - [SMALL_STATE(6445)] = 301395, - [SMALL_STATE(6446)] = 301412, - [SMALL_STATE(6447)] = 301429, - [SMALL_STATE(6448)] = 301446, - [SMALL_STATE(6449)] = 301463, - [SMALL_STATE(6450)] = 301480, - [SMALL_STATE(6451)] = 301497, - [SMALL_STATE(6452)] = 301514, - [SMALL_STATE(6453)] = 301531, - [SMALL_STATE(6454)] = 301548, - [SMALL_STATE(6455)] = 301565, - [SMALL_STATE(6456)] = 301582, - [SMALL_STATE(6457)] = 301599, - [SMALL_STATE(6458)] = 301616, - [SMALL_STATE(6459)] = 301633, - [SMALL_STATE(6460)] = 301650, - [SMALL_STATE(6461)] = 301667, - [SMALL_STATE(6462)] = 301684, - [SMALL_STATE(6463)] = 301701, - [SMALL_STATE(6464)] = 301718, - [SMALL_STATE(6465)] = 301735, - [SMALL_STATE(6466)] = 301752, - [SMALL_STATE(6467)] = 301769, - [SMALL_STATE(6468)] = 301786, - [SMALL_STATE(6469)] = 301803, - [SMALL_STATE(6470)] = 301820, - [SMALL_STATE(6471)] = 301837, - [SMALL_STATE(6472)] = 301854, - [SMALL_STATE(6473)] = 301871, - [SMALL_STATE(6474)] = 301888, - [SMALL_STATE(6475)] = 301905, - [SMALL_STATE(6476)] = 301922, - [SMALL_STATE(6477)] = 301939, - [SMALL_STATE(6478)] = 301956, - [SMALL_STATE(6479)] = 301973, - [SMALL_STATE(6480)] = 301990, - [SMALL_STATE(6481)] = 302007, - [SMALL_STATE(6482)] = 302024, - [SMALL_STATE(6483)] = 302041, - [SMALL_STATE(6484)] = 302058, - [SMALL_STATE(6485)] = 302075, - [SMALL_STATE(6486)] = 302092, - [SMALL_STATE(6487)] = 302109, - [SMALL_STATE(6488)] = 302126, - [SMALL_STATE(6489)] = 302143, - [SMALL_STATE(6490)] = 302160, - [SMALL_STATE(6491)] = 302177, - [SMALL_STATE(6492)] = 302194, - [SMALL_STATE(6493)] = 302211, - [SMALL_STATE(6494)] = 302228, - [SMALL_STATE(6495)] = 302245, - [SMALL_STATE(6496)] = 302262, - [SMALL_STATE(6497)] = 302279, - [SMALL_STATE(6498)] = 302296, - [SMALL_STATE(6499)] = 302313, - [SMALL_STATE(6500)] = 302330, - [SMALL_STATE(6501)] = 302347, - [SMALL_STATE(6502)] = 302364, - [SMALL_STATE(6503)] = 302381, - [SMALL_STATE(6504)] = 302398, - [SMALL_STATE(6505)] = 302415, - [SMALL_STATE(6506)] = 302432, - [SMALL_STATE(6507)] = 302449, - [SMALL_STATE(6508)] = 302466, - [SMALL_STATE(6509)] = 302483, - [SMALL_STATE(6510)] = 302500, - [SMALL_STATE(6511)] = 302517, - [SMALL_STATE(6512)] = 302534, - [SMALL_STATE(6513)] = 302551, - [SMALL_STATE(6514)] = 302568, - [SMALL_STATE(6515)] = 302585, - [SMALL_STATE(6516)] = 302602, - [SMALL_STATE(6517)] = 302619, - [SMALL_STATE(6518)] = 302636, - [SMALL_STATE(6519)] = 302653, - [SMALL_STATE(6520)] = 302670, - [SMALL_STATE(6521)] = 302687, - [SMALL_STATE(6522)] = 302704, - [SMALL_STATE(6523)] = 302721, - [SMALL_STATE(6524)] = 302738, - [SMALL_STATE(6525)] = 302755, - [SMALL_STATE(6526)] = 302772, - [SMALL_STATE(6527)] = 302789, - [SMALL_STATE(6528)] = 302806, - [SMALL_STATE(6529)] = 302823, - [SMALL_STATE(6530)] = 302840, - [SMALL_STATE(6531)] = 302857, - [SMALL_STATE(6532)] = 302874, - [SMALL_STATE(6533)] = 302891, - [SMALL_STATE(6534)] = 302908, - [SMALL_STATE(6535)] = 302925, - [SMALL_STATE(6536)] = 302942, - [SMALL_STATE(6537)] = 302959, - [SMALL_STATE(6538)] = 302976, - [SMALL_STATE(6539)] = 302993, - [SMALL_STATE(6540)] = 303010, - [SMALL_STATE(6541)] = 303027, - [SMALL_STATE(6542)] = 303044, - [SMALL_STATE(6543)] = 303061, - [SMALL_STATE(6544)] = 303078, - [SMALL_STATE(6545)] = 303095, - [SMALL_STATE(6546)] = 303112, - [SMALL_STATE(6547)] = 303129, - [SMALL_STATE(6548)] = 303146, - [SMALL_STATE(6549)] = 303163, - [SMALL_STATE(6550)] = 303180, - [SMALL_STATE(6551)] = 303197, - [SMALL_STATE(6552)] = 303214, - [SMALL_STATE(6553)] = 303231, - [SMALL_STATE(6554)] = 303248, - [SMALL_STATE(6555)] = 303265, - [SMALL_STATE(6556)] = 303282, - [SMALL_STATE(6557)] = 303299, - [SMALL_STATE(6558)] = 303316, - [SMALL_STATE(6559)] = 303333, - [SMALL_STATE(6560)] = 303350, - [SMALL_STATE(6561)] = 303367, - [SMALL_STATE(6562)] = 303384, - [SMALL_STATE(6563)] = 303401, - [SMALL_STATE(6564)] = 303418, - [SMALL_STATE(6565)] = 303435, - [SMALL_STATE(6566)] = 303452, - [SMALL_STATE(6567)] = 303469, - [SMALL_STATE(6568)] = 303486, - [SMALL_STATE(6569)] = 303503, - [SMALL_STATE(6570)] = 303520, - [SMALL_STATE(6571)] = 303537, - [SMALL_STATE(6572)] = 303554, - [SMALL_STATE(6573)] = 303571, - [SMALL_STATE(6574)] = 303588, - [SMALL_STATE(6575)] = 303605, - [SMALL_STATE(6576)] = 303622, - [SMALL_STATE(6577)] = 303639, - [SMALL_STATE(6578)] = 303656, - [SMALL_STATE(6579)] = 303673, - [SMALL_STATE(6580)] = 303690, - [SMALL_STATE(6581)] = 303707, - [SMALL_STATE(6582)] = 303724, - [SMALL_STATE(6583)] = 303741, - [SMALL_STATE(6584)] = 303758, - [SMALL_STATE(6585)] = 303775, - [SMALL_STATE(6586)] = 303792, - [SMALL_STATE(6587)] = 303809, - [SMALL_STATE(6588)] = 303826, - [SMALL_STATE(6589)] = 303843, - [SMALL_STATE(6590)] = 303860, - [SMALL_STATE(6591)] = 303877, - [SMALL_STATE(6592)] = 303894, - [SMALL_STATE(6593)] = 303911, - [SMALL_STATE(6594)] = 303928, - [SMALL_STATE(6595)] = 303945, - [SMALL_STATE(6596)] = 303962, - [SMALL_STATE(6597)] = 303979, - [SMALL_STATE(6598)] = 303996, - [SMALL_STATE(6599)] = 304013, - [SMALL_STATE(6600)] = 304030, - [SMALL_STATE(6601)] = 304047, - [SMALL_STATE(6602)] = 304064, - [SMALL_STATE(6603)] = 304081, - [SMALL_STATE(6604)] = 304098, - [SMALL_STATE(6605)] = 304115, - [SMALL_STATE(6606)] = 304132, - [SMALL_STATE(6607)] = 304149, - [SMALL_STATE(6608)] = 304166, - [SMALL_STATE(6609)] = 304183, - [SMALL_STATE(6610)] = 304200, - [SMALL_STATE(6611)] = 304217, - [SMALL_STATE(6612)] = 304234, - [SMALL_STATE(6613)] = 304251, - [SMALL_STATE(6614)] = 304268, - [SMALL_STATE(6615)] = 304285, - [SMALL_STATE(6616)] = 304302, - [SMALL_STATE(6617)] = 304319, - [SMALL_STATE(6618)] = 304336, - [SMALL_STATE(6619)] = 304353, - [SMALL_STATE(6620)] = 304370, - [SMALL_STATE(6621)] = 304387, - [SMALL_STATE(6622)] = 304404, - [SMALL_STATE(6623)] = 304421, - [SMALL_STATE(6624)] = 304438, - [SMALL_STATE(6625)] = 304455, - [SMALL_STATE(6626)] = 304472, - [SMALL_STATE(6627)] = 304489, - [SMALL_STATE(6628)] = 304506, - [SMALL_STATE(6629)] = 304523, - [SMALL_STATE(6630)] = 304540, - [SMALL_STATE(6631)] = 304557, - [SMALL_STATE(6632)] = 304574, - [SMALL_STATE(6633)] = 304591, - [SMALL_STATE(6634)] = 304608, - [SMALL_STATE(6635)] = 304625, - [SMALL_STATE(6636)] = 304642, - [SMALL_STATE(6637)] = 304659, - [SMALL_STATE(6638)] = 304676, - [SMALL_STATE(6639)] = 304693, - [SMALL_STATE(6640)] = 304710, - [SMALL_STATE(6641)] = 304727, - [SMALL_STATE(6642)] = 304744, - [SMALL_STATE(6643)] = 304761, - [SMALL_STATE(6644)] = 304778, - [SMALL_STATE(6645)] = 304795, - [SMALL_STATE(6646)] = 304812, - [SMALL_STATE(6647)] = 304829, - [SMALL_STATE(6648)] = 304846, - [SMALL_STATE(6649)] = 304863, - [SMALL_STATE(6650)] = 304880, - [SMALL_STATE(6651)] = 304895, - [SMALL_STATE(6652)] = 304912, - [SMALL_STATE(6653)] = 304929, - [SMALL_STATE(6654)] = 304946, - [SMALL_STATE(6655)] = 304963, - [SMALL_STATE(6656)] = 304980, - [SMALL_STATE(6657)] = 304997, - [SMALL_STATE(6658)] = 305014, - [SMALL_STATE(6659)] = 305031, - [SMALL_STATE(6660)] = 305048, - [SMALL_STATE(6661)] = 305065, - [SMALL_STATE(6662)] = 305082, - [SMALL_STATE(6663)] = 305099, - [SMALL_STATE(6664)] = 305116, - [SMALL_STATE(6665)] = 305133, - [SMALL_STATE(6666)] = 305150, - [SMALL_STATE(6667)] = 305167, - [SMALL_STATE(6668)] = 305184, - [SMALL_STATE(6669)] = 305201, - [SMALL_STATE(6670)] = 305218, - [SMALL_STATE(6671)] = 305235, - [SMALL_STATE(6672)] = 305252, - [SMALL_STATE(6673)] = 305269, - [SMALL_STATE(6674)] = 305286, - [SMALL_STATE(6675)] = 305303, - [SMALL_STATE(6676)] = 305320, - [SMALL_STATE(6677)] = 305337, - [SMALL_STATE(6678)] = 305354, - [SMALL_STATE(6679)] = 305371, - [SMALL_STATE(6680)] = 305388, - [SMALL_STATE(6681)] = 305405, - [SMALL_STATE(6682)] = 305422, - [SMALL_STATE(6683)] = 305439, - [SMALL_STATE(6684)] = 305456, - [SMALL_STATE(6685)] = 305473, - [SMALL_STATE(6686)] = 305490, - [SMALL_STATE(6687)] = 305507, - [SMALL_STATE(6688)] = 305524, - [SMALL_STATE(6689)] = 305541, - [SMALL_STATE(6690)] = 305558, - [SMALL_STATE(6691)] = 305575, - [SMALL_STATE(6692)] = 305592, - [SMALL_STATE(6693)] = 305609, - [SMALL_STATE(6694)] = 305626, - [SMALL_STATE(6695)] = 305643, - [SMALL_STATE(6696)] = 305660, - [SMALL_STATE(6697)] = 305677, - [SMALL_STATE(6698)] = 305694, - [SMALL_STATE(6699)] = 305711, - [SMALL_STATE(6700)] = 305728, - [SMALL_STATE(6701)] = 305745, - [SMALL_STATE(6702)] = 305762, - [SMALL_STATE(6703)] = 305779, - [SMALL_STATE(6704)] = 305783, - [SMALL_STATE(6705)] = 305787, - [SMALL_STATE(6706)] = 305791, - [SMALL_STATE(6707)] = 305795, + [SMALL_STATE(207)] = 0, + [SMALL_STATE(208)] = 81, + [SMALL_STATE(209)] = 212, + [SMALL_STATE(210)] = 289, + [SMALL_STATE(211)] = 422, + [SMALL_STATE(212)] = 555, + [SMALL_STATE(213)] = 634, + [SMALL_STATE(214)] = 715, + [SMALL_STATE(215)] = 796, + [SMALL_STATE(216)] = 877, + [SMALL_STATE(217)] = 954, + [SMALL_STATE(218)] = 1031, + [SMALL_STATE(219)] = 1126, + [SMALL_STATE(220)] = 1207, + [SMALL_STATE(221)] = 1288, + [SMALL_STATE(222)] = 1369, + [SMALL_STATE(223)] = 1448, + [SMALL_STATE(224)] = 1526, + [SMALL_STATE(225)] = 1616, + [SMALL_STATE(226)] = 1692, + [SMALL_STATE(227)] = 1770, + [SMALL_STATE(228)] = 1848, + [SMALL_STATE(229)] = 1924, + [SMALL_STATE(230)] = 2000, + [SMALL_STATE(231)] = 2074, + [SMALL_STATE(232)] = 2148, + [SMALL_STATE(233)] = 2222, + [SMALL_STATE(234)] = 2298, + [SMALL_STATE(235)] = 2378, + [SMALL_STATE(236)] = 2452, + [SMALL_STATE(237)] = 2526, + [SMALL_STATE(238)] = 2600, + [SMALL_STATE(239)] = 2690, + [SMALL_STATE(240)] = 2778, + [SMALL_STATE(241)] = 2860, + [SMALL_STATE(242)] = 2944, + [SMALL_STATE(243)] = 3020, + [SMALL_STATE(244)] = 3110, + [SMALL_STATE(245)] = 3186, + [SMALL_STATE(246)] = 3276, + [SMALL_STATE(247)] = 3366, + [SMALL_STATE(248)] = 3456, + [SMALL_STATE(249)] = 3546, + [SMALL_STATE(250)] = 3636, + [SMALL_STATE(251)] = 3724, + [SMALL_STATE(252)] = 3800, + [SMALL_STATE(253)] = 3878, + [SMALL_STATE(254)] = 3956, + [SMALL_STATE(255)] = 4034, + [SMALL_STATE(256)] = 4110, + [SMALL_STATE(257)] = 4188, + [SMALL_STATE(258)] = 4264, + [SMALL_STATE(259)] = 4342, + [SMALL_STATE(260)] = 4420, + [SMALL_STATE(261)] = 4498, + [SMALL_STATE(262)] = 4576, + [SMALL_STATE(263)] = 4651, + [SMALL_STATE(264)] = 4778, + [SMALL_STATE(265)] = 4903, + [SMALL_STATE(266)] = 4994, + [SMALL_STATE(267)] = 5121, + [SMALL_STATE(268)] = 5248, + [SMALL_STATE(269)] = 5375, + [SMALL_STATE(270)] = 5502, + [SMALL_STATE(271)] = 5581, + [SMALL_STATE(272)] = 5708, + [SMALL_STATE(273)] = 5835, + [SMALL_STATE(274)] = 5960, + [SMALL_STATE(275)] = 6037, + [SMALL_STATE(276)] = 6164, + [SMALL_STATE(277)] = 6291, + [SMALL_STATE(278)] = 6418, + [SMALL_STATE(279)] = 6545, + [SMALL_STATE(280)] = 6672, + [SMALL_STATE(281)] = 6799, + [SMALL_STATE(282)] = 6926, + [SMALL_STATE(283)] = 7015, + [SMALL_STATE(284)] = 7142, + [SMALL_STATE(285)] = 7269, + [SMALL_STATE(286)] = 7396, + [SMALL_STATE(287)] = 7523, + [SMALL_STATE(288)] = 7650, + [SMALL_STATE(289)] = 7777, + [SMALL_STATE(290)] = 7904, + [SMALL_STATE(291)] = 8031, + [SMALL_STATE(292)] = 8106, + [SMALL_STATE(293)] = 8233, + [SMALL_STATE(294)] = 8306, + [SMALL_STATE(295)] = 8433, + [SMALL_STATE(296)] = 8506, + [SMALL_STATE(297)] = 8633, + [SMALL_STATE(298)] = 8706, + [SMALL_STATE(299)] = 8833, + [SMALL_STATE(300)] = 8906, + [SMALL_STATE(301)] = 9033, + [SMALL_STATE(302)] = 9160, + [SMALL_STATE(303)] = 9287, + [SMALL_STATE(304)] = 9414, + [SMALL_STATE(305)] = 9541, + [SMALL_STATE(306)] = 9668, + [SMALL_STATE(307)] = 9795, + [SMALL_STATE(308)] = 9872, + [SMALL_STATE(309)] = 9947, + [SMALL_STATE(310)] = 10022, + [SMALL_STATE(311)] = 10097, + [SMALL_STATE(312)] = 10172, + [SMALL_STATE(313)] = 10245, + [SMALL_STATE(314)] = 10320, + [SMALL_STATE(315)] = 10395, + [SMALL_STATE(316)] = 10470, + [SMALL_STATE(317)] = 10545, + [SMALL_STATE(318)] = 10620, + [SMALL_STATE(319)] = 10695, + [SMALL_STATE(320)] = 10770, + [SMALL_STATE(321)] = 10845, + [SMALL_STATE(322)] = 10920, + [SMALL_STATE(323)] = 10995, + [SMALL_STATE(324)] = 11070, + [SMALL_STATE(325)] = 11145, + [SMALL_STATE(326)] = 11220, + [SMALL_STATE(327)] = 11295, + [SMALL_STATE(328)] = 11370, + [SMALL_STATE(329)] = 11445, + [SMALL_STATE(330)] = 11520, + [SMALL_STATE(331)] = 11595, + [SMALL_STATE(332)] = 11670, + [SMALL_STATE(333)] = 11745, + [SMALL_STATE(334)] = 11819, + [SMALL_STATE(335)] = 11893, + [SMALL_STATE(336)] = 11969, + [SMALL_STATE(337)] = 12045, + [SMALL_STATE(338)] = 12121, + [SMALL_STATE(339)] = 12195, + [SMALL_STATE(340)] = 12271, + [SMALL_STATE(341)] = 12345, + [SMALL_STATE(342)] = 12417, + [SMALL_STATE(343)] = 12489, + [SMALL_STATE(344)] = 12561, + [SMALL_STATE(345)] = 12637, + [SMALL_STATE(346)] = 12709, + [SMALL_STATE(347)] = 12781, + [SMALL_STATE(348)] = 12853, + [SMALL_STATE(349)] = 12931, + [SMALL_STATE(350)] = 13055, + [SMALL_STATE(351)] = 13129, + [SMALL_STATE(352)] = 13205, + [SMALL_STATE(353)] = 13281, + [SMALL_STATE(354)] = 13357, + [SMALL_STATE(355)] = 13481, + [SMALL_STATE(356)] = 13557, + [SMALL_STATE(357)] = 13629, + [SMALL_STATE(358)] = 13701, + [SMALL_STATE(359)] = 13825, + [SMALL_STATE(360)] = 13897, + [SMALL_STATE(361)] = 13969, + [SMALL_STATE(362)] = 14057, + [SMALL_STATE(363)] = 14181, + [SMALL_STATE(364)] = 14253, + [SMALL_STATE(365)] = 14343, + [SMALL_STATE(366)] = 14415, + [SMALL_STATE(367)] = 14487, + [SMALL_STATE(368)] = 14559, + [SMALL_STATE(369)] = 14631, + [SMALL_STATE(370)] = 14703, + [SMALL_STATE(371)] = 14775, + [SMALL_STATE(372)] = 14847, + [SMALL_STATE(373)] = 14919, + [SMALL_STATE(374)] = 14991, + [SMALL_STATE(375)] = 15063, + [SMALL_STATE(376)] = 15135, + [SMALL_STATE(377)] = 15207, + [SMALL_STATE(378)] = 15279, + [SMALL_STATE(379)] = 15351, + [SMALL_STATE(380)] = 15423, + [SMALL_STATE(381)] = 15495, + [SMALL_STATE(382)] = 15567, + [SMALL_STATE(383)] = 15639, + [SMALL_STATE(384)] = 15711, + [SMALL_STATE(385)] = 15783, + [SMALL_STATE(386)] = 15907, + [SMALL_STATE(387)] = 16028, + [SMALL_STATE(388)] = 16149, + [SMALL_STATE(389)] = 16270, + [SMALL_STATE(390)] = 16391, + [SMALL_STATE(391)] = 16512, + [SMALL_STATE(392)] = 16633, + [SMALL_STATE(393)] = 16708, + [SMALL_STATE(394)] = 16829, + [SMALL_STATE(395)] = 16950, + [SMALL_STATE(396)] = 17071, + [SMALL_STATE(397)] = 17192, + [SMALL_STATE(398)] = 17313, + [SMALL_STATE(399)] = 17434, + [SMALL_STATE(400)] = 17555, + [SMALL_STATE(401)] = 17676, + [SMALL_STATE(402)] = 17797, + [SMALL_STATE(403)] = 17918, + [SMALL_STATE(404)] = 18039, + [SMALL_STATE(405)] = 18160, + [SMALL_STATE(406)] = 18281, + [SMALL_STATE(407)] = 18402, + [SMALL_STATE(408)] = 18523, + [SMALL_STATE(409)] = 18644, + [SMALL_STATE(410)] = 18765, + [SMALL_STATE(411)] = 18886, + [SMALL_STATE(412)] = 19007, + [SMALL_STATE(413)] = 19128, + [SMALL_STATE(414)] = 19249, + [SMALL_STATE(415)] = 19370, + [SMALL_STATE(416)] = 19491, + [SMALL_STATE(417)] = 19568, + [SMALL_STATE(418)] = 19689, + [SMALL_STATE(419)] = 19810, + [SMALL_STATE(420)] = 19931, + [SMALL_STATE(421)] = 20052, + [SMALL_STATE(422)] = 20173, + [SMALL_STATE(423)] = 20294, + [SMALL_STATE(424)] = 20415, + [SMALL_STATE(425)] = 20536, + [SMALL_STATE(426)] = 20657, + [SMALL_STATE(427)] = 20778, + [SMALL_STATE(428)] = 20899, + [SMALL_STATE(429)] = 21020, + [SMALL_STATE(430)] = 21141, + [SMALL_STATE(431)] = 21262, + [SMALL_STATE(432)] = 21383, + [SMALL_STATE(433)] = 21504, + [SMALL_STATE(434)] = 21625, + [SMALL_STATE(435)] = 21746, + [SMALL_STATE(436)] = 21867, + [SMALL_STATE(437)] = 21988, + [SMALL_STATE(438)] = 22109, + [SMALL_STATE(439)] = 22230, + [SMALL_STATE(440)] = 22351, + [SMALL_STATE(441)] = 22472, + [SMALL_STATE(442)] = 22593, + [SMALL_STATE(443)] = 22714, + [SMALL_STATE(444)] = 22835, + [SMALL_STATE(445)] = 22956, + [SMALL_STATE(446)] = 23077, + [SMALL_STATE(447)] = 23198, + [SMALL_STATE(448)] = 23319, + [SMALL_STATE(449)] = 23440, + [SMALL_STATE(450)] = 23561, + [SMALL_STATE(451)] = 23682, + [SMALL_STATE(452)] = 23803, + [SMALL_STATE(453)] = 23924, + [SMALL_STATE(454)] = 24045, + [SMALL_STATE(455)] = 24166, + [SMALL_STATE(456)] = 24287, + [SMALL_STATE(457)] = 24408, + [SMALL_STATE(458)] = 24529, + [SMALL_STATE(459)] = 24650, + [SMALL_STATE(460)] = 24771, + [SMALL_STATE(461)] = 24892, + [SMALL_STATE(462)] = 25013, + [SMALL_STATE(463)] = 25134, + [SMALL_STATE(464)] = 25255, + [SMALL_STATE(465)] = 25376, + [SMALL_STATE(466)] = 25497, + [SMALL_STATE(467)] = 25618, + [SMALL_STATE(468)] = 25739, + [SMALL_STATE(469)] = 25860, + [SMALL_STATE(470)] = 25981, + [SMALL_STATE(471)] = 26102, + [SMALL_STATE(472)] = 26223, + [SMALL_STATE(473)] = 26344, + [SMALL_STATE(474)] = 26465, + [SMALL_STATE(475)] = 26586, + [SMALL_STATE(476)] = 26707, + [SMALL_STATE(477)] = 26828, + [SMALL_STATE(478)] = 26949, + [SMALL_STATE(479)] = 27070, + [SMALL_STATE(480)] = 27191, + [SMALL_STATE(481)] = 27312, + [SMALL_STATE(482)] = 27433, + [SMALL_STATE(483)] = 27554, + [SMALL_STATE(484)] = 27675, + [SMALL_STATE(485)] = 27796, + [SMALL_STATE(486)] = 27917, + [SMALL_STATE(487)] = 28038, + [SMALL_STATE(488)] = 28159, + [SMALL_STATE(489)] = 28280, + [SMALL_STATE(490)] = 28401, + [SMALL_STATE(491)] = 28522, + [SMALL_STATE(492)] = 28643, + [SMALL_STATE(493)] = 28764, + [SMALL_STATE(494)] = 28885, + [SMALL_STATE(495)] = 29006, + [SMALL_STATE(496)] = 29127, + [SMALL_STATE(497)] = 29248, + [SMALL_STATE(498)] = 29369, + [SMALL_STATE(499)] = 29490, + [SMALL_STATE(500)] = 29611, + [SMALL_STATE(501)] = 29732, + [SMALL_STATE(502)] = 29853, + [SMALL_STATE(503)] = 29974, + [SMALL_STATE(504)] = 30095, + [SMALL_STATE(505)] = 30216, + [SMALL_STATE(506)] = 30337, + [SMALL_STATE(507)] = 30458, + [SMALL_STATE(508)] = 30579, + [SMALL_STATE(509)] = 30700, + [SMALL_STATE(510)] = 30821, + [SMALL_STATE(511)] = 30942, + [SMALL_STATE(512)] = 31063, + [SMALL_STATE(513)] = 31184, + [SMALL_STATE(514)] = 31305, + [SMALL_STATE(515)] = 31426, + [SMALL_STATE(516)] = 31547, + [SMALL_STATE(517)] = 31668, + [SMALL_STATE(518)] = 31789, + [SMALL_STATE(519)] = 31910, + [SMALL_STATE(520)] = 32031, + [SMALL_STATE(521)] = 32152, + [SMALL_STATE(522)] = 32273, + [SMALL_STATE(523)] = 32394, + [SMALL_STATE(524)] = 32515, + [SMALL_STATE(525)] = 32636, + [SMALL_STATE(526)] = 32757, + [SMALL_STATE(527)] = 32878, + [SMALL_STATE(528)] = 32999, + [SMALL_STATE(529)] = 33120, + [SMALL_STATE(530)] = 33241, + [SMALL_STATE(531)] = 33362, + [SMALL_STATE(532)] = 33483, + [SMALL_STATE(533)] = 33604, + [SMALL_STATE(534)] = 33725, + [SMALL_STATE(535)] = 33846, + [SMALL_STATE(536)] = 33967, + [SMALL_STATE(537)] = 34088, + [SMALL_STATE(538)] = 34209, + [SMALL_STATE(539)] = 34330, + [SMALL_STATE(540)] = 34451, + [SMALL_STATE(541)] = 34572, + [SMALL_STATE(542)] = 34693, + [SMALL_STATE(543)] = 34814, + [SMALL_STATE(544)] = 34935, + [SMALL_STATE(545)] = 35056, + [SMALL_STATE(546)] = 35177, + [SMALL_STATE(547)] = 35298, + [SMALL_STATE(548)] = 35419, + [SMALL_STATE(549)] = 35540, + [SMALL_STATE(550)] = 35661, + [SMALL_STATE(551)] = 35782, + [SMALL_STATE(552)] = 35903, + [SMALL_STATE(553)] = 36024, + [SMALL_STATE(554)] = 36145, + [SMALL_STATE(555)] = 36266, + [SMALL_STATE(556)] = 36387, + [SMALL_STATE(557)] = 36508, + [SMALL_STATE(558)] = 36629, + [SMALL_STATE(559)] = 36750, + [SMALL_STATE(560)] = 36871, + [SMALL_STATE(561)] = 36992, + [SMALL_STATE(562)] = 37113, + [SMALL_STATE(563)] = 37234, + [SMALL_STATE(564)] = 37355, + [SMALL_STATE(565)] = 37476, + [SMALL_STATE(566)] = 37597, + [SMALL_STATE(567)] = 37718, + [SMALL_STATE(568)] = 37839, + [SMALL_STATE(569)] = 37960, + [SMALL_STATE(570)] = 38081, + [SMALL_STATE(571)] = 38202, + [SMALL_STATE(572)] = 38323, + [SMALL_STATE(573)] = 38444, + [SMALL_STATE(574)] = 38565, + [SMALL_STATE(575)] = 38686, + [SMALL_STATE(576)] = 38807, + [SMALL_STATE(577)] = 38928, + [SMALL_STATE(578)] = 39049, + [SMALL_STATE(579)] = 39170, + [SMALL_STATE(580)] = 39291, + [SMALL_STATE(581)] = 39412, + [SMALL_STATE(582)] = 39533, + [SMALL_STATE(583)] = 39654, + [SMALL_STATE(584)] = 39775, + [SMALL_STATE(585)] = 39896, + [SMALL_STATE(586)] = 40017, + [SMALL_STATE(587)] = 40138, + [SMALL_STATE(588)] = 40259, + [SMALL_STATE(589)] = 40380, + [SMALL_STATE(590)] = 40501, + [SMALL_STATE(591)] = 40622, + [SMALL_STATE(592)] = 40743, + [SMALL_STATE(593)] = 40864, + [SMALL_STATE(594)] = 40985, + [SMALL_STATE(595)] = 41106, + [SMALL_STATE(596)] = 41227, + [SMALL_STATE(597)] = 41348, + [SMALL_STATE(598)] = 41469, + [SMALL_STATE(599)] = 41590, + [SMALL_STATE(600)] = 41711, + [SMALL_STATE(601)] = 41832, + [SMALL_STATE(602)] = 41953, + [SMALL_STATE(603)] = 42074, + [SMALL_STATE(604)] = 42195, + [SMALL_STATE(605)] = 42316, + [SMALL_STATE(606)] = 42437, + [SMALL_STATE(607)] = 42558, + [SMALL_STATE(608)] = 42679, + [SMALL_STATE(609)] = 42800, + [SMALL_STATE(610)] = 42921, + [SMALL_STATE(611)] = 43042, + [SMALL_STATE(612)] = 43163, + [SMALL_STATE(613)] = 43284, + [SMALL_STATE(614)] = 43405, + [SMALL_STATE(615)] = 43526, + [SMALL_STATE(616)] = 43647, + [SMALL_STATE(617)] = 43768, + [SMALL_STATE(618)] = 43889, + [SMALL_STATE(619)] = 44010, + [SMALL_STATE(620)] = 44131, + [SMALL_STATE(621)] = 44252, + [SMALL_STATE(622)] = 44373, + [SMALL_STATE(623)] = 44494, + [SMALL_STATE(624)] = 44615, + [SMALL_STATE(625)] = 44736, + [SMALL_STATE(626)] = 44857, + [SMALL_STATE(627)] = 44978, + [SMALL_STATE(628)] = 45099, + [SMALL_STATE(629)] = 45220, + [SMALL_STATE(630)] = 45341, + [SMALL_STATE(631)] = 45462, + [SMALL_STATE(632)] = 45583, + [SMALL_STATE(633)] = 45704, + [SMALL_STATE(634)] = 45825, + [SMALL_STATE(635)] = 45946, + [SMALL_STATE(636)] = 46067, + [SMALL_STATE(637)] = 46188, + [SMALL_STATE(638)] = 46309, + [SMALL_STATE(639)] = 46430, + [SMALL_STATE(640)] = 46551, + [SMALL_STATE(641)] = 46672, + [SMALL_STATE(642)] = 46793, + [SMALL_STATE(643)] = 46914, + [SMALL_STATE(644)] = 47035, + [SMALL_STATE(645)] = 47156, + [SMALL_STATE(646)] = 47277, + [SMALL_STATE(647)] = 47398, + [SMALL_STATE(648)] = 47519, + [SMALL_STATE(649)] = 47640, + [SMALL_STATE(650)] = 47761, + [SMALL_STATE(651)] = 47882, + [SMALL_STATE(652)] = 48003, + [SMALL_STATE(653)] = 48124, + [SMALL_STATE(654)] = 48245, + [SMALL_STATE(655)] = 48366, + [SMALL_STATE(656)] = 48487, + [SMALL_STATE(657)] = 48608, + [SMALL_STATE(658)] = 48729, + [SMALL_STATE(659)] = 48850, + [SMALL_STATE(660)] = 48971, + [SMALL_STATE(661)] = 49092, + [SMALL_STATE(662)] = 49213, + [SMALL_STATE(663)] = 49334, + [SMALL_STATE(664)] = 49455, + [SMALL_STATE(665)] = 49576, + [SMALL_STATE(666)] = 49697, + [SMALL_STATE(667)] = 49818, + [SMALL_STATE(668)] = 49939, + [SMALL_STATE(669)] = 50016, + [SMALL_STATE(670)] = 50137, + [SMALL_STATE(671)] = 50258, + [SMALL_STATE(672)] = 50379, + [SMALL_STATE(673)] = 50500, + [SMALL_STATE(674)] = 50621, + [SMALL_STATE(675)] = 50696, + [SMALL_STATE(676)] = 50817, + [SMALL_STATE(677)] = 50938, + [SMALL_STATE(678)] = 51059, + [SMALL_STATE(679)] = 51180, + [SMALL_STATE(680)] = 51301, + [SMALL_STATE(681)] = 51422, + [SMALL_STATE(682)] = 51543, + [SMALL_STATE(683)] = 51664, + [SMALL_STATE(684)] = 51785, + [SMALL_STATE(685)] = 51906, + [SMALL_STATE(686)] = 52027, + [SMALL_STATE(687)] = 52148, + [SMALL_STATE(688)] = 52269, + [SMALL_STATE(689)] = 52390, + [SMALL_STATE(690)] = 52511, + [SMALL_STATE(691)] = 52632, + [SMALL_STATE(692)] = 52753, + [SMALL_STATE(693)] = 52874, + [SMALL_STATE(694)] = 52995, + [SMALL_STATE(695)] = 53116, + [SMALL_STATE(696)] = 53237, + [SMALL_STATE(697)] = 53358, + [SMALL_STATE(698)] = 53479, + [SMALL_STATE(699)] = 53600, + [SMALL_STATE(700)] = 53721, + [SMALL_STATE(701)] = 53842, + [SMALL_STATE(702)] = 53963, + [SMALL_STATE(703)] = 54084, + [SMALL_STATE(704)] = 54205, + [SMALL_STATE(705)] = 54326, + [SMALL_STATE(706)] = 54447, + [SMALL_STATE(707)] = 54568, + [SMALL_STATE(708)] = 54689, + [SMALL_STATE(709)] = 54810, + [SMALL_STATE(710)] = 54931, + [SMALL_STATE(711)] = 55052, + [SMALL_STATE(712)] = 55173, + [SMALL_STATE(713)] = 55294, + [SMALL_STATE(714)] = 55415, + [SMALL_STATE(715)] = 55536, + [SMALL_STATE(716)] = 55657, + [SMALL_STATE(717)] = 55778, + [SMALL_STATE(718)] = 55899, + [SMALL_STATE(719)] = 56020, + [SMALL_STATE(720)] = 56141, + [SMALL_STATE(721)] = 56262, + [SMALL_STATE(722)] = 56383, + [SMALL_STATE(723)] = 56504, + [SMALL_STATE(724)] = 56625, + [SMALL_STATE(725)] = 56746, + [SMALL_STATE(726)] = 56867, + [SMALL_STATE(727)] = 56988, + [SMALL_STATE(728)] = 57109, + [SMALL_STATE(729)] = 57230, + [SMALL_STATE(730)] = 57303, + [SMALL_STATE(731)] = 57424, + [SMALL_STATE(732)] = 57545, + [SMALL_STATE(733)] = 57666, + [SMALL_STATE(734)] = 57787, + [SMALL_STATE(735)] = 57908, + [SMALL_STATE(736)] = 58029, + [SMALL_STATE(737)] = 58150, + [SMALL_STATE(738)] = 58271, + [SMALL_STATE(739)] = 58392, + [SMALL_STATE(740)] = 58513, + [SMALL_STATE(741)] = 58634, + [SMALL_STATE(742)] = 58755, + [SMALL_STATE(743)] = 58826, + [SMALL_STATE(744)] = 58947, + [SMALL_STATE(745)] = 59068, + [SMALL_STATE(746)] = 59189, + [SMALL_STATE(747)] = 59310, + [SMALL_STATE(748)] = 59431, + [SMALL_STATE(749)] = 59552, + [SMALL_STATE(750)] = 59673, + [SMALL_STATE(751)] = 59794, + [SMALL_STATE(752)] = 59915, + [SMALL_STATE(753)] = 60036, + [SMALL_STATE(754)] = 60157, + [SMALL_STATE(755)] = 60278, + [SMALL_STATE(756)] = 60399, + [SMALL_STATE(757)] = 60520, + [SMALL_STATE(758)] = 60641, + [SMALL_STATE(759)] = 60762, + [SMALL_STATE(760)] = 60883, + [SMALL_STATE(761)] = 60954, + [SMALL_STATE(762)] = 61075, + [SMALL_STATE(763)] = 61196, + [SMALL_STATE(764)] = 61317, + [SMALL_STATE(765)] = 61438, + [SMALL_STATE(766)] = 61559, + [SMALL_STATE(767)] = 61680, + [SMALL_STATE(768)] = 61801, + [SMALL_STATE(769)] = 61922, + [SMALL_STATE(770)] = 62043, + [SMALL_STATE(771)] = 62164, + [SMALL_STATE(772)] = 62285, + [SMALL_STATE(773)] = 62406, + [SMALL_STATE(774)] = 62527, + [SMALL_STATE(775)] = 62648, + [SMALL_STATE(776)] = 62719, + [SMALL_STATE(777)] = 62840, + [SMALL_STATE(778)] = 62961, + [SMALL_STATE(779)] = 63082, + [SMALL_STATE(780)] = 63203, + [SMALL_STATE(781)] = 63324, + [SMALL_STATE(782)] = 63445, + [SMALL_STATE(783)] = 63566, + [SMALL_STATE(784)] = 63687, + [SMALL_STATE(785)] = 63808, + [SMALL_STATE(786)] = 63929, + [SMALL_STATE(787)] = 64050, + [SMALL_STATE(788)] = 64171, + [SMALL_STATE(789)] = 64292, + [SMALL_STATE(790)] = 64413, + [SMALL_STATE(791)] = 64534, + [SMALL_STATE(792)] = 64655, + [SMALL_STATE(793)] = 64776, + [SMALL_STATE(794)] = 64897, + [SMALL_STATE(795)] = 65018, + [SMALL_STATE(796)] = 65139, + [SMALL_STATE(797)] = 65260, + [SMALL_STATE(798)] = 65381, + [SMALL_STATE(799)] = 65502, + [SMALL_STATE(800)] = 65623, + [SMALL_STATE(801)] = 65744, + [SMALL_STATE(802)] = 65865, + [SMALL_STATE(803)] = 65986, + [SMALL_STATE(804)] = 66107, + [SMALL_STATE(805)] = 66228, + [SMALL_STATE(806)] = 66349, + [SMALL_STATE(807)] = 66470, + [SMALL_STATE(808)] = 66591, + [SMALL_STATE(809)] = 66712, + [SMALL_STATE(810)] = 66833, + [SMALL_STATE(811)] = 66954, + [SMALL_STATE(812)] = 67075, + [SMALL_STATE(813)] = 67196, + [SMALL_STATE(814)] = 67317, + [SMALL_STATE(815)] = 67438, + [SMALL_STATE(816)] = 67559, + [SMALL_STATE(817)] = 67680, + [SMALL_STATE(818)] = 67801, + [SMALL_STATE(819)] = 67922, + [SMALL_STATE(820)] = 68043, + [SMALL_STATE(821)] = 68164, + [SMALL_STATE(822)] = 68285, + [SMALL_STATE(823)] = 68406, + [SMALL_STATE(824)] = 68527, + [SMALL_STATE(825)] = 68648, + [SMALL_STATE(826)] = 68769, + [SMALL_STATE(827)] = 68890, + [SMALL_STATE(828)] = 69011, + [SMALL_STATE(829)] = 69132, + [SMALL_STATE(830)] = 69253, + [SMALL_STATE(831)] = 69374, + [SMALL_STATE(832)] = 69495, + [SMALL_STATE(833)] = 69616, + [SMALL_STATE(834)] = 69737, + [SMALL_STATE(835)] = 69858, + [SMALL_STATE(836)] = 69979, + [SMALL_STATE(837)] = 70100, + [SMALL_STATE(838)] = 70221, + [SMALL_STATE(839)] = 70342, + [SMALL_STATE(840)] = 70463, + [SMALL_STATE(841)] = 70584, + [SMALL_STATE(842)] = 70705, + [SMALL_STATE(843)] = 70826, + [SMALL_STATE(844)] = 70947, + [SMALL_STATE(845)] = 71068, + [SMALL_STATE(846)] = 71189, + [SMALL_STATE(847)] = 71310, + [SMALL_STATE(848)] = 71431, + [SMALL_STATE(849)] = 71552, + [SMALL_STATE(850)] = 71673, + [SMALL_STATE(851)] = 71794, + [SMALL_STATE(852)] = 71915, + [SMALL_STATE(853)] = 72036, + [SMALL_STATE(854)] = 72157, + [SMALL_STATE(855)] = 72278, + [SMALL_STATE(856)] = 72399, + [SMALL_STATE(857)] = 72474, + [SMALL_STATE(858)] = 72595, + [SMALL_STATE(859)] = 72716, + [SMALL_STATE(860)] = 72837, + [SMALL_STATE(861)] = 72958, + [SMALL_STATE(862)] = 73079, + [SMALL_STATE(863)] = 73200, + [SMALL_STATE(864)] = 73321, + [SMALL_STATE(865)] = 73442, + [SMALL_STATE(866)] = 73563, + [SMALL_STATE(867)] = 73684, + [SMALL_STATE(868)] = 73805, + [SMALL_STATE(869)] = 73926, + [SMALL_STATE(870)] = 74047, + [SMALL_STATE(871)] = 74168, + [SMALL_STATE(872)] = 74289, + [SMALL_STATE(873)] = 74410, + [SMALL_STATE(874)] = 74531, + [SMALL_STATE(875)] = 74602, + [SMALL_STATE(876)] = 74723, + [SMALL_STATE(877)] = 74844, + [SMALL_STATE(878)] = 74965, + [SMALL_STATE(879)] = 75086, + [SMALL_STATE(880)] = 75207, + [SMALL_STATE(881)] = 75328, + [SMALL_STATE(882)] = 75449, + [SMALL_STATE(883)] = 75570, + [SMALL_STATE(884)] = 75691, + [SMALL_STATE(885)] = 75812, + [SMALL_STATE(886)] = 75933, + [SMALL_STATE(887)] = 76054, + [SMALL_STATE(888)] = 76175, + [SMALL_STATE(889)] = 76296, + [SMALL_STATE(890)] = 76417, + [SMALL_STATE(891)] = 76538, + [SMALL_STATE(892)] = 76659, + [SMALL_STATE(893)] = 76780, + [SMALL_STATE(894)] = 76901, + [SMALL_STATE(895)] = 77022, + [SMALL_STATE(896)] = 77143, + [SMALL_STATE(897)] = 77264, + [SMALL_STATE(898)] = 77385, + [SMALL_STATE(899)] = 77506, + [SMALL_STATE(900)] = 77627, + [SMALL_STATE(901)] = 77748, + [SMALL_STATE(902)] = 77869, + [SMALL_STATE(903)] = 77990, + [SMALL_STATE(904)] = 78111, + [SMALL_STATE(905)] = 78232, + [SMALL_STATE(906)] = 78353, + [SMALL_STATE(907)] = 78474, + [SMALL_STATE(908)] = 78595, + [SMALL_STATE(909)] = 78716, + [SMALL_STATE(910)] = 78837, + [SMALL_STATE(911)] = 78958, + [SMALL_STATE(912)] = 79079, + [SMALL_STATE(913)] = 79200, + [SMALL_STATE(914)] = 79321, + [SMALL_STATE(915)] = 79442, + [SMALL_STATE(916)] = 79563, + [SMALL_STATE(917)] = 79684, + [SMALL_STATE(918)] = 79805, + [SMALL_STATE(919)] = 79926, + [SMALL_STATE(920)] = 80047, + [SMALL_STATE(921)] = 80168, + [SMALL_STATE(922)] = 80289, + [SMALL_STATE(923)] = 80410, + [SMALL_STATE(924)] = 80531, + [SMALL_STATE(925)] = 80652, + [SMALL_STATE(926)] = 80773, + [SMALL_STATE(927)] = 80894, + [SMALL_STATE(928)] = 81015, + [SMALL_STATE(929)] = 81136, + [SMALL_STATE(930)] = 81257, + [SMALL_STATE(931)] = 81378, + [SMALL_STATE(932)] = 81499, + [SMALL_STATE(933)] = 81620, + [SMALL_STATE(934)] = 81741, + [SMALL_STATE(935)] = 81862, + [SMALL_STATE(936)] = 81983, + [SMALL_STATE(937)] = 82104, + [SMALL_STATE(938)] = 82225, + [SMALL_STATE(939)] = 82346, + [SMALL_STATE(940)] = 82467, + [SMALL_STATE(941)] = 82588, + [SMALL_STATE(942)] = 82709, + [SMALL_STATE(943)] = 82830, + [SMALL_STATE(944)] = 82951, + [SMALL_STATE(945)] = 83072, + [SMALL_STATE(946)] = 83193, + [SMALL_STATE(947)] = 83314, + [SMALL_STATE(948)] = 83435, + [SMALL_STATE(949)] = 83556, + [SMALL_STATE(950)] = 83677, + [SMALL_STATE(951)] = 83798, + [SMALL_STATE(952)] = 83919, + [SMALL_STATE(953)] = 84040, + [SMALL_STATE(954)] = 84161, + [SMALL_STATE(955)] = 84282, + [SMALL_STATE(956)] = 84403, + [SMALL_STATE(957)] = 84524, + [SMALL_STATE(958)] = 84645, + [SMALL_STATE(959)] = 84766, + [SMALL_STATE(960)] = 84887, + [SMALL_STATE(961)] = 85008, + [SMALL_STATE(962)] = 85129, + [SMALL_STATE(963)] = 85250, + [SMALL_STATE(964)] = 85371, + [SMALL_STATE(965)] = 85492, + [SMALL_STATE(966)] = 85613, + [SMALL_STATE(967)] = 85734, + [SMALL_STATE(968)] = 85855, + [SMALL_STATE(969)] = 85976, + [SMALL_STATE(970)] = 86047, + [SMALL_STATE(971)] = 86168, + [SMALL_STATE(972)] = 86289, + [SMALL_STATE(973)] = 86410, + [SMALL_STATE(974)] = 86531, + [SMALL_STATE(975)] = 86652, + [SMALL_STATE(976)] = 86773, + [SMALL_STATE(977)] = 86894, + [SMALL_STATE(978)] = 87015, + [SMALL_STATE(979)] = 87136, + [SMALL_STATE(980)] = 87257, + [SMALL_STATE(981)] = 87378, + [SMALL_STATE(982)] = 87499, + [SMALL_STATE(983)] = 87620, + [SMALL_STATE(984)] = 87741, + [SMALL_STATE(985)] = 87862, + [SMALL_STATE(986)] = 87983, + [SMALL_STATE(987)] = 88053, + [SMALL_STATE(988)] = 88123, + [SMALL_STATE(989)] = 88193, + [SMALL_STATE(990)] = 88265, + [SMALL_STATE(991)] = 88335, + [SMALL_STATE(992)] = 88419, + [SMALL_STATE(993)] = 88505, + [SMALL_STATE(994)] = 88575, + [SMALL_STATE(995)] = 88645, + [SMALL_STATE(996)] = 88715, + [SMALL_STATE(997)] = 88785, + [SMALL_STATE(998)] = 88855, + [SMALL_STATE(999)] = 88925, + [SMALL_STATE(1000)] = 88995, + [SMALL_STATE(1001)] = 89065, + [SMALL_STATE(1002)] = 89135, + [SMALL_STATE(1003)] = 89221, + [SMALL_STATE(1004)] = 89307, + [SMALL_STATE(1005)] = 89393, + [SMALL_STATE(1006)] = 89463, + [SMALL_STATE(1007)] = 89533, + [SMALL_STATE(1008)] = 89613, + [SMALL_STATE(1009)] = 89691, + [SMALL_STATE(1010)] = 89775, + [SMALL_STATE(1011)] = 89861, + [SMALL_STATE(1012)] = 89931, + [SMALL_STATE(1013)] = 90017, + [SMALL_STATE(1014)] = 90103, + [SMALL_STATE(1015)] = 90173, + [SMALL_STATE(1016)] = 90243, + [SMALL_STATE(1017)] = 90313, + [SMALL_STATE(1018)] = 90383, + [SMALL_STATE(1019)] = 90453, + [SMALL_STATE(1020)] = 90523, + [SMALL_STATE(1021)] = 90593, + [SMALL_STATE(1022)] = 90679, + [SMALL_STATE(1023)] = 90749, + [SMALL_STATE(1024)] = 90819, + [SMALL_STATE(1025)] = 90904, + [SMALL_STATE(1026)] = 90989, + [SMALL_STATE(1027)] = 91074, + [SMALL_STATE(1028)] = 91159, + [SMALL_STATE(1029)] = 91244, + [SMALL_STATE(1030)] = 91327, + [SMALL_STATE(1031)] = 91412, + [SMALL_STATE(1032)] = 91497, + [SMALL_STATE(1033)] = 91582, + [SMALL_STATE(1034)] = 91667, + [SMALL_STATE(1035)] = 91746, + [SMALL_STATE(1036)] = 91823, + [SMALL_STATE(1037)] = 91906, + [SMALL_STATE(1038)] = 91991, + [SMALL_STATE(1039)] = 92078, + [SMALL_STATE(1040)] = 92149, + [SMALL_STATE(1041)] = 92217, + [SMALL_STATE(1042)] = 92287, + [SMALL_STATE(1043)] = 92355, + [SMALL_STATE(1044)] = 92427, + [SMALL_STATE(1045)] = 92497, + [SMALL_STATE(1046)] = 92565, + [SMALL_STATE(1047)] = 92637, + [SMALL_STATE(1048)] = 92709, + [SMALL_STATE(1049)] = 92781, + [SMALL_STATE(1050)] = 92853, + [SMALL_STATE(1051)] = 92921, + [SMALL_STATE(1052)] = 92993, + [SMALL_STATE(1053)] = 93065, + [SMALL_STATE(1054)] = 93137, + [SMALL_STATE(1055)] = 93207, + [SMALL_STATE(1056)] = 93275, + [SMALL_STATE(1057)] = 93349, + [SMALL_STATE(1058)] = 93419, + [SMALL_STATE(1059)] = 93487, + [SMALL_STATE(1060)] = 93559, + [SMALL_STATE(1061)] = 93629, + [SMALL_STATE(1062)] = 93713, + [SMALL_STATE(1063)] = 93784, + [SMALL_STATE(1064)] = 93851, + [SMALL_STATE(1065)] = 93922, + [SMALL_STATE(1066)] = 93995, + [SMALL_STATE(1067)] = 94064, + [SMALL_STATE(1068)] = 94135, + [SMALL_STATE(1069)] = 94202, + [SMALL_STATE(1070)] = 94273, + [SMALL_STATE(1071)] = 94342, + [SMALL_STATE(1072)] = 94413, + [SMALL_STATE(1073)] = 94480, + [SMALL_STATE(1074)] = 94549, + [SMALL_STATE(1075)] = 94620, + [SMALL_STATE(1076)] = 94687, + [SMALL_STATE(1077)] = 94758, + [SMALL_STATE(1078)] = 94829, + [SMALL_STATE(1079)] = 94900, + [SMALL_STATE(1080)] = 94967, + [SMALL_STATE(1081)] = 95034, + [SMALL_STATE(1082)] = 95107, + [SMALL_STATE(1083)] = 95178, + [SMALL_STATE(1084)] = 95245, + [SMALL_STATE(1085)] = 95316, + [SMALL_STATE(1086)] = 95385, + [SMALL_STATE(1087)] = 95452, + [SMALL_STATE(1088)] = 95519, + [SMALL_STATE(1089)] = 95588, + [SMALL_STATE(1090)] = 95655, + [SMALL_STATE(1091)] = 95722, + [SMALL_STATE(1092)] = 95791, + [SMALL_STATE(1093)] = 95857, + [SMALL_STATE(1094)] = 95923, + [SMALL_STATE(1095)] = 95991, + [SMALL_STATE(1096)] = 96057, + [SMALL_STATE(1097)] = 96123, + [SMALL_STATE(1098)] = 96189, + [SMALL_STATE(1099)] = 96255, + [SMALL_STATE(1100)] = 96321, + [SMALL_STATE(1101)] = 96387, + [SMALL_STATE(1102)] = 96453, + [SMALL_STATE(1103)] = 96519, + [SMALL_STATE(1104)] = 96585, + [SMALL_STATE(1105)] = 96651, + [SMALL_STATE(1106)] = 96717, + [SMALL_STATE(1107)] = 96783, + [SMALL_STATE(1108)] = 96849, + [SMALL_STATE(1109)] = 96915, + [SMALL_STATE(1110)] = 96981, + [SMALL_STATE(1111)] = 97047, + [SMALL_STATE(1112)] = 97113, + [SMALL_STATE(1113)] = 97183, + [SMALL_STATE(1114)] = 97253, + [SMALL_STATE(1115)] = 97319, + [SMALL_STATE(1116)] = 97391, + [SMALL_STATE(1117)] = 97457, + [SMALL_STATE(1118)] = 97523, + [SMALL_STATE(1119)] = 97589, + [SMALL_STATE(1120)] = 97655, + [SMALL_STATE(1121)] = 97721, + [SMALL_STATE(1122)] = 97787, + [SMALL_STATE(1123)] = 97853, + [SMALL_STATE(1124)] = 97919, + [SMALL_STATE(1125)] = 97985, + [SMALL_STATE(1126)] = 98051, + [SMALL_STATE(1127)] = 98116, + [SMALL_STATE(1128)] = 98181, + [SMALL_STATE(1129)] = 98268, + [SMALL_STATE(1130)] = 98333, + [SMALL_STATE(1131)] = 98398, + [SMALL_STATE(1132)] = 98483, + [SMALL_STATE(1133)] = 98548, + [SMALL_STATE(1134)] = 98623, + [SMALL_STATE(1135)] = 98702, + [SMALL_STATE(1136)] = 98767, + [SMALL_STATE(1137)] = 98854, + [SMALL_STATE(1138)] = 98919, + [SMALL_STATE(1139)] = 99006, + [SMALL_STATE(1140)] = 99071, + [SMALL_STATE(1141)] = 99136, + [SMALL_STATE(1142)] = 99201, + [SMALL_STATE(1143)] = 99266, + [SMALL_STATE(1144)] = 99331, + [SMALL_STATE(1145)] = 99396, + [SMALL_STATE(1146)] = 99483, + [SMALL_STATE(1147)] = 99570, + [SMALL_STATE(1148)] = 99635, + [SMALL_STATE(1149)] = 99722, + [SMALL_STATE(1150)] = 99787, + [SMALL_STATE(1151)] = 99852, + [SMALL_STATE(1152)] = 99939, + [SMALL_STATE(1153)] = 100004, + [SMALL_STATE(1154)] = 100089, + [SMALL_STATE(1155)] = 100154, + [SMALL_STATE(1156)] = 100219, + [SMALL_STATE(1157)] = 100306, + [SMALL_STATE(1158)] = 100371, + [SMALL_STATE(1159)] = 100436, + [SMALL_STATE(1160)] = 100501, + [SMALL_STATE(1161)] = 100588, + [SMALL_STATE(1162)] = 100653, + [SMALL_STATE(1163)] = 100718, + [SMALL_STATE(1164)] = 100783, + [SMALL_STATE(1165)] = 100855, + [SMALL_STATE(1166)] = 100924, + [SMALL_STATE(1167)] = 100989, + [SMALL_STATE(1168)] = 101054, + [SMALL_STATE(1169)] = 101119, + [SMALL_STATE(1170)] = 101186, + [SMALL_STATE(1171)] = 101278, + [SMALL_STATE(1172)] = 101370, + [SMALL_STATE(1173)] = 101462, + [SMALL_STATE(1174)] = 101554, + [SMALL_STATE(1175)] = 101646, + [SMALL_STATE(1176)] = 101738, + [SMALL_STATE(1177)] = 101830, + [SMALL_STATE(1178)] = 101922, + [SMALL_STATE(1179)] = 102014, + [SMALL_STATE(1180)] = 102106, + [SMALL_STATE(1181)] = 102187, + [SMALL_STATE(1182)] = 102268, + [SMALL_STATE(1183)] = 102347, + [SMALL_STATE(1184)] = 102426, + [SMALL_STATE(1185)] = 102507, + [SMALL_STATE(1186)] = 102590, + [SMALL_STATE(1187)] = 102661, + [SMALL_STATE(1188)] = 102736, + [SMALL_STATE(1189)] = 102817, + [SMALL_STATE(1190)] = 102898, + [SMALL_STATE(1191)] = 102979, + [SMALL_STATE(1192)] = 103060, + [SMALL_STATE(1193)] = 103141, + [SMALL_STATE(1194)] = 103209, + [SMALL_STATE(1195)] = 103289, + [SMALL_STATE(1196)] = 103369, + [SMALL_STATE(1197)] = 103449, + [SMALL_STATE(1198)] = 103529, + [SMALL_STATE(1199)] = 103609, + [SMALL_STATE(1200)] = 103689, + [SMALL_STATE(1201)] = 103769, + [SMALL_STATE(1202)] = 103843, + [SMALL_STATE(1203)] = 103923, + [SMALL_STATE(1204)] = 104001, + [SMALL_STATE(1205)] = 104071, + [SMALL_STATE(1206)] = 104151, + [SMALL_STATE(1207)] = 104231, + [SMALL_STATE(1208)] = 104311, + [SMALL_STATE(1209)] = 104389, + [SMALL_STATE(1210)] = 104469, + [SMALL_STATE(1211)] = 104550, + [SMALL_STATE(1212)] = 104631, + [SMALL_STATE(1213)] = 104712, + [SMALL_STATE(1214)] = 104791, + [SMALL_STATE(1215)] = 104870, + [SMALL_STATE(1216)] = 104951, + [SMALL_STATE(1217)] = 105032, + [SMALL_STATE(1218)] = 105113, + [SMALL_STATE(1219)] = 105190, + [SMALL_STATE(1220)] = 105259, + [SMALL_STATE(1221)] = 105332, + [SMALL_STATE(1222)] = 105413, + [SMALL_STATE(1223)] = 105478, + [SMALL_STATE(1224)] = 105545, + [SMALL_STATE(1225)] = 105626, + [SMALL_STATE(1226)] = 105707, + [SMALL_STATE(1227)] = 105787, + [SMALL_STATE(1228)] = 105867, + [SMALL_STATE(1229)] = 105935, + [SMALL_STATE(1230)] = 106001, + [SMALL_STATE(1231)] = 106081, + [SMALL_STATE(1232)] = 106159, + [SMALL_STATE(1233)] = 106231, + [SMALL_STATE(1234)] = 106311, + [SMALL_STATE(1235)] = 106389, + [SMALL_STATE(1236)] = 106469, + [SMALL_STATE(1237)] = 106533, + [SMALL_STATE(1238)] = 106613, + [SMALL_STATE(1239)] = 106693, + [SMALL_STATE(1240)] = 106773, + [SMALL_STATE(1241)] = 106853, + [SMALL_STATE(1242)] = 106946, + [SMALL_STATE(1243)] = 107039, + [SMALL_STATE(1244)] = 107132, + [SMALL_STATE(1245)] = 107225, + [SMALL_STATE(1246)] = 107318, + [SMALL_STATE(1247)] = 107411, + [SMALL_STATE(1248)] = 107504, + [SMALL_STATE(1249)] = 107597, + [SMALL_STATE(1250)] = 107690, + [SMALL_STATE(1251)] = 107783, + [SMALL_STATE(1252)] = 107876, + [SMALL_STATE(1253)] = 107969, + [SMALL_STATE(1254)] = 108062, + [SMALL_STATE(1255)] = 108155, + [SMALL_STATE(1256)] = 108218, + [SMALL_STATE(1257)] = 108311, + [SMALL_STATE(1258)] = 108404, + [SMALL_STATE(1259)] = 108497, + [SMALL_STATE(1260)] = 108590, + [SMALL_STATE(1261)] = 108683, + [SMALL_STATE(1262)] = 108776, + [SMALL_STATE(1263)] = 108869, + [SMALL_STATE(1264)] = 108962, + [SMALL_STATE(1265)] = 109055, + [SMALL_STATE(1266)] = 109148, + [SMALL_STATE(1267)] = 109241, + [SMALL_STATE(1268)] = 109334, + [SMALL_STATE(1269)] = 109399, + [SMALL_STATE(1270)] = 109473, + [SMALL_STATE(1271)] = 109547, + [SMALL_STATE(1272)] = 109621, + [SMALL_STATE(1273)] = 109683, + [SMALL_STATE(1274)] = 109757, + [SMALL_STATE(1275)] = 109831, + [SMALL_STATE(1276)] = 109905, + [SMALL_STATE(1277)] = 109979, + [SMALL_STATE(1278)] = 110056, + [SMALL_STATE(1279)] = 110115, + [SMALL_STATE(1280)] = 110176, + [SMALL_STATE(1281)] = 110253, + [SMALL_STATE(1282)] = 110318, + [SMALL_STATE(1283)] = 110395, + [SMALL_STATE(1284)] = 110472, + [SMALL_STATE(1285)] = 110541, + [SMALL_STATE(1286)] = 110602, + [SMALL_STATE(1287)] = 110677, + [SMALL_STATE(1288)] = 110752, + [SMALL_STATE(1289)] = 110829, + [SMALL_STATE(1290)] = 110906, + [SMALL_STATE(1291)] = 110983, + [SMALL_STATE(1292)] = 111060, + [SMALL_STATE(1293)] = 111137, + [SMALL_STATE(1294)] = 111221, + [SMALL_STATE(1295)] = 111295, + [SMALL_STATE(1296)] = 111359, + [SMALL_STATE(1297)] = 111431, + [SMALL_STATE(1298)] = 111505, + [SMALL_STATE(1299)] = 111579, + [SMALL_STATE(1300)] = 111663, + [SMALL_STATE(1301)] = 111737, + [SMALL_STATE(1302)] = 111821, + [SMALL_STATE(1303)] = 111895, + [SMALL_STATE(1304)] = 111979, + [SMALL_STATE(1305)] = 112053, + [SMALL_STATE(1306)] = 112121, + [SMALL_STATE(1307)] = 112195, + [SMALL_STATE(1308)] = 112267, + [SMALL_STATE(1309)] = 112323, + [SMALL_STATE(1310)] = 112383, + [SMALL_STATE(1311)] = 112467, + [SMALL_STATE(1312)] = 112551, + [SMALL_STATE(1313)] = 112635, + [SMALL_STATE(1314)] = 112719, + [SMALL_STATE(1315)] = 112793, + [SMALL_STATE(1316)] = 112867, + [SMALL_STATE(1317)] = 112951, + [SMALL_STATE(1318)] = 113035, + [SMALL_STATE(1319)] = 113097, + [SMALL_STATE(1320)] = 113159, + [SMALL_STATE(1321)] = 113218, + [SMALL_STATE(1322)] = 113277, + [SMALL_STATE(1323)] = 113336, + [SMALL_STATE(1324)] = 113395, + [SMALL_STATE(1325)] = 113462, + [SMALL_STATE(1326)] = 113517, + [SMALL_STATE(1327)] = 113590, + [SMALL_STATE(1328)] = 113645, + [SMALL_STATE(1329)] = 113700, + [SMALL_STATE(1330)] = 113755, + [SMALL_STATE(1331)] = 113818, + [SMALL_STATE(1332)] = 113889, + [SMALL_STATE(1333)] = 113962, + [SMALL_STATE(1334)] = 114019, + [SMALL_STATE(1335)] = 114080, + [SMALL_STATE(1336)] = 114139, + [SMALL_STATE(1337)] = 114210, + [SMALL_STATE(1338)] = 114265, + [SMALL_STATE(1339)] = 114338, + [SMALL_STATE(1340)] = 114395, + [SMALL_STATE(1341)] = 114450, + [SMALL_STATE(1342)] = 114505, + [SMALL_STATE(1343)] = 114562, + [SMALL_STATE(1344)] = 114635, + [SMALL_STATE(1345)] = 114708, + [SMALL_STATE(1346)] = 114781, + [SMALL_STATE(1347)] = 114840, + [SMALL_STATE(1348)] = 114897, + [SMALL_STATE(1349)] = 114956, + [SMALL_STATE(1350)] = 115029, + [SMALL_STATE(1351)] = 115102, + [SMALL_STATE(1352)] = 115159, + [SMALL_STATE(1353)] = 115218, + [SMALL_STATE(1354)] = 115293, + [SMALL_STATE(1355)] = 115365, + [SMALL_STATE(1356)] = 115427, + [SMALL_STATE(1357)] = 115513, + [SMALL_STATE(1358)] = 115599, + [SMALL_STATE(1359)] = 115685, + [SMALL_STATE(1360)] = 115757, + [SMALL_STATE(1361)] = 115843, + [SMALL_STATE(1362)] = 115915, + [SMALL_STATE(1363)] = 115987, + [SMALL_STATE(1364)] = 116059, + [SMALL_STATE(1365)] = 116145, + [SMALL_STATE(1366)] = 116217, + [SMALL_STATE(1367)] = 116289, + [SMALL_STATE(1368)] = 116375, + [SMALL_STATE(1369)] = 116461, + [SMALL_STATE(1370)] = 116523, + [SMALL_STATE(1371)] = 116593, + [SMALL_STATE(1372)] = 116679, + [SMALL_STATE(1373)] = 116751, + [SMALL_STATE(1374)] = 116823, + [SMALL_STATE(1375)] = 116895, + [SMALL_STATE(1376)] = 116981, + [SMALL_STATE(1377)] = 117067, + [SMALL_STATE(1378)] = 117139, + [SMALL_STATE(1379)] = 117211, + [SMALL_STATE(1380)] = 117297, + [SMALL_STATE(1381)] = 117367, + [SMALL_STATE(1382)] = 117425, + [SMALL_STATE(1383)] = 117491, + [SMALL_STATE(1384)] = 117545, + [SMALL_STATE(1385)] = 117611, + [SMALL_STATE(1386)] = 117671, + [SMALL_STATE(1387)] = 117731, + [SMALL_STATE(1388)] = 117803, + [SMALL_STATE(1389)] = 117875, + [SMALL_STATE(1390)] = 117947, + [SMALL_STATE(1391)] = 118019, + [SMALL_STATE(1392)] = 118105, + [SMALL_STATE(1393)] = 118159, + [SMALL_STATE(1394)] = 118231, + [SMALL_STATE(1395)] = 118301, + [SMALL_STATE(1396)] = 118387, + [SMALL_STATE(1397)] = 118459, + [SMALL_STATE(1398)] = 118531, + [SMALL_STATE(1399)] = 118603, + [SMALL_STATE(1400)] = 118689, + [SMALL_STATE(1401)] = 118745, + [SMALL_STATE(1402)] = 118799, + [SMALL_STATE(1403)] = 118871, + [SMALL_STATE(1404)] = 118941, + [SMALL_STATE(1405)] = 119027, + [SMALL_STATE(1406)] = 119081, + [SMALL_STATE(1407)] = 119133, + [SMALL_STATE(1408)] = 119205, + [SMALL_STATE(1409)] = 119261, + [SMALL_STATE(1410)] = 119333, + [SMALL_STATE(1411)] = 119406, + [SMALL_STATE(1412)] = 119459, + [SMALL_STATE(1413)] = 119512, + [SMALL_STATE(1414)] = 119573, + [SMALL_STATE(1415)] = 119626, + [SMALL_STATE(1416)] = 119679, + [SMALL_STATE(1417)] = 119732, + [SMALL_STATE(1418)] = 119791, + [SMALL_STATE(1419)] = 119844, + [SMALL_STATE(1420)] = 119909, + [SMALL_STATE(1421)] = 119962, + [SMALL_STATE(1422)] = 120015, + [SMALL_STATE(1423)] = 120068, + [SMALL_STATE(1424)] = 120121, + [SMALL_STATE(1425)] = 120174, + [SMALL_STATE(1426)] = 120231, + [SMALL_STATE(1427)] = 120284, + [SMALL_STATE(1428)] = 120337, + [SMALL_STATE(1429)] = 120390, + [SMALL_STATE(1430)] = 120443, + [SMALL_STATE(1431)] = 120496, + [SMALL_STATE(1432)] = 120565, + [SMALL_STATE(1433)] = 120634, + [SMALL_STATE(1434)] = 120707, + [SMALL_STATE(1435)] = 120778, + [SMALL_STATE(1436)] = 120851, + [SMALL_STATE(1437)] = 120922, + [SMALL_STATE(1438)] = 120991, + [SMALL_STATE(1439)] = 121044, + [SMALL_STATE(1440)] = 121117, + [SMALL_STATE(1441)] = 121190, + [SMALL_STATE(1442)] = 121261, + [SMALL_STATE(1443)] = 121320, + [SMALL_STATE(1444)] = 121393, + [SMALL_STATE(1445)] = 121448, + [SMALL_STATE(1446)] = 121521, + [SMALL_STATE(1447)] = 121590, + [SMALL_STATE(1448)] = 121663, + [SMALL_STATE(1449)] = 121716, + [SMALL_STATE(1450)] = 121769, + [SMALL_STATE(1451)] = 121842, + [SMALL_STATE(1452)] = 121895, + [SMALL_STATE(1453)] = 121948, + [SMALL_STATE(1454)] = 122001, + [SMALL_STATE(1455)] = 122054, + [SMALL_STATE(1456)] = 122107, + [SMALL_STATE(1457)] = 122160, + [SMALL_STATE(1458)] = 122231, + [SMALL_STATE(1459)] = 122299, + [SMALL_STATE(1460)] = 122369, + [SMALL_STATE(1461)] = 122435, + [SMALL_STATE(1462)] = 122503, + [SMALL_STATE(1463)] = 122573, + [SMALL_STATE(1464)] = 122631, + [SMALL_STATE(1465)] = 122701, + [SMALL_STATE(1466)] = 122757, + [SMALL_STATE(1467)] = 122827, + [SMALL_STATE(1468)] = 122897, + [SMALL_STATE(1469)] = 122967, + [SMALL_STATE(1470)] = 123035, + [SMALL_STATE(1471)] = 123105, + [SMALL_STATE(1472)] = 123175, + [SMALL_STATE(1473)] = 123245, + [SMALL_STATE(1474)] = 123305, + [SMALL_STATE(1475)] = 123369, + [SMALL_STATE(1476)] = 123437, + [SMALL_STATE(1477)] = 123493, + [SMALL_STATE(1478)] = 123546, + [SMALL_STATE(1479)] = 123601, + [SMALL_STATE(1480)] = 123656, + [SMALL_STATE(1481)] = 123711, + [SMALL_STATE(1482)] = 123766, + [SMALL_STATE(1483)] = 123823, + [SMALL_STATE(1484)] = 123876, + [SMALL_STATE(1485)] = 123929, + [SMALL_STATE(1486)] = 123986, + [SMALL_STATE(1487)] = 124041, + [SMALL_STATE(1488)] = 124098, + [SMALL_STATE(1489)] = 124153, + [SMALL_STATE(1490)] = 124208, + [SMALL_STATE(1491)] = 124265, + [SMALL_STATE(1492)] = 124322, + [SMALL_STATE(1493)] = 124377, + [SMALL_STATE(1494)] = 124434, + [SMALL_STATE(1495)] = 124489, + [SMALL_STATE(1496)] = 124546, + [SMALL_STATE(1497)] = 124601, + [SMALL_STATE(1498)] = 124669, + [SMALL_STATE(1499)] = 124737, + [SMALL_STATE(1500)] = 124795, + [SMALL_STATE(1501)] = 124863, + [SMALL_STATE(1502)] = 124925, + [SMALL_STATE(1503)] = 124973, + [SMALL_STATE(1504)] = 125041, + [SMALL_STATE(1505)] = 125107, + [SMALL_STATE(1506)] = 125175, + [SMALL_STATE(1507)] = 125243, + [SMALL_STATE(1508)] = 125311, + [SMALL_STATE(1509)] = 125363, + [SMALL_STATE(1510)] = 125431, + [SMALL_STATE(1511)] = 125499, + [SMALL_STATE(1512)] = 125569, + [SMALL_STATE(1513)] = 125637, + [SMALL_STATE(1514)] = 125705, + [SMALL_STATE(1515)] = 125767, + [SMALL_STATE(1516)] = 125833, + [SMALL_STATE(1517)] = 125891, + [SMALL_STATE(1518)] = 125959, + [SMALL_STATE(1519)] = 126027, + [SMALL_STATE(1520)] = 126095, + [SMALL_STATE(1521)] = 126163, + [SMALL_STATE(1522)] = 126221, + [SMALL_STATE(1523)] = 126287, + [SMALL_STATE(1524)] = 126355, + [SMALL_STATE(1525)] = 126403, + [SMALL_STATE(1526)] = 126469, + [SMALL_STATE(1527)] = 126537, + [SMALL_STATE(1528)] = 126591, + [SMALL_STATE(1529)] = 126661, + [SMALL_STATE(1530)] = 126709, + [SMALL_STATE(1531)] = 126757, + [SMALL_STATE(1532)] = 126825, + [SMALL_STATE(1533)] = 126872, + [SMALL_STATE(1534)] = 126919, + [SMALL_STATE(1535)] = 126968, + [SMALL_STATE(1536)] = 127015, + [SMALL_STATE(1537)] = 127062, + [SMALL_STATE(1538)] = 127125, + [SMALL_STATE(1539)] = 127172, + [SMALL_STATE(1540)] = 127219, + [SMALL_STATE(1541)] = 127266, + [SMALL_STATE(1542)] = 127313, + [SMALL_STATE(1543)] = 127360, + [SMALL_STATE(1544)] = 127407, + [SMALL_STATE(1545)] = 127454, + [SMALL_STATE(1546)] = 127501, + [SMALL_STATE(1547)] = 127548, + [SMALL_STATE(1548)] = 127595, + [SMALL_STATE(1549)] = 127642, + [SMALL_STATE(1550)] = 127689, + [SMALL_STATE(1551)] = 127736, + [SMALL_STATE(1552)] = 127783, + [SMALL_STATE(1553)] = 127830, + [SMALL_STATE(1554)] = 127877, + [SMALL_STATE(1555)] = 127924, + [SMALL_STATE(1556)] = 127971, + [SMALL_STATE(1557)] = 128018, + [SMALL_STATE(1558)] = 128065, + [SMALL_STATE(1559)] = 128114, + [SMALL_STATE(1560)] = 128161, + [SMALL_STATE(1561)] = 128208, + [SMALL_STATE(1562)] = 128257, + [SMALL_STATE(1563)] = 128306, + [SMALL_STATE(1564)] = 128355, + [SMALL_STATE(1565)] = 128402, + [SMALL_STATE(1566)] = 128451, + [SMALL_STATE(1567)] = 128500, + [SMALL_STATE(1568)] = 128547, + [SMALL_STATE(1569)] = 128594, + [SMALL_STATE(1570)] = 128643, + [SMALL_STATE(1571)] = 128690, + [SMALL_STATE(1572)] = 128737, + [SMALL_STATE(1573)] = 128784, + [SMALL_STATE(1574)] = 128831, + [SMALL_STATE(1575)] = 128878, + [SMALL_STATE(1576)] = 128925, + [SMALL_STATE(1577)] = 128972, + [SMALL_STATE(1578)] = 129021, + [SMALL_STATE(1579)] = 129068, + [SMALL_STATE(1580)] = 129117, + [SMALL_STATE(1581)] = 129164, + [SMALL_STATE(1582)] = 129213, + [SMALL_STATE(1583)] = 129260, + [SMALL_STATE(1584)] = 129307, + [SMALL_STATE(1585)] = 129356, + [SMALL_STATE(1586)] = 129405, + [SMALL_STATE(1587)] = 129452, + [SMALL_STATE(1588)] = 129499, + [SMALL_STATE(1589)] = 129546, + [SMALL_STATE(1590)] = 129593, + [SMALL_STATE(1591)] = 129640, + [SMALL_STATE(1592)] = 129687, + [SMALL_STATE(1593)] = 129734, + [SMALL_STATE(1594)] = 129801, + [SMALL_STATE(1595)] = 129848, + [SMALL_STATE(1596)] = 129895, + [SMALL_STATE(1597)] = 129942, + [SMALL_STATE(1598)] = 129989, + [SMALL_STATE(1599)] = 130036, + [SMALL_STATE(1600)] = 130083, + [SMALL_STATE(1601)] = 130130, + [SMALL_STATE(1602)] = 130177, + [SMALL_STATE(1603)] = 130224, + [SMALL_STATE(1604)] = 130271, + [SMALL_STATE(1605)] = 130318, + [SMALL_STATE(1606)] = 130365, + [SMALL_STATE(1607)] = 130412, + [SMALL_STATE(1608)] = 130459, + [SMALL_STATE(1609)] = 130506, + [SMALL_STATE(1610)] = 130553, + [SMALL_STATE(1611)] = 130600, + [SMALL_STATE(1612)] = 130647, + [SMALL_STATE(1613)] = 130694, + [SMALL_STATE(1614)] = 130741, + [SMALL_STATE(1615)] = 130788, + [SMALL_STATE(1616)] = 130837, + [SMALL_STATE(1617)] = 130886, + [SMALL_STATE(1618)] = 130935, + [SMALL_STATE(1619)] = 130984, + [SMALL_STATE(1620)] = 131051, + [SMALL_STATE(1621)] = 131100, + [SMALL_STATE(1622)] = 131147, + [SMALL_STATE(1623)] = 131214, + [SMALL_STATE(1624)] = 131279, + [SMALL_STATE(1625)] = 131346, + [SMALL_STATE(1626)] = 131413, + [SMALL_STATE(1627)] = 131480, + [SMALL_STATE(1628)] = 131547, + [SMALL_STATE(1629)] = 131614, + [SMALL_STATE(1630)] = 131661, + [SMALL_STATE(1631)] = 131708, + [SMALL_STATE(1632)] = 131793, + [SMALL_STATE(1633)] = 131840, + [SMALL_STATE(1634)] = 131907, + [SMALL_STATE(1635)] = 131954, + [SMALL_STATE(1636)] = 132001, + [SMALL_STATE(1637)] = 132048, + [SMALL_STATE(1638)] = 132095, + [SMALL_STATE(1639)] = 132142, + [SMALL_STATE(1640)] = 132189, + [SMALL_STATE(1641)] = 132238, + [SMALL_STATE(1642)] = 132287, + [SMALL_STATE(1643)] = 132334, + [SMALL_STATE(1644)] = 132381, + [SMALL_STATE(1645)] = 132430, + [SMALL_STATE(1646)] = 132477, + [SMALL_STATE(1647)] = 132524, + [SMALL_STATE(1648)] = 132571, + [SMALL_STATE(1649)] = 132618, + [SMALL_STATE(1650)] = 132667, + [SMALL_STATE(1651)] = 132716, + [SMALL_STATE(1652)] = 132763, + [SMALL_STATE(1653)] = 132810, + [SMALL_STATE(1654)] = 132857, + [SMALL_STATE(1655)] = 132904, + [SMALL_STATE(1656)] = 132951, + [SMALL_STATE(1657)] = 132998, + [SMALL_STATE(1658)] = 133045, + [SMALL_STATE(1659)] = 133092, + [SMALL_STATE(1660)] = 133139, + [SMALL_STATE(1661)] = 133186, + [SMALL_STATE(1662)] = 133233, + [SMALL_STATE(1663)] = 133280, + [SMALL_STATE(1664)] = 133327, + [SMALL_STATE(1665)] = 133374, + [SMALL_STATE(1666)] = 133421, + [SMALL_STATE(1667)] = 133468, + [SMALL_STATE(1668)] = 133515, + [SMALL_STATE(1669)] = 133562, + [SMALL_STATE(1670)] = 133609, + [SMALL_STATE(1671)] = 133656, + [SMALL_STATE(1672)] = 133703, + [SMALL_STATE(1673)] = 133770, + [SMALL_STATE(1674)] = 133837, + [SMALL_STATE(1675)] = 133898, + [SMALL_STATE(1676)] = 133955, + [SMALL_STATE(1677)] = 134020, + [SMALL_STATE(1678)] = 134067, + [SMALL_STATE(1679)] = 134116, + [SMALL_STATE(1680)] = 134163, + [SMALL_STATE(1681)] = 134210, + [SMALL_STATE(1682)] = 134257, + [SMALL_STATE(1683)] = 134306, + [SMALL_STATE(1684)] = 134353, + [SMALL_STATE(1685)] = 134400, + [SMALL_STATE(1686)] = 134447, + [SMALL_STATE(1687)] = 134494, + [SMALL_STATE(1688)] = 134543, + [SMALL_STATE(1689)] = 134590, + [SMALL_STATE(1690)] = 134637, + [SMALL_STATE(1691)] = 134686, + [SMALL_STATE(1692)] = 134733, + [SMALL_STATE(1693)] = 134796, + [SMALL_STATE(1694)] = 134853, + [SMALL_STATE(1695)] = 134916, + [SMALL_STATE(1696)] = 134975, + [SMALL_STATE(1697)] = 135038, + [SMALL_STATE(1698)] = 135101, + [SMALL_STATE(1699)] = 135150, + [SMALL_STATE(1700)] = 135197, + [SMALL_STATE(1701)] = 135244, + [SMALL_STATE(1702)] = 135291, + [SMALL_STATE(1703)] = 135338, + [SMALL_STATE(1704)] = 135385, + [SMALL_STATE(1705)] = 135432, + [SMALL_STATE(1706)] = 135479, + [SMALL_STATE(1707)] = 135526, + [SMALL_STATE(1708)] = 135573, + [SMALL_STATE(1709)] = 135622, + [SMALL_STATE(1710)] = 135669, + [SMALL_STATE(1711)] = 135718, + [SMALL_STATE(1712)] = 135765, + [SMALL_STATE(1713)] = 135814, + [SMALL_STATE(1714)] = 135861, + [SMALL_STATE(1715)] = 135908, + [SMALL_STATE(1716)] = 135955, + [SMALL_STATE(1717)] = 136002, + [SMALL_STATE(1718)] = 136049, + [SMALL_STATE(1719)] = 136096, + [SMALL_STATE(1720)] = 136143, + [SMALL_STATE(1721)] = 136190, + [SMALL_STATE(1722)] = 136237, + [SMALL_STATE(1723)] = 136284, + [SMALL_STATE(1724)] = 136331, + [SMALL_STATE(1725)] = 136378, + [SMALL_STATE(1726)] = 136425, + [SMALL_STATE(1727)] = 136480, + [SMALL_STATE(1728)] = 136527, + [SMALL_STATE(1729)] = 136590, + [SMALL_STATE(1730)] = 136653, + [SMALL_STATE(1731)] = 136716, + [SMALL_STATE(1732)] = 136763, + [SMALL_STATE(1733)] = 136818, + [SMALL_STATE(1734)] = 136881, + [SMALL_STATE(1735)] = 136944, + [SMALL_STATE(1736)] = 137007, + [SMALL_STATE(1737)] = 137060, + [SMALL_STATE(1738)] = 137113, + [SMALL_STATE(1739)] = 137180, + [SMALL_STATE(1740)] = 137231, + [SMALL_STATE(1741)] = 137278, + [SMALL_STATE(1742)] = 137325, + [SMALL_STATE(1743)] = 137372, + [SMALL_STATE(1744)] = 137419, + [SMALL_STATE(1745)] = 137466, + [SMALL_STATE(1746)] = 137551, + [SMALL_STATE(1747)] = 137598, + [SMALL_STATE(1748)] = 137683, + [SMALL_STATE(1749)] = 137730, + [SMALL_STATE(1750)] = 137777, + [SMALL_STATE(1751)] = 137824, + [SMALL_STATE(1752)] = 137873, + [SMALL_STATE(1753)] = 137920, + [SMALL_STATE(1754)] = 137967, + [SMALL_STATE(1755)] = 138014, + [SMALL_STATE(1756)] = 138061, + [SMALL_STATE(1757)] = 138108, + [SMALL_STATE(1758)] = 138155, + [SMALL_STATE(1759)] = 138202, + [SMALL_STATE(1760)] = 138255, + [SMALL_STATE(1761)] = 138302, + [SMALL_STATE(1762)] = 138351, + [SMALL_STATE(1763)] = 138400, + [SMALL_STATE(1764)] = 138449, + [SMALL_STATE(1765)] = 138498, + [SMALL_STATE(1766)] = 138547, + [SMALL_STATE(1767)] = 138596, + [SMALL_STATE(1768)] = 138645, + [SMALL_STATE(1769)] = 138694, + [SMALL_STATE(1770)] = 138743, + [SMALL_STATE(1771)] = 138792, + [SMALL_STATE(1772)] = 138841, + [SMALL_STATE(1773)] = 138890, + [SMALL_STATE(1774)] = 138937, + [SMALL_STATE(1775)] = 138986, + [SMALL_STATE(1776)] = 139035, + [SMALL_STATE(1777)] = 139082, + [SMALL_STATE(1778)] = 139129, + [SMALL_STATE(1779)] = 139176, + [SMALL_STATE(1780)] = 139225, + [SMALL_STATE(1781)] = 139274, + [SMALL_STATE(1782)] = 139323, + [SMALL_STATE(1783)] = 139372, + [SMALL_STATE(1784)] = 139421, + [SMALL_STATE(1785)] = 139470, + [SMALL_STATE(1786)] = 139519, + [SMALL_STATE(1787)] = 139568, + [SMALL_STATE(1788)] = 139617, + [SMALL_STATE(1789)] = 139666, + [SMALL_STATE(1790)] = 139715, + [SMALL_STATE(1791)] = 139764, + [SMALL_STATE(1792)] = 139813, + [SMALL_STATE(1793)] = 139862, + [SMALL_STATE(1794)] = 139911, + [SMALL_STATE(1795)] = 139960, + [SMALL_STATE(1796)] = 140009, + [SMALL_STATE(1797)] = 140058, + [SMALL_STATE(1798)] = 140107, + [SMALL_STATE(1799)] = 140156, + [SMALL_STATE(1800)] = 140205, + [SMALL_STATE(1801)] = 140272, + [SMALL_STATE(1802)] = 140319, + [SMALL_STATE(1803)] = 140368, + [SMALL_STATE(1804)] = 140415, + [SMALL_STATE(1805)] = 140464, + [SMALL_STATE(1806)] = 140513, + [SMALL_STATE(1807)] = 140562, + [SMALL_STATE(1808)] = 140611, + [SMALL_STATE(1809)] = 140660, + [SMALL_STATE(1810)] = 140709, + [SMALL_STATE(1811)] = 140758, + [SMALL_STATE(1812)] = 140805, + [SMALL_STATE(1813)] = 140854, + [SMALL_STATE(1814)] = 140903, + [SMALL_STATE(1815)] = 140952, + [SMALL_STATE(1816)] = 141001, + [SMALL_STATE(1817)] = 141050, + [SMALL_STATE(1818)] = 141099, + [SMALL_STATE(1819)] = 141162, + [SMALL_STATE(1820)] = 141211, + [SMALL_STATE(1821)] = 141260, + [SMALL_STATE(1822)] = 141309, + [SMALL_STATE(1823)] = 141358, + [SMALL_STATE(1824)] = 141407, + [SMALL_STATE(1825)] = 141456, + [SMALL_STATE(1826)] = 141505, + [SMALL_STATE(1827)] = 141554, + [SMALL_STATE(1828)] = 141603, + [SMALL_STATE(1829)] = 141652, + [SMALL_STATE(1830)] = 141701, + [SMALL_STATE(1831)] = 141750, + [SMALL_STATE(1832)] = 141799, + [SMALL_STATE(1833)] = 141848, + [SMALL_STATE(1834)] = 141897, + [SMALL_STATE(1835)] = 141946, + [SMALL_STATE(1836)] = 141995, + [SMALL_STATE(1837)] = 142042, + [SMALL_STATE(1838)] = 142091, + [SMALL_STATE(1839)] = 142140, + [SMALL_STATE(1840)] = 142189, + [SMALL_STATE(1841)] = 142238, + [SMALL_STATE(1842)] = 142287, + [SMALL_STATE(1843)] = 142336, + [SMALL_STATE(1844)] = 142385, + [SMALL_STATE(1845)] = 142434, + [SMALL_STATE(1846)] = 142497, + [SMALL_STATE(1847)] = 142546, + [SMALL_STATE(1848)] = 142595, + [SMALL_STATE(1849)] = 142644, + [SMALL_STATE(1850)] = 142693, + [SMALL_STATE(1851)] = 142742, + [SMALL_STATE(1852)] = 142791, + [SMALL_STATE(1853)] = 142840, + [SMALL_STATE(1854)] = 142889, + [SMALL_STATE(1855)] = 142938, + [SMALL_STATE(1856)] = 142987, + [SMALL_STATE(1857)] = 143036, + [SMALL_STATE(1858)] = 143083, + [SMALL_STATE(1859)] = 143130, + [SMALL_STATE(1860)] = 143179, + [SMALL_STATE(1861)] = 143228, + [SMALL_STATE(1862)] = 143277, + [SMALL_STATE(1863)] = 143326, + [SMALL_STATE(1864)] = 143375, + [SMALL_STATE(1865)] = 143424, + [SMALL_STATE(1866)] = 143473, + [SMALL_STATE(1867)] = 143522, + [SMALL_STATE(1868)] = 143569, + [SMALL_STATE(1869)] = 143618, + [SMALL_STATE(1870)] = 143667, + [SMALL_STATE(1871)] = 143716, + [SMALL_STATE(1872)] = 143765, + [SMALL_STATE(1873)] = 143814, + [SMALL_STATE(1874)] = 143863, + [SMALL_STATE(1875)] = 143912, + [SMALL_STATE(1876)] = 143961, + [SMALL_STATE(1877)] = 144010, + [SMALL_STATE(1878)] = 144059, + [SMALL_STATE(1879)] = 144108, + [SMALL_STATE(1880)] = 144157, + [SMALL_STATE(1881)] = 144204, + [SMALL_STATE(1882)] = 144253, + [SMALL_STATE(1883)] = 144302, + [SMALL_STATE(1884)] = 144357, + [SMALL_STATE(1885)] = 144406, + [SMALL_STATE(1886)] = 144453, + [SMALL_STATE(1887)] = 144502, + [SMALL_STATE(1888)] = 144549, + [SMALL_STATE(1889)] = 144598, + [SMALL_STATE(1890)] = 144647, + [SMALL_STATE(1891)] = 144696, + [SMALL_STATE(1892)] = 144745, + [SMALL_STATE(1893)] = 144794, + [SMALL_STATE(1894)] = 144841, + [SMALL_STATE(1895)] = 144888, + [SMALL_STATE(1896)] = 144935, + [SMALL_STATE(1897)] = 144982, + [SMALL_STATE(1898)] = 145029, + [SMALL_STATE(1899)] = 145076, + [SMALL_STATE(1900)] = 145125, + [SMALL_STATE(1901)] = 145174, + [SMALL_STATE(1902)] = 145223, + [SMALL_STATE(1903)] = 145270, + [SMALL_STATE(1904)] = 145319, + [SMALL_STATE(1905)] = 145368, + [SMALL_STATE(1906)] = 145417, + [SMALL_STATE(1907)] = 145466, + [SMALL_STATE(1908)] = 145513, + [SMALL_STATE(1909)] = 145560, + [SMALL_STATE(1910)] = 145607, + [SMALL_STATE(1911)] = 145656, + [SMALL_STATE(1912)] = 145705, + [SMALL_STATE(1913)] = 145754, + [SMALL_STATE(1914)] = 145803, + [SMALL_STATE(1915)] = 145852, + [SMALL_STATE(1916)] = 145901, + [SMALL_STATE(1917)] = 145950, + [SMALL_STATE(1918)] = 145999, + [SMALL_STATE(1919)] = 146048, + [SMALL_STATE(1920)] = 146133, + [SMALL_STATE(1921)] = 146186, + [SMALL_STATE(1922)] = 146239, + [SMALL_STATE(1923)] = 146290, + [SMALL_STATE(1924)] = 146339, + [SMALL_STATE(1925)] = 146388, + [SMALL_STATE(1926)] = 146437, + [SMALL_STATE(1927)] = 146490, + [SMALL_STATE(1928)] = 146543, + [SMALL_STATE(1929)] = 146594, + [SMALL_STATE(1930)] = 146643, + [SMALL_STATE(1931)] = 146692, + [SMALL_STATE(1932)] = 146755, + [SMALL_STATE(1933)] = 146818, + [SMALL_STATE(1934)] = 146881, + [SMALL_STATE(1935)] = 146944, + [SMALL_STATE(1936)] = 147007, + [SMALL_STATE(1937)] = 147070, + [SMALL_STATE(1938)] = 147119, + [SMALL_STATE(1939)] = 147168, + [SMALL_STATE(1940)] = 147231, + [SMALL_STATE(1941)] = 147316, + [SMALL_STATE(1942)] = 147379, + [SMALL_STATE(1943)] = 147436, + [SMALL_STATE(1944)] = 147495, + [SMALL_STATE(1945)] = 147558, + [SMALL_STATE(1946)] = 147621, + [SMALL_STATE(1947)] = 147684, + [SMALL_STATE(1948)] = 147747, + [SMALL_STATE(1949)] = 147810, + [SMALL_STATE(1950)] = 147859, + [SMALL_STATE(1951)] = 147908, + [SMALL_STATE(1952)] = 147971, + [SMALL_STATE(1953)] = 148020, + [SMALL_STATE(1954)] = 148069, + [SMALL_STATE(1955)] = 148118, + [SMALL_STATE(1956)] = 148167, + [SMALL_STATE(1957)] = 148216, + [SMALL_STATE(1958)] = 148265, + [SMALL_STATE(1959)] = 148314, + [SMALL_STATE(1960)] = 148363, + [SMALL_STATE(1961)] = 148412, + [SMALL_STATE(1962)] = 148461, + [SMALL_STATE(1963)] = 148510, + [SMALL_STATE(1964)] = 148559, + [SMALL_STATE(1965)] = 148608, + [SMALL_STATE(1966)] = 148671, + [SMALL_STATE(1967)] = 148734, + [SMALL_STATE(1968)] = 148797, + [SMALL_STATE(1969)] = 148856, + [SMALL_STATE(1970)] = 148913, + [SMALL_STATE(1971)] = 148976, + [SMALL_STATE(1972)] = 149022, + [SMALL_STATE(1973)] = 149070, + [SMALL_STATE(1974)] = 149122, + [SMALL_STATE(1975)] = 149168, + [SMALL_STATE(1976)] = 149216, + [SMALL_STATE(1977)] = 149268, + [SMALL_STATE(1978)] = 149316, + [SMALL_STATE(1979)] = 149364, + [SMALL_STATE(1980)] = 149418, + [SMALL_STATE(1981)] = 149466, + [SMALL_STATE(1982)] = 149514, + [SMALL_STATE(1983)] = 149562, + [SMALL_STATE(1984)] = 149610, + [SMALL_STATE(1985)] = 149658, + [SMALL_STATE(1986)] = 149706, + [SMALL_STATE(1987)] = 149754, + [SMALL_STATE(1988)] = 149802, + [SMALL_STATE(1989)] = 149852, + [SMALL_STATE(1990)] = 149900, + [SMALL_STATE(1991)] = 149948, + [SMALL_STATE(1992)] = 150000, + [SMALL_STATE(1993)] = 150048, + [SMALL_STATE(1994)] = 150096, + [SMALL_STATE(1995)] = 150144, + [SMALL_STATE(1996)] = 150192, + [SMALL_STATE(1997)] = 150238, + [SMALL_STATE(1998)] = 150288, + [SMALL_STATE(1999)] = 150336, + [SMALL_STATE(2000)] = 150384, + [SMALL_STATE(2001)] = 150432, + [SMALL_STATE(2002)] = 150480, + [SMALL_STATE(2003)] = 150534, + [SMALL_STATE(2004)] = 150582, + [SMALL_STATE(2005)] = 150630, + [SMALL_STATE(2006)] = 150678, + [SMALL_STATE(2007)] = 150726, + [SMALL_STATE(2008)] = 150774, + [SMALL_STATE(2009)] = 150826, + [SMALL_STATE(2010)] = 150878, + [SMALL_STATE(2011)] = 150926, + [SMALL_STATE(2012)] = 150972, + [SMALL_STATE(2013)] = 151034, + [SMALL_STATE(2014)] = 151082, + [SMALL_STATE(2015)] = 151130, + [SMALL_STATE(2016)] = 151178, + [SMALL_STATE(2017)] = 151240, + [SMALL_STATE(2018)] = 151288, + [SMALL_STATE(2019)] = 151334, + [SMALL_STATE(2020)] = 151380, + [SMALL_STATE(2021)] = 151426, + [SMALL_STATE(2022)] = 151472, + [SMALL_STATE(2023)] = 151524, + [SMALL_STATE(2024)] = 151586, + [SMALL_STATE(2025)] = 151632, + [SMALL_STATE(2026)] = 151678, + [SMALL_STATE(2027)] = 151724, + [SMALL_STATE(2028)] = 151770, + [SMALL_STATE(2029)] = 151816, + [SMALL_STATE(2030)] = 151862, + [SMALL_STATE(2031)] = 151908, + [SMALL_STATE(2032)] = 151954, + [SMALL_STATE(2033)] = 152010, + [SMALL_STATE(2034)] = 152056, + [SMALL_STATE(2035)] = 152114, + [SMALL_STATE(2036)] = 152160, + [SMALL_STATE(2037)] = 152206, + [SMALL_STATE(2038)] = 152252, + [SMALL_STATE(2039)] = 152298, + [SMALL_STATE(2040)] = 152360, + [SMALL_STATE(2041)] = 152406, + [SMALL_STATE(2042)] = 152452, + [SMALL_STATE(2043)] = 152498, + [SMALL_STATE(2044)] = 152544, + [SMALL_STATE(2045)] = 152590, + [SMALL_STATE(2046)] = 152636, + [SMALL_STATE(2047)] = 152682, + [SMALL_STATE(2048)] = 152728, + [SMALL_STATE(2049)] = 152774, + [SMALL_STATE(2050)] = 152820, + [SMALL_STATE(2051)] = 152866, + [SMALL_STATE(2052)] = 152912, + [SMALL_STATE(2053)] = 152958, + [SMALL_STATE(2054)] = 153004, + [SMALL_STATE(2055)] = 153050, + [SMALL_STATE(2056)] = 153096, + [SMALL_STATE(2057)] = 153158, + [SMALL_STATE(2058)] = 153206, + [SMALL_STATE(2059)] = 153254, + [SMALL_STATE(2060)] = 153300, + [SMALL_STATE(2061)] = 153346, + [SMALL_STATE(2062)] = 153394, + [SMALL_STATE(2063)] = 153442, + [SMALL_STATE(2064)] = 153488, + [SMALL_STATE(2065)] = 153536, + [SMALL_STATE(2066)] = 153584, + [SMALL_STATE(2067)] = 153646, + [SMALL_STATE(2068)] = 153692, + [SMALL_STATE(2069)] = 153738, + [SMALL_STATE(2070)] = 153800, + [SMALL_STATE(2071)] = 153846, + [SMALL_STATE(2072)] = 153892, + [SMALL_STATE(2073)] = 153938, + [SMALL_STATE(2074)] = 154000, + [SMALL_STATE(2075)] = 154062, + [SMALL_STATE(2076)] = 154124, + [SMALL_STATE(2077)] = 154186, + [SMALL_STATE(2078)] = 154234, + [SMALL_STATE(2079)] = 154280, + [SMALL_STATE(2080)] = 154326, + [SMALL_STATE(2081)] = 154372, + [SMALL_STATE(2082)] = 154418, + [SMALL_STATE(2083)] = 154464, + [SMALL_STATE(2084)] = 154510, + [SMALL_STATE(2085)] = 154556, + [SMALL_STATE(2086)] = 154602, + [SMALL_STATE(2087)] = 154648, + [SMALL_STATE(2088)] = 154694, + [SMALL_STATE(2089)] = 154740, + [SMALL_STATE(2090)] = 154786, + [SMALL_STATE(2091)] = 154832, + [SMALL_STATE(2092)] = 154880, + [SMALL_STATE(2093)] = 154926, + [SMALL_STATE(2094)] = 154988, + [SMALL_STATE(2095)] = 155050, + [SMALL_STATE(2096)] = 155106, + [SMALL_STATE(2097)] = 155164, + [SMALL_STATE(2098)] = 155226, + [SMALL_STATE(2099)] = 155288, + [SMALL_STATE(2100)] = 155334, + [SMALL_STATE(2101)] = 155380, + [SMALL_STATE(2102)] = 155428, + [SMALL_STATE(2103)] = 155476, + [SMALL_STATE(2104)] = 155522, + [SMALL_STATE(2105)] = 155570, + [SMALL_STATE(2106)] = 155642, + [SMALL_STATE(2107)] = 155688, + [SMALL_STATE(2108)] = 155750, + [SMALL_STATE(2109)] = 155812, + [SMALL_STATE(2110)] = 155874, + [SMALL_STATE(2111)] = 155936, + [SMALL_STATE(2112)] = 155982, + [SMALL_STATE(2113)] = 156028, + [SMALL_STATE(2114)] = 156074, + [SMALL_STATE(2115)] = 156146, + [SMALL_STATE(2116)] = 156208, + [SMALL_STATE(2117)] = 156254, + [SMALL_STATE(2118)] = 156300, + [SMALL_STATE(2119)] = 156346, + [SMALL_STATE(2120)] = 156392, + [SMALL_STATE(2121)] = 156438, + [SMALL_STATE(2122)] = 156484, + [SMALL_STATE(2123)] = 156530, + [SMALL_STATE(2124)] = 156576, + [SMALL_STATE(2125)] = 156622, + [SMALL_STATE(2126)] = 156668, + [SMALL_STATE(2127)] = 156714, + [SMALL_STATE(2128)] = 156760, + [SMALL_STATE(2129)] = 156806, + [SMALL_STATE(2130)] = 156868, + [SMALL_STATE(2131)] = 156916, + [SMALL_STATE(2132)] = 156964, + [SMALL_STATE(2133)] = 157014, + [SMALL_STATE(2134)] = 157086, + [SMALL_STATE(2135)] = 157132, + [SMALL_STATE(2136)] = 157182, + [SMALL_STATE(2137)] = 157228, + [SMALL_STATE(2138)] = 157274, + [SMALL_STATE(2139)] = 157320, + [SMALL_STATE(2140)] = 157366, + [SMALL_STATE(2141)] = 157412, + [SMALL_STATE(2142)] = 157458, + [SMALL_STATE(2143)] = 157504, + [SMALL_STATE(2144)] = 157550, + [SMALL_STATE(2145)] = 157596, + [SMALL_STATE(2146)] = 157642, + [SMALL_STATE(2147)] = 157688, + [SMALL_STATE(2148)] = 157736, + [SMALL_STATE(2149)] = 157784, + [SMALL_STATE(2150)] = 157856, + [SMALL_STATE(2151)] = 157904, + [SMALL_STATE(2152)] = 157952, + [SMALL_STATE(2153)] = 157998, + [SMALL_STATE(2154)] = 158044, + [SMALL_STATE(2155)] = 158092, + [SMALL_STATE(2156)] = 158140, + [SMALL_STATE(2157)] = 158188, + [SMALL_STATE(2158)] = 158236, + [SMALL_STATE(2159)] = 158284, + [SMALL_STATE(2160)] = 158330, + [SMALL_STATE(2161)] = 158376, + [SMALL_STATE(2162)] = 158424, + [SMALL_STATE(2163)] = 158472, + [SMALL_STATE(2164)] = 158520, + [SMALL_STATE(2165)] = 158568, + [SMALL_STATE(2166)] = 158614, + [SMALL_STATE(2167)] = 158660, + [SMALL_STATE(2168)] = 158708, + [SMALL_STATE(2169)] = 158754, + [SMALL_STATE(2170)] = 158800, + [SMALL_STATE(2171)] = 158846, + [SMALL_STATE(2172)] = 158892, + [SMALL_STATE(2173)] = 158938, + [SMALL_STATE(2174)] = 158984, + [SMALL_STATE(2175)] = 159030, + [SMALL_STATE(2176)] = 159076, + [SMALL_STATE(2177)] = 159122, + [SMALL_STATE(2178)] = 159168, + [SMALL_STATE(2179)] = 159216, + [SMALL_STATE(2180)] = 159264, + [SMALL_STATE(2181)] = 159310, + [SMALL_STATE(2182)] = 159356, + [SMALL_STATE(2183)] = 159404, + [SMALL_STATE(2184)] = 159452, + [SMALL_STATE(2185)] = 159500, + [SMALL_STATE(2186)] = 159572, + [SMALL_STATE(2187)] = 159618, + [SMALL_STATE(2188)] = 159664, + [SMALL_STATE(2189)] = 159710, + [SMALL_STATE(2190)] = 159756, + [SMALL_STATE(2191)] = 159802, + [SMALL_STATE(2192)] = 159848, + [SMALL_STATE(2193)] = 159896, + [SMALL_STATE(2194)] = 159944, + [SMALL_STATE(2195)] = 159990, + [SMALL_STATE(2196)] = 160038, + [SMALL_STATE(2197)] = 160086, + [SMALL_STATE(2198)] = 160140, + [SMALL_STATE(2199)] = 160186, + [SMALL_STATE(2200)] = 160238, + [SMALL_STATE(2201)] = 160286, + [SMALL_STATE(2202)] = 160346, + [SMALL_STATE(2203)] = 160406, + [SMALL_STATE(2204)] = 160452, + [SMALL_STATE(2205)] = 160500, + [SMALL_STATE(2206)] = 160546, + [SMALL_STATE(2207)] = 160594, + [SMALL_STATE(2208)] = 160654, + [SMALL_STATE(2209)] = 160708, + [SMALL_STATE(2210)] = 160754, + [SMALL_STATE(2211)] = 160800, + [SMALL_STATE(2212)] = 160856, + [SMALL_STATE(2213)] = 160902, + [SMALL_STATE(2214)] = 160962, + [SMALL_STATE(2215)] = 161022, + [SMALL_STATE(2216)] = 161070, + [SMALL_STATE(2217)] = 161118, + [SMALL_STATE(2218)] = 161164, + [SMALL_STATE(2219)] = 161212, + [SMALL_STATE(2220)] = 161260, + [SMALL_STATE(2221)] = 161308, + [SMALL_STATE(2222)] = 161356, + [SMALL_STATE(2223)] = 161416, + [SMALL_STATE(2224)] = 161462, + [SMALL_STATE(2225)] = 161508, + [SMALL_STATE(2226)] = 161554, + [SMALL_STATE(2227)] = 161614, + [SMALL_STATE(2228)] = 161660, + [SMALL_STATE(2229)] = 161706, + [SMALL_STATE(2230)] = 161766, + [SMALL_STATE(2231)] = 161826, + [SMALL_STATE(2232)] = 161872, + [SMALL_STATE(2233)] = 161932, + [SMALL_STATE(2234)] = 161992, + [SMALL_STATE(2235)] = 162038, + [SMALL_STATE(2236)] = 162086, + [SMALL_STATE(2237)] = 162132, + [SMALL_STATE(2238)] = 162178, + [SMALL_STATE(2239)] = 162224, + [SMALL_STATE(2240)] = 162272, + [SMALL_STATE(2241)] = 162320, + [SMALL_STATE(2242)] = 162366, + [SMALL_STATE(2243)] = 162412, + [SMALL_STATE(2244)] = 162460, + [SMALL_STATE(2245)] = 162506, + [SMALL_STATE(2246)] = 162552, + [SMALL_STATE(2247)] = 162598, + [SMALL_STATE(2248)] = 162644, + [SMALL_STATE(2249)] = 162692, + [SMALL_STATE(2250)] = 162740, + [SMALL_STATE(2251)] = 162788, + [SMALL_STATE(2252)] = 162834, + [SMALL_STATE(2253)] = 162896, + [SMALL_STATE(2254)] = 162942, + [SMALL_STATE(2255)] = 162988, + [SMALL_STATE(2256)] = 163034, + [SMALL_STATE(2257)] = 163080, + [SMALL_STATE(2258)] = 163126, + [SMALL_STATE(2259)] = 163174, + [SMALL_STATE(2260)] = 163222, + [SMALL_STATE(2261)] = 163268, + [SMALL_STATE(2262)] = 163314, + [SMALL_STATE(2263)] = 163362, + [SMALL_STATE(2264)] = 163410, + [SMALL_STATE(2265)] = 163458, + [SMALL_STATE(2266)] = 163504, + [SMALL_STATE(2267)] = 163552, + [SMALL_STATE(2268)] = 163600, + [SMALL_STATE(2269)] = 163648, + [SMALL_STATE(2270)] = 163694, + [SMALL_STATE(2271)] = 163740, + [SMALL_STATE(2272)] = 163788, + [SMALL_STATE(2273)] = 163854, + [SMALL_STATE(2274)] = 163900, + [SMALL_STATE(2275)] = 163948, + [SMALL_STATE(2276)] = 163994, + [SMALL_STATE(2277)] = 164042, + [SMALL_STATE(2278)] = 164090, + [SMALL_STATE(2279)] = 164136, + [SMALL_STATE(2280)] = 164184, + [SMALL_STATE(2281)] = 164230, + [SMALL_STATE(2282)] = 164276, + [SMALL_STATE(2283)] = 164322, + [SMALL_STATE(2284)] = 164376, + [SMALL_STATE(2285)] = 164422, + [SMALL_STATE(2286)] = 164470, + [SMALL_STATE(2287)] = 164518, + [SMALL_STATE(2288)] = 164564, + [SMALL_STATE(2289)] = 164610, + [SMALL_STATE(2290)] = 164658, + [SMALL_STATE(2291)] = 164704, + [SMALL_STATE(2292)] = 164752, + [SMALL_STATE(2293)] = 164800, + [SMALL_STATE(2294)] = 164848, + [SMALL_STATE(2295)] = 164894, + [SMALL_STATE(2296)] = 164940, + [SMALL_STATE(2297)] = 164988, + [SMALL_STATE(2298)] = 165036, + [SMALL_STATE(2299)] = 165082, + [SMALL_STATE(2300)] = 165128, + [SMALL_STATE(2301)] = 165174, + [SMALL_STATE(2302)] = 165220, + [SMALL_STATE(2303)] = 165268, + [SMALL_STATE(2304)] = 165316, + [SMALL_STATE(2305)] = 165362, + [SMALL_STATE(2306)] = 165410, + [SMALL_STATE(2307)] = 165458, + [SMALL_STATE(2308)] = 165504, + [SMALL_STATE(2309)] = 165550, + [SMALL_STATE(2310)] = 165596, + [SMALL_STATE(2311)] = 165644, + [SMALL_STATE(2312)] = 165692, + [SMALL_STATE(2313)] = 165740, + [SMALL_STATE(2314)] = 165786, + [SMALL_STATE(2315)] = 165832, + [SMALL_STATE(2316)] = 165878, + [SMALL_STATE(2317)] = 165924, + [SMALL_STATE(2318)] = 165972, + [SMALL_STATE(2319)] = 166024, + [SMALL_STATE(2320)] = 166070, + [SMALL_STATE(2321)] = 166116, + [SMALL_STATE(2322)] = 166164, + [SMALL_STATE(2323)] = 166212, + [SMALL_STATE(2324)] = 166258, + [SMALL_STATE(2325)] = 166304, + [SMALL_STATE(2326)] = 166352, + [SMALL_STATE(2327)] = 166400, + [SMALL_STATE(2328)] = 166448, + [SMALL_STATE(2329)] = 166496, + [SMALL_STATE(2330)] = 166542, + [SMALL_STATE(2331)] = 166588, + [SMALL_STATE(2332)] = 166634, + [SMALL_STATE(2333)] = 166682, + [SMALL_STATE(2334)] = 166730, + [SMALL_STATE(2335)] = 166778, + [SMALL_STATE(2336)] = 166832, + [SMALL_STATE(2337)] = 166880, + [SMALL_STATE(2338)] = 166926, + [SMALL_STATE(2339)] = 166972, + [SMALL_STATE(2340)] = 167018, + [SMALL_STATE(2341)] = 167064, + [SMALL_STATE(2342)] = 167116, + [SMALL_STATE(2343)] = 167162, + [SMALL_STATE(2344)] = 167210, + [SMALL_STATE(2345)] = 167258, + [SMALL_STATE(2346)] = 167306, + [SMALL_STATE(2347)] = 167354, + [SMALL_STATE(2348)] = 167402, + [SMALL_STATE(2349)] = 167450, + [SMALL_STATE(2350)] = 167498, + [SMALL_STATE(2351)] = 167546, + [SMALL_STATE(2352)] = 167594, + [SMALL_STATE(2353)] = 167642, + [SMALL_STATE(2354)] = 167690, + [SMALL_STATE(2355)] = 167738, + [SMALL_STATE(2356)] = 167786, + [SMALL_STATE(2357)] = 167834, + [SMALL_STATE(2358)] = 167882, + [SMALL_STATE(2359)] = 167930, + [SMALL_STATE(2360)] = 167978, + [SMALL_STATE(2361)] = 168026, + [SMALL_STATE(2362)] = 168074, + [SMALL_STATE(2363)] = 168122, + [SMALL_STATE(2364)] = 168170, + [SMALL_STATE(2365)] = 168218, + [SMALL_STATE(2366)] = 168266, + [SMALL_STATE(2367)] = 168314, + [SMALL_STATE(2368)] = 168362, + [SMALL_STATE(2369)] = 168410, + [SMALL_STATE(2370)] = 168474, + [SMALL_STATE(2371)] = 168540, + [SMALL_STATE(2372)] = 168606, + [SMALL_STATE(2373)] = 168672, + [SMALL_STATE(2374)] = 168738, + [SMALL_STATE(2375)] = 168804, + [SMALL_STATE(2376)] = 168870, + [SMALL_STATE(2377)] = 168936, + [SMALL_STATE(2378)] = 168996, + [SMALL_STATE(2379)] = 169052, + [SMALL_STATE(2380)] = 169116, + [SMALL_STATE(2381)] = 169182, + [SMALL_STATE(2382)] = 169230, + [SMALL_STATE(2383)] = 169294, + [SMALL_STATE(2384)] = 169342, + [SMALL_STATE(2385)] = 169408, + [SMALL_STATE(2386)] = 169474, + [SMALL_STATE(2387)] = 169522, + [SMALL_STATE(2388)] = 169588, + [SMALL_STATE(2389)] = 169654, + [SMALL_STATE(2390)] = 169720, + [SMALL_STATE(2391)] = 169786, + [SMALL_STATE(2392)] = 169852, + [SMALL_STATE(2393)] = 169900, + [SMALL_STATE(2394)] = 169960, + [SMALL_STATE(2395)] = 170016, + [SMALL_STATE(2396)] = 170080, + [SMALL_STATE(2397)] = 170146, + [SMALL_STATE(2398)] = 170194, + [SMALL_STATE(2399)] = 170242, + [SMALL_STATE(2400)] = 170290, + [SMALL_STATE(2401)] = 170338, + [SMALL_STATE(2402)] = 170424, + [SMALL_STATE(2403)] = 170472, + [SMALL_STATE(2404)] = 170520, + [SMALL_STATE(2405)] = 170568, + [SMALL_STATE(2406)] = 170616, + [SMALL_STATE(2407)] = 170664, + [SMALL_STATE(2408)] = 170712, + [SMALL_STATE(2409)] = 170760, + [SMALL_STATE(2410)] = 170808, + [SMALL_STATE(2411)] = 170856, + [SMALL_STATE(2412)] = 170904, + [SMALL_STATE(2413)] = 170952, + [SMALL_STATE(2414)] = 171018, + [SMALL_STATE(2415)] = 171066, + [SMALL_STATE(2416)] = 171114, + [SMALL_STATE(2417)] = 171162, + [SMALL_STATE(2418)] = 171210, + [SMALL_STATE(2419)] = 171258, + [SMALL_STATE(2420)] = 171306, + [SMALL_STATE(2421)] = 171354, + [SMALL_STATE(2422)] = 171402, + [SMALL_STATE(2423)] = 171450, + [SMALL_STATE(2424)] = 171502, + [SMALL_STATE(2425)] = 171550, + [SMALL_STATE(2426)] = 171598, + [SMALL_STATE(2427)] = 171646, + [SMALL_STATE(2428)] = 171694, + [SMALL_STATE(2429)] = 171742, + [SMALL_STATE(2430)] = 171790, + [SMALL_STATE(2431)] = 171838, + [SMALL_STATE(2432)] = 171886, + [SMALL_STATE(2433)] = 171937, + [SMALL_STATE(2434)] = 171988, + [SMALL_STATE(2435)] = 172035, + [SMALL_STATE(2436)] = 172128, + [SMALL_STATE(2437)] = 172179, + [SMALL_STATE(2438)] = 172228, + [SMALL_STATE(2439)] = 172275, + [SMALL_STATE(2440)] = 172368, + [SMALL_STATE(2441)] = 172461, + [SMALL_STATE(2442)] = 172554, + [SMALL_STATE(2443)] = 172619, + [SMALL_STATE(2444)] = 172666, + [SMALL_STATE(2445)] = 172713, + [SMALL_STATE(2446)] = 172760, + [SMALL_STATE(2447)] = 172807, + [SMALL_STATE(2448)] = 172900, + [SMALL_STATE(2449)] = 172949, + [SMALL_STATE(2450)] = 173000, + [SMALL_STATE(2451)] = 173047, + [SMALL_STATE(2452)] = 173140, + [SMALL_STATE(2453)] = 173191, + [SMALL_STATE(2454)] = 173240, + [SMALL_STATE(2455)] = 173291, + [SMALL_STATE(2456)] = 173344, + [SMALL_STATE(2457)] = 173391, + [SMALL_STATE(2458)] = 173440, + [SMALL_STATE(2459)] = 173487, + [SMALL_STATE(2460)] = 173538, + [SMALL_STATE(2461)] = 173603, + [SMALL_STATE(2462)] = 173650, + [SMALL_STATE(2463)] = 173713, + [SMALL_STATE(2464)] = 173768, + [SMALL_STATE(2465)] = 173827, + [SMALL_STATE(2466)] = 173892, + [SMALL_STATE(2467)] = 173957, + [SMALL_STATE(2468)] = 174004, + [SMALL_STATE(2469)] = 174073, + [SMALL_STATE(2470)] = 174138, + [SMALL_STATE(2471)] = 174203, + [SMALL_STATE(2472)] = 174254, + [SMALL_STATE(2473)] = 174305, + [SMALL_STATE(2474)] = 174356, + [SMALL_STATE(2475)] = 174421, + [SMALL_STATE(2476)] = 174486, + [SMALL_STATE(2477)] = 174535, + [SMALL_STATE(2478)] = 174600, + [SMALL_STATE(2479)] = 174651, + [SMALL_STATE(2480)] = 174702, + [SMALL_STATE(2481)] = 174765, + [SMALL_STATE(2482)] = 174818, + [SMALL_STATE(2483)] = 174865, + [SMALL_STATE(2484)] = 174912, + [SMALL_STATE(2485)] = 174959, + [SMALL_STATE(2486)] = 175012, + [SMALL_STATE(2487)] = 175061, + [SMALL_STATE(2488)] = 175106, + [SMALL_STATE(2489)] = 175199, + [SMALL_STATE(2490)] = 175252, + [SMALL_STATE(2491)] = 175305, + [SMALL_STATE(2492)] = 175352, + [SMALL_STATE(2493)] = 175401, + [SMALL_STATE(2494)] = 175450, + [SMALL_STATE(2495)] = 175501, + [SMALL_STATE(2496)] = 175552, + [SMALL_STATE(2497)] = 175603, + [SMALL_STATE(2498)] = 175696, + [SMALL_STATE(2499)] = 175747, + [SMALL_STATE(2500)] = 175798, + [SMALL_STATE(2501)] = 175849, + [SMALL_STATE(2502)] = 175942, + [SMALL_STATE(2503)] = 175993, + [SMALL_STATE(2504)] = 176086, + [SMALL_STATE(2505)] = 176137, + [SMALL_STATE(2506)] = 176206, + [SMALL_STATE(2507)] = 176253, + [SMALL_STATE(2508)] = 176304, + [SMALL_STATE(2509)] = 176351, + [SMALL_STATE(2510)] = 176402, + [SMALL_STATE(2511)] = 176451, + [SMALL_STATE(2512)] = 176504, + [SMALL_STATE(2513)] = 176555, + [SMALL_STATE(2514)] = 176604, + [SMALL_STATE(2515)] = 176655, + [SMALL_STATE(2516)] = 176704, + [SMALL_STATE(2517)] = 176753, + [SMALL_STATE(2518)] = 176804, + [SMALL_STATE(2519)] = 176854, + [SMALL_STATE(2520)] = 176898, + [SMALL_STATE(2521)] = 176944, + [SMALL_STATE(2522)] = 176994, + [SMALL_STATE(2523)] = 177040, + [SMALL_STATE(2524)] = 177088, + [SMALL_STATE(2525)] = 177140, + [SMALL_STATE(2526)] = 177188, + [SMALL_STATE(2527)] = 177252, + [SMALL_STATE(2528)] = 177300, + [SMALL_STATE(2529)] = 177350, + [SMALL_STATE(2530)] = 177398, + [SMALL_STATE(2531)] = 177448, + [SMALL_STATE(2532)] = 177496, + [SMALL_STATE(2533)] = 177540, + [SMALL_STATE(2534)] = 177584, + [SMALL_STATE(2535)] = 177630, + [SMALL_STATE(2536)] = 177676, + [SMALL_STATE(2537)] = 177722, + [SMALL_STATE(2538)] = 177774, + [SMALL_STATE(2539)] = 177822, + [SMALL_STATE(2540)] = 177870, + [SMALL_STATE(2541)] = 177920, + [SMALL_STATE(2542)] = 177964, + [SMALL_STATE(2543)] = 178010, + [SMALL_STATE(2544)] = 178060, + [SMALL_STATE(2545)] = 178108, + [SMALL_STATE(2546)] = 178158, + [SMALL_STATE(2547)] = 178202, + [SMALL_STATE(2548)] = 178250, + [SMALL_STATE(2549)] = 178314, + [SMALL_STATE(2550)] = 178360, + [SMALL_STATE(2551)] = 178408, + [SMALL_STATE(2552)] = 178458, + [SMALL_STATE(2553)] = 178504, + [SMALL_STATE(2554)] = 178554, + [SMALL_STATE(2555)] = 178600, + [SMALL_STATE(2556)] = 178650, + [SMALL_STATE(2557)] = 178700, + [SMALL_STATE(2558)] = 178746, + [SMALL_STATE(2559)] = 178796, + [SMALL_STATE(2560)] = 178844, + [SMALL_STATE(2561)] = 178890, + [SMALL_STATE(2562)] = 178936, + [SMALL_STATE(2563)] = 179000, + [SMALL_STATE(2564)] = 179062, + [SMALL_STATE(2565)] = 179116, + [SMALL_STATE(2566)] = 179174, + [SMALL_STATE(2567)] = 179238, + [SMALL_STATE(2568)] = 179302, + [SMALL_STATE(2569)] = 179366, + [SMALL_STATE(2570)] = 179430, + [SMALL_STATE(2571)] = 179494, + [SMALL_STATE(2572)] = 179558, + [SMALL_STATE(2573)] = 179622, + [SMALL_STATE(2574)] = 179684, + [SMALL_STATE(2575)] = 179732, + [SMALL_STATE(2576)] = 179778, + [SMALL_STATE(2577)] = 179824, + [SMALL_STATE(2578)] = 179888, + [SMALL_STATE(2579)] = 179934, + [SMALL_STATE(2580)] = 179980, + [SMALL_STATE(2581)] = 180028, + [SMALL_STATE(2582)] = 180092, + [SMALL_STATE(2583)] = 180154, + [SMALL_STATE(2584)] = 180208, + [SMALL_STATE(2585)] = 180266, + [SMALL_STATE(2586)] = 180330, + [SMALL_STATE(2587)] = 180394, + [SMALL_STATE(2588)] = 180458, + [SMALL_STATE(2589)] = 180522, + [SMALL_STATE(2590)] = 180586, + [SMALL_STATE(2591)] = 180650, + [SMALL_STATE(2592)] = 180714, + [SMALL_STATE(2593)] = 180776, + [SMALL_STATE(2594)] = 180824, + [SMALL_STATE(2595)] = 180874, + [SMALL_STATE(2596)] = 180920, + [SMALL_STATE(2597)] = 180964, + [SMALL_STATE(2598)] = 181014, + [SMALL_STATE(2599)] = 181060, + [SMALL_STATE(2600)] = 181108, + [SMALL_STATE(2601)] = 181158, + [SMALL_STATE(2602)] = 181208, + [SMALL_STATE(2603)] = 181254, + [SMALL_STATE(2604)] = 181306, + [SMALL_STATE(2605)] = 181356, + [SMALL_STATE(2606)] = 181418, + [SMALL_STATE(2607)] = 181468, + [SMALL_STATE(2608)] = 181532, + [SMALL_STATE(2609)] = 181576, + [SMALL_STATE(2610)] = 181640, + [SMALL_STATE(2611)] = 181704, + [SMALL_STATE(2612)] = 181752, + [SMALL_STATE(2613)] = 181800, + [SMALL_STATE(2614)] = 181864, + [SMALL_STATE(2615)] = 181928, + [SMALL_STATE(2616)] = 181992, + [SMALL_STATE(2617)] = 182038, + [SMALL_STATE(2618)] = 182102, + [SMALL_STATE(2619)] = 182160, + [SMALL_STATE(2620)] = 182204, + [SMALL_STATE(2621)] = 182258, + [SMALL_STATE(2622)] = 182320, + [SMALL_STATE(2623)] = 182384, + [SMALL_STATE(2624)] = 182434, + [SMALL_STATE(2625)] = 182480, + [SMALL_STATE(2626)] = 182524, + [SMALL_STATE(2627)] = 182570, + [SMALL_STATE(2628)] = 182620, + [SMALL_STATE(2629)] = 182666, + [SMALL_STATE(2630)] = 182712, + [SMALL_STATE(2631)] = 182760, + [SMALL_STATE(2632)] = 182806, + [SMALL_STATE(2633)] = 182858, + [SMALL_STATE(2634)] = 182903, + [SMALL_STATE(2635)] = 182948, + [SMALL_STATE(2636)] = 183011, + [SMALL_STATE(2637)] = 183098, + [SMALL_STATE(2638)] = 183161, + [SMALL_STATE(2639)] = 183224, + [SMALL_STATE(2640)] = 183287, + [SMALL_STATE(2641)] = 183350, + [SMALL_STATE(2642)] = 183413, + [SMALL_STATE(2643)] = 183476, + [SMALL_STATE(2644)] = 183539, + [SMALL_STATE(2645)] = 183602, + [SMALL_STATE(2646)] = 183665, + [SMALL_STATE(2647)] = 183728, + [SMALL_STATE(2648)] = 183791, + [SMALL_STATE(2649)] = 183836, + [SMALL_STATE(2650)] = 183923, + [SMALL_STATE(2651)] = 183986, + [SMALL_STATE(2652)] = 184049, + [SMALL_STATE(2653)] = 184112, + [SMALL_STATE(2654)] = 184175, + [SMALL_STATE(2655)] = 184220, + [SMALL_STATE(2656)] = 184283, + [SMALL_STATE(2657)] = 184328, + [SMALL_STATE(2658)] = 184391, + [SMALL_STATE(2659)] = 184436, + [SMALL_STATE(2660)] = 184499, + [SMALL_STATE(2661)] = 184544, + [SMALL_STATE(2662)] = 184631, + [SMALL_STATE(2663)] = 184676, + [SMALL_STATE(2664)] = 184763, + [SMALL_STATE(2665)] = 184808, + [SMALL_STATE(2666)] = 184853, + [SMALL_STATE(2667)] = 184898, + [SMALL_STATE(2668)] = 184943, + [SMALL_STATE(2669)] = 184988, + [SMALL_STATE(2670)] = 185033, + [SMALL_STATE(2671)] = 185096, + [SMALL_STATE(2672)] = 185159, + [SMALL_STATE(2673)] = 185204, + [SMALL_STATE(2674)] = 185267, + [SMALL_STATE(2675)] = 185310, + [SMALL_STATE(2676)] = 185397, + [SMALL_STATE(2677)] = 185460, + [SMALL_STATE(2678)] = 185523, + [SMALL_STATE(2679)] = 185586, + [SMALL_STATE(2680)] = 185649, + [SMALL_STATE(2681)] = 185712, + [SMALL_STATE(2682)] = 185775, + [SMALL_STATE(2683)] = 185838, + [SMALL_STATE(2684)] = 185883, + [SMALL_STATE(2685)] = 185946, + [SMALL_STATE(2686)] = 186009, + [SMALL_STATE(2687)] = 186072, + [SMALL_STATE(2688)] = 186135, + [SMALL_STATE(2689)] = 186198, + [SMALL_STATE(2690)] = 186243, + [SMALL_STATE(2691)] = 186306, + [SMALL_STATE(2692)] = 186351, + [SMALL_STATE(2693)] = 186396, + [SMALL_STATE(2694)] = 186459, + [SMALL_STATE(2695)] = 186506, + [SMALL_STATE(2696)] = 186553, + [SMALL_STATE(2697)] = 186598, + [SMALL_STATE(2698)] = 186661, + [SMALL_STATE(2699)] = 186724, + [SMALL_STATE(2700)] = 186769, + [SMALL_STATE(2701)] = 186814, + [SMALL_STATE(2702)] = 186859, + [SMALL_STATE(2703)] = 186922, + [SMALL_STATE(2704)] = 186985, + [SMALL_STATE(2705)] = 187048, + [SMALL_STATE(2706)] = 187111, + [SMALL_STATE(2707)] = 187156, + [SMALL_STATE(2708)] = 187201, + [SMALL_STATE(2709)] = 187264, + [SMALL_STATE(2710)] = 187327, + [SMALL_STATE(2711)] = 187390, + [SMALL_STATE(2712)] = 187453, + [SMALL_STATE(2713)] = 187516, + [SMALL_STATE(2714)] = 187579, + [SMALL_STATE(2715)] = 187642, + [SMALL_STATE(2716)] = 187705, + [SMALL_STATE(2717)] = 187768, + [SMALL_STATE(2718)] = 187831, + [SMALL_STATE(2719)] = 187876, + [SMALL_STATE(2720)] = 187921, + [SMALL_STATE(2721)] = 188008, + [SMALL_STATE(2722)] = 188071, + [SMALL_STATE(2723)] = 188134, + [SMALL_STATE(2724)] = 188197, + [SMALL_STATE(2725)] = 188260, + [SMALL_STATE(2726)] = 188323, + [SMALL_STATE(2727)] = 188386, + [SMALL_STATE(2728)] = 188431, + [SMALL_STATE(2729)] = 188494, + [SMALL_STATE(2730)] = 188557, + [SMALL_STATE(2731)] = 188602, + [SMALL_STATE(2732)] = 188645, + [SMALL_STATE(2733)] = 188708, + [SMALL_STATE(2734)] = 188771, + [SMALL_STATE(2735)] = 188834, + [SMALL_STATE(2736)] = 188897, + [SMALL_STATE(2737)] = 188960, + [SMALL_STATE(2738)] = 189005, + [SMALL_STATE(2739)] = 189068, + [SMALL_STATE(2740)] = 189117, + [SMALL_STATE(2741)] = 189162, + [SMALL_STATE(2742)] = 189225, + [SMALL_STATE(2743)] = 189288, + [SMALL_STATE(2744)] = 189335, + [SMALL_STATE(2745)] = 189398, + [SMALL_STATE(2746)] = 189461, + [SMALL_STATE(2747)] = 189524, + [SMALL_STATE(2748)] = 189611, + [SMALL_STATE(2749)] = 189656, + [SMALL_STATE(2750)] = 189701, + [SMALL_STATE(2751)] = 189764, + [SMALL_STATE(2752)] = 189807, + [SMALL_STATE(2753)] = 189868, + [SMALL_STATE(2754)] = 189931, + [SMALL_STATE(2755)] = 189994, + [SMALL_STATE(2756)] = 190057, + [SMALL_STATE(2757)] = 190120, + [SMALL_STATE(2758)] = 190171, + [SMALL_STATE(2759)] = 190234, + [SMALL_STATE(2760)] = 190285, + [SMALL_STATE(2761)] = 190330, + [SMALL_STATE(2762)] = 190381, + [SMALL_STATE(2763)] = 190444, + [SMALL_STATE(2764)] = 190489, + [SMALL_STATE(2765)] = 190536, + [SMALL_STATE(2766)] = 190581, + [SMALL_STATE(2767)] = 190626, + [SMALL_STATE(2768)] = 190689, + [SMALL_STATE(2769)] = 190734, + [SMALL_STATE(2770)] = 190797, + [SMALL_STATE(2771)] = 190860, + [SMALL_STATE(2772)] = 190905, + [SMALL_STATE(2773)] = 190990, + [SMALL_STATE(2774)] = 191053, + [SMALL_STATE(2775)] = 191104, + [SMALL_STATE(2776)] = 191189, + [SMALL_STATE(2777)] = 191234, + [SMALL_STATE(2778)] = 191297, + [SMALL_STATE(2779)] = 191342, + [SMALL_STATE(2780)] = 191391, + [SMALL_STATE(2781)] = 191452, + [SMALL_STATE(2782)] = 191515, + [SMALL_STATE(2783)] = 191576, + [SMALL_STATE(2784)] = 191629, + [SMALL_STATE(2785)] = 191686, + [SMALL_STATE(2786)] = 191749, + [SMALL_STATE(2787)] = 191812, + [SMALL_STATE(2788)] = 191875, + [SMALL_STATE(2789)] = 191938, + [SMALL_STATE(2790)] = 191991, + [SMALL_STATE(2791)] = 192054, + [SMALL_STATE(2792)] = 192117, + [SMALL_STATE(2793)] = 192162, + [SMALL_STATE(2794)] = 192225, + [SMALL_STATE(2795)] = 192286, + [SMALL_STATE(2796)] = 192331, + [SMALL_STATE(2797)] = 192388, + [SMALL_STATE(2798)] = 192451, + [SMALL_STATE(2799)] = 192496, + [SMALL_STATE(2800)] = 192559, + [SMALL_STATE(2801)] = 192622, + [SMALL_STATE(2802)] = 192685, + [SMALL_STATE(2803)] = 192748, + [SMALL_STATE(2804)] = 192811, + [SMALL_STATE(2805)] = 192874, + [SMALL_STATE(2806)] = 192937, + [SMALL_STATE(2807)] = 192982, + [SMALL_STATE(2808)] = 193045, + [SMALL_STATE(2809)] = 193108, + [SMALL_STATE(2810)] = 193171, + [SMALL_STATE(2811)] = 193216, + [SMALL_STATE(2812)] = 193261, + [SMALL_STATE(2813)] = 193348, + [SMALL_STATE(2814)] = 193411, + [SMALL_STATE(2815)] = 193474, + [SMALL_STATE(2816)] = 193519, + [SMALL_STATE(2817)] = 193582, + [SMALL_STATE(2818)] = 193627, + [SMALL_STATE(2819)] = 193670, + [SMALL_STATE(2820)] = 193733, + [SMALL_STATE(2821)] = 193778, + [SMALL_STATE(2822)] = 193823, + [SMALL_STATE(2823)] = 193868, + [SMALL_STATE(2824)] = 193931, + [SMALL_STATE(2825)] = 193976, + [SMALL_STATE(2826)] = 194021, + [SMALL_STATE(2827)] = 194084, + [SMALL_STATE(2828)] = 194129, + [SMALL_STATE(2829)] = 194192, + [SMALL_STATE(2830)] = 194279, + [SMALL_STATE(2831)] = 194324, + [SMALL_STATE(2832)] = 194369, + [SMALL_STATE(2833)] = 194432, + [SMALL_STATE(2834)] = 194477, + [SMALL_STATE(2835)] = 194540, + [SMALL_STATE(2836)] = 194603, + [SMALL_STATE(2837)] = 194666, + [SMALL_STATE(2838)] = 194729, + [SMALL_STATE(2839)] = 194790, + [SMALL_STATE(2840)] = 194853, + [SMALL_STATE(2841)] = 194898, + [SMALL_STATE(2842)] = 194943, + [SMALL_STATE(2843)] = 195006, + [SMALL_STATE(2844)] = 195051, + [SMALL_STATE(2845)] = 195112, + [SMALL_STATE(2846)] = 195175, + [SMALL_STATE(2847)] = 195238, + [SMALL_STATE(2848)] = 195301, + [SMALL_STATE(2849)] = 195364, + [SMALL_STATE(2850)] = 195413, + [SMALL_STATE(2851)] = 195458, + [SMALL_STATE(2852)] = 195521, + [SMALL_STATE(2853)] = 195584, + [SMALL_STATE(2854)] = 195629, + [SMALL_STATE(2855)] = 195692, + [SMALL_STATE(2856)] = 195737, + [SMALL_STATE(2857)] = 195782, + [SMALL_STATE(2858)] = 195827, + [SMALL_STATE(2859)] = 195872, + [SMALL_STATE(2860)] = 195917, + [SMALL_STATE(2861)] = 195980, + [SMALL_STATE(2862)] = 196025, + [SMALL_STATE(2863)] = 196088, + [SMALL_STATE(2864)] = 196131, + [SMALL_STATE(2865)] = 196180, + [SMALL_STATE(2866)] = 196225, + [SMALL_STATE(2867)] = 196270, + [SMALL_STATE(2868)] = 196333, + [SMALL_STATE(2869)] = 196390, + [SMALL_STATE(2870)] = 196435, + [SMALL_STATE(2871)] = 196480, + [SMALL_STATE(2872)] = 196533, + [SMALL_STATE(2873)] = 196578, + [SMALL_STATE(2874)] = 196623, + [SMALL_STATE(2875)] = 196668, + [SMALL_STATE(2876)] = 196731, + [SMALL_STATE(2877)] = 196776, + [SMALL_STATE(2878)] = 196821, + [SMALL_STATE(2879)] = 196866, + [SMALL_STATE(2880)] = 196911, + [SMALL_STATE(2881)] = 196956, + [SMALL_STATE(2882)] = 197001, + [SMALL_STATE(2883)] = 197064, + [SMALL_STATE(2884)] = 197127, + [SMALL_STATE(2885)] = 197190, + [SMALL_STATE(2886)] = 197253, + [SMALL_STATE(2887)] = 197298, + [SMALL_STATE(2888)] = 197385, + [SMALL_STATE(2889)] = 197448, + [SMALL_STATE(2890)] = 197493, + [SMALL_STATE(2891)] = 197556, + [SMALL_STATE(2892)] = 197619, + [SMALL_STATE(2893)] = 197664, + [SMALL_STATE(2894)] = 197727, + [SMALL_STATE(2895)] = 197790, + [SMALL_STATE(2896)] = 197853, + [SMALL_STATE(2897)] = 197916, + [SMALL_STATE(2898)] = 197965, + [SMALL_STATE(2899)] = 198028, + [SMALL_STATE(2900)] = 198072, + [SMALL_STATE(2901)] = 198142, + [SMALL_STATE(2902)] = 198186, + [SMALL_STATE(2903)] = 198228, + [SMALL_STATE(2904)] = 198270, + [SMALL_STATE(2905)] = 198312, + [SMALL_STATE(2906)] = 198354, + [SMALL_STATE(2907)] = 198396, + [SMALL_STATE(2908)] = 198466, + [SMALL_STATE(2909)] = 198510, + [SMALL_STATE(2910)] = 198554, + [SMALL_STATE(2911)] = 198604, + [SMALL_STATE(2912)] = 198646, + [SMALL_STATE(2913)] = 198690, + [SMALL_STATE(2914)] = 198732, + [SMALL_STATE(2915)] = 198776, + [SMALL_STATE(2916)] = 198818, + [SMALL_STATE(2917)] = 198866, + [SMALL_STATE(2918)] = 198910, + [SMALL_STATE(2919)] = 198980, + [SMALL_STATE(2920)] = 199024, + [SMALL_STATE(2921)] = 199074, + [SMALL_STATE(2922)] = 199118, + [SMALL_STATE(2923)] = 199188, + [SMALL_STATE(2924)] = 199258, + [SMALL_STATE(2925)] = 199302, + [SMALL_STATE(2926)] = 199350, + [SMALL_STATE(2927)] = 199394, + [SMALL_STATE(2928)] = 199436, + [SMALL_STATE(2929)] = 199478, + [SMALL_STATE(2930)] = 199520, + [SMALL_STATE(2931)] = 199564, + [SMALL_STATE(2932)] = 199634, + [SMALL_STATE(2933)] = 199678, + [SMALL_STATE(2934)] = 199730, + [SMALL_STATE(2935)] = 199772, + [SMALL_STATE(2936)] = 199816, + [SMALL_STATE(2937)] = 199868, + [SMALL_STATE(2938)] = 199912, + [SMALL_STATE(2939)] = 199954, + [SMALL_STATE(2940)] = 199996, + [SMALL_STATE(2941)] = 200040, + [SMALL_STATE(2942)] = 200082, + [SMALL_STATE(2943)] = 200124, + [SMALL_STATE(2944)] = 200168, + [SMALL_STATE(2945)] = 200210, + [SMALL_STATE(2946)] = 200252, + [SMALL_STATE(2947)] = 200294, + [SMALL_STATE(2948)] = 200338, + [SMALL_STATE(2949)] = 200380, + [SMALL_STATE(2950)] = 200422, + [SMALL_STATE(2951)] = 200464, + [SMALL_STATE(2952)] = 200508, + [SMALL_STATE(2953)] = 200552, + [SMALL_STATE(2954)] = 200596, + [SMALL_STATE(2955)] = 200640, + [SMALL_STATE(2956)] = 200684, + [SMALL_STATE(2957)] = 200728, + [SMALL_STATE(2958)] = 200770, + [SMALL_STATE(2959)] = 200812, + [SMALL_STATE(2960)] = 200856, + [SMALL_STATE(2961)] = 200900, + [SMALL_STATE(2962)] = 200944, + [SMALL_STATE(2963)] = 201014, + [SMALL_STATE(2964)] = 201084, + [SMALL_STATE(2965)] = 201152, + [SMALL_STATE(2966)] = 201196, + [SMALL_STATE(2967)] = 201240, + [SMALL_STATE(2968)] = 201284, + [SMALL_STATE(2969)] = 201354, + [SMALL_STATE(2970)] = 201424, + [SMALL_STATE(2971)] = 201468, + [SMALL_STATE(2972)] = 201518, + [SMALL_STATE(2973)] = 201562, + [SMALL_STATE(2974)] = 201606, + [SMALL_STATE(2975)] = 201676, + [SMALL_STATE(2976)] = 201746, + [SMALL_STATE(2977)] = 201790, + [SMALL_STATE(2978)] = 201834, + [SMALL_STATE(2979)] = 201904, + [SMALL_STATE(2980)] = 201974, + [SMALL_STATE(2981)] = 202044, + [SMALL_STATE(2982)] = 202088, + [SMALL_STATE(2983)] = 202158, + [SMALL_STATE(2984)] = 202202, + [SMALL_STATE(2985)] = 202246, + [SMALL_STATE(2986)] = 202290, + [SMALL_STATE(2987)] = 202334, + [SMALL_STATE(2988)] = 202404, + [SMALL_STATE(2989)] = 202474, + [SMALL_STATE(2990)] = 202544, + [SMALL_STATE(2991)] = 202588, + [SMALL_STATE(2992)] = 202632, + [SMALL_STATE(2993)] = 202702, + [SMALL_STATE(2994)] = 202754, + [SMALL_STATE(2995)] = 202798, + [SMALL_STATE(2996)] = 202842, + [SMALL_STATE(2997)] = 202884, + [SMALL_STATE(2998)] = 202926, + [SMALL_STATE(2999)] = 202970, + [SMALL_STATE(3000)] = 203018, + [SMALL_STATE(3001)] = 203062, + [SMALL_STATE(3002)] = 203114, + [SMALL_STATE(3003)] = 203166, + [SMALL_STATE(3004)] = 203210, + [SMALL_STATE(3005)] = 203254, + [SMALL_STATE(3006)] = 203298, + [SMALL_STATE(3007)] = 203342, + [SMALL_STATE(3008)] = 203389, + [SMALL_STATE(3009)] = 203468, + [SMALL_STATE(3010)] = 203549, + [SMALL_STATE(3011)] = 203596, + [SMALL_STATE(3012)] = 203677, + [SMALL_STATE(3013)] = 203758, + [SMALL_STATE(3014)] = 203827, + [SMALL_STATE(3015)] = 203874, + [SMALL_STATE(3016)] = 203915, + [SMALL_STATE(3017)] = 203956, + [SMALL_STATE(3018)] = 204037, + [SMALL_STATE(3019)] = 204078, + [SMALL_STATE(3020)] = 204119, + [SMALL_STATE(3021)] = 204160, + [SMALL_STATE(3022)] = 204241, + [SMALL_STATE(3023)] = 204284, + [SMALL_STATE(3024)] = 204363, + [SMALL_STATE(3025)] = 204444, + [SMALL_STATE(3026)] = 204487, + [SMALL_STATE(3027)] = 204568, + [SMALL_STATE(3028)] = 204649, + [SMALL_STATE(3029)] = 204692, + [SMALL_STATE(3030)] = 204773, + [SMALL_STATE(3031)] = 204854, + [SMALL_STATE(3032)] = 204932, + [SMALL_STATE(3033)] = 204980, + [SMALL_STATE(3034)] = 205058, + [SMALL_STATE(3035)] = 205102, + [SMALL_STATE(3036)] = 205180, + [SMALL_STATE(3037)] = 205224, + [SMALL_STATE(3038)] = 205272, + [SMALL_STATE(3039)] = 205350, + [SMALL_STATE(3040)] = 205428, + [SMALL_STATE(3041)] = 205506, + [SMALL_STATE(3042)] = 205584, + [SMALL_STATE(3043)] = 205662, + [SMALL_STATE(3044)] = 205740, + [SMALL_STATE(3045)] = 205818, + [SMALL_STATE(3046)] = 205866, + [SMALL_STATE(3047)] = 205944, + [SMALL_STATE(3048)] = 205986, + [SMALL_STATE(3049)] = 206064, + [SMALL_STATE(3050)] = 206142, + [SMALL_STATE(3051)] = 206220, + [SMALL_STATE(3052)] = 206298, + [SMALL_STATE(3053)] = 206342, + [SMALL_STATE(3054)] = 206420, + [SMALL_STATE(3055)] = 206498, + [SMALL_STATE(3056)] = 206576, + [SMALL_STATE(3057)] = 206654, + [SMALL_STATE(3058)] = 206732, + [SMALL_STATE(3059)] = 206773, + [SMALL_STATE(3060)] = 206832, + [SMALL_STATE(3061)] = 206905, + [SMALL_STATE(3062)] = 206946, + [SMALL_STATE(3063)] = 206987, + [SMALL_STATE(3064)] = 207028, + [SMALL_STATE(3065)] = 207101, + [SMALL_STATE(3066)] = 207142, + [SMALL_STATE(3067)] = 207183, + [SMALL_STATE(3068)] = 207253, + [SMALL_STATE(3069)] = 207325, + [SMALL_STATE(3070)] = 207397, + [SMALL_STATE(3071)] = 207473, + [SMALL_STATE(3072)] = 207545, + [SMALL_STATE(3073)] = 207617, + [SMALL_STATE(3074)] = 207689, + [SMALL_STATE(3075)] = 207761, + [SMALL_STATE(3076)] = 207833, + [SMALL_STATE(3077)] = 207905, + [SMALL_STATE(3078)] = 207977, + [SMALL_STATE(3079)] = 208053, + [SMALL_STATE(3080)] = 208125, + [SMALL_STATE(3081)] = 208197, + [SMALL_STATE(3082)] = 208269, + [SMALL_STATE(3083)] = 208345, + [SMALL_STATE(3084)] = 208417, + [SMALL_STATE(3085)] = 208493, + [SMALL_STATE(3086)] = 208565, + [SMALL_STATE(3087)] = 208637, + [SMALL_STATE(3088)] = 208709, + [SMALL_STATE(3089)] = 208781, + [SMALL_STATE(3090)] = 208853, + [SMALL_STATE(3091)] = 208925, + [SMALL_STATE(3092)] = 208995, + [SMALL_STATE(3093)] = 209067, + [SMALL_STATE(3094)] = 209139, + [SMALL_STATE(3095)] = 209211, + [SMALL_STATE(3096)] = 209283, + [SMALL_STATE(3097)] = 209355, + [SMALL_STATE(3098)] = 209427, + [SMALL_STATE(3099)] = 209499, + [SMALL_STATE(3100)] = 209571, + [SMALL_STATE(3101)] = 209643, + [SMALL_STATE(3102)] = 209719, + [SMALL_STATE(3103)] = 209791, + [SMALL_STATE(3104)] = 209863, + [SMALL_STATE(3105)] = 209939, + [SMALL_STATE(3106)] = 210011, + [SMALL_STATE(3107)] = 210083, + [SMALL_STATE(3108)] = 210155, + [SMALL_STATE(3109)] = 210227, + [SMALL_STATE(3110)] = 210299, + [SMALL_STATE(3111)] = 210371, + [SMALL_STATE(3112)] = 210443, + [SMALL_STATE(3113)] = 210515, + [SMALL_STATE(3114)] = 210587, + [SMALL_STATE(3115)] = 210659, + [SMALL_STATE(3116)] = 210731, + [SMALL_STATE(3117)] = 210803, + [SMALL_STATE(3118)] = 210875, + [SMALL_STATE(3119)] = 210947, + [SMALL_STATE(3120)] = 211023, + [SMALL_STATE(3121)] = 211095, + [SMALL_STATE(3122)] = 211171, + [SMALL_STATE(3123)] = 211243, + [SMALL_STATE(3124)] = 211315, + [SMALL_STATE(3125)] = 211385, + [SMALL_STATE(3126)] = 211455, + [SMALL_STATE(3127)] = 211527, + [SMALL_STATE(3128)] = 211599, + [SMALL_STATE(3129)] = 211671, + [SMALL_STATE(3130)] = 211743, + [SMALL_STATE(3131)] = 211797, + [SMALL_STATE(3132)] = 211869, + [SMALL_STATE(3133)] = 211941, + [SMALL_STATE(3134)] = 212013, + [SMALL_STATE(3135)] = 212089, + [SMALL_STATE(3136)] = 212161, + [SMALL_STATE(3137)] = 212233, + [SMALL_STATE(3138)] = 212309, + [SMALL_STATE(3139)] = 212381, + [SMALL_STATE(3140)] = 212453, + [SMALL_STATE(3141)] = 212525, + [SMALL_STATE(3142)] = 212597, + [SMALL_STATE(3143)] = 212669, + [SMALL_STATE(3144)] = 212741, + [SMALL_STATE(3145)] = 212813, + [SMALL_STATE(3146)] = 212885, + [SMALL_STATE(3147)] = 212957, + [SMALL_STATE(3148)] = 213029, + [SMALL_STATE(3149)] = 213101, + [SMALL_STATE(3150)] = 213173, + [SMALL_STATE(3151)] = 213245, + [SMALL_STATE(3152)] = 213317, + [SMALL_STATE(3153)] = 213389, + [SMALL_STATE(3154)] = 213461, + [SMALL_STATE(3155)] = 213533, + [SMALL_STATE(3156)] = 213605, + [SMALL_STATE(3157)] = 213677, + [SMALL_STATE(3158)] = 213749, + [SMALL_STATE(3159)] = 213821, + [SMALL_STATE(3160)] = 213893, + [SMALL_STATE(3161)] = 213965, + [SMALL_STATE(3162)] = 214037, + [SMALL_STATE(3163)] = 214076, + [SMALL_STATE(3164)] = 214115, + [SMALL_STATE(3165)] = 214154, + [SMALL_STATE(3166)] = 214194, + [SMALL_STATE(3167)] = 214240, + [SMALL_STATE(3168)] = 214286, + [SMALL_STATE(3169)] = 214350, + [SMALL_STATE(3170)] = 214390, + [SMALL_STATE(3171)] = 214436, + [SMALL_STATE(3172)] = 214500, + [SMALL_STATE(3173)] = 214564, + [SMALL_STATE(3174)] = 214610, + [SMALL_STATE(3175)] = 214674, + [SMALL_STATE(3176)] = 214738, + [SMALL_STATE(3177)] = 214784, + [SMALL_STATE(3178)] = 214830, + [SMALL_STATE(3179)] = 214876, + [SMALL_STATE(3180)] = 214922, + [SMALL_STATE(3181)] = 214986, + [SMALL_STATE(3182)] = 215032, + [SMALL_STATE(3183)] = 215078, + [SMALL_STATE(3184)] = 215124, + [SMALL_STATE(3185)] = 215188, + [SMALL_STATE(3186)] = 215252, + [SMALL_STATE(3187)] = 215316, + [SMALL_STATE(3188)] = 215362, + [SMALL_STATE(3189)] = 215406, + [SMALL_STATE(3190)] = 215452, + [SMALL_STATE(3191)] = 215516, + [SMALL_STATE(3192)] = 215554, + [SMALL_STATE(3193)] = 215600, + [SMALL_STATE(3194)] = 215664, + [SMALL_STATE(3195)] = 215710, + [SMALL_STATE(3196)] = 215774, + [SMALL_STATE(3197)] = 215838, + [SMALL_STATE(3198)] = 215902, + [SMALL_STATE(3199)] = 215961, + [SMALL_STATE(3200)] = 216012, + [SMALL_STATE(3201)] = 216063, + [SMALL_STATE(3202)] = 216108, + [SMALL_STATE(3203)] = 216167, + [SMALL_STATE(3204)] = 216226, + [SMALL_STATE(3205)] = 216269, + [SMALL_STATE(3206)] = 216328, + [SMALL_STATE(3207)] = 216367, + [SMALL_STATE(3208)] = 216416, + [SMALL_STATE(3209)] = 216451, + [SMALL_STATE(3210)] = 216490, + [SMALL_STATE(3211)] = 216537, + [SMALL_STATE(3212)] = 216571, + [SMALL_STATE(3213)] = 216609, + [SMALL_STATE(3214)] = 216669, + [SMALL_STATE(3215)] = 216731, + [SMALL_STATE(3216)] = 216791, + [SMALL_STATE(3217)] = 216849, + [SMALL_STATE(3218)] = 216897, + [SMALL_STATE(3219)] = 216947, + [SMALL_STATE(3220)] = 217007, + [SMALL_STATE(3221)] = 217051, + [SMALL_STATE(3222)] = 217109, + [SMALL_STATE(3223)] = 217155, + [SMALL_STATE(3224)] = 217203, + [SMALL_STATE(3225)] = 217251, + [SMALL_STATE(3226)] = 217311, + [SMALL_STATE(3227)] = 217347, + [SMALL_STATE(3228)] = 217405, + [SMALL_STATE(3229)] = 217467, + [SMALL_STATE(3230)] = 217505, + [SMALL_STATE(3231)] = 217553, + [SMALL_STATE(3232)] = 217613, + [SMALL_STATE(3233)] = 217673, + [SMALL_STATE(3234)] = 217733, + [SMALL_STATE(3235)] = 217791, + [SMALL_STATE(3236)] = 217851, + [SMALL_STATE(3237)] = 217913, + [SMALL_STATE(3238)] = 217973, + [SMALL_STATE(3239)] = 218011, + [SMALL_STATE(3240)] = 218073, + [SMALL_STATE(3241)] = 218131, + [SMALL_STATE(3242)] = 218179, + [SMALL_STATE(3243)] = 218239, + [SMALL_STATE(3244)] = 218273, + [SMALL_STATE(3245)] = 218321, + [SMALL_STATE(3246)] = 218371, + [SMALL_STATE(3247)] = 218419, + [SMALL_STATE(3248)] = 218481, + [SMALL_STATE(3249)] = 218529, + [SMALL_STATE(3250)] = 218568, + [SMALL_STATE(3251)] = 218603, + [SMALL_STATE(3252)] = 218638, + [SMALL_STATE(3253)] = 218685, + [SMALL_STATE(3254)] = 218732, + [SMALL_STATE(3255)] = 218765, + [SMALL_STATE(3256)] = 218812, + [SMALL_STATE(3257)] = 218845, + [SMALL_STATE(3258)] = 218890, + [SMALL_STATE(3259)] = 218925, + [SMALL_STATE(3260)] = 218970, + [SMALL_STATE(3261)] = 219005, + [SMALL_STATE(3262)] = 219038, + [SMALL_STATE(3263)] = 219085, + [SMALL_STATE(3264)] = 219137, + [SMALL_STATE(3265)] = 219189, + [SMALL_STATE(3266)] = 219243, + [SMALL_STATE(3267)] = 219297, + [SMALL_STATE(3268)] = 219353, + [SMALL_STATE(3269)] = 219407, + [SMALL_STATE(3270)] = 219463, + [SMALL_STATE(3271)] = 219517, + [SMALL_STATE(3272)] = 219549, + [SMALL_STATE(3273)] = 219603, + [SMALL_STATE(3274)] = 219657, + [SMALL_STATE(3275)] = 219709, + [SMALL_STATE(3276)] = 219751, + [SMALL_STATE(3277)] = 219803, + [SMALL_STATE(3278)] = 219855, + [SMALL_STATE(3279)] = 219907, + [SMALL_STATE(3280)] = 219959, + [SMALL_STATE(3281)] = 220001, + [SMALL_STATE(3282)] = 220057, + [SMALL_STATE(3283)] = 220111, + [SMALL_STATE(3284)] = 220153, + [SMALL_STATE(3285)] = 220193, + [SMALL_STATE(3286)] = 220247, + [SMALL_STATE(3287)] = 220299, + [SMALL_STATE(3288)] = 220355, + [SMALL_STATE(3289)] = 220409, + [SMALL_STATE(3290)] = 220463, + [SMALL_STATE(3291)] = 220495, + [SMALL_STATE(3292)] = 220551, + [SMALL_STATE(3293)] = 220603, + [SMALL_STATE(3294)] = 220635, + [SMALL_STATE(3295)] = 220691, + [SMALL_STATE(3296)] = 220743, + [SMALL_STATE(3297)] = 220790, + [SMALL_STATE(3298)] = 220837, + [SMALL_STATE(3299)] = 220884, + [SMALL_STATE(3300)] = 220931, + [SMALL_STATE(3301)] = 220978, + [SMALL_STATE(3302)] = 221021, + [SMALL_STATE(3303)] = 221068, + [SMALL_STATE(3304)] = 221115, + [SMALL_STATE(3305)] = 221162, + [SMALL_STATE(3306)] = 221209, + [SMALL_STATE(3307)] = 221250, + [SMALL_STATE(3308)] = 221297, + [SMALL_STATE(3309)] = 221328, + [SMALL_STATE(3310)] = 221375, + [SMALL_STATE(3311)] = 221422, + [SMALL_STATE(3312)] = 221469, + [SMALL_STATE(3313)] = 221516, + [SMALL_STATE(3314)] = 221563, + [SMALL_STATE(3315)] = 221610, + [SMALL_STATE(3316)] = 221657, + [SMALL_STATE(3317)] = 221704, + [SMALL_STATE(3318)] = 221747, + [SMALL_STATE(3319)] = 221794, + [SMALL_STATE(3320)] = 221841, + [SMALL_STATE(3321)] = 221888, + [SMALL_STATE(3322)] = 221935, + [SMALL_STATE(3323)] = 221982, + [SMALL_STATE(3324)] = 222025, + [SMALL_STATE(3325)] = 222072, + [SMALL_STATE(3326)] = 222115, + [SMALL_STATE(3327)] = 222150, + [SMALL_STATE(3328)] = 222197, + [SMALL_STATE(3329)] = 222244, + [SMALL_STATE(3330)] = 222291, + [SMALL_STATE(3331)] = 222338, + [SMALL_STATE(3332)] = 222385, + [SMALL_STATE(3333)] = 222432, + [SMALL_STATE(3334)] = 222479, + [SMALL_STATE(3335)] = 222516, + [SMALL_STATE(3336)] = 222563, + [SMALL_STATE(3337)] = 222610, + [SMALL_STATE(3338)] = 222657, + [SMALL_STATE(3339)] = 222704, + [SMALL_STATE(3340)] = 222751, + [SMALL_STATE(3341)] = 222798, + [SMALL_STATE(3342)] = 222845, + [SMALL_STATE(3343)] = 222892, + [SMALL_STATE(3344)] = 222937, + [SMALL_STATE(3345)] = 222984, + [SMALL_STATE(3346)] = 223031, + [SMALL_STATE(3347)] = 223078, + [SMALL_STATE(3348)] = 223125, + [SMALL_STATE(3349)] = 223168, + [SMALL_STATE(3350)] = 223215, + [SMALL_STATE(3351)] = 223262, + [SMALL_STATE(3352)] = 223309, + [SMALL_STATE(3353)] = 223356, + [SMALL_STATE(3354)] = 223403, + [SMALL_STATE(3355)] = 223450, + [SMALL_STATE(3356)] = 223497, + [SMALL_STATE(3357)] = 223544, + [SMALL_STATE(3358)] = 223591, + [SMALL_STATE(3359)] = 223638, + [SMALL_STATE(3360)] = 223674, + [SMALL_STATE(3361)] = 223722, + [SMALL_STATE(3362)] = 223772, + [SMALL_STATE(3363)] = 223820, + [SMALL_STATE(3364)] = 223870, + [SMALL_STATE(3365)] = 223920, + [SMALL_STATE(3366)] = 223970, + [SMALL_STATE(3367)] = 224002, + [SMALL_STATE(3368)] = 224050, + [SMALL_STATE(3369)] = 224080, + [SMALL_STATE(3370)] = 224128, + [SMALL_STATE(3371)] = 224166, + [SMALL_STATE(3372)] = 224216, + [SMALL_STATE(3373)] = 224266, + [SMALL_STATE(3374)] = 224304, + [SMALL_STATE(3375)] = 224342, + [SMALL_STATE(3376)] = 224376, + [SMALL_STATE(3377)] = 224408, + [SMALL_STATE(3378)] = 224456, + [SMALL_STATE(3379)] = 224494, + [SMALL_STATE(3380)] = 224542, + [SMALL_STATE(3381)] = 224592, + [SMALL_STATE(3382)] = 224642, + [SMALL_STATE(3383)] = 224690, + [SMALL_STATE(3384)] = 224738, + [SMALL_STATE(3385)] = 224786, + [SMALL_STATE(3386)] = 224824, + [SMALL_STATE(3387)] = 224874, + [SMALL_STATE(3388)] = 224922, + [SMALL_STATE(3389)] = 224972, + [SMALL_STATE(3390)] = 225022, + [SMALL_STATE(3391)] = 225052, + [SMALL_STATE(3392)] = 225101, + [SMALL_STATE(3393)] = 225132, + [SMALL_STATE(3394)] = 225185, + [SMALL_STATE(3395)] = 225234, + [SMALL_STATE(3396)] = 225281, + [SMALL_STATE(3397)] = 225330, + [SMALL_STATE(3398)] = 225379, + [SMALL_STATE(3399)] = 225432, + [SMALL_STATE(3400)] = 225481, + [SMALL_STATE(3401)] = 225516, + [SMALL_STATE(3402)] = 225565, + [SMALL_STATE(3403)] = 225602, + [SMALL_STATE(3404)] = 225649, + [SMALL_STATE(3405)] = 225698, + [SMALL_STATE(3406)] = 225751, + [SMALL_STATE(3407)] = 225798, + [SMALL_STATE(3408)] = 225835, + [SMALL_STATE(3409)] = 225880, + [SMALL_STATE(3410)] = 225929, + [SMALL_STATE(3411)] = 225978, + [SMALL_STATE(3412)] = 226023, + [SMALL_STATE(3413)] = 226060, + [SMALL_STATE(3414)] = 226107, + [SMALL_STATE(3415)] = 226156, + [SMALL_STATE(3416)] = 226201, + [SMALL_STATE(3417)] = 226232, + [SMALL_STATE(3418)] = 226279, + [SMALL_STATE(3419)] = 226308, + [SMALL_STATE(3420)] = 226355, + [SMALL_STATE(3421)] = 226400, + [SMALL_STATE(3422)] = 226453, + [SMALL_STATE(3423)] = 226502, + [SMALL_STATE(3424)] = 226547, + [SMALL_STATE(3425)] = 226578, + [SMALL_STATE(3426)] = 226609, + [SMALL_STATE(3427)] = 226658, + [SMALL_STATE(3428)] = 226705, + [SMALL_STATE(3429)] = 226754, + [SMALL_STATE(3430)] = 226807, + [SMALL_STATE(3431)] = 226852, + [SMALL_STATE(3432)] = 226905, + [SMALL_STATE(3433)] = 226950, + [SMALL_STATE(3434)] = 227003, + [SMALL_STATE(3435)] = 227052, + [SMALL_STATE(3436)] = 227101, + [SMALL_STATE(3437)] = 227148, + [SMALL_STATE(3438)] = 227197, + [SMALL_STATE(3439)] = 227246, + [SMALL_STATE(3440)] = 227277, + [SMALL_STATE(3441)] = 227322, + [SMALL_STATE(3442)] = 227353, + [SMALL_STATE(3443)] = 227406, + [SMALL_STATE(3444)] = 227453, + [SMALL_STATE(3445)] = 227502, + [SMALL_STATE(3446)] = 227547, + [SMALL_STATE(3447)] = 227592, + [SMALL_STATE(3448)] = 227637, + [SMALL_STATE(3449)] = 227668, + [SMALL_STATE(3450)] = 227717, + [SMALL_STATE(3451)] = 227762, + [SMALL_STATE(3452)] = 227811, + [SMALL_STATE(3453)] = 227860, + [SMALL_STATE(3454)] = 227905, + [SMALL_STATE(3455)] = 227934, + [SMALL_STATE(3456)] = 227983, + [SMALL_STATE(3457)] = 228032, + [SMALL_STATE(3458)] = 228077, + [SMALL_STATE(3459)] = 228130, + [SMALL_STATE(3460)] = 228179, + [SMALL_STATE(3461)] = 228210, + [SMALL_STATE(3462)] = 228263, + [SMALL_STATE(3463)] = 228308, + [SMALL_STATE(3464)] = 228355, + [SMALL_STATE(3465)] = 228404, + [SMALL_STATE(3466)] = 228449, + [SMALL_STATE(3467)] = 228498, + [SMALL_STATE(3468)] = 228529, + [SMALL_STATE(3469)] = 228560, + [SMALL_STATE(3470)] = 228605, + [SMALL_STATE(3471)] = 228636, + [SMALL_STATE(3472)] = 228683, + [SMALL_STATE(3473)] = 228714, + [SMALL_STATE(3474)] = 228759, + [SMALL_STATE(3475)] = 228790, + [SMALL_STATE(3476)] = 228821, + [SMALL_STATE(3477)] = 228866, + [SMALL_STATE(3478)] = 228907, + [SMALL_STATE(3479)] = 228954, + [SMALL_STATE(3480)] = 228985, + [SMALL_STATE(3481)] = 229034, + [SMALL_STATE(3482)] = 229083, + [SMALL_STATE(3483)] = 229132, + [SMALL_STATE(3484)] = 229181, + [SMALL_STATE(3485)] = 229228, + [SMALL_STATE(3486)] = 229273, + [SMALL_STATE(3487)] = 229304, + [SMALL_STATE(3488)] = 229350, + [SMALL_STATE(3489)] = 229386, + [SMALL_STATE(3490)] = 229436, + [SMALL_STATE(3491)] = 229486, + [SMALL_STATE(3492)] = 229536, + [SMALL_STATE(3493)] = 229564, + [SMALL_STATE(3494)] = 229614, + [SMALL_STATE(3495)] = 229664, + [SMALL_STATE(3496)] = 229714, + [SMALL_STATE(3497)] = 229760, + [SMALL_STATE(3498)] = 229810, + [SMALL_STATE(3499)] = 229860, + [SMALL_STATE(3500)] = 229910, + [SMALL_STATE(3501)] = 229960, + [SMALL_STATE(3502)] = 230010, + [SMALL_STATE(3503)] = 230048, + [SMALL_STATE(3504)] = 230098, + [SMALL_STATE(3505)] = 230148, + [SMALL_STATE(3506)] = 230198, + [SMALL_STATE(3507)] = 230226, + [SMALL_STATE(3508)] = 230276, + [SMALL_STATE(3509)] = 230326, + [SMALL_STATE(3510)] = 230364, + [SMALL_STATE(3511)] = 230402, + [SMALL_STATE(3512)] = 230452, + [SMALL_STATE(3513)] = 230484, + [SMALL_STATE(3514)] = 230534, + [SMALL_STATE(3515)] = 230584, + [SMALL_STATE(3516)] = 230634, + [SMALL_STATE(3517)] = 230684, + [SMALL_STATE(3518)] = 230734, + [SMALL_STATE(3519)] = 230784, + [SMALL_STATE(3520)] = 230834, + [SMALL_STATE(3521)] = 230884, + [SMALL_STATE(3522)] = 230934, + [SMALL_STATE(3523)] = 230964, + [SMALL_STATE(3524)] = 231014, + [SMALL_STATE(3525)] = 231064, + [SMALL_STATE(3526)] = 231114, + [SMALL_STATE(3527)] = 231164, + [SMALL_STATE(3528)] = 231214, + [SMALL_STATE(3529)] = 231264, + [SMALL_STATE(3530)] = 231310, + [SMALL_STATE(3531)] = 231360, + [SMALL_STATE(3532)] = 231390, + [SMALL_STATE(3533)] = 231440, + [SMALL_STATE(3534)] = 231486, + [SMALL_STATE(3535)] = 231524, + [SMALL_STATE(3536)] = 231574, + [SMALL_STATE(3537)] = 231606, + [SMALL_STATE(3538)] = 231644, + [SMALL_STATE(3539)] = 231672, + [SMALL_STATE(3540)] = 231710, + [SMALL_STATE(3541)] = 231760, + [SMALL_STATE(3542)] = 231788, + [SMALL_STATE(3543)] = 231826, + [SMALL_STATE(3544)] = 231854, + [SMALL_STATE(3545)] = 231904, + [SMALL_STATE(3546)] = 231954, + [SMALL_STATE(3547)] = 232000, + [SMALL_STATE(3548)] = 232046, + [SMALL_STATE(3549)] = 232084, + [SMALL_STATE(3550)] = 232130, + [SMALL_STATE(3551)] = 232180, + [SMALL_STATE(3552)] = 232230, + [SMALL_STATE(3553)] = 232280, + [SMALL_STATE(3554)] = 232330, + [SMALL_STATE(3555)] = 232380, + [SMALL_STATE(3556)] = 232430, + [SMALL_STATE(3557)] = 232476, + [SMALL_STATE(3558)] = 232522, + [SMALL_STATE(3559)] = 232572, + [SMALL_STATE(3560)] = 232622, + [SMALL_STATE(3561)] = 232654, + [SMALL_STATE(3562)] = 232692, + [SMALL_STATE(3563)] = 232742, + [SMALL_STATE(3564)] = 232792, + [SMALL_STATE(3565)] = 232838, + [SMALL_STATE(3566)] = 232876, + [SMALL_STATE(3567)] = 232926, + [SMALL_STATE(3568)] = 232954, + [SMALL_STATE(3569)] = 232998, + [SMALL_STATE(3570)] = 233048, + [SMALL_STATE(3571)] = 233076, + [SMALL_STATE(3572)] = 233119, + [SMALL_STATE(3573)] = 233146, + [SMALL_STATE(3574)] = 233189, + [SMALL_STATE(3575)] = 233236, + [SMALL_STATE(3576)] = 233279, + [SMALL_STATE(3577)] = 233306, + [SMALL_STATE(3578)] = 233341, + [SMALL_STATE(3579)] = 233370, + [SMALL_STATE(3580)] = 233399, + [SMALL_STATE(3581)] = 233442, + [SMALL_STATE(3582)] = 233485, + [SMALL_STATE(3583)] = 233524, + [SMALL_STATE(3584)] = 233567, + [SMALL_STATE(3585)] = 233610, + [SMALL_STATE(3586)] = 233645, + [SMALL_STATE(3587)] = 233688, + [SMALL_STATE(3588)] = 233731, + [SMALL_STATE(3589)] = 233774, + [SMALL_STATE(3590)] = 233813, + [SMALL_STATE(3591)] = 233842, + [SMALL_STATE(3592)] = 233885, + [SMALL_STATE(3593)] = 233928, + [SMALL_STATE(3594)] = 233971, + [SMALL_STATE(3595)] = 234010, + [SMALL_STATE(3596)] = 234049, + [SMALL_STATE(3597)] = 234092, + [SMALL_STATE(3598)] = 234135, + [SMALL_STATE(3599)] = 234178, + [SMALL_STATE(3600)] = 234221, + [SMALL_STATE(3601)] = 234250, + [SMALL_STATE(3602)] = 234293, + [SMALL_STATE(3603)] = 234340, + [SMALL_STATE(3604)] = 234387, + [SMALL_STATE(3605)] = 234430, + [SMALL_STATE(3606)] = 234471, + [SMALL_STATE(3607)] = 234500, + [SMALL_STATE(3608)] = 234543, + [SMALL_STATE(3609)] = 234586, + [SMALL_STATE(3610)] = 234615, + [SMALL_STATE(3611)] = 234654, + [SMALL_STATE(3612)] = 234693, + [SMALL_STATE(3613)] = 234722, + [SMALL_STATE(3614)] = 234749, + [SMALL_STATE(3615)] = 234778, + [SMALL_STATE(3616)] = 234825, + [SMALL_STATE(3617)] = 234864, + [SMALL_STATE(3618)] = 234907, + [SMALL_STATE(3619)] = 234934, + [SMALL_STATE(3620)] = 234963, + [SMALL_STATE(3621)] = 235002, + [SMALL_STATE(3622)] = 235045, + [SMALL_STATE(3623)] = 235088, + [SMALL_STATE(3624)] = 235131, + [SMALL_STATE(3625)] = 235170, + [SMALL_STATE(3626)] = 235213, + [SMALL_STATE(3627)] = 235240, + [SMALL_STATE(3628)] = 235281, + [SMALL_STATE(3629)] = 235308, + [SMALL_STATE(3630)] = 235337, + [SMALL_STATE(3631)] = 235376, + [SMALL_STATE(3632)] = 235415, + [SMALL_STATE(3633)] = 235458, + [SMALL_STATE(3634)] = 235501, + [SMALL_STATE(3635)] = 235540, + [SMALL_STATE(3636)] = 235583, + [SMALL_STATE(3637)] = 235626, + [SMALL_STATE(3638)] = 235667, + [SMALL_STATE(3639)] = 235710, + [SMALL_STATE(3640)] = 235739, + [SMALL_STATE(3641)] = 235778, + [SMALL_STATE(3642)] = 235817, + [SMALL_STATE(3643)] = 235856, + [SMALL_STATE(3644)] = 235895, + [SMALL_STATE(3645)] = 235934, + [SMALL_STATE(3646)] = 235973, + [SMALL_STATE(3647)] = 236002, + [SMALL_STATE(3648)] = 236041, + [SMALL_STATE(3649)] = 236088, + [SMALL_STATE(3650)] = 236127, + [SMALL_STATE(3651)] = 236166, + [SMALL_STATE(3652)] = 236209, + [SMALL_STATE(3653)] = 236248, + [SMALL_STATE(3654)] = 236295, + [SMALL_STATE(3655)] = 236338, + [SMALL_STATE(3656)] = 236377, + [SMALL_STATE(3657)] = 236416, + [SMALL_STATE(3658)] = 236455, + [SMALL_STATE(3659)] = 236494, + [SMALL_STATE(3660)] = 236533, + [SMALL_STATE(3661)] = 236572, + [SMALL_STATE(3662)] = 236611, + [SMALL_STATE(3663)] = 236654, + [SMALL_STATE(3664)] = 236697, + [SMALL_STATE(3665)] = 236736, + [SMALL_STATE(3666)] = 236765, + [SMALL_STATE(3667)] = 236808, + [SMALL_STATE(3668)] = 236847, + [SMALL_STATE(3669)] = 236890, + [SMALL_STATE(3670)] = 236933, + [SMALL_STATE(3671)] = 236972, + [SMALL_STATE(3672)] = 237019, + [SMALL_STATE(3673)] = 237058, + [SMALL_STATE(3674)] = 237099, + [SMALL_STATE(3675)] = 237138, + [SMALL_STATE(3676)] = 237181, + [SMALL_STATE(3677)] = 237224, + [SMALL_STATE(3678)] = 237267, + [SMALL_STATE(3679)] = 237296, + [SMALL_STATE(3680)] = 237335, + [SMALL_STATE(3681)] = 237378, + [SMALL_STATE(3682)] = 237425, + [SMALL_STATE(3683)] = 237468, + [SMALL_STATE(3684)] = 237507, + [SMALL_STATE(3685)] = 237550, + [SMALL_STATE(3686)] = 237593, + [SMALL_STATE(3687)] = 237622, + [SMALL_STATE(3688)] = 237661, + [SMALL_STATE(3689)] = 237700, + [SMALL_STATE(3690)] = 237743, + [SMALL_STATE(3691)] = 237786, + [SMALL_STATE(3692)] = 237815, + [SMALL_STATE(3693)] = 237858, + [SMALL_STATE(3694)] = 237901, + [SMALL_STATE(3695)] = 237942, + [SMALL_STATE(3696)] = 237971, + [SMALL_STATE(3697)] = 238014, + [SMALL_STATE(3698)] = 238053, + [SMALL_STATE(3699)] = 238092, + [SMALL_STATE(3700)] = 238135, + [SMALL_STATE(3701)] = 238178, + [SMALL_STATE(3702)] = 238221, + [SMALL_STATE(3703)] = 238264, + [SMALL_STATE(3704)] = 238303, + [SMALL_STATE(3705)] = 238346, + [SMALL_STATE(3706)] = 238385, + [SMALL_STATE(3707)] = 238424, + [SMALL_STATE(3708)] = 238463, + [SMALL_STATE(3709)] = 238502, + [SMALL_STATE(3710)] = 238541, + [SMALL_STATE(3711)] = 238580, + [SMALL_STATE(3712)] = 238609, + [SMALL_STATE(3713)] = 238648, + [SMALL_STATE(3714)] = 238687, + [SMALL_STATE(3715)] = 238730, + [SMALL_STATE(3716)] = 238769, + [SMALL_STATE(3717)] = 238812, + [SMALL_STATE(3718)] = 238859, + [SMALL_STATE(3719)] = 238898, + [SMALL_STATE(3720)] = 238941, + [SMALL_STATE(3721)] = 238978, + [SMALL_STATE(3722)] = 239017, + [SMALL_STATE(3723)] = 239060, + [SMALL_STATE(3724)] = 239103, + [SMALL_STATE(3725)] = 239132, + [SMALL_STATE(3726)] = 239171, + [SMALL_STATE(3727)] = 239218, + [SMALL_STATE(3728)] = 239261, + [SMALL_STATE(3729)] = 239290, + [SMALL_STATE(3730)] = 239317, + [SMALL_STATE(3731)] = 239360, + [SMALL_STATE(3732)] = 239387, + [SMALL_STATE(3733)] = 239426, + [SMALL_STATE(3734)] = 239455, + [SMALL_STATE(3735)] = 239482, + [SMALL_STATE(3736)] = 239521, + [SMALL_STATE(3737)] = 239568, + [SMALL_STATE(3738)] = 239607, + [SMALL_STATE(3739)] = 239654, + [SMALL_STATE(3740)] = 239693, + [SMALL_STATE(3741)] = 239732, + [SMALL_STATE(3742)] = 239771, + [SMALL_STATE(3743)] = 239810, + [SMALL_STATE(3744)] = 239839, + [SMALL_STATE(3745)] = 239868, + [SMALL_STATE(3746)] = 239897, + [SMALL_STATE(3747)] = 239924, + [SMALL_STATE(3748)] = 239963, + [SMALL_STATE(3749)] = 239992, + [SMALL_STATE(3750)] = 240031, + [SMALL_STATE(3751)] = 240070, + [SMALL_STATE(3752)] = 240109, + [SMALL_STATE(3753)] = 240156, + [SMALL_STATE(3754)] = 240185, + [SMALL_STATE(3755)] = 240232, + [SMALL_STATE(3756)] = 240279, + [SMALL_STATE(3757)] = 240318, + [SMALL_STATE(3758)] = 240361, + [SMALL_STATE(3759)] = 240400, + [SMALL_STATE(3760)] = 240439, + [SMALL_STATE(3761)] = 240482, + [SMALL_STATE(3762)] = 240525, + [SMALL_STATE(3763)] = 240554, + [SMALL_STATE(3764)] = 240593, + [SMALL_STATE(3765)] = 240632, + [SMALL_STATE(3766)] = 240671, + [SMALL_STATE(3767)] = 240710, + [SMALL_STATE(3768)] = 240749, + [SMALL_STATE(3769)] = 240778, + [SMALL_STATE(3770)] = 240821, + [SMALL_STATE(3771)] = 240864, + [SMALL_STATE(3772)] = 240903, + [SMALL_STATE(3773)] = 240946, + [SMALL_STATE(3774)] = 240989, + [SMALL_STATE(3775)] = 241032, + [SMALL_STATE(3776)] = 241071, + [SMALL_STATE(3777)] = 241110, + [SMALL_STATE(3778)] = 241149, + [SMALL_STATE(3779)] = 241188, + [SMALL_STATE(3780)] = 241227, + [SMALL_STATE(3781)] = 241270, + [SMALL_STATE(3782)] = 241313, + [SMALL_STATE(3783)] = 241356, + [SMALL_STATE(3784)] = 241399, + [SMALL_STATE(3785)] = 241442, + [SMALL_STATE(3786)] = 241481, + [SMALL_STATE(3787)] = 241510, + [SMALL_STATE(3788)] = 241539, + [SMALL_STATE(3789)] = 241578, + [SMALL_STATE(3790)] = 241617, + [SMALL_STATE(3791)] = 241656, + [SMALL_STATE(3792)] = 241685, + [SMALL_STATE(3793)] = 241724, + [SMALL_STATE(3794)] = 241767, + [SMALL_STATE(3795)] = 241806, + [SMALL_STATE(3796)] = 241845, + [SMALL_STATE(3797)] = 241888, + [SMALL_STATE(3798)] = 241917, + [SMALL_STATE(3799)] = 241960, + [SMALL_STATE(3800)] = 242003, + [SMALL_STATE(3801)] = 242046, + [SMALL_STATE(3802)] = 242085, + [SMALL_STATE(3803)] = 242128, + [SMALL_STATE(3804)] = 242167, + [SMALL_STATE(3805)] = 242206, + [SMALL_STATE(3806)] = 242249, + [SMALL_STATE(3807)] = 242292, + [SMALL_STATE(3808)] = 242321, + [SMALL_STATE(3809)] = 242360, + [SMALL_STATE(3810)] = 242389, + [SMALL_STATE(3811)] = 242428, + [SMALL_STATE(3812)] = 242457, + [SMALL_STATE(3813)] = 242500, + [SMALL_STATE(3814)] = 242539, + [SMALL_STATE(3815)] = 242568, + [SMALL_STATE(3816)] = 242607, + [SMALL_STATE(3817)] = 242636, + [SMALL_STATE(3818)] = 242679, + [SMALL_STATE(3819)] = 242722, + [SMALL_STATE(3820)] = 242765, + [SMALL_STATE(3821)] = 242804, + [SMALL_STATE(3822)] = 242847, + [SMALL_STATE(3823)] = 242890, + [SMALL_STATE(3824)] = 242929, + [SMALL_STATE(3825)] = 242968, + [SMALL_STATE(3826)] = 243007, + [SMALL_STATE(3827)] = 243046, + [SMALL_STATE(3828)] = 243085, + [SMALL_STATE(3829)] = 243124, + [SMALL_STATE(3830)] = 243153, + [SMALL_STATE(3831)] = 243196, + [SMALL_STATE(3832)] = 243239, + [SMALL_STATE(3833)] = 243282, + [SMALL_STATE(3834)] = 243311, + [SMALL_STATE(3835)] = 243354, + [SMALL_STATE(3836)] = 243397, + [SMALL_STATE(3837)] = 243440, + [SMALL_STATE(3838)] = 243479, + [SMALL_STATE(3839)] = 243518, + [SMALL_STATE(3840)] = 243547, + [SMALL_STATE(3841)] = 243583, + [SMALL_STATE(3842)] = 243625, + [SMALL_STATE(3843)] = 243667, + [SMALL_STATE(3844)] = 243711, + [SMALL_STATE(3845)] = 243737, + [SMALL_STATE(3846)] = 243781, + [SMALL_STATE(3847)] = 243817, + [SMALL_STATE(3848)] = 243861, + [SMALL_STATE(3849)] = 243905, + [SMALL_STATE(3850)] = 243949, + [SMALL_STATE(3851)] = 243985, + [SMALL_STATE(3852)] = 244029, + [SMALL_STATE(3853)] = 244073, + [SMALL_STATE(3854)] = 244117, + [SMALL_STATE(3855)] = 244161, + [SMALL_STATE(3856)] = 244199, + [SMALL_STATE(3857)] = 244243, + [SMALL_STATE(3858)] = 244287, + [SMALL_STATE(3859)] = 244331, + [SMALL_STATE(3860)] = 244373, + [SMALL_STATE(3861)] = 244417, + [SMALL_STATE(3862)] = 244443, + [SMALL_STATE(3863)] = 244487, + [SMALL_STATE(3864)] = 244529, + [SMALL_STATE(3865)] = 244573, + [SMALL_STATE(3866)] = 244617, + [SMALL_STATE(3867)] = 244661, + [SMALL_STATE(3868)] = 244705, + [SMALL_STATE(3869)] = 244749, + [SMALL_STATE(3870)] = 244793, + [SMALL_STATE(3871)] = 244835, + [SMALL_STATE(3872)] = 244879, + [SMALL_STATE(3873)] = 244923, + [SMALL_STATE(3874)] = 244967, + [SMALL_STATE(3875)] = 245011, + [SMALL_STATE(3876)] = 245053, + [SMALL_STATE(3877)] = 245097, + [SMALL_STATE(3878)] = 245141, + [SMALL_STATE(3879)] = 245179, + [SMALL_STATE(3880)] = 245223, + [SMALL_STATE(3881)] = 245267, + [SMALL_STATE(3882)] = 245311, + [SMALL_STATE(3883)] = 245355, + [SMALL_STATE(3884)] = 245399, + [SMALL_STATE(3885)] = 245443, + [SMALL_STATE(3886)] = 245487, + [SMALL_STATE(3887)] = 245531, + [SMALL_STATE(3888)] = 245573, + [SMALL_STATE(3889)] = 245617, + [SMALL_STATE(3890)] = 245661, + [SMALL_STATE(3891)] = 245705, + [SMALL_STATE(3892)] = 245749, + [SMALL_STATE(3893)] = 245793, + [SMALL_STATE(3894)] = 245837, + [SMALL_STATE(3895)] = 245881, + [SMALL_STATE(3896)] = 245925, + [SMALL_STATE(3897)] = 245969, + [SMALL_STATE(3898)] = 246013, + [SMALL_STATE(3899)] = 246039, + [SMALL_STATE(3900)] = 246083, + [SMALL_STATE(3901)] = 246109, + [SMALL_STATE(3902)] = 246153, + [SMALL_STATE(3903)] = 246197, + [SMALL_STATE(3904)] = 246231, + [SMALL_STATE(3905)] = 246269, + [SMALL_STATE(3906)] = 246313, + [SMALL_STATE(3907)] = 246357, + [SMALL_STATE(3908)] = 246401, + [SMALL_STATE(3909)] = 246445, + [SMALL_STATE(3910)] = 246489, + [SMALL_STATE(3911)] = 246519, + [SMALL_STATE(3912)] = 246561, + [SMALL_STATE(3913)] = 246587, + [SMALL_STATE(3914)] = 246631, + [SMALL_STATE(3915)] = 246657, + [SMALL_STATE(3916)] = 246701, + [SMALL_STATE(3917)] = 246743, + [SMALL_STATE(3918)] = 246785, + [SMALL_STATE(3919)] = 246827, + [SMALL_STATE(3920)] = 246871, + [SMALL_STATE(3921)] = 246913, + [SMALL_STATE(3922)] = 246940, + [SMALL_STATE(3923)] = 246981, + [SMALL_STATE(3924)] = 247008, + [SMALL_STATE(3925)] = 247049, + [SMALL_STATE(3926)] = 247078, + [SMALL_STATE(3927)] = 247119, + [SMALL_STATE(3928)] = 247148, + [SMALL_STATE(3929)] = 247177, + [SMALL_STATE(3930)] = 247206, + [SMALL_STATE(3931)] = 247247, + [SMALL_STATE(3932)] = 247276, + [SMALL_STATE(3933)] = 247305, + [SMALL_STATE(3934)] = 247334, + [SMALL_STATE(3935)] = 247375, + [SMALL_STATE(3936)] = 247402, + [SMALL_STATE(3937)] = 247429, + [SMALL_STATE(3938)] = 247456, + [SMALL_STATE(3939)] = 247483, + [SMALL_STATE(3940)] = 247524, + [SMALL_STATE(3941)] = 247565, + [SMALL_STATE(3942)] = 247592, + [SMALL_STATE(3943)] = 247619, + [SMALL_STATE(3944)] = 247646, + [SMALL_STATE(3945)] = 247673, + [SMALL_STATE(3946)] = 247714, + [SMALL_STATE(3947)] = 247741, + [SMALL_STATE(3948)] = 247782, + [SMALL_STATE(3949)] = 247809, + [SMALL_STATE(3950)] = 247850, + [SMALL_STATE(3951)] = 247877, + [SMALL_STATE(3952)] = 247918, + [SMALL_STATE(3953)] = 247945, + [SMALL_STATE(3954)] = 247986, + [SMALL_STATE(3955)] = 248027, + [SMALL_STATE(3956)] = 248054, + [SMALL_STATE(3957)] = 248081, + [SMALL_STATE(3958)] = 248116, + [SMALL_STATE(3959)] = 248157, + [SMALL_STATE(3960)] = 248184, + [SMALL_STATE(3961)] = 248215, + [SMALL_STATE(3962)] = 248256, + [SMALL_STATE(3963)] = 248283, + [SMALL_STATE(3964)] = 248324, + [SMALL_STATE(3965)] = 248351, + [SMALL_STATE(3966)] = 248378, + [SMALL_STATE(3967)] = 248419, + [SMALL_STATE(3968)] = 248460, + [SMALL_STATE(3969)] = 248487, + [SMALL_STATE(3970)] = 248514, + [SMALL_STATE(3971)] = 248541, + [SMALL_STATE(3972)] = 248568, + [SMALL_STATE(3973)] = 248595, + [SMALL_STATE(3974)] = 248622, + [SMALL_STATE(3975)] = 248663, + [SMALL_STATE(3976)] = 248690, + [SMALL_STATE(3977)] = 248731, + [SMALL_STATE(3978)] = 248758, + [SMALL_STATE(3979)] = 248785, + [SMALL_STATE(3980)] = 248826, + [SMALL_STATE(3981)] = 248867, + [SMALL_STATE(3982)] = 248894, + [SMALL_STATE(3983)] = 248921, + [SMALL_STATE(3984)] = 248962, + [SMALL_STATE(3985)] = 248989, + [SMALL_STATE(3986)] = 249030, + [SMALL_STATE(3987)] = 249065, + [SMALL_STATE(3988)] = 249106, + [SMALL_STATE(3989)] = 249133, + [SMALL_STATE(3990)] = 249160, + [SMALL_STATE(3991)] = 249187, + [SMALL_STATE(3992)] = 249223, + [SMALL_STATE(3993)] = 249255, + [SMALL_STATE(3994)] = 249291, + [SMALL_STATE(3995)] = 249323, + [SMALL_STATE(3996)] = 249359, + [SMALL_STATE(3997)] = 249389, + [SMALL_STATE(3998)] = 249419, + [SMALL_STATE(3999)] = 249455, + [SMALL_STATE(4000)] = 249487, + [SMALL_STATE(4001)] = 249523, + [SMALL_STATE(4002)] = 249561, + [SMALL_STATE(4003)] = 249593, + [SMALL_STATE(4004)] = 249625, + [SMALL_STATE(4005)] = 249655, + [SMALL_STATE(4006)] = 249693, + [SMALL_STATE(4007)] = 249723, + [SMALL_STATE(4008)] = 249761, + [SMALL_STATE(4009)] = 249799, + [SMALL_STATE(4010)] = 249831, + [SMALL_STATE(4011)] = 249867, + [SMALL_STATE(4012)] = 249899, + [SMALL_STATE(4013)] = 249929, + [SMALL_STATE(4014)] = 249961, + [SMALL_STATE(4015)] = 249997, + [SMALL_STATE(4016)] = 250035, + [SMALL_STATE(4017)] = 250073, + [SMALL_STATE(4018)] = 250105, + [SMALL_STATE(4019)] = 250141, + [SMALL_STATE(4020)] = 250177, + [SMALL_STATE(4021)] = 250215, + [SMALL_STATE(4022)] = 250251, + [SMALL_STATE(4023)] = 250289, + [SMALL_STATE(4024)] = 250321, + [SMALL_STATE(4025)] = 250353, + [SMALL_STATE(4026)] = 250389, + [SMALL_STATE(4027)] = 250419, + [SMALL_STATE(4028)] = 250455, + [SMALL_STATE(4029)] = 250485, + [SMALL_STATE(4030)] = 250517, + [SMALL_STATE(4031)] = 250553, + [SMALL_STATE(4032)] = 250589, + [SMALL_STATE(4033)] = 250625, + [SMALL_STATE(4034)] = 250661, + [SMALL_STATE(4035)] = 250699, + [SMALL_STATE(4036)] = 250737, + [SMALL_STATE(4037)] = 250775, + [SMALL_STATE(4038)] = 250805, + [SMALL_STATE(4039)] = 250829, + [SMALL_STATE(4040)] = 250857, + [SMALL_STATE(4041)] = 250887, + [SMALL_STATE(4042)] = 250925, + [SMALL_STATE(4043)] = 250963, + [SMALL_STATE(4044)] = 251001, + [SMALL_STATE(4045)] = 251036, + [SMALL_STATE(4046)] = 251071, + [SMALL_STATE(4047)] = 251106, + [SMALL_STATE(4048)] = 251141, + [SMALL_STATE(4049)] = 251176, + [SMALL_STATE(4050)] = 251211, + [SMALL_STATE(4051)] = 251246, + [SMALL_STATE(4052)] = 251281, + [SMALL_STATE(4053)] = 251316, + [SMALL_STATE(4054)] = 251351, + [SMALL_STATE(4055)] = 251374, + [SMALL_STATE(4056)] = 251397, + [SMALL_STATE(4057)] = 251424, + [SMALL_STATE(4058)] = 251459, + [SMALL_STATE(4059)] = 251494, + [SMALL_STATE(4060)] = 251529, + [SMALL_STATE(4061)] = 251564, + [SMALL_STATE(4062)] = 251597, + [SMALL_STATE(4063)] = 251632, + [SMALL_STATE(4064)] = 251667, + [SMALL_STATE(4065)] = 251702, + [SMALL_STATE(4066)] = 251735, + [SMALL_STATE(4067)] = 251770, + [SMALL_STATE(4068)] = 251805, + [SMALL_STATE(4069)] = 251840, + [SMALL_STATE(4070)] = 251875, + [SMALL_STATE(4071)] = 251906, + [SMALL_STATE(4072)] = 251941, + [SMALL_STATE(4073)] = 251964, + [SMALL_STATE(4074)] = 251987, + [SMALL_STATE(4075)] = 252022, + [SMALL_STATE(4076)] = 252045, + [SMALL_STATE(4077)] = 252080, + [SMALL_STATE(4078)] = 252115, + [SMALL_STATE(4079)] = 252150, + [SMALL_STATE(4080)] = 252185, + [SMALL_STATE(4081)] = 252220, + [SMALL_STATE(4082)] = 252255, + [SMALL_STATE(4083)] = 252290, + [SMALL_STATE(4084)] = 252325, + [SMALL_STATE(4085)] = 252360, + [SMALL_STATE(4086)] = 252395, + [SMALL_STATE(4087)] = 252430, + [SMALL_STATE(4088)] = 252465, + [SMALL_STATE(4089)] = 252500, + [SMALL_STATE(4090)] = 252535, + [SMALL_STATE(4091)] = 252570, + [SMALL_STATE(4092)] = 252605, + [SMALL_STATE(4093)] = 252640, + [SMALL_STATE(4094)] = 252675, + [SMALL_STATE(4095)] = 252710, + [SMALL_STATE(4096)] = 252745, + [SMALL_STATE(4097)] = 252780, + [SMALL_STATE(4098)] = 252815, + [SMALL_STATE(4099)] = 252850, + [SMALL_STATE(4100)] = 252873, + [SMALL_STATE(4101)] = 252908, + [SMALL_STATE(4102)] = 252943, + [SMALL_STATE(4103)] = 252978, + [SMALL_STATE(4104)] = 253013, + [SMALL_STATE(4105)] = 253048, + [SMALL_STATE(4106)] = 253083, + [SMALL_STATE(4107)] = 253118, + [SMALL_STATE(4108)] = 253153, + [SMALL_STATE(4109)] = 253188, + [SMALL_STATE(4110)] = 253223, + [SMALL_STATE(4111)] = 253258, + [SMALL_STATE(4112)] = 253293, + [SMALL_STATE(4113)] = 253328, + [SMALL_STATE(4114)] = 253363, + [SMALL_STATE(4115)] = 253398, + [SMALL_STATE(4116)] = 253433, + [SMALL_STATE(4117)] = 253468, + [SMALL_STATE(4118)] = 253503, + [SMALL_STATE(4119)] = 253538, + [SMALL_STATE(4120)] = 253573, + [SMALL_STATE(4121)] = 253606, + [SMALL_STATE(4122)] = 253641, + [SMALL_STATE(4123)] = 253676, + [SMALL_STATE(4124)] = 253711, + [SMALL_STATE(4125)] = 253746, + [SMALL_STATE(4126)] = 253781, + [SMALL_STATE(4127)] = 253814, + [SMALL_STATE(4128)] = 253849, + [SMALL_STATE(4129)] = 253884, + [SMALL_STATE(4130)] = 253907, + [SMALL_STATE(4131)] = 253936, + [SMALL_STATE(4132)] = 253971, + [SMALL_STATE(4133)] = 254000, + [SMALL_STATE(4134)] = 254035, + [SMALL_STATE(4135)] = 254060, + [SMALL_STATE(4136)] = 254095, + [SMALL_STATE(4137)] = 254130, + [SMALL_STATE(4138)] = 254165, + [SMALL_STATE(4139)] = 254200, + [SMALL_STATE(4140)] = 254235, + [SMALL_STATE(4141)] = 254270, + [SMALL_STATE(4142)] = 254303, + [SMALL_STATE(4143)] = 254338, + [SMALL_STATE(4144)] = 254373, + [SMALL_STATE(4145)] = 254408, + [SMALL_STATE(4146)] = 254443, + [SMALL_STATE(4147)] = 254478, + [SMALL_STATE(4148)] = 254511, + [SMALL_STATE(4149)] = 254546, + [SMALL_STATE(4150)] = 254581, + [SMALL_STATE(4151)] = 254614, + [SMALL_STATE(4152)] = 254649, + [SMALL_STATE(4153)] = 254684, + [SMALL_STATE(4154)] = 254719, + [SMALL_STATE(4155)] = 254754, + [SMALL_STATE(4156)] = 254789, + [SMALL_STATE(4157)] = 254824, + [SMALL_STATE(4158)] = 254859, + [SMALL_STATE(4159)] = 254894, + [SMALL_STATE(4160)] = 254929, + [SMALL_STATE(4161)] = 254964, + [SMALL_STATE(4162)] = 254999, + [SMALL_STATE(4163)] = 255034, + [SMALL_STATE(4164)] = 255069, + [SMALL_STATE(4165)] = 255104, + [SMALL_STATE(4166)] = 255139, + [SMALL_STATE(4167)] = 255174, + [SMALL_STATE(4168)] = 255209, + [SMALL_STATE(4169)] = 255244, + [SMALL_STATE(4170)] = 255279, + [SMALL_STATE(4171)] = 255314, + [SMALL_STATE(4172)] = 255349, + [SMALL_STATE(4173)] = 255380, + [SMALL_STATE(4174)] = 255415, + [SMALL_STATE(4175)] = 255450, + [SMALL_STATE(4176)] = 255485, + [SMALL_STATE(4177)] = 255520, + [SMALL_STATE(4178)] = 255553, + [SMALL_STATE(4179)] = 255588, + [SMALL_STATE(4180)] = 255623, + [SMALL_STATE(4181)] = 255658, + [SMALL_STATE(4182)] = 255693, + [SMALL_STATE(4183)] = 255728, + [SMALL_STATE(4184)] = 255763, + [SMALL_STATE(4185)] = 255798, + [SMALL_STATE(4186)] = 255833, + [SMALL_STATE(4187)] = 255868, + [SMALL_STATE(4188)] = 255903, + [SMALL_STATE(4189)] = 255938, + [SMALL_STATE(4190)] = 255973, + [SMALL_STATE(4191)] = 256008, + [SMALL_STATE(4192)] = 256043, + [SMALL_STATE(4193)] = 256078, + [SMALL_STATE(4194)] = 256113, + [SMALL_STATE(4195)] = 256144, + [SMALL_STATE(4196)] = 256179, + [SMALL_STATE(4197)] = 256214, + [SMALL_STATE(4198)] = 256249, + [SMALL_STATE(4199)] = 256284, + [SMALL_STATE(4200)] = 256319, + [SMALL_STATE(4201)] = 256354, + [SMALL_STATE(4202)] = 256387, + [SMALL_STATE(4203)] = 256422, + [SMALL_STATE(4204)] = 256453, + [SMALL_STATE(4205)] = 256488, + [SMALL_STATE(4206)] = 256523, + [SMALL_STATE(4207)] = 256558, + [SMALL_STATE(4208)] = 256593, + [SMALL_STATE(4209)] = 256628, + [SMALL_STATE(4210)] = 256663, + [SMALL_STATE(4211)] = 256698, + [SMALL_STATE(4212)] = 256733, + [SMALL_STATE(4213)] = 256768, + [SMALL_STATE(4214)] = 256803, + [SMALL_STATE(4215)] = 256838, + [SMALL_STATE(4216)] = 256873, + [SMALL_STATE(4217)] = 256908, + [SMALL_STATE(4218)] = 256943, + [SMALL_STATE(4219)] = 256978, + [SMALL_STATE(4220)] = 257009, + [SMALL_STATE(4221)] = 257044, + [SMALL_STATE(4222)] = 257067, + [SMALL_STATE(4223)] = 257102, + [SMALL_STATE(4224)] = 257137, + [SMALL_STATE(4225)] = 257172, + [SMALL_STATE(4226)] = 257207, + [SMALL_STATE(4227)] = 257242, + [SMALL_STATE(4228)] = 257277, + [SMALL_STATE(4229)] = 257312, + [SMALL_STATE(4230)] = 257347, + [SMALL_STATE(4231)] = 257382, + [SMALL_STATE(4232)] = 257417, + [SMALL_STATE(4233)] = 257452, + [SMALL_STATE(4234)] = 257487, + [SMALL_STATE(4235)] = 257522, + [SMALL_STATE(4236)] = 257545, + [SMALL_STATE(4237)] = 257580, + [SMALL_STATE(4238)] = 257615, + [SMALL_STATE(4239)] = 257650, + [SMALL_STATE(4240)] = 257685, + [SMALL_STATE(4241)] = 257714, + [SMALL_STATE(4242)] = 257737, + [SMALL_STATE(4243)] = 257772, + [SMALL_STATE(4244)] = 257807, + [SMALL_STATE(4245)] = 257842, + [SMALL_STATE(4246)] = 257877, + [SMALL_STATE(4247)] = 257912, + [SMALL_STATE(4248)] = 257939, + [SMALL_STATE(4249)] = 257972, + [SMALL_STATE(4250)] = 258007, + [SMALL_STATE(4251)] = 258042, + [SMALL_STATE(4252)] = 258077, + [SMALL_STATE(4253)] = 258112, + [SMALL_STATE(4254)] = 258147, + [SMALL_STATE(4255)] = 258182, + [SMALL_STATE(4256)] = 258214, + [SMALL_STATE(4257)] = 258246, + [SMALL_STATE(4258)] = 258274, + [SMALL_STATE(4259)] = 258304, + [SMALL_STATE(4260)] = 258334, + [SMALL_STATE(4261)] = 258356, + [SMALL_STATE(4262)] = 258386, + [SMALL_STATE(4263)] = 258416, + [SMALL_STATE(4264)] = 258442, + [SMALL_STATE(4265)] = 258470, + [SMALL_STATE(4266)] = 258498, + [SMALL_STATE(4267)] = 258530, + [SMALL_STATE(4268)] = 258554, + [SMALL_STATE(4269)] = 258578, + [SMALL_STATE(4270)] = 258608, + [SMALL_STATE(4271)] = 258638, + [SMALL_STATE(4272)] = 258666, + [SMALL_STATE(4273)] = 258696, + [SMALL_STATE(4274)] = 258724, + [SMALL_STATE(4275)] = 258754, + [SMALL_STATE(4276)] = 258786, + [SMALL_STATE(4277)] = 258818, + [SMALL_STATE(4278)] = 258848, + [SMALL_STATE(4279)] = 258870, + [SMALL_STATE(4280)] = 258898, + [SMALL_STATE(4281)] = 258926, + [SMALL_STATE(4282)] = 258956, + [SMALL_STATE(4283)] = 258982, + [SMALL_STATE(4284)] = 259014, + [SMALL_STATE(4285)] = 259046, + [SMALL_STATE(4286)] = 259076, + [SMALL_STATE(4287)] = 259100, + [SMALL_STATE(4288)] = 259128, + [SMALL_STATE(4289)] = 259158, + [SMALL_STATE(4290)] = 259190, + [SMALL_STATE(4291)] = 259222, + [SMALL_STATE(4292)] = 259252, + [SMALL_STATE(4293)] = 259284, + [SMALL_STATE(4294)] = 259314, + [SMALL_STATE(4295)] = 259336, + [SMALL_STATE(4296)] = 259366, + [SMALL_STATE(4297)] = 259390, + [SMALL_STATE(4298)] = 259420, + [SMALL_STATE(4299)] = 259446, + [SMALL_STATE(4300)] = 259474, + [SMALL_STATE(4301)] = 259496, + [SMALL_STATE(4302)] = 259528, + [SMALL_STATE(4303)] = 259558, + [SMALL_STATE(4304)] = 259588, + [SMALL_STATE(4305)] = 259618, + [SMALL_STATE(4306)] = 259640, + [SMALL_STATE(4307)] = 259662, + [SMALL_STATE(4308)] = 259694, + [SMALL_STATE(4309)] = 259724, + [SMALL_STATE(4310)] = 259752, + [SMALL_STATE(4311)] = 259782, + [SMALL_STATE(4312)] = 259810, + [SMALL_STATE(4313)] = 259840, + [SMALL_STATE(4314)] = 259872, + [SMALL_STATE(4315)] = 259904, + [SMALL_STATE(4316)] = 259934, + [SMALL_STATE(4317)] = 259960, + [SMALL_STATE(4318)] = 259984, + [SMALL_STATE(4319)] = 260008, + [SMALL_STATE(4320)] = 260040, + [SMALL_STATE(4321)] = 260068, + [SMALL_STATE(4322)] = 260100, + [SMALL_STATE(4323)] = 260132, + [SMALL_STATE(4324)] = 260160, + [SMALL_STATE(4325)] = 260190, + [SMALL_STATE(4326)] = 260216, + [SMALL_STATE(4327)] = 260246, + [SMALL_STATE(4328)] = 260274, + [SMALL_STATE(4329)] = 260296, + [SMALL_STATE(4330)] = 260318, + [SMALL_STATE(4331)] = 260346, + [SMALL_STATE(4332)] = 260378, + [SMALL_STATE(4333)] = 260408, + [SMALL_STATE(4334)] = 260432, + [SMALL_STATE(4335)] = 260460, + [SMALL_STATE(4336)] = 260492, + [SMALL_STATE(4337)] = 260518, + [SMALL_STATE(4338)] = 260550, + [SMALL_STATE(4339)] = 260582, + [SMALL_STATE(4340)] = 260614, + [SMALL_STATE(4341)] = 260636, + [SMALL_STATE(4342)] = 260664, + [SMALL_STATE(4343)] = 260696, + [SMALL_STATE(4344)] = 260718, + [SMALL_STATE(4345)] = 260748, + [SMALL_STATE(4346)] = 260780, + [SMALL_STATE(4347)] = 260804, + [SMALL_STATE(4348)] = 260834, + [SMALL_STATE(4349)] = 260864, + [SMALL_STATE(4350)] = 260892, + [SMALL_STATE(4351)] = 260922, + [SMALL_STATE(4352)] = 260952, + [SMALL_STATE(4353)] = 260982, + [SMALL_STATE(4354)] = 261014, + [SMALL_STATE(4355)] = 261044, + [SMALL_STATE(4356)] = 261074, + [SMALL_STATE(4357)] = 261102, + [SMALL_STATE(4358)] = 261126, + [SMALL_STATE(4359)] = 261154, + [SMALL_STATE(4360)] = 261178, + [SMALL_STATE(4361)] = 261210, + [SMALL_STATE(4362)] = 261240, + [SMALL_STATE(4363)] = 261270, + [SMALL_STATE(4364)] = 261292, + [SMALL_STATE(4365)] = 261324, + [SMALL_STATE(4366)] = 261356, + [SMALL_STATE(4367)] = 261382, + [SMALL_STATE(4368)] = 261414, + [SMALL_STATE(4369)] = 261436, + [SMALL_STATE(4370)] = 261464, + [SMALL_STATE(4371)] = 261496, + [SMALL_STATE(4372)] = 261524, + [SMALL_STATE(4373)] = 261554, + [SMALL_STATE(4374)] = 261586, + [SMALL_STATE(4375)] = 261616, + [SMALL_STATE(4376)] = 261646, + [SMALL_STATE(4377)] = 261678, + [SMALL_STATE(4378)] = 261702, + [SMALL_STATE(4379)] = 261730, + [SMALL_STATE(4380)] = 261754, + [SMALL_STATE(4381)] = 261784, + [SMALL_STATE(4382)] = 261814, + [SMALL_STATE(4383)] = 261846, + [SMALL_STATE(4384)] = 261870, + [SMALL_STATE(4385)] = 261892, + [SMALL_STATE(4386)] = 261924, + [SMALL_STATE(4387)] = 261956, + [SMALL_STATE(4388)] = 261980, + [SMALL_STATE(4389)] = 262010, + [SMALL_STATE(4390)] = 262042, + [SMALL_STATE(4391)] = 262072, + [SMALL_STATE(4392)] = 262096, + [SMALL_STATE(4393)] = 262126, + [SMALL_STATE(4394)] = 262156, + [SMALL_STATE(4395)] = 262188, + [SMALL_STATE(4396)] = 262220, + [SMALL_STATE(4397)] = 262248, + [SMALL_STATE(4398)] = 262276, + [SMALL_STATE(4399)] = 262302, + [SMALL_STATE(4400)] = 262332, + [SMALL_STATE(4401)] = 262362, + [SMALL_STATE(4402)] = 262386, + [SMALL_STATE(4403)] = 262418, + [SMALL_STATE(4404)] = 262446, + [SMALL_STATE(4405)] = 262478, + [SMALL_STATE(4406)] = 262510, + [SMALL_STATE(4407)] = 262534, + [SMALL_STATE(4408)] = 262566, + [SMALL_STATE(4409)] = 262598, + [SMALL_STATE(4410)] = 262622, + [SMALL_STATE(4411)] = 262652, + [SMALL_STATE(4412)] = 262680, + [SMALL_STATE(4413)] = 262704, + [SMALL_STATE(4414)] = 262734, + [SMALL_STATE(4415)] = 262762, + [SMALL_STATE(4416)] = 262794, + [SMALL_STATE(4417)] = 262818, + [SMALL_STATE(4418)] = 262850, + [SMALL_STATE(4419)] = 262882, + [SMALL_STATE(4420)] = 262912, + [SMALL_STATE(4421)] = 262940, + [SMALL_STATE(4422)] = 262972, + [SMALL_STATE(4423)] = 262996, + [SMALL_STATE(4424)] = 263026, + [SMALL_STATE(4425)] = 263056, + [SMALL_STATE(4426)] = 263088, + [SMALL_STATE(4427)] = 263118, + [SMALL_STATE(4428)] = 263142, + [SMALL_STATE(4429)] = 263172, + [SMALL_STATE(4430)] = 263200, + [SMALL_STATE(4431)] = 263230, + [SMALL_STATE(4432)] = 263260, + [SMALL_STATE(4433)] = 263292, + [SMALL_STATE(4434)] = 263316, + [SMALL_STATE(4435)] = 263348, + [SMALL_STATE(4436)] = 263376, + [SMALL_STATE(4437)] = 263408, + [SMALL_STATE(4438)] = 263440, + [SMALL_STATE(4439)] = 263472, + [SMALL_STATE(4440)] = 263504, + [SMALL_STATE(4441)] = 263536, + [SMALL_STATE(4442)] = 263566, + [SMALL_STATE(4443)] = 263596, + [SMALL_STATE(4444)] = 263626, + [SMALL_STATE(4445)] = 263658, + [SMALL_STATE(4446)] = 263686, + [SMALL_STATE(4447)] = 263714, + [SMALL_STATE(4448)] = 263738, + [SMALL_STATE(4449)] = 263768, + [SMALL_STATE(4450)] = 263800, + [SMALL_STATE(4451)] = 263830, + [SMALL_STATE(4452)] = 263860, + [SMALL_STATE(4453)] = 263892, + [SMALL_STATE(4454)] = 263924, + [SMALL_STATE(4455)] = 263952, + [SMALL_STATE(4456)] = 263984, + [SMALL_STATE(4457)] = 264014, + [SMALL_STATE(4458)] = 264042, + [SMALL_STATE(4459)] = 264072, + [SMALL_STATE(4460)] = 264104, + [SMALL_STATE(4461)] = 264136, + [SMALL_STATE(4462)] = 264160, + [SMALL_STATE(4463)] = 264192, + [SMALL_STATE(4464)] = 264222, + [SMALL_STATE(4465)] = 264254, + [SMALL_STATE(4466)] = 264284, + [SMALL_STATE(4467)] = 264314, + [SMALL_STATE(4468)] = 264344, + [SMALL_STATE(4469)] = 264376, + [SMALL_STATE(4470)] = 264406, + [SMALL_STATE(4471)] = 264430, + [SMALL_STATE(4472)] = 264458, + [SMALL_STATE(4473)] = 264488, + [SMALL_STATE(4474)] = 264520, + [SMALL_STATE(4475)] = 264550, + [SMALL_STATE(4476)] = 264580, + [SMALL_STATE(4477)] = 264612, + [SMALL_STATE(4478)] = 264644, + [SMALL_STATE(4479)] = 264674, + [SMALL_STATE(4480)] = 264704, + [SMALL_STATE(4481)] = 264736, + [SMALL_STATE(4482)] = 264768, + [SMALL_STATE(4483)] = 264800, + [SMALL_STATE(4484)] = 264832, + [SMALL_STATE(4485)] = 264864, + [SMALL_STATE(4486)] = 264896, + [SMALL_STATE(4487)] = 264926, + [SMALL_STATE(4488)] = 264958, + [SMALL_STATE(4489)] = 264988, + [SMALL_STATE(4490)] = 265018, + [SMALL_STATE(4491)] = 265048, + [SMALL_STATE(4492)] = 265072, + [SMALL_STATE(4493)] = 265102, + [SMALL_STATE(4494)] = 265132, + [SMALL_STATE(4495)] = 265162, + [SMALL_STATE(4496)] = 265194, + [SMALL_STATE(4497)] = 265220, + [SMALL_STATE(4498)] = 265248, + [SMALL_STATE(4499)] = 265278, + [SMALL_STATE(4500)] = 265306, + [SMALL_STATE(4501)] = 265330, + [SMALL_STATE(4502)] = 265362, + [SMALL_STATE(4503)] = 265394, + [SMALL_STATE(4504)] = 265418, + [SMALL_STATE(4505)] = 265450, + [SMALL_STATE(4506)] = 265474, + [SMALL_STATE(4507)] = 265500, + [SMALL_STATE(4508)] = 265528, + [SMALL_STATE(4509)] = 265560, + [SMALL_STATE(4510)] = 265592, + [SMALL_STATE(4511)] = 265620, + [SMALL_STATE(4512)] = 265650, + [SMALL_STATE(4513)] = 265680, + [SMALL_STATE(4514)] = 265710, + [SMALL_STATE(4515)] = 265742, + [SMALL_STATE(4516)] = 265772, + [SMALL_STATE(4517)] = 265802, + [SMALL_STATE(4518)] = 265832, + [SMALL_STATE(4519)] = 265862, + [SMALL_STATE(4520)] = 265890, + [SMALL_STATE(4521)] = 265920, + [SMALL_STATE(4522)] = 265948, + [SMALL_STATE(4523)] = 265980, + [SMALL_STATE(4524)] = 266012, + [SMALL_STATE(4525)] = 266042, + [SMALL_STATE(4526)] = 266072, + [SMALL_STATE(4527)] = 266102, + [SMALL_STATE(4528)] = 266124, + [SMALL_STATE(4529)] = 266150, + [SMALL_STATE(4530)] = 266182, + [SMALL_STATE(4531)] = 266214, + [SMALL_STATE(4532)] = 266244, + [SMALL_STATE(4533)] = 266274, + [SMALL_STATE(4534)] = 266297, + [SMALL_STATE(4535)] = 266326, + [SMALL_STATE(4536)] = 266355, + [SMALL_STATE(4537)] = 266382, + [SMALL_STATE(4538)] = 266411, + [SMALL_STATE(4539)] = 266440, + [SMALL_STATE(4540)] = 266465, + [SMALL_STATE(4541)] = 266494, + [SMALL_STATE(4542)] = 266519, + [SMALL_STATE(4543)] = 266548, + [SMALL_STATE(4544)] = 266573, + [SMALL_STATE(4545)] = 266602, + [SMALL_STATE(4546)] = 266631, + [SMALL_STATE(4547)] = 266656, + [SMALL_STATE(4548)] = 266685, + [SMALL_STATE(4549)] = 266710, + [SMALL_STATE(4550)] = 266735, + [SMALL_STATE(4551)] = 266764, + [SMALL_STATE(4552)] = 266793, + [SMALL_STATE(4553)] = 266822, + [SMALL_STATE(4554)] = 266851, + [SMALL_STATE(4555)] = 266880, + [SMALL_STATE(4556)] = 266907, + [SMALL_STATE(4557)] = 266936, + [SMALL_STATE(4558)] = 266965, + [SMALL_STATE(4559)] = 266992, + [SMALL_STATE(4560)] = 267021, + [SMALL_STATE(4561)] = 267050, + [SMALL_STATE(4562)] = 267075, + [SMALL_STATE(4563)] = 267104, + [SMALL_STATE(4564)] = 267129, + [SMALL_STATE(4565)] = 267158, + [SMALL_STATE(4566)] = 267187, + [SMALL_STATE(4567)] = 267210, + [SMALL_STATE(4568)] = 267239, + [SMALL_STATE(4569)] = 267268, + [SMALL_STATE(4570)] = 267293, + [SMALL_STATE(4571)] = 267318, + [SMALL_STATE(4572)] = 267347, + [SMALL_STATE(4573)] = 267376, + [SMALL_STATE(4574)] = 267401, + [SMALL_STATE(4575)] = 267422, + [SMALL_STATE(4576)] = 267443, + [SMALL_STATE(4577)] = 267468, + [SMALL_STATE(4578)] = 267497, + [SMALL_STATE(4579)] = 267524, + [SMALL_STATE(4580)] = 267551, + [SMALL_STATE(4581)] = 267578, + [SMALL_STATE(4582)] = 267607, + [SMALL_STATE(4583)] = 267632, + [SMALL_STATE(4584)] = 267659, + [SMALL_STATE(4585)] = 267682, + [SMALL_STATE(4586)] = 267705, + [SMALL_STATE(4587)] = 267732, + [SMALL_STATE(4588)] = 267761, + [SMALL_STATE(4589)] = 267782, + [SMALL_STATE(4590)] = 267807, + [SMALL_STATE(4591)] = 267836, + [SMALL_STATE(4592)] = 267857, + [SMALL_STATE(4593)] = 267882, + [SMALL_STATE(4594)] = 267903, + [SMALL_STATE(4595)] = 267926, + [SMALL_STATE(4596)] = 267955, + [SMALL_STATE(4597)] = 267980, + [SMALL_STATE(4598)] = 268005, + [SMALL_STATE(4599)] = 268032, + [SMALL_STATE(4600)] = 268057, + [SMALL_STATE(4601)] = 268080, + [SMALL_STATE(4602)] = 268109, + [SMALL_STATE(4603)] = 268138, + [SMALL_STATE(4604)] = 268159, + [SMALL_STATE(4605)] = 268188, + [SMALL_STATE(4606)] = 268217, + [SMALL_STATE(4607)] = 268240, + [SMALL_STATE(4608)] = 268265, + [SMALL_STATE(4609)] = 268294, + [SMALL_STATE(4610)] = 268317, + [SMALL_STATE(4611)] = 268344, + [SMALL_STATE(4612)] = 268373, + [SMALL_STATE(4613)] = 268394, + [SMALL_STATE(4614)] = 268421, + [SMALL_STATE(4615)] = 268442, + [SMALL_STATE(4616)] = 268465, + [SMALL_STATE(4617)] = 268488, + [SMALL_STATE(4618)] = 268517, + [SMALL_STATE(4619)] = 268542, + [SMALL_STATE(4620)] = 268563, + [SMALL_STATE(4621)] = 268586, + [SMALL_STATE(4622)] = 268607, + [SMALL_STATE(4623)] = 268634, + [SMALL_STATE(4624)] = 268655, + [SMALL_STATE(4625)] = 268682, + [SMALL_STATE(4626)] = 268709, + [SMALL_STATE(4627)] = 268734, + [SMALL_STATE(4628)] = 268761, + [SMALL_STATE(4629)] = 268786, + [SMALL_STATE(4630)] = 268811, + [SMALL_STATE(4631)] = 268832, + [SMALL_STATE(4632)] = 268853, + [SMALL_STATE(4633)] = 268873, + [SMALL_STATE(4634)] = 268899, + [SMALL_STATE(4635)] = 268925, + [SMALL_STATE(4636)] = 268951, + [SMALL_STATE(4637)] = 268977, + [SMALL_STATE(4638)] = 269001, + [SMALL_STATE(4639)] = 269021, + [SMALL_STATE(4640)] = 269041, + [SMALL_STATE(4641)] = 269061, + [SMALL_STATE(4642)] = 269081, + [SMALL_STATE(4643)] = 269101, + [SMALL_STATE(4644)] = 269127, + [SMALL_STATE(4645)] = 269151, + [SMALL_STATE(4646)] = 269175, + [SMALL_STATE(4647)] = 269201, + [SMALL_STATE(4648)] = 269225, + [SMALL_STATE(4649)] = 269251, + [SMALL_STATE(4650)] = 269275, + [SMALL_STATE(4651)] = 269295, + [SMALL_STATE(4652)] = 269315, + [SMALL_STATE(4653)] = 269341, + [SMALL_STATE(4654)] = 269367, + [SMALL_STATE(4655)] = 269387, + [SMALL_STATE(4656)] = 269411, + [SMALL_STATE(4657)] = 269431, + [SMALL_STATE(4658)] = 269451, + [SMALL_STATE(4659)] = 269475, + [SMALL_STATE(4660)] = 269499, + [SMALL_STATE(4661)] = 269521, + [SMALL_STATE(4662)] = 269541, + [SMALL_STATE(4663)] = 269561, + [SMALL_STATE(4664)] = 269587, + [SMALL_STATE(4665)] = 269611, + [SMALL_STATE(4666)] = 269637, + [SMALL_STATE(4667)] = 269657, + [SMALL_STATE(4668)] = 269677, + [SMALL_STATE(4669)] = 269699, + [SMALL_STATE(4670)] = 269719, + [SMALL_STATE(4671)] = 269745, + [SMALL_STATE(4672)] = 269771, + [SMALL_STATE(4673)] = 269797, + [SMALL_STATE(4674)] = 269817, + [SMALL_STATE(4675)] = 269841, + [SMALL_STATE(4676)] = 269867, + [SMALL_STATE(4677)] = 269891, + [SMALL_STATE(4678)] = 269911, + [SMALL_STATE(4679)] = 269935, + [SMALL_STATE(4680)] = 269959, + [SMALL_STATE(4681)] = 269979, + [SMALL_STATE(4682)] = 270003, + [SMALL_STATE(4683)] = 270023, + [SMALL_STATE(4684)] = 270049, + [SMALL_STATE(4685)] = 270069, + [SMALL_STATE(4686)] = 270091, + [SMALL_STATE(4687)] = 270117, + [SMALL_STATE(4688)] = 270143, + [SMALL_STATE(4689)] = 270167, + [SMALL_STATE(4690)] = 270191, + [SMALL_STATE(4691)] = 270215, + [SMALL_STATE(4692)] = 270235, + [SMALL_STATE(4693)] = 270255, + [SMALL_STATE(4694)] = 270281, + [SMALL_STATE(4695)] = 270303, + [SMALL_STATE(4696)] = 270323, + [SMALL_STATE(4697)] = 270349, + [SMALL_STATE(4698)] = 270369, + [SMALL_STATE(4699)] = 270391, + [SMALL_STATE(4700)] = 270411, + [SMALL_STATE(4701)] = 270431, + [SMALL_STATE(4702)] = 270451, + [SMALL_STATE(4703)] = 270471, + [SMALL_STATE(4704)] = 270491, + [SMALL_STATE(4705)] = 270517, + [SMALL_STATE(4706)] = 270539, + [SMALL_STATE(4707)] = 270561, + [SMALL_STATE(4708)] = 270587, + [SMALL_STATE(4709)] = 270607, + [SMALL_STATE(4710)] = 270633, + [SMALL_STATE(4711)] = 270659, + [SMALL_STATE(4712)] = 270679, + [SMALL_STATE(4713)] = 270705, + [SMALL_STATE(4714)] = 270731, + [SMALL_STATE(4715)] = 270757, + [SMALL_STATE(4716)] = 270783, + [SMALL_STATE(4717)] = 270807, + [SMALL_STATE(4718)] = 270833, + [SMALL_STATE(4719)] = 270853, + [SMALL_STATE(4720)] = 270879, + [SMALL_STATE(4721)] = 270905, + [SMALL_STATE(4722)] = 270925, + [SMALL_STATE(4723)] = 270945, + [SMALL_STATE(4724)] = 270965, + [SMALL_STATE(4725)] = 270991, + [SMALL_STATE(4726)] = 271011, + [SMALL_STATE(4727)] = 271037, + [SMALL_STATE(4728)] = 271061, + [SMALL_STATE(4729)] = 271081, + [SMALL_STATE(4730)] = 271105, + [SMALL_STATE(4731)] = 271125, + [SMALL_STATE(4732)] = 271145, + [SMALL_STATE(4733)] = 271165, + [SMALL_STATE(4734)] = 271191, + [SMALL_STATE(4735)] = 271217, + [SMALL_STATE(4736)] = 271241, + [SMALL_STATE(4737)] = 271261, + [SMALL_STATE(4738)] = 271281, + [SMALL_STATE(4739)] = 271301, + [SMALL_STATE(4740)] = 271321, + [SMALL_STATE(4741)] = 271347, + [SMALL_STATE(4742)] = 271373, + [SMALL_STATE(4743)] = 271397, + [SMALL_STATE(4744)] = 271419, + [SMALL_STATE(4745)] = 271445, + [SMALL_STATE(4746)] = 271465, + [SMALL_STATE(4747)] = 271487, + [SMALL_STATE(4748)] = 271507, + [SMALL_STATE(4749)] = 271533, + [SMALL_STATE(4750)] = 271559, + [SMALL_STATE(4751)] = 271583, + [SMALL_STATE(4752)] = 271607, + [SMALL_STATE(4753)] = 271633, + [SMALL_STATE(4754)] = 271659, + [SMALL_STATE(4755)] = 271685, + [SMALL_STATE(4756)] = 271705, + [SMALL_STATE(4757)] = 271725, + [SMALL_STATE(4758)] = 271751, + [SMALL_STATE(4759)] = 271771, + [SMALL_STATE(4760)] = 271797, + [SMALL_STATE(4761)] = 271819, + [SMALL_STATE(4762)] = 271841, + [SMALL_STATE(4763)] = 271863, + [SMALL_STATE(4764)] = 271889, + [SMALL_STATE(4765)] = 271915, + [SMALL_STATE(4766)] = 271941, + [SMALL_STATE(4767)] = 271967, + [SMALL_STATE(4768)] = 271993, + [SMALL_STATE(4769)] = 272019, + [SMALL_STATE(4770)] = 272045, + [SMALL_STATE(4771)] = 272071, + [SMALL_STATE(4772)] = 272093, + [SMALL_STATE(4773)] = 272119, + [SMALL_STATE(4774)] = 272145, + [SMALL_STATE(4775)] = 272171, + [SMALL_STATE(4776)] = 272195, + [SMALL_STATE(4777)] = 272221, + [SMALL_STATE(4778)] = 272247, + [SMALL_STATE(4779)] = 272267, + [SMALL_STATE(4780)] = 272287, + [SMALL_STATE(4781)] = 272307, + [SMALL_STATE(4782)] = 272333, + [SMALL_STATE(4783)] = 272353, + [SMALL_STATE(4784)] = 272379, + [SMALL_STATE(4785)] = 272405, + [SMALL_STATE(4786)] = 272431, + [SMALL_STATE(4787)] = 272457, + [SMALL_STATE(4788)] = 272477, + [SMALL_STATE(4789)] = 272503, + [SMALL_STATE(4790)] = 272529, + [SMALL_STATE(4791)] = 272555, + [SMALL_STATE(4792)] = 272581, + [SMALL_STATE(4793)] = 272605, + [SMALL_STATE(4794)] = 272631, + [SMALL_STATE(4795)] = 272651, + [SMALL_STATE(4796)] = 272677, + [SMALL_STATE(4797)] = 272701, + [SMALL_STATE(4798)] = 272725, + [SMALL_STATE(4799)] = 272751, + [SMALL_STATE(4800)] = 272777, + [SMALL_STATE(4801)] = 272801, + [SMALL_STATE(4802)] = 272827, + [SMALL_STATE(4803)] = 272853, + [SMALL_STATE(4804)] = 272877, + [SMALL_STATE(4805)] = 272903, + [SMALL_STATE(4806)] = 272927, + [SMALL_STATE(4807)] = 272947, + [SMALL_STATE(4808)] = 272967, + [SMALL_STATE(4809)] = 272987, + [SMALL_STATE(4810)] = 273007, + [SMALL_STATE(4811)] = 273033, + [SMALL_STATE(4812)] = 273053, + [SMALL_STATE(4813)] = 273077, + [SMALL_STATE(4814)] = 273097, + [SMALL_STATE(4815)] = 273123, + [SMALL_STATE(4816)] = 273149, + [SMALL_STATE(4817)] = 273169, + [SMALL_STATE(4818)] = 273193, + [SMALL_STATE(4819)] = 273213, + [SMALL_STATE(4820)] = 273233, + [SMALL_STATE(4821)] = 273253, + [SMALL_STATE(4822)] = 273279, + [SMALL_STATE(4823)] = 273305, + [SMALL_STATE(4824)] = 273329, + [SMALL_STATE(4825)] = 273353, + [SMALL_STATE(4826)] = 273379, + [SMALL_STATE(4827)] = 273405, + [SMALL_STATE(4828)] = 273431, + [SMALL_STATE(4829)] = 273455, + [SMALL_STATE(4830)] = 273481, + [SMALL_STATE(4831)] = 273501, + [SMALL_STATE(4832)] = 273527, + [SMALL_STATE(4833)] = 273553, + [SMALL_STATE(4834)] = 273579, + [SMALL_STATE(4835)] = 273605, + [SMALL_STATE(4836)] = 273631, + [SMALL_STATE(4837)] = 273657, + [SMALL_STATE(4838)] = 273683, + [SMALL_STATE(4839)] = 273709, + [SMALL_STATE(4840)] = 273735, + [SMALL_STATE(4841)] = 273755, + [SMALL_STATE(4842)] = 273781, + [SMALL_STATE(4843)] = 273807, + [SMALL_STATE(4844)] = 273833, + [SMALL_STATE(4845)] = 273859, + [SMALL_STATE(4846)] = 273885, + [SMALL_STATE(4847)] = 273907, + [SMALL_STATE(4848)] = 273933, + [SMALL_STATE(4849)] = 273959, + [SMALL_STATE(4850)] = 273985, + [SMALL_STATE(4851)] = 274011, + [SMALL_STATE(4852)] = 274037, + [SMALL_STATE(4853)] = 274063, + [SMALL_STATE(4854)] = 274089, + [SMALL_STATE(4855)] = 274115, + [SMALL_STATE(4856)] = 274141, + [SMALL_STATE(4857)] = 274167, + [SMALL_STATE(4858)] = 274193, + [SMALL_STATE(4859)] = 274219, + [SMALL_STATE(4860)] = 274239, + [SMALL_STATE(4861)] = 274265, + [SMALL_STATE(4862)] = 274291, + [SMALL_STATE(4863)] = 274317, + [SMALL_STATE(4864)] = 274343, + [SMALL_STATE(4865)] = 274363, + [SMALL_STATE(4866)] = 274389, + [SMALL_STATE(4867)] = 274415, + [SMALL_STATE(4868)] = 274441, + [SMALL_STATE(4869)] = 274467, + [SMALL_STATE(4870)] = 274493, + [SMALL_STATE(4871)] = 274519, + [SMALL_STATE(4872)] = 274545, + [SMALL_STATE(4873)] = 274571, + [SMALL_STATE(4874)] = 274591, + [SMALL_STATE(4875)] = 274617, + [SMALL_STATE(4876)] = 274643, + [SMALL_STATE(4877)] = 274669, + [SMALL_STATE(4878)] = 274689, + [SMALL_STATE(4879)] = 274709, + [SMALL_STATE(4880)] = 274735, + [SMALL_STATE(4881)] = 274761, + [SMALL_STATE(4882)] = 274787, + [SMALL_STATE(4883)] = 274813, + [SMALL_STATE(4884)] = 274839, + [SMALL_STATE(4885)] = 274859, + [SMALL_STATE(4886)] = 274885, + [SMALL_STATE(4887)] = 274911, + [SMALL_STATE(4888)] = 274937, + [SMALL_STATE(4889)] = 274963, + [SMALL_STATE(4890)] = 274989, + [SMALL_STATE(4891)] = 275015, + [SMALL_STATE(4892)] = 275035, + [SMALL_STATE(4893)] = 275061, + [SMALL_STATE(4894)] = 275087, + [SMALL_STATE(4895)] = 275113, + [SMALL_STATE(4896)] = 275133, + [SMALL_STATE(4897)] = 275159, + [SMALL_STATE(4898)] = 275179, + [SMALL_STATE(4899)] = 275205, + [SMALL_STATE(4900)] = 275231, + [SMALL_STATE(4901)] = 275251, + [SMALL_STATE(4902)] = 275277, + [SMALL_STATE(4903)] = 275303, + [SMALL_STATE(4904)] = 275329, + [SMALL_STATE(4905)] = 275355, + [SMALL_STATE(4906)] = 275381, + [SMALL_STATE(4907)] = 275401, + [SMALL_STATE(4908)] = 275427, + [SMALL_STATE(4909)] = 275453, + [SMALL_STATE(4910)] = 275479, + [SMALL_STATE(4911)] = 275499, + [SMALL_STATE(4912)] = 275525, + [SMALL_STATE(4913)] = 275551, + [SMALL_STATE(4914)] = 275577, + [SMALL_STATE(4915)] = 275603, + [SMALL_STATE(4916)] = 275623, + [SMALL_STATE(4917)] = 275649, + [SMALL_STATE(4918)] = 275675, + [SMALL_STATE(4919)] = 275695, + [SMALL_STATE(4920)] = 275715, + [SMALL_STATE(4921)] = 275741, + [SMALL_STATE(4922)] = 275767, + [SMALL_STATE(4923)] = 275793, + [SMALL_STATE(4924)] = 275819, + [SMALL_STATE(4925)] = 275843, + [SMALL_STATE(4926)] = 275865, + [SMALL_STATE(4927)] = 275885, + [SMALL_STATE(4928)] = 275905, + [SMALL_STATE(4929)] = 275925, + [SMALL_STATE(4930)] = 275945, + [SMALL_STATE(4931)] = 275971, + [SMALL_STATE(4932)] = 275995, + [SMALL_STATE(4933)] = 276015, + [SMALL_STATE(4934)] = 276041, + [SMALL_STATE(4935)] = 276063, + [SMALL_STATE(4936)] = 276087, + [SMALL_STATE(4937)] = 276113, + [SMALL_STATE(4938)] = 276135, + [SMALL_STATE(4939)] = 276161, + [SMALL_STATE(4940)] = 276181, + [SMALL_STATE(4941)] = 276207, + [SMALL_STATE(4942)] = 276233, + [SMALL_STATE(4943)] = 276259, + [SMALL_STATE(4944)] = 276285, + [SMALL_STATE(4945)] = 276311, + [SMALL_STATE(4946)] = 276337, + [SMALL_STATE(4947)] = 276363, + [SMALL_STATE(4948)] = 276383, + [SMALL_STATE(4949)] = 276409, + [SMALL_STATE(4950)] = 276435, + [SMALL_STATE(4951)] = 276455, + [SMALL_STATE(4952)] = 276481, + [SMALL_STATE(4953)] = 276501, + [SMALL_STATE(4954)] = 276527, + [SMALL_STATE(4955)] = 276547, + [SMALL_STATE(4956)] = 276573, + [SMALL_STATE(4957)] = 276593, + [SMALL_STATE(4958)] = 276613, + [SMALL_STATE(4959)] = 276639, + [SMALL_STATE(4960)] = 276665, + [SMALL_STATE(4961)] = 276685, + [SMALL_STATE(4962)] = 276711, + [SMALL_STATE(4963)] = 276731, + [SMALL_STATE(4964)] = 276757, + [SMALL_STATE(4965)] = 276777, + [SMALL_STATE(4966)] = 276803, + [SMALL_STATE(4967)] = 276829, + [SMALL_STATE(4968)] = 276849, + [SMALL_STATE(4969)] = 276875, + [SMALL_STATE(4970)] = 276901, + [SMALL_STATE(4971)] = 276927, + [SMALL_STATE(4972)] = 276947, + [SMALL_STATE(4973)] = 276967, + [SMALL_STATE(4974)] = 276987, + [SMALL_STATE(4975)] = 277007, + [SMALL_STATE(4976)] = 277027, + [SMALL_STATE(4977)] = 277047, + [SMALL_STATE(4978)] = 277067, + [SMALL_STATE(4979)] = 277087, + [SMALL_STATE(4980)] = 277107, + [SMALL_STATE(4981)] = 277127, + [SMALL_STATE(4982)] = 277147, + [SMALL_STATE(4983)] = 277167, + [SMALL_STATE(4984)] = 277193, + [SMALL_STATE(4985)] = 277219, + [SMALL_STATE(4986)] = 277245, + [SMALL_STATE(4987)] = 277271, + [SMALL_STATE(4988)] = 277293, + [SMALL_STATE(4989)] = 277319, + [SMALL_STATE(4990)] = 277345, + [SMALL_STATE(4991)] = 277371, + [SMALL_STATE(4992)] = 277391, + [SMALL_STATE(4993)] = 277417, + [SMALL_STATE(4994)] = 277443, + [SMALL_STATE(4995)] = 277469, + [SMALL_STATE(4996)] = 277495, + [SMALL_STATE(4997)] = 277521, + [SMALL_STATE(4998)] = 277547, + [SMALL_STATE(4999)] = 277573, + [SMALL_STATE(5000)] = 277599, + [SMALL_STATE(5001)] = 277625, + [SMALL_STATE(5002)] = 277651, + [SMALL_STATE(5003)] = 277677, + [SMALL_STATE(5004)] = 277703, + [SMALL_STATE(5005)] = 277729, + [SMALL_STATE(5006)] = 277749, + [SMALL_STATE(5007)] = 277775, + [SMALL_STATE(5008)] = 277795, + [SMALL_STATE(5009)] = 277821, + [SMALL_STATE(5010)] = 277847, + [SMALL_STATE(5011)] = 277867, + [SMALL_STATE(5012)] = 277887, + [SMALL_STATE(5013)] = 277913, + [SMALL_STATE(5014)] = 277937, + [SMALL_STATE(5015)] = 277957, + [SMALL_STATE(5016)] = 277983, + [SMALL_STATE(5017)] = 278009, + [SMALL_STATE(5018)] = 278035, + [SMALL_STATE(5019)] = 278061, + [SMALL_STATE(5020)] = 278087, + [SMALL_STATE(5021)] = 278107, + [SMALL_STATE(5022)] = 278129, + [SMALL_STATE(5023)] = 278155, + [SMALL_STATE(5024)] = 278175, + [SMALL_STATE(5025)] = 278201, + [SMALL_STATE(5026)] = 278221, + [SMALL_STATE(5027)] = 278241, + [SMALL_STATE(5028)] = 278261, + [SMALL_STATE(5029)] = 278281, + [SMALL_STATE(5030)] = 278301, + [SMALL_STATE(5031)] = 278321, + [SMALL_STATE(5032)] = 278341, + [SMALL_STATE(5033)] = 278361, + [SMALL_STATE(5034)] = 278381, + [SMALL_STATE(5035)] = 278401, + [SMALL_STATE(5036)] = 278421, + [SMALL_STATE(5037)] = 278441, + [SMALL_STATE(5038)] = 278461, + [SMALL_STATE(5039)] = 278487, + [SMALL_STATE(5040)] = 278513, + [SMALL_STATE(5041)] = 278539, + [SMALL_STATE(5042)] = 278565, + [SMALL_STATE(5043)] = 278585, + [SMALL_STATE(5044)] = 278609, + [SMALL_STATE(5045)] = 278635, + [SMALL_STATE(5046)] = 278661, + [SMALL_STATE(5047)] = 278681, + [SMALL_STATE(5048)] = 278707, + [SMALL_STATE(5049)] = 278729, + [SMALL_STATE(5050)] = 278749, + [SMALL_STATE(5051)] = 278769, + [SMALL_STATE(5052)] = 278789, + [SMALL_STATE(5053)] = 278815, + [SMALL_STATE(5054)] = 278841, + [SMALL_STATE(5055)] = 278867, + [SMALL_STATE(5056)] = 278893, + [SMALL_STATE(5057)] = 278919, + [SMALL_STATE(5058)] = 278941, + [SMALL_STATE(5059)] = 278963, + [SMALL_STATE(5060)] = 278989, + [SMALL_STATE(5061)] = 279009, + [SMALL_STATE(5062)] = 279035, + [SMALL_STATE(5063)] = 279055, + [SMALL_STATE(5064)] = 279081, + [SMALL_STATE(5065)] = 279107, + [SMALL_STATE(5066)] = 279133, + [SMALL_STATE(5067)] = 279159, + [SMALL_STATE(5068)] = 279185, + [SMALL_STATE(5069)] = 279205, + [SMALL_STATE(5070)] = 279225, + [SMALL_STATE(5071)] = 279245, + [SMALL_STATE(5072)] = 279265, + [SMALL_STATE(5073)] = 279285, + [SMALL_STATE(5074)] = 279305, + [SMALL_STATE(5075)] = 279331, + [SMALL_STATE(5076)] = 279351, + [SMALL_STATE(5077)] = 279377, + [SMALL_STATE(5078)] = 279397, + [SMALL_STATE(5079)] = 279417, + [SMALL_STATE(5080)] = 279443, + [SMALL_STATE(5081)] = 279467, + [SMALL_STATE(5082)] = 279487, + [SMALL_STATE(5083)] = 279507, + [SMALL_STATE(5084)] = 279527, + [SMALL_STATE(5085)] = 279547, + [SMALL_STATE(5086)] = 279567, + [SMALL_STATE(5087)] = 279587, + [SMALL_STATE(5088)] = 279607, + [SMALL_STATE(5089)] = 279627, + [SMALL_STATE(5090)] = 279653, + [SMALL_STATE(5091)] = 279673, + [SMALL_STATE(5092)] = 279693, + [SMALL_STATE(5093)] = 279713, + [SMALL_STATE(5094)] = 279733, + [SMALL_STATE(5095)] = 279757, + [SMALL_STATE(5096)] = 279783, + [SMALL_STATE(5097)] = 279803, + [SMALL_STATE(5098)] = 279829, + [SMALL_STATE(5099)] = 279849, + [SMALL_STATE(5100)] = 279875, + [SMALL_STATE(5101)] = 279901, + [SMALL_STATE(5102)] = 279925, + [SMALL_STATE(5103)] = 279951, + [SMALL_STATE(5104)] = 279975, + [SMALL_STATE(5105)] = 280001, + [SMALL_STATE(5106)] = 280027, + [SMALL_STATE(5107)] = 280053, + [SMALL_STATE(5108)] = 280079, + [SMALL_STATE(5109)] = 280105, + [SMALL_STATE(5110)] = 280131, + [SMALL_STATE(5111)] = 280153, + [SMALL_STATE(5112)] = 280179, + [SMALL_STATE(5113)] = 280205, + [SMALL_STATE(5114)] = 280225, + [SMALL_STATE(5115)] = 280245, + [SMALL_STATE(5116)] = 280271, + [SMALL_STATE(5117)] = 280291, + [SMALL_STATE(5118)] = 280315, + [SMALL_STATE(5119)] = 280341, + [SMALL_STATE(5120)] = 280361, + [SMALL_STATE(5121)] = 280387, + [SMALL_STATE(5122)] = 280413, + [SMALL_STATE(5123)] = 280439, + [SMALL_STATE(5124)] = 280465, + [SMALL_STATE(5125)] = 280491, + [SMALL_STATE(5126)] = 280517, + [SMALL_STATE(5127)] = 280543, + [SMALL_STATE(5128)] = 280567, + [SMALL_STATE(5129)] = 280593, + [SMALL_STATE(5130)] = 280619, + [SMALL_STATE(5131)] = 280645, + [SMALL_STATE(5132)] = 280665, + [SMALL_STATE(5133)] = 280691, + [SMALL_STATE(5134)] = 280713, + [SMALL_STATE(5135)] = 280739, + [SMALL_STATE(5136)] = 280765, + [SMALL_STATE(5137)] = 280789, + [SMALL_STATE(5138)] = 280809, + [SMALL_STATE(5139)] = 280829, + [SMALL_STATE(5140)] = 280849, + [SMALL_STATE(5141)] = 280869, + [SMALL_STATE(5142)] = 280889, + [SMALL_STATE(5143)] = 280909, + [SMALL_STATE(5144)] = 280929, + [SMALL_STATE(5145)] = 280949, + [SMALL_STATE(5146)] = 280975, + [SMALL_STATE(5147)] = 280995, + [SMALL_STATE(5148)] = 281015, + [SMALL_STATE(5149)] = 281041, + [SMALL_STATE(5150)] = 281067, + [SMALL_STATE(5151)] = 281093, + [SMALL_STATE(5152)] = 281119, + [SMALL_STATE(5153)] = 281145, + [SMALL_STATE(5154)] = 281165, + [SMALL_STATE(5155)] = 281189, + [SMALL_STATE(5156)] = 281215, + [SMALL_STATE(5157)] = 281241, + [SMALL_STATE(5158)] = 281267, + [SMALL_STATE(5159)] = 281293, + [SMALL_STATE(5160)] = 281319, + [SMALL_STATE(5161)] = 281341, + [SMALL_STATE(5162)] = 281363, + [SMALL_STATE(5163)] = 281389, + [SMALL_STATE(5164)] = 281415, + [SMALL_STATE(5165)] = 281441, + [SMALL_STATE(5166)] = 281461, + [SMALL_STATE(5167)] = 281481, + [SMALL_STATE(5168)] = 281507, + [SMALL_STATE(5169)] = 281527, + [SMALL_STATE(5170)] = 281553, + [SMALL_STATE(5171)] = 281579, + [SMALL_STATE(5172)] = 281605, + [SMALL_STATE(5173)] = 281631, + [SMALL_STATE(5174)] = 281657, + [SMALL_STATE(5175)] = 281683, + [SMALL_STATE(5176)] = 281706, + [SMALL_STATE(5177)] = 281729, + [SMALL_STATE(5178)] = 281752, + [SMALL_STATE(5179)] = 281775, + [SMALL_STATE(5180)] = 281798, + [SMALL_STATE(5181)] = 281821, + [SMALL_STATE(5182)] = 281844, + [SMALL_STATE(5183)] = 281867, + [SMALL_STATE(5184)] = 281890, + [SMALL_STATE(5185)] = 281909, + [SMALL_STATE(5186)] = 281932, + [SMALL_STATE(5187)] = 281955, + [SMALL_STATE(5188)] = 281976, + [SMALL_STATE(5189)] = 281999, + [SMALL_STATE(5190)] = 282022, + [SMALL_STATE(5191)] = 282045, + [SMALL_STATE(5192)] = 282068, + [SMALL_STATE(5193)] = 282091, + [SMALL_STATE(5194)] = 282114, + [SMALL_STATE(5195)] = 282137, + [SMALL_STATE(5196)] = 282160, + [SMALL_STATE(5197)] = 282183, + [SMALL_STATE(5198)] = 282206, + [SMALL_STATE(5199)] = 282229, + [SMALL_STATE(5200)] = 282252, + [SMALL_STATE(5201)] = 282275, + [SMALL_STATE(5202)] = 282298, + [SMALL_STATE(5203)] = 282321, + [SMALL_STATE(5204)] = 282344, + [SMALL_STATE(5205)] = 282367, + [SMALL_STATE(5206)] = 282390, + [SMALL_STATE(5207)] = 282413, + [SMALL_STATE(5208)] = 282436, + [SMALL_STATE(5209)] = 282459, + [SMALL_STATE(5210)] = 282482, + [SMALL_STATE(5211)] = 282505, + [SMALL_STATE(5212)] = 282528, + [SMALL_STATE(5213)] = 282551, + [SMALL_STATE(5214)] = 282574, + [SMALL_STATE(5215)] = 282597, + [SMALL_STATE(5216)] = 282620, + [SMALL_STATE(5217)] = 282643, + [SMALL_STATE(5218)] = 282666, + [SMALL_STATE(5219)] = 282689, + [SMALL_STATE(5220)] = 282712, + [SMALL_STATE(5221)] = 282735, + [SMALL_STATE(5222)] = 282758, + [SMALL_STATE(5223)] = 282781, + [SMALL_STATE(5224)] = 282804, + [SMALL_STATE(5225)] = 282827, + [SMALL_STATE(5226)] = 282850, + [SMALL_STATE(5227)] = 282873, + [SMALL_STATE(5228)] = 282896, + [SMALL_STATE(5229)] = 282919, + [SMALL_STATE(5230)] = 282942, + [SMALL_STATE(5231)] = 282965, + [SMALL_STATE(5232)] = 282988, + [SMALL_STATE(5233)] = 283011, + [SMALL_STATE(5234)] = 283034, + [SMALL_STATE(5235)] = 283057, + [SMALL_STATE(5236)] = 283080, + [SMALL_STATE(5237)] = 283103, + [SMALL_STATE(5238)] = 283126, + [SMALL_STATE(5239)] = 283149, + [SMALL_STATE(5240)] = 283172, + [SMALL_STATE(5241)] = 283195, + [SMALL_STATE(5242)] = 283218, + [SMALL_STATE(5243)] = 283241, + [SMALL_STATE(5244)] = 283264, + [SMALL_STATE(5245)] = 283287, + [SMALL_STATE(5246)] = 283310, + [SMALL_STATE(5247)] = 283333, + [SMALL_STATE(5248)] = 283356, + [SMALL_STATE(5249)] = 283379, + [SMALL_STATE(5250)] = 283402, + [SMALL_STATE(5251)] = 283425, + [SMALL_STATE(5252)] = 283444, + [SMALL_STATE(5253)] = 283467, + [SMALL_STATE(5254)] = 283490, + [SMALL_STATE(5255)] = 283513, + [SMALL_STATE(5256)] = 283536, + [SMALL_STATE(5257)] = 283559, + [SMALL_STATE(5258)] = 283582, + [SMALL_STATE(5259)] = 283605, + [SMALL_STATE(5260)] = 283628, + [SMALL_STATE(5261)] = 283647, + [SMALL_STATE(5262)] = 283670, + [SMALL_STATE(5263)] = 283693, + [SMALL_STATE(5264)] = 283716, + [SMALL_STATE(5265)] = 283739, + [SMALL_STATE(5266)] = 283762, + [SMALL_STATE(5267)] = 283783, + [SMALL_STATE(5268)] = 283806, + [SMALL_STATE(5269)] = 283829, + [SMALL_STATE(5270)] = 283852, + [SMALL_STATE(5271)] = 283875, + [SMALL_STATE(5272)] = 283894, + [SMALL_STATE(5273)] = 283917, + [SMALL_STATE(5274)] = 283938, + [SMALL_STATE(5275)] = 283961, + [SMALL_STATE(5276)] = 283984, + [SMALL_STATE(5277)] = 284007, + [SMALL_STATE(5278)] = 284030, + [SMALL_STATE(5279)] = 284053, + [SMALL_STATE(5280)] = 284076, + [SMALL_STATE(5281)] = 284095, + [SMALL_STATE(5282)] = 284118, + [SMALL_STATE(5283)] = 284141, + [SMALL_STATE(5284)] = 284162, + [SMALL_STATE(5285)] = 284185, + [SMALL_STATE(5286)] = 284208, + [SMALL_STATE(5287)] = 284231, + [SMALL_STATE(5288)] = 284252, + [SMALL_STATE(5289)] = 284275, + [SMALL_STATE(5290)] = 284298, + [SMALL_STATE(5291)] = 284321, + [SMALL_STATE(5292)] = 284344, + [SMALL_STATE(5293)] = 284367, + [SMALL_STATE(5294)] = 284390, + [SMALL_STATE(5295)] = 284413, + [SMALL_STATE(5296)] = 284434, + [SMALL_STATE(5297)] = 284457, + [SMALL_STATE(5298)] = 284480, + [SMALL_STATE(5299)] = 284501, + [SMALL_STATE(5300)] = 284524, + [SMALL_STATE(5301)] = 284543, + [SMALL_STATE(5302)] = 284562, + [SMALL_STATE(5303)] = 284585, + [SMALL_STATE(5304)] = 284608, + [SMALL_STATE(5305)] = 284631, + [SMALL_STATE(5306)] = 284654, + [SMALL_STATE(5307)] = 284677, + [SMALL_STATE(5308)] = 284700, + [SMALL_STATE(5309)] = 284723, + [SMALL_STATE(5310)] = 284744, + [SMALL_STATE(5311)] = 284767, + [SMALL_STATE(5312)] = 284790, + [SMALL_STATE(5313)] = 284813, + [SMALL_STATE(5314)] = 284836, + [SMALL_STATE(5315)] = 284859, + [SMALL_STATE(5316)] = 284882, + [SMALL_STATE(5317)] = 284905, + [SMALL_STATE(5318)] = 284928, + [SMALL_STATE(5319)] = 284951, + [SMALL_STATE(5320)] = 284974, + [SMALL_STATE(5321)] = 284997, + [SMALL_STATE(5322)] = 285020, + [SMALL_STATE(5323)] = 285043, + [SMALL_STATE(5324)] = 285062, + [SMALL_STATE(5325)] = 285083, + [SMALL_STATE(5326)] = 285106, + [SMALL_STATE(5327)] = 285129, + [SMALL_STATE(5328)] = 285152, + [SMALL_STATE(5329)] = 285175, + [SMALL_STATE(5330)] = 285198, + [SMALL_STATE(5331)] = 285221, + [SMALL_STATE(5332)] = 285244, + [SMALL_STATE(5333)] = 285263, + [SMALL_STATE(5334)] = 285286, + [SMALL_STATE(5335)] = 285309, + [SMALL_STATE(5336)] = 285332, + [SMALL_STATE(5337)] = 285355, + [SMALL_STATE(5338)] = 285378, + [SMALL_STATE(5339)] = 285399, + [SMALL_STATE(5340)] = 285422, + [SMALL_STATE(5341)] = 285445, + [SMALL_STATE(5342)] = 285468, + [SMALL_STATE(5343)] = 285491, + [SMALL_STATE(5344)] = 285514, + [SMALL_STATE(5345)] = 285535, + [SMALL_STATE(5346)] = 285558, + [SMALL_STATE(5347)] = 285581, + [SMALL_STATE(5348)] = 285602, + [SMALL_STATE(5349)] = 285625, + [SMALL_STATE(5350)] = 285648, + [SMALL_STATE(5351)] = 285667, + [SMALL_STATE(5352)] = 285690, + [SMALL_STATE(5353)] = 285711, + [SMALL_STATE(5354)] = 285734, + [SMALL_STATE(5355)] = 285757, + [SMALL_STATE(5356)] = 285780, + [SMALL_STATE(5357)] = 285803, + [SMALL_STATE(5358)] = 285826, + [SMALL_STATE(5359)] = 285849, + [SMALL_STATE(5360)] = 285872, + [SMALL_STATE(5361)] = 285895, + [SMALL_STATE(5362)] = 285918, + [SMALL_STATE(5363)] = 285937, + [SMALL_STATE(5364)] = 285960, + [SMALL_STATE(5365)] = 285983, + [SMALL_STATE(5366)] = 286006, + [SMALL_STATE(5367)] = 286029, + [SMALL_STATE(5368)] = 286048, + [SMALL_STATE(5369)] = 286071, + [SMALL_STATE(5370)] = 286094, + [SMALL_STATE(5371)] = 286113, + [SMALL_STATE(5372)] = 286136, + [SMALL_STATE(5373)] = 286155, + [SMALL_STATE(5374)] = 286178, + [SMALL_STATE(5375)] = 286201, + [SMALL_STATE(5376)] = 286222, + [SMALL_STATE(5377)] = 286243, + [SMALL_STATE(5378)] = 286266, + [SMALL_STATE(5379)] = 286289, + [SMALL_STATE(5380)] = 286308, + [SMALL_STATE(5381)] = 286331, + [SMALL_STATE(5382)] = 286354, + [SMALL_STATE(5383)] = 286377, + [SMALL_STATE(5384)] = 286398, + [SMALL_STATE(5385)] = 286421, + [SMALL_STATE(5386)] = 286444, + [SMALL_STATE(5387)] = 286467, + [SMALL_STATE(5388)] = 286490, + [SMALL_STATE(5389)] = 286513, + [SMALL_STATE(5390)] = 286534, + [SMALL_STATE(5391)] = 286557, + [SMALL_STATE(5392)] = 286580, + [SMALL_STATE(5393)] = 286603, + [SMALL_STATE(5394)] = 286624, + [SMALL_STATE(5395)] = 286647, + [SMALL_STATE(5396)] = 286670, + [SMALL_STATE(5397)] = 286693, + [SMALL_STATE(5398)] = 286716, + [SMALL_STATE(5399)] = 286739, + [SMALL_STATE(5400)] = 286762, + [SMALL_STATE(5401)] = 286785, + [SMALL_STATE(5402)] = 286808, + [SMALL_STATE(5403)] = 286831, + [SMALL_STATE(5404)] = 286854, + [SMALL_STATE(5405)] = 286877, + [SMALL_STATE(5406)] = 286900, + [SMALL_STATE(5407)] = 286923, + [SMALL_STATE(5408)] = 286946, + [SMALL_STATE(5409)] = 286969, + [SMALL_STATE(5410)] = 286992, + [SMALL_STATE(5411)] = 287015, + [SMALL_STATE(5412)] = 287034, + [SMALL_STATE(5413)] = 287057, + [SMALL_STATE(5414)] = 287080, + [SMALL_STATE(5415)] = 287103, + [SMALL_STATE(5416)] = 287126, + [SMALL_STATE(5417)] = 287149, + [SMALL_STATE(5418)] = 287172, + [SMALL_STATE(5419)] = 287191, + [SMALL_STATE(5420)] = 287214, + [SMALL_STATE(5421)] = 287237, + [SMALL_STATE(5422)] = 287260, + [SMALL_STATE(5423)] = 287283, + [SMALL_STATE(5424)] = 287302, + [SMALL_STATE(5425)] = 287321, + [SMALL_STATE(5426)] = 287344, + [SMALL_STATE(5427)] = 287363, + [SMALL_STATE(5428)] = 287386, + [SMALL_STATE(5429)] = 287407, + [SMALL_STATE(5430)] = 287426, + [SMALL_STATE(5431)] = 287445, + [SMALL_STATE(5432)] = 287468, + [SMALL_STATE(5433)] = 287491, + [SMALL_STATE(5434)] = 287514, + [SMALL_STATE(5435)] = 287533, + [SMALL_STATE(5436)] = 287552, + [SMALL_STATE(5437)] = 287575, + [SMALL_STATE(5438)] = 287596, + [SMALL_STATE(5439)] = 287619, + [SMALL_STATE(5440)] = 287642, + [SMALL_STATE(5441)] = 287665, + [SMALL_STATE(5442)] = 287684, + [SMALL_STATE(5443)] = 287707, + [SMALL_STATE(5444)] = 287730, + [SMALL_STATE(5445)] = 287753, + [SMALL_STATE(5446)] = 287776, + [SMALL_STATE(5447)] = 287799, + [SMALL_STATE(5448)] = 287822, + [SMALL_STATE(5449)] = 287843, + [SMALL_STATE(5450)] = 287866, + [SMALL_STATE(5451)] = 287889, + [SMALL_STATE(5452)] = 287912, + [SMALL_STATE(5453)] = 287935, + [SMALL_STATE(5454)] = 287954, + [SMALL_STATE(5455)] = 287977, + [SMALL_STATE(5456)] = 288000, + [SMALL_STATE(5457)] = 288023, + [SMALL_STATE(5458)] = 288046, + [SMALL_STATE(5459)] = 288066, + [SMALL_STATE(5460)] = 288086, + [SMALL_STATE(5461)] = 288106, + [SMALL_STATE(5462)] = 288126, + [SMALL_STATE(5463)] = 288146, + [SMALL_STATE(5464)] = 288166, + [SMALL_STATE(5465)] = 288186, + [SMALL_STATE(5466)] = 288206, + [SMALL_STATE(5467)] = 288226, + [SMALL_STATE(5468)] = 288246, + [SMALL_STATE(5469)] = 288264, + [SMALL_STATE(5470)] = 288284, + [SMALL_STATE(5471)] = 288304, + [SMALL_STATE(5472)] = 288324, + [SMALL_STATE(5473)] = 288344, + [SMALL_STATE(5474)] = 288364, + [SMALL_STATE(5475)] = 288384, + [SMALL_STATE(5476)] = 288404, + [SMALL_STATE(5477)] = 288424, + [SMALL_STATE(5478)] = 288442, + [SMALL_STATE(5479)] = 288462, + [SMALL_STATE(5480)] = 288482, + [SMALL_STATE(5481)] = 288502, + [SMALL_STATE(5482)] = 288522, + [SMALL_STATE(5483)] = 288542, + [SMALL_STATE(5484)] = 288562, + [SMALL_STATE(5485)] = 288582, + [SMALL_STATE(5486)] = 288602, + [SMALL_STATE(5487)] = 288622, + [SMALL_STATE(5488)] = 288642, + [SMALL_STATE(5489)] = 288660, + [SMALL_STATE(5490)] = 288680, + [SMALL_STATE(5491)] = 288700, + [SMALL_STATE(5492)] = 288720, + [SMALL_STATE(5493)] = 288738, + [SMALL_STATE(5494)] = 288758, + [SMALL_STATE(5495)] = 288778, + [SMALL_STATE(5496)] = 288798, + [SMALL_STATE(5497)] = 288818, + [SMALL_STATE(5498)] = 288838, + [SMALL_STATE(5499)] = 288858, + [SMALL_STATE(5500)] = 288878, + [SMALL_STATE(5501)] = 288898, + [SMALL_STATE(5502)] = 288918, + [SMALL_STATE(5503)] = 288938, + [SMALL_STATE(5504)] = 288958, + [SMALL_STATE(5505)] = 288978, + [SMALL_STATE(5506)] = 288998, + [SMALL_STATE(5507)] = 289018, + [SMALL_STATE(5508)] = 289038, + [SMALL_STATE(5509)] = 289058, + [SMALL_STATE(5510)] = 289078, + [SMALL_STATE(5511)] = 289098, + [SMALL_STATE(5512)] = 289116, + [SMALL_STATE(5513)] = 289136, + [SMALL_STATE(5514)] = 289154, + [SMALL_STATE(5515)] = 289174, + [SMALL_STATE(5516)] = 289194, + [SMALL_STATE(5517)] = 289214, + [SMALL_STATE(5518)] = 289234, + [SMALL_STATE(5519)] = 289254, + [SMALL_STATE(5520)] = 289274, + [SMALL_STATE(5521)] = 289294, + [SMALL_STATE(5522)] = 289314, + [SMALL_STATE(5523)] = 289334, + [SMALL_STATE(5524)] = 289354, + [SMALL_STATE(5525)] = 289374, + [SMALL_STATE(5526)] = 289394, + [SMALL_STATE(5527)] = 289414, + [SMALL_STATE(5528)] = 289434, + [SMALL_STATE(5529)] = 289454, + [SMALL_STATE(5530)] = 289472, + [SMALL_STATE(5531)] = 289492, + [SMALL_STATE(5532)] = 289512, + [SMALL_STATE(5533)] = 289532, + [SMALL_STATE(5534)] = 289552, + [SMALL_STATE(5535)] = 289570, + [SMALL_STATE(5536)] = 289590, + [SMALL_STATE(5537)] = 289608, + [SMALL_STATE(5538)] = 289626, + [SMALL_STATE(5539)] = 289646, + [SMALL_STATE(5540)] = 289666, + [SMALL_STATE(5541)] = 289684, + [SMALL_STATE(5542)] = 289704, + [SMALL_STATE(5543)] = 289724, + [SMALL_STATE(5544)] = 289742, + [SMALL_STATE(5545)] = 289762, + [SMALL_STATE(5546)] = 289782, + [SMALL_STATE(5547)] = 289800, + [SMALL_STATE(5548)] = 289820, + [SMALL_STATE(5549)] = 289840, + [SMALL_STATE(5550)] = 289860, + [SMALL_STATE(5551)] = 289880, + [SMALL_STATE(5552)] = 289900, + [SMALL_STATE(5553)] = 289920, + [SMALL_STATE(5554)] = 289940, + [SMALL_STATE(5555)] = 289958, + [SMALL_STATE(5556)] = 289978, + [SMALL_STATE(5557)] = 289996, + [SMALL_STATE(5558)] = 290016, + [SMALL_STATE(5559)] = 290036, + [SMALL_STATE(5560)] = 290056, + [SMALL_STATE(5561)] = 290076, + [SMALL_STATE(5562)] = 290096, + [SMALL_STATE(5563)] = 290116, + [SMALL_STATE(5564)] = 290136, + [SMALL_STATE(5565)] = 290156, + [SMALL_STATE(5566)] = 290176, + [SMALL_STATE(5567)] = 290196, + [SMALL_STATE(5568)] = 290216, + [SMALL_STATE(5569)] = 290236, + [SMALL_STATE(5570)] = 290256, + [SMALL_STATE(5571)] = 290276, + [SMALL_STATE(5572)] = 290296, + [SMALL_STATE(5573)] = 290316, + [SMALL_STATE(5574)] = 290336, + [SMALL_STATE(5575)] = 290354, + [SMALL_STATE(5576)] = 290374, + [SMALL_STATE(5577)] = 290394, + [SMALL_STATE(5578)] = 290414, + [SMALL_STATE(5579)] = 290434, + [SMALL_STATE(5580)] = 290454, + [SMALL_STATE(5581)] = 290474, + [SMALL_STATE(5582)] = 290494, + [SMALL_STATE(5583)] = 290512, + [SMALL_STATE(5584)] = 290530, + [SMALL_STATE(5585)] = 290550, + [SMALL_STATE(5586)] = 290570, + [SMALL_STATE(5587)] = 290590, + [SMALL_STATE(5588)] = 290610, + [SMALL_STATE(5589)] = 290630, + [SMALL_STATE(5590)] = 290650, + [SMALL_STATE(5591)] = 290670, + [SMALL_STATE(5592)] = 290690, + [SMALL_STATE(5593)] = 290710, + [SMALL_STATE(5594)] = 290728, + [SMALL_STATE(5595)] = 290748, + [SMALL_STATE(5596)] = 290768, + [SMALL_STATE(5597)] = 290788, + [SMALL_STATE(5598)] = 290808, + [SMALL_STATE(5599)] = 290828, + [SMALL_STATE(5600)] = 290848, + [SMALL_STATE(5601)] = 290868, + [SMALL_STATE(5602)] = 290888, + [SMALL_STATE(5603)] = 290908, + [SMALL_STATE(5604)] = 290928, + [SMALL_STATE(5605)] = 290948, + [SMALL_STATE(5606)] = 290968, + [SMALL_STATE(5607)] = 290988, + [SMALL_STATE(5608)] = 291008, + [SMALL_STATE(5609)] = 291028, + [SMALL_STATE(5610)] = 291048, + [SMALL_STATE(5611)] = 291068, + [SMALL_STATE(5612)] = 291088, + [SMALL_STATE(5613)] = 291108, + [SMALL_STATE(5614)] = 291128, + [SMALL_STATE(5615)] = 291148, + [SMALL_STATE(5616)] = 291166, + [SMALL_STATE(5617)] = 291186, + [SMALL_STATE(5618)] = 291206, + [SMALL_STATE(5619)] = 291226, + [SMALL_STATE(5620)] = 291246, + [SMALL_STATE(5621)] = 291264, + [SMALL_STATE(5622)] = 291284, + [SMALL_STATE(5623)] = 291304, + [SMALL_STATE(5624)] = 291324, + [SMALL_STATE(5625)] = 291344, + [SMALL_STATE(5626)] = 291364, + [SMALL_STATE(5627)] = 291382, + [SMALL_STATE(5628)] = 291402, + [SMALL_STATE(5629)] = 291422, + [SMALL_STATE(5630)] = 291440, + [SMALL_STATE(5631)] = 291460, + [SMALL_STATE(5632)] = 291480, + [SMALL_STATE(5633)] = 291500, + [SMALL_STATE(5634)] = 291520, + [SMALL_STATE(5635)] = 291538, + [SMALL_STATE(5636)] = 291558, + [SMALL_STATE(5637)] = 291578, + [SMALL_STATE(5638)] = 291596, + [SMALL_STATE(5639)] = 291616, + [SMALL_STATE(5640)] = 291634, + [SMALL_STATE(5641)] = 291654, + [SMALL_STATE(5642)] = 291674, + [SMALL_STATE(5643)] = 291694, + [SMALL_STATE(5644)] = 291714, + [SMALL_STATE(5645)] = 291734, + [SMALL_STATE(5646)] = 291752, + [SMALL_STATE(5647)] = 291772, + [SMALL_STATE(5648)] = 291792, + [SMALL_STATE(5649)] = 291812, + [SMALL_STATE(5650)] = 291832, + [SMALL_STATE(5651)] = 291852, + [SMALL_STATE(5652)] = 291872, + [SMALL_STATE(5653)] = 291892, + [SMALL_STATE(5654)] = 291912, + [SMALL_STATE(5655)] = 291932, + [SMALL_STATE(5656)] = 291952, + [SMALL_STATE(5657)] = 291970, + [SMALL_STATE(5658)] = 291990, + [SMALL_STATE(5659)] = 292010, + [SMALL_STATE(5660)] = 292030, + [SMALL_STATE(5661)] = 292050, + [SMALL_STATE(5662)] = 292070, + [SMALL_STATE(5663)] = 292090, + [SMALL_STATE(5664)] = 292108, + [SMALL_STATE(5665)] = 292128, + [SMALL_STATE(5666)] = 292148, + [SMALL_STATE(5667)] = 292168, + [SMALL_STATE(5668)] = 292188, + [SMALL_STATE(5669)] = 292208, + [SMALL_STATE(5670)] = 292228, + [SMALL_STATE(5671)] = 292248, + [SMALL_STATE(5672)] = 292268, + [SMALL_STATE(5673)] = 292288, + [SMALL_STATE(5674)] = 292308, + [SMALL_STATE(5675)] = 292328, + [SMALL_STATE(5676)] = 292348, + [SMALL_STATE(5677)] = 292368, + [SMALL_STATE(5678)] = 292388, + [SMALL_STATE(5679)] = 292408, + [SMALL_STATE(5680)] = 292428, + [SMALL_STATE(5681)] = 292448, + [SMALL_STATE(5682)] = 292468, + [SMALL_STATE(5683)] = 292486, + [SMALL_STATE(5684)] = 292506, + [SMALL_STATE(5685)] = 292524, + [SMALL_STATE(5686)] = 292542, + [SMALL_STATE(5687)] = 292562, + [SMALL_STATE(5688)] = 292582, + [SMALL_STATE(5689)] = 292602, + [SMALL_STATE(5690)] = 292622, + [SMALL_STATE(5691)] = 292642, + [SMALL_STATE(5692)] = 292662, + [SMALL_STATE(5693)] = 292680, + [SMALL_STATE(5694)] = 292700, + [SMALL_STATE(5695)] = 292720, + [SMALL_STATE(5696)] = 292740, + [SMALL_STATE(5697)] = 292760, + [SMALL_STATE(5698)] = 292780, + [SMALL_STATE(5699)] = 292800, + [SMALL_STATE(5700)] = 292820, + [SMALL_STATE(5701)] = 292838, + [SMALL_STATE(5702)] = 292858, + [SMALL_STATE(5703)] = 292878, + [SMALL_STATE(5704)] = 292898, + [SMALL_STATE(5705)] = 292918, + [SMALL_STATE(5706)] = 292938, + [SMALL_STATE(5707)] = 292958, + [SMALL_STATE(5708)] = 292978, + [SMALL_STATE(5709)] = 292998, + [SMALL_STATE(5710)] = 293018, + [SMALL_STATE(5711)] = 293038, + [SMALL_STATE(5712)] = 293058, + [SMALL_STATE(5713)] = 293078, + [SMALL_STATE(5714)] = 293098, + [SMALL_STATE(5715)] = 293118, + [SMALL_STATE(5716)] = 293136, + [SMALL_STATE(5717)] = 293154, + [SMALL_STATE(5718)] = 293174, + [SMALL_STATE(5719)] = 293194, + [SMALL_STATE(5720)] = 293214, + [SMALL_STATE(5721)] = 293232, + [SMALL_STATE(5722)] = 293252, + [SMALL_STATE(5723)] = 293272, + [SMALL_STATE(5724)] = 293292, + [SMALL_STATE(5725)] = 293312, + [SMALL_STATE(5726)] = 293332, + [SMALL_STATE(5727)] = 293352, + [SMALL_STATE(5728)] = 293372, + [SMALL_STATE(5729)] = 293392, + [SMALL_STATE(5730)] = 293412, + [SMALL_STATE(5731)] = 293432, + [SMALL_STATE(5732)] = 293452, + [SMALL_STATE(5733)] = 293472, + [SMALL_STATE(5734)] = 293492, + [SMALL_STATE(5735)] = 293512, + [SMALL_STATE(5736)] = 293532, + [SMALL_STATE(5737)] = 293552, + [SMALL_STATE(5738)] = 293572, + [SMALL_STATE(5739)] = 293592, + [SMALL_STATE(5740)] = 293612, + [SMALL_STATE(5741)] = 293632, + [SMALL_STATE(5742)] = 293652, + [SMALL_STATE(5743)] = 293672, + [SMALL_STATE(5744)] = 293692, + [SMALL_STATE(5745)] = 293712, + [SMALL_STATE(5746)] = 293732, + [SMALL_STATE(5747)] = 293752, + [SMALL_STATE(5748)] = 293772, + [SMALL_STATE(5749)] = 293792, + [SMALL_STATE(5750)] = 293812, + [SMALL_STATE(5751)] = 293832, + [SMALL_STATE(5752)] = 293852, + [SMALL_STATE(5753)] = 293872, + [SMALL_STATE(5754)] = 293892, + [SMALL_STATE(5755)] = 293912, + [SMALL_STATE(5756)] = 293932, + [SMALL_STATE(5757)] = 293952, + [SMALL_STATE(5758)] = 293972, + [SMALL_STATE(5759)] = 293992, + [SMALL_STATE(5760)] = 294012, + [SMALL_STATE(5761)] = 294032, + [SMALL_STATE(5762)] = 294052, + [SMALL_STATE(5763)] = 294072, + [SMALL_STATE(5764)] = 294092, + [SMALL_STATE(5765)] = 294112, + [SMALL_STATE(5766)] = 294132, + [SMALL_STATE(5767)] = 294152, + [SMALL_STATE(5768)] = 294172, + [SMALL_STATE(5769)] = 294192, + [SMALL_STATE(5770)] = 294212, + [SMALL_STATE(5771)] = 294232, + [SMALL_STATE(5772)] = 294252, + [SMALL_STATE(5773)] = 294272, + [SMALL_STATE(5774)] = 294292, + [SMALL_STATE(5775)] = 294312, + [SMALL_STATE(5776)] = 294332, + [SMALL_STATE(5777)] = 294352, + [SMALL_STATE(5778)] = 294372, + [SMALL_STATE(5779)] = 294392, + [SMALL_STATE(5780)] = 294412, + [SMALL_STATE(5781)] = 294432, + [SMALL_STATE(5782)] = 294452, + [SMALL_STATE(5783)] = 294472, + [SMALL_STATE(5784)] = 294492, + [SMALL_STATE(5785)] = 294510, + [SMALL_STATE(5786)] = 294530, + [SMALL_STATE(5787)] = 294550, + [SMALL_STATE(5788)] = 294570, + [SMALL_STATE(5789)] = 294590, + [SMALL_STATE(5790)] = 294608, + [SMALL_STATE(5791)] = 294628, + [SMALL_STATE(5792)] = 294648, + [SMALL_STATE(5793)] = 294668, + [SMALL_STATE(5794)] = 294688, + [SMALL_STATE(5795)] = 294708, + [SMALL_STATE(5796)] = 294726, + [SMALL_STATE(5797)] = 294746, + [SMALL_STATE(5798)] = 294766, + [SMALL_STATE(5799)] = 294786, + [SMALL_STATE(5800)] = 294806, + [SMALL_STATE(5801)] = 294826, + [SMALL_STATE(5802)] = 294846, + [SMALL_STATE(5803)] = 294866, + [SMALL_STATE(5804)] = 294886, + [SMALL_STATE(5805)] = 294906, + [SMALL_STATE(5806)] = 294926, + [SMALL_STATE(5807)] = 294946, + [SMALL_STATE(5808)] = 294966, + [SMALL_STATE(5809)] = 294986, + [SMALL_STATE(5810)] = 295006, + [SMALL_STATE(5811)] = 295026, + [SMALL_STATE(5812)] = 295046, + [SMALL_STATE(5813)] = 295066, + [SMALL_STATE(5814)] = 295086, + [SMALL_STATE(5815)] = 295106, + [SMALL_STATE(5816)] = 295126, + [SMALL_STATE(5817)] = 295146, + [SMALL_STATE(5818)] = 295166, + [SMALL_STATE(5819)] = 295186, + [SMALL_STATE(5820)] = 295206, + [SMALL_STATE(5821)] = 295226, + [SMALL_STATE(5822)] = 295246, + [SMALL_STATE(5823)] = 295266, + [SMALL_STATE(5824)] = 295286, + [SMALL_STATE(5825)] = 295306, + [SMALL_STATE(5826)] = 295326, + [SMALL_STATE(5827)] = 295346, + [SMALL_STATE(5828)] = 295366, + [SMALL_STATE(5829)] = 295386, + [SMALL_STATE(5830)] = 295406, + [SMALL_STATE(5831)] = 295426, + [SMALL_STATE(5832)] = 295446, + [SMALL_STATE(5833)] = 295466, + [SMALL_STATE(5834)] = 295486, + [SMALL_STATE(5835)] = 295506, + [SMALL_STATE(5836)] = 295526, + [SMALL_STATE(5837)] = 295544, + [SMALL_STATE(5838)] = 295564, + [SMALL_STATE(5839)] = 295584, + [SMALL_STATE(5840)] = 295602, + [SMALL_STATE(5841)] = 295622, + [SMALL_STATE(5842)] = 295642, + [SMALL_STATE(5843)] = 295662, + [SMALL_STATE(5844)] = 295682, + [SMALL_STATE(5845)] = 295700, + [SMALL_STATE(5846)] = 295720, + [SMALL_STATE(5847)] = 295740, + [SMALL_STATE(5848)] = 295760, + [SMALL_STATE(5849)] = 295780, + [SMALL_STATE(5850)] = 295800, + [SMALL_STATE(5851)] = 295820, + [SMALL_STATE(5852)] = 295840, + [SMALL_STATE(5853)] = 295860, + [SMALL_STATE(5854)] = 295880, + [SMALL_STATE(5855)] = 295900, + [SMALL_STATE(5856)] = 295920, + [SMALL_STATE(5857)] = 295940, + [SMALL_STATE(5858)] = 295960, + [SMALL_STATE(5859)] = 295980, + [SMALL_STATE(5860)] = 296000, + [SMALL_STATE(5861)] = 296020, + [SMALL_STATE(5862)] = 296040, + [SMALL_STATE(5863)] = 296060, + [SMALL_STATE(5864)] = 296080, + [SMALL_STATE(5865)] = 296100, + [SMALL_STATE(5866)] = 296120, + [SMALL_STATE(5867)] = 296140, + [SMALL_STATE(5868)] = 296160, + [SMALL_STATE(5869)] = 296180, + [SMALL_STATE(5870)] = 296200, + [SMALL_STATE(5871)] = 296220, + [SMALL_STATE(5872)] = 296240, + [SMALL_STATE(5873)] = 296258, + [SMALL_STATE(5874)] = 296278, + [SMALL_STATE(5875)] = 296298, + [SMALL_STATE(5876)] = 296318, + [SMALL_STATE(5877)] = 296338, + [SMALL_STATE(5878)] = 296358, + [SMALL_STATE(5879)] = 296378, + [SMALL_STATE(5880)] = 296398, + [SMALL_STATE(5881)] = 296416, + [SMALL_STATE(5882)] = 296436, + [SMALL_STATE(5883)] = 296456, + [SMALL_STATE(5884)] = 296476, + [SMALL_STATE(5885)] = 296496, + [SMALL_STATE(5886)] = 296516, + [SMALL_STATE(5887)] = 296536, + [SMALL_STATE(5888)] = 296556, + [SMALL_STATE(5889)] = 296576, + [SMALL_STATE(5890)] = 296596, + [SMALL_STATE(5891)] = 296616, + [SMALL_STATE(5892)] = 296636, + [SMALL_STATE(5893)] = 296656, + [SMALL_STATE(5894)] = 296676, + [SMALL_STATE(5895)] = 296694, + [SMALL_STATE(5896)] = 296714, + [SMALL_STATE(5897)] = 296734, + [SMALL_STATE(5898)] = 296754, + [SMALL_STATE(5899)] = 296774, + [SMALL_STATE(5900)] = 296794, + [SMALL_STATE(5901)] = 296814, + [SMALL_STATE(5902)] = 296834, + [SMALL_STATE(5903)] = 296854, + [SMALL_STATE(5904)] = 296874, + [SMALL_STATE(5905)] = 296894, + [SMALL_STATE(5906)] = 296914, + [SMALL_STATE(5907)] = 296934, + [SMALL_STATE(5908)] = 296954, + [SMALL_STATE(5909)] = 296972, + [SMALL_STATE(5910)] = 296992, + [SMALL_STATE(5911)] = 297012, + [SMALL_STATE(5912)] = 297032, + [SMALL_STATE(5913)] = 297052, + [SMALL_STATE(5914)] = 297072, + [SMALL_STATE(5915)] = 297092, + [SMALL_STATE(5916)] = 297112, + [SMALL_STATE(5917)] = 297132, + [SMALL_STATE(5918)] = 297152, + [SMALL_STATE(5919)] = 297172, + [SMALL_STATE(5920)] = 297192, + [SMALL_STATE(5921)] = 297212, + [SMALL_STATE(5922)] = 297232, + [SMALL_STATE(5923)] = 297252, + [SMALL_STATE(5924)] = 297272, + [SMALL_STATE(5925)] = 297292, + [SMALL_STATE(5926)] = 297312, + [SMALL_STATE(5927)] = 297332, + [SMALL_STATE(5928)] = 297352, + [SMALL_STATE(5929)] = 297372, + [SMALL_STATE(5930)] = 297392, + [SMALL_STATE(5931)] = 297412, + [SMALL_STATE(5932)] = 297432, + [SMALL_STATE(5933)] = 297452, + [SMALL_STATE(5934)] = 297472, + [SMALL_STATE(5935)] = 297492, + [SMALL_STATE(5936)] = 297510, + [SMALL_STATE(5937)] = 297530, + [SMALL_STATE(5938)] = 297550, + [SMALL_STATE(5939)] = 297570, + [SMALL_STATE(5940)] = 297590, + [SMALL_STATE(5941)] = 297610, + [SMALL_STATE(5942)] = 297628, + [SMALL_STATE(5943)] = 297646, + [SMALL_STATE(5944)] = 297666, + [SMALL_STATE(5945)] = 297686, + [SMALL_STATE(5946)] = 297706, + [SMALL_STATE(5947)] = 297726, + [SMALL_STATE(5948)] = 297746, + [SMALL_STATE(5949)] = 297766, + [SMALL_STATE(5950)] = 297786, + [SMALL_STATE(5951)] = 297806, + [SMALL_STATE(5952)] = 297826, + [SMALL_STATE(5953)] = 297846, + [SMALL_STATE(5954)] = 297866, + [SMALL_STATE(5955)] = 297886, + [SMALL_STATE(5956)] = 297906, + [SMALL_STATE(5957)] = 297926, + [SMALL_STATE(5958)] = 297946, + [SMALL_STATE(5959)] = 297966, + [SMALL_STATE(5960)] = 297986, + [SMALL_STATE(5961)] = 298006, + [SMALL_STATE(5962)] = 298026, + [SMALL_STATE(5963)] = 298046, + [SMALL_STATE(5964)] = 298066, + [SMALL_STATE(5965)] = 298086, + [SMALL_STATE(5966)] = 298106, + [SMALL_STATE(5967)] = 298126, + [SMALL_STATE(5968)] = 298146, + [SMALL_STATE(5969)] = 298166, + [SMALL_STATE(5970)] = 298186, + [SMALL_STATE(5971)] = 298206, + [SMALL_STATE(5972)] = 298226, + [SMALL_STATE(5973)] = 298244, + [SMALL_STATE(5974)] = 298264, + [SMALL_STATE(5975)] = 298284, + [SMALL_STATE(5976)] = 298302, + [SMALL_STATE(5977)] = 298322, + [SMALL_STATE(5978)] = 298342, + [SMALL_STATE(5979)] = 298362, + [SMALL_STATE(5980)] = 298382, + [SMALL_STATE(5981)] = 298402, + [SMALL_STATE(5982)] = 298422, + [SMALL_STATE(5983)] = 298442, + [SMALL_STATE(5984)] = 298462, + [SMALL_STATE(5985)] = 298482, + [SMALL_STATE(5986)] = 298502, + [SMALL_STATE(5987)] = 298522, + [SMALL_STATE(5988)] = 298542, + [SMALL_STATE(5989)] = 298562, + [SMALL_STATE(5990)] = 298582, + [SMALL_STATE(5991)] = 298602, + [SMALL_STATE(5992)] = 298622, + [SMALL_STATE(5993)] = 298642, + [SMALL_STATE(5994)] = 298662, + [SMALL_STATE(5995)] = 298682, + [SMALL_STATE(5996)] = 298702, + [SMALL_STATE(5997)] = 298722, + [SMALL_STATE(5998)] = 298742, + [SMALL_STATE(5999)] = 298762, + [SMALL_STATE(6000)] = 298782, + [SMALL_STATE(6001)] = 298802, + [SMALL_STATE(6002)] = 298822, + [SMALL_STATE(6003)] = 298840, + [SMALL_STATE(6004)] = 298858, + [SMALL_STATE(6005)] = 298878, + [SMALL_STATE(6006)] = 298896, + [SMALL_STATE(6007)] = 298916, + [SMALL_STATE(6008)] = 298936, + [SMALL_STATE(6009)] = 298956, + [SMALL_STATE(6010)] = 298976, + [SMALL_STATE(6011)] = 298996, + [SMALL_STATE(6012)] = 299016, + [SMALL_STATE(6013)] = 299036, + [SMALL_STATE(6014)] = 299056, + [SMALL_STATE(6015)] = 299076, + [SMALL_STATE(6016)] = 299096, + [SMALL_STATE(6017)] = 299116, + [SMALL_STATE(6018)] = 299136, + [SMALL_STATE(6019)] = 299156, + [SMALL_STATE(6020)] = 299176, + [SMALL_STATE(6021)] = 299196, + [SMALL_STATE(6022)] = 299216, + [SMALL_STATE(6023)] = 299236, + [SMALL_STATE(6024)] = 299256, + [SMALL_STATE(6025)] = 299276, + [SMALL_STATE(6026)] = 299296, + [SMALL_STATE(6027)] = 299316, + [SMALL_STATE(6028)] = 299336, + [SMALL_STATE(6029)] = 299356, + [SMALL_STATE(6030)] = 299374, + [SMALL_STATE(6031)] = 299394, + [SMALL_STATE(6032)] = 299414, + [SMALL_STATE(6033)] = 299434, + [SMALL_STATE(6034)] = 299454, + [SMALL_STATE(6035)] = 299472, + [SMALL_STATE(6036)] = 299490, + [SMALL_STATE(6037)] = 299510, + [SMALL_STATE(6038)] = 299530, + [SMALL_STATE(6039)] = 299548, + [SMALL_STATE(6040)] = 299568, + [SMALL_STATE(6041)] = 299588, + [SMALL_STATE(6042)] = 299606, + [SMALL_STATE(6043)] = 299624, + [SMALL_STATE(6044)] = 299644, + [SMALL_STATE(6045)] = 299664, + [SMALL_STATE(6046)] = 299682, + [SMALL_STATE(6047)] = 299702, + [SMALL_STATE(6048)] = 299722, + [SMALL_STATE(6049)] = 299742, + [SMALL_STATE(6050)] = 299762, + [SMALL_STATE(6051)] = 299782, + [SMALL_STATE(6052)] = 299802, + [SMALL_STATE(6053)] = 299822, + [SMALL_STATE(6054)] = 299842, + [SMALL_STATE(6055)] = 299862, + [SMALL_STATE(6056)] = 299882, + [SMALL_STATE(6057)] = 299902, + [SMALL_STATE(6058)] = 299920, + [SMALL_STATE(6059)] = 299940, + [SMALL_STATE(6060)] = 299960, + [SMALL_STATE(6061)] = 299980, + [SMALL_STATE(6062)] = 300000, + [SMALL_STATE(6063)] = 300020, + [SMALL_STATE(6064)] = 300040, + [SMALL_STATE(6065)] = 300060, + [SMALL_STATE(6066)] = 300080, + [SMALL_STATE(6067)] = 300100, + [SMALL_STATE(6068)] = 300120, + [SMALL_STATE(6069)] = 300140, + [SMALL_STATE(6070)] = 300160, + [SMALL_STATE(6071)] = 300180, + [SMALL_STATE(6072)] = 300200, + [SMALL_STATE(6073)] = 300220, + [SMALL_STATE(6074)] = 300238, + [SMALL_STATE(6075)] = 300258, + [SMALL_STATE(6076)] = 300278, + [SMALL_STATE(6077)] = 300296, + [SMALL_STATE(6078)] = 300316, + [SMALL_STATE(6079)] = 300336, + [SMALL_STATE(6080)] = 300356, + [SMALL_STATE(6081)] = 300376, + [SMALL_STATE(6082)] = 300396, + [SMALL_STATE(6083)] = 300416, + [SMALL_STATE(6084)] = 300436, + [SMALL_STATE(6085)] = 300456, + [SMALL_STATE(6086)] = 300476, + [SMALL_STATE(6087)] = 300496, + [SMALL_STATE(6088)] = 300516, + [SMALL_STATE(6089)] = 300536, + [SMALL_STATE(6090)] = 300556, + [SMALL_STATE(6091)] = 300576, + [SMALL_STATE(6092)] = 300596, + [SMALL_STATE(6093)] = 300616, + [SMALL_STATE(6094)] = 300636, + [SMALL_STATE(6095)] = 300656, + [SMALL_STATE(6096)] = 300676, + [SMALL_STATE(6097)] = 300696, + [SMALL_STATE(6098)] = 300716, + [SMALL_STATE(6099)] = 300734, + [SMALL_STATE(6100)] = 300754, + [SMALL_STATE(6101)] = 300774, + [SMALL_STATE(6102)] = 300794, + [SMALL_STATE(6103)] = 300814, + [SMALL_STATE(6104)] = 300834, + [SMALL_STATE(6105)] = 300854, + [SMALL_STATE(6106)] = 300874, + [SMALL_STATE(6107)] = 300894, + [SMALL_STATE(6108)] = 300914, + [SMALL_STATE(6109)] = 300934, + [SMALL_STATE(6110)] = 300954, + [SMALL_STATE(6111)] = 300974, + [SMALL_STATE(6112)] = 300994, + [SMALL_STATE(6113)] = 301014, + [SMALL_STATE(6114)] = 301034, + [SMALL_STATE(6115)] = 301054, + [SMALL_STATE(6116)] = 301074, + [SMALL_STATE(6117)] = 301094, + [SMALL_STATE(6118)] = 301114, + [SMALL_STATE(6119)] = 301134, + [SMALL_STATE(6120)] = 301154, + [SMALL_STATE(6121)] = 301174, + [SMALL_STATE(6122)] = 301194, + [SMALL_STATE(6123)] = 301214, + [SMALL_STATE(6124)] = 301234, + [SMALL_STATE(6125)] = 301254, + [SMALL_STATE(6126)] = 301274, + [SMALL_STATE(6127)] = 301294, + [SMALL_STATE(6128)] = 301314, + [SMALL_STATE(6129)] = 301334, + [SMALL_STATE(6130)] = 301354, + [SMALL_STATE(6131)] = 301374, + [SMALL_STATE(6132)] = 301394, + [SMALL_STATE(6133)] = 301414, + [SMALL_STATE(6134)] = 301434, + [SMALL_STATE(6135)] = 301454, + [SMALL_STATE(6136)] = 301474, + [SMALL_STATE(6137)] = 301494, + [SMALL_STATE(6138)] = 301514, + [SMALL_STATE(6139)] = 301534, + [SMALL_STATE(6140)] = 301551, + [SMALL_STATE(6141)] = 301568, + [SMALL_STATE(6142)] = 301585, + [SMALL_STATE(6143)] = 301602, + [SMALL_STATE(6144)] = 301619, + [SMALL_STATE(6145)] = 301636, + [SMALL_STATE(6146)] = 301653, + [SMALL_STATE(6147)] = 301670, + [SMALL_STATE(6148)] = 301687, + [SMALL_STATE(6149)] = 301704, + [SMALL_STATE(6150)] = 301721, + [SMALL_STATE(6151)] = 301738, + [SMALL_STATE(6152)] = 301755, + [SMALL_STATE(6153)] = 301772, + [SMALL_STATE(6154)] = 301789, + [SMALL_STATE(6155)] = 301806, + [SMALL_STATE(6156)] = 301823, + [SMALL_STATE(6157)] = 301840, + [SMALL_STATE(6158)] = 301857, + [SMALL_STATE(6159)] = 301874, + [SMALL_STATE(6160)] = 301891, + [SMALL_STATE(6161)] = 301908, + [SMALL_STATE(6162)] = 301925, + [SMALL_STATE(6163)] = 301942, + [SMALL_STATE(6164)] = 301959, + [SMALL_STATE(6165)] = 301976, + [SMALL_STATE(6166)] = 301993, + [SMALL_STATE(6167)] = 302010, + [SMALL_STATE(6168)] = 302027, + [SMALL_STATE(6169)] = 302044, + [SMALL_STATE(6170)] = 302061, + [SMALL_STATE(6171)] = 302078, + [SMALL_STATE(6172)] = 302095, + [SMALL_STATE(6173)] = 302112, + [SMALL_STATE(6174)] = 302129, + [SMALL_STATE(6175)] = 302146, + [SMALL_STATE(6176)] = 302163, + [SMALL_STATE(6177)] = 302180, + [SMALL_STATE(6178)] = 302197, + [SMALL_STATE(6179)] = 302214, + [SMALL_STATE(6180)] = 302231, + [SMALL_STATE(6181)] = 302248, + [SMALL_STATE(6182)] = 302265, + [SMALL_STATE(6183)] = 302282, + [SMALL_STATE(6184)] = 302299, + [SMALL_STATE(6185)] = 302316, + [SMALL_STATE(6186)] = 302333, + [SMALL_STATE(6187)] = 302350, + [SMALL_STATE(6188)] = 302367, + [SMALL_STATE(6189)] = 302384, + [SMALL_STATE(6190)] = 302401, + [SMALL_STATE(6191)] = 302418, + [SMALL_STATE(6192)] = 302435, + [SMALL_STATE(6193)] = 302452, + [SMALL_STATE(6194)] = 302469, + [SMALL_STATE(6195)] = 302486, + [SMALL_STATE(6196)] = 302503, + [SMALL_STATE(6197)] = 302520, + [SMALL_STATE(6198)] = 302537, + [SMALL_STATE(6199)] = 302554, + [SMALL_STATE(6200)] = 302571, + [SMALL_STATE(6201)] = 302588, + [SMALL_STATE(6202)] = 302605, + [SMALL_STATE(6203)] = 302622, + [SMALL_STATE(6204)] = 302639, + [SMALL_STATE(6205)] = 302656, + [SMALL_STATE(6206)] = 302673, + [SMALL_STATE(6207)] = 302690, + [SMALL_STATE(6208)] = 302707, + [SMALL_STATE(6209)] = 302724, + [SMALL_STATE(6210)] = 302741, + [SMALL_STATE(6211)] = 302758, + [SMALL_STATE(6212)] = 302775, + [SMALL_STATE(6213)] = 302792, + [SMALL_STATE(6214)] = 302809, + [SMALL_STATE(6215)] = 302826, + [SMALL_STATE(6216)] = 302843, + [SMALL_STATE(6217)] = 302860, + [SMALL_STATE(6218)] = 302877, + [SMALL_STATE(6219)] = 302894, + [SMALL_STATE(6220)] = 302911, + [SMALL_STATE(6221)] = 302928, + [SMALL_STATE(6222)] = 302945, + [SMALL_STATE(6223)] = 302962, + [SMALL_STATE(6224)] = 302979, + [SMALL_STATE(6225)] = 302996, + [SMALL_STATE(6226)] = 303013, + [SMALL_STATE(6227)] = 303030, + [SMALL_STATE(6228)] = 303047, + [SMALL_STATE(6229)] = 303064, + [SMALL_STATE(6230)] = 303081, + [SMALL_STATE(6231)] = 303098, + [SMALL_STATE(6232)] = 303115, + [SMALL_STATE(6233)] = 303132, + [SMALL_STATE(6234)] = 303149, + [SMALL_STATE(6235)] = 303166, + [SMALL_STATE(6236)] = 303183, + [SMALL_STATE(6237)] = 303200, + [SMALL_STATE(6238)] = 303217, + [SMALL_STATE(6239)] = 303234, + [SMALL_STATE(6240)] = 303251, + [SMALL_STATE(6241)] = 303268, + [SMALL_STATE(6242)] = 303285, + [SMALL_STATE(6243)] = 303302, + [SMALL_STATE(6244)] = 303319, + [SMALL_STATE(6245)] = 303336, + [SMALL_STATE(6246)] = 303353, + [SMALL_STATE(6247)] = 303370, + [SMALL_STATE(6248)] = 303387, + [SMALL_STATE(6249)] = 303404, + [SMALL_STATE(6250)] = 303421, + [SMALL_STATE(6251)] = 303438, + [SMALL_STATE(6252)] = 303455, + [SMALL_STATE(6253)] = 303472, + [SMALL_STATE(6254)] = 303489, + [SMALL_STATE(6255)] = 303506, + [SMALL_STATE(6256)] = 303523, + [SMALL_STATE(6257)] = 303540, + [SMALL_STATE(6258)] = 303557, + [SMALL_STATE(6259)] = 303574, + [SMALL_STATE(6260)] = 303591, + [SMALL_STATE(6261)] = 303608, + [SMALL_STATE(6262)] = 303625, + [SMALL_STATE(6263)] = 303642, + [SMALL_STATE(6264)] = 303659, + [SMALL_STATE(6265)] = 303676, + [SMALL_STATE(6266)] = 303693, + [SMALL_STATE(6267)] = 303710, + [SMALL_STATE(6268)] = 303727, + [SMALL_STATE(6269)] = 303744, + [SMALL_STATE(6270)] = 303761, + [SMALL_STATE(6271)] = 303778, + [SMALL_STATE(6272)] = 303795, + [SMALL_STATE(6273)] = 303812, + [SMALL_STATE(6274)] = 303829, + [SMALL_STATE(6275)] = 303846, + [SMALL_STATE(6276)] = 303863, + [SMALL_STATE(6277)] = 303880, + [SMALL_STATE(6278)] = 303897, + [SMALL_STATE(6279)] = 303914, + [SMALL_STATE(6280)] = 303931, + [SMALL_STATE(6281)] = 303948, + [SMALL_STATE(6282)] = 303965, + [SMALL_STATE(6283)] = 303982, + [SMALL_STATE(6284)] = 303999, + [SMALL_STATE(6285)] = 304016, + [SMALL_STATE(6286)] = 304033, + [SMALL_STATE(6287)] = 304050, + [SMALL_STATE(6288)] = 304067, + [SMALL_STATE(6289)] = 304084, + [SMALL_STATE(6290)] = 304101, + [SMALL_STATE(6291)] = 304118, + [SMALL_STATE(6292)] = 304135, + [SMALL_STATE(6293)] = 304152, + [SMALL_STATE(6294)] = 304169, + [SMALL_STATE(6295)] = 304186, + [SMALL_STATE(6296)] = 304203, + [SMALL_STATE(6297)] = 304220, + [SMALL_STATE(6298)] = 304237, + [SMALL_STATE(6299)] = 304254, + [SMALL_STATE(6300)] = 304271, + [SMALL_STATE(6301)] = 304288, + [SMALL_STATE(6302)] = 304305, + [SMALL_STATE(6303)] = 304322, + [SMALL_STATE(6304)] = 304339, + [SMALL_STATE(6305)] = 304356, + [SMALL_STATE(6306)] = 304373, + [SMALL_STATE(6307)] = 304390, + [SMALL_STATE(6308)] = 304407, + [SMALL_STATE(6309)] = 304424, + [SMALL_STATE(6310)] = 304441, + [SMALL_STATE(6311)] = 304458, + [SMALL_STATE(6312)] = 304475, + [SMALL_STATE(6313)] = 304492, + [SMALL_STATE(6314)] = 304509, + [SMALL_STATE(6315)] = 304526, + [SMALL_STATE(6316)] = 304543, + [SMALL_STATE(6317)] = 304560, + [SMALL_STATE(6318)] = 304577, + [SMALL_STATE(6319)] = 304594, + [SMALL_STATE(6320)] = 304611, + [SMALL_STATE(6321)] = 304628, + [SMALL_STATE(6322)] = 304645, + [SMALL_STATE(6323)] = 304662, + [SMALL_STATE(6324)] = 304679, + [SMALL_STATE(6325)] = 304696, + [SMALL_STATE(6326)] = 304713, + [SMALL_STATE(6327)] = 304730, + [SMALL_STATE(6328)] = 304747, + [SMALL_STATE(6329)] = 304764, + [SMALL_STATE(6330)] = 304781, + [SMALL_STATE(6331)] = 304798, + [SMALL_STATE(6332)] = 304815, + [SMALL_STATE(6333)] = 304832, + [SMALL_STATE(6334)] = 304849, + [SMALL_STATE(6335)] = 304866, + [SMALL_STATE(6336)] = 304883, + [SMALL_STATE(6337)] = 304900, + [SMALL_STATE(6338)] = 304917, + [SMALL_STATE(6339)] = 304934, + [SMALL_STATE(6340)] = 304951, + [SMALL_STATE(6341)] = 304968, + [SMALL_STATE(6342)] = 304985, + [SMALL_STATE(6343)] = 305002, + [SMALL_STATE(6344)] = 305019, + [SMALL_STATE(6345)] = 305036, + [SMALL_STATE(6346)] = 305053, + [SMALL_STATE(6347)] = 305070, + [SMALL_STATE(6348)] = 305087, + [SMALL_STATE(6349)] = 305104, + [SMALL_STATE(6350)] = 305121, + [SMALL_STATE(6351)] = 305138, + [SMALL_STATE(6352)] = 305155, + [SMALL_STATE(6353)] = 305172, + [SMALL_STATE(6354)] = 305189, + [SMALL_STATE(6355)] = 305206, + [SMALL_STATE(6356)] = 305223, + [SMALL_STATE(6357)] = 305240, + [SMALL_STATE(6358)] = 305257, + [SMALL_STATE(6359)] = 305274, + [SMALL_STATE(6360)] = 305291, + [SMALL_STATE(6361)] = 305308, + [SMALL_STATE(6362)] = 305325, + [SMALL_STATE(6363)] = 305342, + [SMALL_STATE(6364)] = 305359, + [SMALL_STATE(6365)] = 305376, + [SMALL_STATE(6366)] = 305393, + [SMALL_STATE(6367)] = 305410, + [SMALL_STATE(6368)] = 305427, + [SMALL_STATE(6369)] = 305444, + [SMALL_STATE(6370)] = 305461, + [SMALL_STATE(6371)] = 305478, + [SMALL_STATE(6372)] = 305495, + [SMALL_STATE(6373)] = 305512, + [SMALL_STATE(6374)] = 305529, + [SMALL_STATE(6375)] = 305546, + [SMALL_STATE(6376)] = 305563, + [SMALL_STATE(6377)] = 305578, + [SMALL_STATE(6378)] = 305595, + [SMALL_STATE(6379)] = 305612, + [SMALL_STATE(6380)] = 305629, + [SMALL_STATE(6381)] = 305646, + [SMALL_STATE(6382)] = 305663, + [SMALL_STATE(6383)] = 305680, + [SMALL_STATE(6384)] = 305697, + [SMALL_STATE(6385)] = 305714, + [SMALL_STATE(6386)] = 305731, + [SMALL_STATE(6387)] = 305748, + [SMALL_STATE(6388)] = 305765, + [SMALL_STATE(6389)] = 305782, + [SMALL_STATE(6390)] = 305799, + [SMALL_STATE(6391)] = 305816, + [SMALL_STATE(6392)] = 305833, + [SMALL_STATE(6393)] = 305850, + [SMALL_STATE(6394)] = 305867, + [SMALL_STATE(6395)] = 305884, + [SMALL_STATE(6396)] = 305901, + [SMALL_STATE(6397)] = 305918, + [SMALL_STATE(6398)] = 305935, + [SMALL_STATE(6399)] = 305952, + [SMALL_STATE(6400)] = 305969, + [SMALL_STATE(6401)] = 305986, + [SMALL_STATE(6402)] = 306003, + [SMALL_STATE(6403)] = 306020, + [SMALL_STATE(6404)] = 306037, + [SMALL_STATE(6405)] = 306054, + [SMALL_STATE(6406)] = 306071, + [SMALL_STATE(6407)] = 306088, + [SMALL_STATE(6408)] = 306105, + [SMALL_STATE(6409)] = 306122, + [SMALL_STATE(6410)] = 306139, + [SMALL_STATE(6411)] = 306156, + [SMALL_STATE(6412)] = 306173, + [SMALL_STATE(6413)] = 306190, + [SMALL_STATE(6414)] = 306207, + [SMALL_STATE(6415)] = 306224, + [SMALL_STATE(6416)] = 306241, + [SMALL_STATE(6417)] = 306258, + [SMALL_STATE(6418)] = 306275, + [SMALL_STATE(6419)] = 306292, + [SMALL_STATE(6420)] = 306309, + [SMALL_STATE(6421)] = 306326, + [SMALL_STATE(6422)] = 306343, + [SMALL_STATE(6423)] = 306360, + [SMALL_STATE(6424)] = 306377, + [SMALL_STATE(6425)] = 306394, + [SMALL_STATE(6426)] = 306411, + [SMALL_STATE(6427)] = 306428, + [SMALL_STATE(6428)] = 306445, + [SMALL_STATE(6429)] = 306462, + [SMALL_STATE(6430)] = 306479, + [SMALL_STATE(6431)] = 306496, + [SMALL_STATE(6432)] = 306513, + [SMALL_STATE(6433)] = 306530, + [SMALL_STATE(6434)] = 306547, + [SMALL_STATE(6435)] = 306564, + [SMALL_STATE(6436)] = 306581, + [SMALL_STATE(6437)] = 306598, + [SMALL_STATE(6438)] = 306615, + [SMALL_STATE(6439)] = 306632, + [SMALL_STATE(6440)] = 306649, + [SMALL_STATE(6441)] = 306666, + [SMALL_STATE(6442)] = 306683, + [SMALL_STATE(6443)] = 306700, + [SMALL_STATE(6444)] = 306717, + [SMALL_STATE(6445)] = 306734, + [SMALL_STATE(6446)] = 306751, + [SMALL_STATE(6447)] = 306768, + [SMALL_STATE(6448)] = 306785, + [SMALL_STATE(6449)] = 306802, + [SMALL_STATE(6450)] = 306819, + [SMALL_STATE(6451)] = 306836, + [SMALL_STATE(6452)] = 306853, + [SMALL_STATE(6453)] = 306870, + [SMALL_STATE(6454)] = 306887, + [SMALL_STATE(6455)] = 306904, + [SMALL_STATE(6456)] = 306921, + [SMALL_STATE(6457)] = 306938, + [SMALL_STATE(6458)] = 306955, + [SMALL_STATE(6459)] = 306972, + [SMALL_STATE(6460)] = 306989, + [SMALL_STATE(6461)] = 307006, + [SMALL_STATE(6462)] = 307023, + [SMALL_STATE(6463)] = 307040, + [SMALL_STATE(6464)] = 307057, + [SMALL_STATE(6465)] = 307074, + [SMALL_STATE(6466)] = 307091, + [SMALL_STATE(6467)] = 307108, + [SMALL_STATE(6468)] = 307125, + [SMALL_STATE(6469)] = 307142, + [SMALL_STATE(6470)] = 307159, + [SMALL_STATE(6471)] = 307176, + [SMALL_STATE(6472)] = 307193, + [SMALL_STATE(6473)] = 307210, + [SMALL_STATE(6474)] = 307227, + [SMALL_STATE(6475)] = 307244, + [SMALL_STATE(6476)] = 307261, + [SMALL_STATE(6477)] = 307278, + [SMALL_STATE(6478)] = 307295, + [SMALL_STATE(6479)] = 307312, + [SMALL_STATE(6480)] = 307329, + [SMALL_STATE(6481)] = 307346, + [SMALL_STATE(6482)] = 307363, + [SMALL_STATE(6483)] = 307380, + [SMALL_STATE(6484)] = 307397, + [SMALL_STATE(6485)] = 307414, + [SMALL_STATE(6486)] = 307431, + [SMALL_STATE(6487)] = 307448, + [SMALL_STATE(6488)] = 307465, + [SMALL_STATE(6489)] = 307482, + [SMALL_STATE(6490)] = 307499, + [SMALL_STATE(6491)] = 307516, + [SMALL_STATE(6492)] = 307533, + [SMALL_STATE(6493)] = 307550, + [SMALL_STATE(6494)] = 307567, + [SMALL_STATE(6495)] = 307584, + [SMALL_STATE(6496)] = 307601, + [SMALL_STATE(6497)] = 307618, + [SMALL_STATE(6498)] = 307635, + [SMALL_STATE(6499)] = 307652, + [SMALL_STATE(6500)] = 307669, + [SMALL_STATE(6501)] = 307686, + [SMALL_STATE(6502)] = 307703, + [SMALL_STATE(6503)] = 307720, + [SMALL_STATE(6504)] = 307737, + [SMALL_STATE(6505)] = 307754, + [SMALL_STATE(6506)] = 307771, + [SMALL_STATE(6507)] = 307788, + [SMALL_STATE(6508)] = 307805, + [SMALL_STATE(6509)] = 307822, + [SMALL_STATE(6510)] = 307839, + [SMALL_STATE(6511)] = 307856, + [SMALL_STATE(6512)] = 307873, + [SMALL_STATE(6513)] = 307890, + [SMALL_STATE(6514)] = 307907, + [SMALL_STATE(6515)] = 307924, + [SMALL_STATE(6516)] = 307941, + [SMALL_STATE(6517)] = 307958, + [SMALL_STATE(6518)] = 307975, + [SMALL_STATE(6519)] = 307992, + [SMALL_STATE(6520)] = 308009, + [SMALL_STATE(6521)] = 308026, + [SMALL_STATE(6522)] = 308043, + [SMALL_STATE(6523)] = 308060, + [SMALL_STATE(6524)] = 308077, + [SMALL_STATE(6525)] = 308094, + [SMALL_STATE(6526)] = 308111, + [SMALL_STATE(6527)] = 308128, + [SMALL_STATE(6528)] = 308145, + [SMALL_STATE(6529)] = 308162, + [SMALL_STATE(6530)] = 308179, + [SMALL_STATE(6531)] = 308196, + [SMALL_STATE(6532)] = 308213, + [SMALL_STATE(6533)] = 308230, + [SMALL_STATE(6534)] = 308247, + [SMALL_STATE(6535)] = 308264, + [SMALL_STATE(6536)] = 308281, + [SMALL_STATE(6537)] = 308298, + [SMALL_STATE(6538)] = 308315, + [SMALL_STATE(6539)] = 308332, + [SMALL_STATE(6540)] = 308349, + [SMALL_STATE(6541)] = 308366, + [SMALL_STATE(6542)] = 308383, + [SMALL_STATE(6543)] = 308400, + [SMALL_STATE(6544)] = 308417, + [SMALL_STATE(6545)] = 308434, + [SMALL_STATE(6546)] = 308451, + [SMALL_STATE(6547)] = 308468, + [SMALL_STATE(6548)] = 308485, + [SMALL_STATE(6549)] = 308502, + [SMALL_STATE(6550)] = 308519, + [SMALL_STATE(6551)] = 308536, + [SMALL_STATE(6552)] = 308553, + [SMALL_STATE(6553)] = 308570, + [SMALL_STATE(6554)] = 308587, + [SMALL_STATE(6555)] = 308604, + [SMALL_STATE(6556)] = 308621, + [SMALL_STATE(6557)] = 308638, + [SMALL_STATE(6558)] = 308655, + [SMALL_STATE(6559)] = 308672, + [SMALL_STATE(6560)] = 308689, + [SMALL_STATE(6561)] = 308706, + [SMALL_STATE(6562)] = 308723, + [SMALL_STATE(6563)] = 308740, + [SMALL_STATE(6564)] = 308757, + [SMALL_STATE(6565)] = 308774, + [SMALL_STATE(6566)] = 308791, + [SMALL_STATE(6567)] = 308808, + [SMALL_STATE(6568)] = 308825, + [SMALL_STATE(6569)] = 308842, + [SMALL_STATE(6570)] = 308859, + [SMALL_STATE(6571)] = 308876, + [SMALL_STATE(6572)] = 308893, + [SMALL_STATE(6573)] = 308910, + [SMALL_STATE(6574)] = 308927, + [SMALL_STATE(6575)] = 308944, + [SMALL_STATE(6576)] = 308961, + [SMALL_STATE(6577)] = 308978, + [SMALL_STATE(6578)] = 308995, + [SMALL_STATE(6579)] = 309012, + [SMALL_STATE(6580)] = 309029, + [SMALL_STATE(6581)] = 309046, + [SMALL_STATE(6582)] = 309063, + [SMALL_STATE(6583)] = 309080, + [SMALL_STATE(6584)] = 309097, + [SMALL_STATE(6585)] = 309114, + [SMALL_STATE(6586)] = 309131, + [SMALL_STATE(6587)] = 309148, + [SMALL_STATE(6588)] = 309165, + [SMALL_STATE(6589)] = 309182, + [SMALL_STATE(6590)] = 309199, + [SMALL_STATE(6591)] = 309216, + [SMALL_STATE(6592)] = 309233, + [SMALL_STATE(6593)] = 309250, + [SMALL_STATE(6594)] = 309267, + [SMALL_STATE(6595)] = 309284, + [SMALL_STATE(6596)] = 309301, + [SMALL_STATE(6597)] = 309318, + [SMALL_STATE(6598)] = 309335, + [SMALL_STATE(6599)] = 309352, + [SMALL_STATE(6600)] = 309369, + [SMALL_STATE(6601)] = 309386, + [SMALL_STATE(6602)] = 309403, + [SMALL_STATE(6603)] = 309420, + [SMALL_STATE(6604)] = 309437, + [SMALL_STATE(6605)] = 309454, + [SMALL_STATE(6606)] = 309471, + [SMALL_STATE(6607)] = 309488, + [SMALL_STATE(6608)] = 309505, + [SMALL_STATE(6609)] = 309522, + [SMALL_STATE(6610)] = 309539, + [SMALL_STATE(6611)] = 309556, + [SMALL_STATE(6612)] = 309573, + [SMALL_STATE(6613)] = 309590, + [SMALL_STATE(6614)] = 309607, + [SMALL_STATE(6615)] = 309624, + [SMALL_STATE(6616)] = 309641, + [SMALL_STATE(6617)] = 309658, + [SMALL_STATE(6618)] = 309675, + [SMALL_STATE(6619)] = 309692, + [SMALL_STATE(6620)] = 309709, + [SMALL_STATE(6621)] = 309726, + [SMALL_STATE(6622)] = 309743, + [SMALL_STATE(6623)] = 309760, + [SMALL_STATE(6624)] = 309777, + [SMALL_STATE(6625)] = 309794, + [SMALL_STATE(6626)] = 309811, + [SMALL_STATE(6627)] = 309828, + [SMALL_STATE(6628)] = 309845, + [SMALL_STATE(6629)] = 309862, + [SMALL_STATE(6630)] = 309879, + [SMALL_STATE(6631)] = 309896, + [SMALL_STATE(6632)] = 309913, + [SMALL_STATE(6633)] = 309930, + [SMALL_STATE(6634)] = 309947, + [SMALL_STATE(6635)] = 309964, + [SMALL_STATE(6636)] = 309981, + [SMALL_STATE(6637)] = 309998, + [SMALL_STATE(6638)] = 310015, + [SMALL_STATE(6639)] = 310032, + [SMALL_STATE(6640)] = 310049, + [SMALL_STATE(6641)] = 310066, + [SMALL_STATE(6642)] = 310083, + [SMALL_STATE(6643)] = 310100, + [SMALL_STATE(6644)] = 310117, + [SMALL_STATE(6645)] = 310134, + [SMALL_STATE(6646)] = 310151, + [SMALL_STATE(6647)] = 310168, + [SMALL_STATE(6648)] = 310185, + [SMALL_STATE(6649)] = 310202, + [SMALL_STATE(6650)] = 310219, + [SMALL_STATE(6651)] = 310236, + [SMALL_STATE(6652)] = 310253, + [SMALL_STATE(6653)] = 310270, + [SMALL_STATE(6654)] = 310287, + [SMALL_STATE(6655)] = 310304, + [SMALL_STATE(6656)] = 310321, + [SMALL_STATE(6657)] = 310338, + [SMALL_STATE(6658)] = 310355, + [SMALL_STATE(6659)] = 310372, + [SMALL_STATE(6660)] = 310389, + [SMALL_STATE(6661)] = 310406, + [SMALL_STATE(6662)] = 310423, + [SMALL_STATE(6663)] = 310440, + [SMALL_STATE(6664)] = 310457, + [SMALL_STATE(6665)] = 310474, + [SMALL_STATE(6666)] = 310491, + [SMALL_STATE(6667)] = 310508, + [SMALL_STATE(6668)] = 310525, + [SMALL_STATE(6669)] = 310542, + [SMALL_STATE(6670)] = 310559, + [SMALL_STATE(6671)] = 310576, + [SMALL_STATE(6672)] = 310593, + [SMALL_STATE(6673)] = 310610, + [SMALL_STATE(6674)] = 310627, + [SMALL_STATE(6675)] = 310644, + [SMALL_STATE(6676)] = 310661, + [SMALL_STATE(6677)] = 310678, + [SMALL_STATE(6678)] = 310695, + [SMALL_STATE(6679)] = 310712, + [SMALL_STATE(6680)] = 310729, + [SMALL_STATE(6681)] = 310746, + [SMALL_STATE(6682)] = 310763, + [SMALL_STATE(6683)] = 310780, + [SMALL_STATE(6684)] = 310797, + [SMALL_STATE(6685)] = 310814, + [SMALL_STATE(6686)] = 310831, + [SMALL_STATE(6687)] = 310848, + [SMALL_STATE(6688)] = 310865, + [SMALL_STATE(6689)] = 310882, + [SMALL_STATE(6690)] = 310899, + [SMALL_STATE(6691)] = 310916, + [SMALL_STATE(6692)] = 310933, + [SMALL_STATE(6693)] = 310950, + [SMALL_STATE(6694)] = 310967, + [SMALL_STATE(6695)] = 310984, + [SMALL_STATE(6696)] = 311001, + [SMALL_STATE(6697)] = 311018, + [SMALL_STATE(6698)] = 311035, + [SMALL_STATE(6699)] = 311052, + [SMALL_STATE(6700)] = 311069, + [SMALL_STATE(6701)] = 311086, + [SMALL_STATE(6702)] = 311103, + [SMALL_STATE(6703)] = 311120, + [SMALL_STATE(6704)] = 311137, + [SMALL_STATE(6705)] = 311154, + [SMALL_STATE(6706)] = 311171, + [SMALL_STATE(6707)] = 311188, + [SMALL_STATE(6708)] = 311205, + [SMALL_STATE(6709)] = 311222, + [SMALL_STATE(6710)] = 311239, + [SMALL_STATE(6711)] = 311256, + [SMALL_STATE(6712)] = 311273, + [SMALL_STATE(6713)] = 311290, + [SMALL_STATE(6714)] = 311307, + [SMALL_STATE(6715)] = 311324, + [SMALL_STATE(6716)] = 311341, + [SMALL_STATE(6717)] = 311358, + [SMALL_STATE(6718)] = 311375, + [SMALL_STATE(6719)] = 311392, + [SMALL_STATE(6720)] = 311409, + [SMALL_STATE(6721)] = 311426, + [SMALL_STATE(6722)] = 311443, + [SMALL_STATE(6723)] = 311460, + [SMALL_STATE(6724)] = 311477, + [SMALL_STATE(6725)] = 311494, + [SMALL_STATE(6726)] = 311511, + [SMALL_STATE(6727)] = 311528, + [SMALL_STATE(6728)] = 311545, + [SMALL_STATE(6729)] = 311562, + [SMALL_STATE(6730)] = 311579, + [SMALL_STATE(6731)] = 311596, + [SMALL_STATE(6732)] = 311613, + [SMALL_STATE(6733)] = 311630, + [SMALL_STATE(6734)] = 311647, + [SMALL_STATE(6735)] = 311664, + [SMALL_STATE(6736)] = 311681, + [SMALL_STATE(6737)] = 311698, + [SMALL_STATE(6738)] = 311715, + [SMALL_STATE(6739)] = 311732, + [SMALL_STATE(6740)] = 311749, + [SMALL_STATE(6741)] = 311766, + [SMALL_STATE(6742)] = 311783, + [SMALL_STATE(6743)] = 311800, + [SMALL_STATE(6744)] = 311817, + [SMALL_STATE(6745)] = 311834, + [SMALL_STATE(6746)] = 311851, + [SMALL_STATE(6747)] = 311866, + [SMALL_STATE(6748)] = 311883, + [SMALL_STATE(6749)] = 311900, + [SMALL_STATE(6750)] = 311917, + [SMALL_STATE(6751)] = 311934, + [SMALL_STATE(6752)] = 311951, + [SMALL_STATE(6753)] = 311968, + [SMALL_STATE(6754)] = 311985, + [SMALL_STATE(6755)] = 312002, + [SMALL_STATE(6756)] = 312019, + [SMALL_STATE(6757)] = 312036, + [SMALL_STATE(6758)] = 312053, + [SMALL_STATE(6759)] = 312070, + [SMALL_STATE(6760)] = 312087, + [SMALL_STATE(6761)] = 312104, + [SMALL_STATE(6762)] = 312121, + [SMALL_STATE(6763)] = 312138, + [SMALL_STATE(6764)] = 312155, + [SMALL_STATE(6765)] = 312172, + [SMALL_STATE(6766)] = 312189, + [SMALL_STATE(6767)] = 312206, + [SMALL_STATE(6768)] = 312223, + [SMALL_STATE(6769)] = 312240, + [SMALL_STATE(6770)] = 312257, + [SMALL_STATE(6771)] = 312274, + [SMALL_STATE(6772)] = 312291, + [SMALL_STATE(6773)] = 312308, + [SMALL_STATE(6774)] = 312325, + [SMALL_STATE(6775)] = 312342, + [SMALL_STATE(6776)] = 312359, + [SMALL_STATE(6777)] = 312376, + [SMALL_STATE(6778)] = 312393, + [SMALL_STATE(6779)] = 312408, + [SMALL_STATE(6780)] = 312425, + [SMALL_STATE(6781)] = 312442, + [SMALL_STATE(6782)] = 312459, + [SMALL_STATE(6783)] = 312476, + [SMALL_STATE(6784)] = 312493, + [SMALL_STATE(6785)] = 312510, + [SMALL_STATE(6786)] = 312527, + [SMALL_STATE(6787)] = 312544, + [SMALL_STATE(6788)] = 312561, + [SMALL_STATE(6789)] = 312578, + [SMALL_STATE(6790)] = 312595, + [SMALL_STATE(6791)] = 312612, + [SMALL_STATE(6792)] = 312629, + [SMALL_STATE(6793)] = 312646, + [SMALL_STATE(6794)] = 312663, + [SMALL_STATE(6795)] = 312680, + [SMALL_STATE(6796)] = 312697, + [SMALL_STATE(6797)] = 312714, + [SMALL_STATE(6798)] = 312731, + [SMALL_STATE(6799)] = 312748, + [SMALL_STATE(6800)] = 312765, + [SMALL_STATE(6801)] = 312782, + [SMALL_STATE(6802)] = 312799, + [SMALL_STATE(6803)] = 312816, + [SMALL_STATE(6804)] = 312833, + [SMALL_STATE(6805)] = 312850, + [SMALL_STATE(6806)] = 312867, + [SMALL_STATE(6807)] = 312884, + [SMALL_STATE(6808)] = 312901, + [SMALL_STATE(6809)] = 312918, + [SMALL_STATE(6810)] = 312935, + [SMALL_STATE(6811)] = 312952, + [SMALL_STATE(6812)] = 312969, + [SMALL_STATE(6813)] = 312986, + [SMALL_STATE(6814)] = 312990, + [SMALL_STATE(6815)] = 312994, + [SMALL_STATE(6816)] = 312998, + [SMALL_STATE(6817)] = 313002, }; 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(6597), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6701), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6705), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6811), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), [9] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_code, 0), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6688), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6687), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6679), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), - [63] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), - [69] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), - [83] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_minus_expressions, 1), - [85] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_minus_expressions, 1), - [87] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 9), - [89] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 9), - [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6194), - [94] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_access, 2, .production_id = 3), - [96] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_access, 2, .production_id = 3), - [98] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), - [100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), - [102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_expression, 2, .production_id = 8), - [104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_expression, 2, .production_id = 8), - [106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_expression, 4, .production_id = 22), - [108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_expression, 4, .production_id = 22), - [110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 9), - [112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 9), - [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6197), - [117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), - [119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_qualified_name_repeat1, 2), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5823), - [124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 6), - [126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 6), - [128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access, 2, .production_id = 3), - [130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access, 2, .production_id = 3), - [132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_literal, 1), - [134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_literal, 1), - [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), - [138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 2), - [140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_arguments, 2), - [142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 6), - [144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 6), - [146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 4), - [148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_arguments, 4), - [150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 3), - [152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_arguments, 3), - [154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 46), - [156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 46), - [158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 33), - [160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 33), - [162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 34), - [164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 34), - [166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 23), - [168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 23), - [170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 33), - [172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 33), - [174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 4, .production_id = 23), - [180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 4, .production_id = 23), - [182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4), - [184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4), - [186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 4), - [188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 4), - [190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, .production_id = 21), - [192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, .production_id = 21), - [194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 7, .production_id = 46), - [196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 7, .production_id = 46), - [198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 3), - [200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 3), - [202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 3), - [208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 3), - [210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decimal_literal, 3), - [212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__decimal_literal, 3), - [214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_expression, 1), - [216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_expression, 1), - [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_available_expression, 2), - [220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_available_expression, 2), - [222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 34), - [224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 34), - [226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 1), - [228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 1), - [230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 2), - [232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 2), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, .production_id = 2), - [242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, .production_id = 2), - [244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 2), - [246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 2), - [248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3), - [250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3), - [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(137), - [257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4682), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4809), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1545), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5235), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(361), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4685), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(564), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3140), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(6580), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(6377), - [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4794), - [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5472), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(538), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5619), - [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3158), - [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5134), - [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3938), - [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3927), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(6492), - [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5617), - [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(369), - [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5475), - [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5476), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1250), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4693), - [334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_code, 1), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_code_repeat1, 2), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(132), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4578), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4582), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1541), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5361), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(344), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4591), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(377), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3148), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(6688), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(6687), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4596), - [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5383), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(395), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5385), - [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3149), - [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5341), - [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3895), - [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3899), - [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(6679), - [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5393), - [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(429), - [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5394), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5396), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1253), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4625), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot_body, 1), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6377), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5619), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), - [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5475), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), - [470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 1), - [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 2), - [474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot_body, 2), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6515), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6140), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6472), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6316), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6390), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6381), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6554), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6598), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), - [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 2), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6565), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 3), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_clause, 2), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6557), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_clause, 3), - [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(142), - [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), - [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(5220), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(357), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(356), - [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(303), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(290), - [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(749), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(3660), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(594), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(595), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(596), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(597), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(598), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(605), - [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(227), - [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(5697), - [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(412), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(6557), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(3548), - [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(5236), - [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(342), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_column, 1, .production_id = 28), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sort_column, 1, .production_id = 28), - [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6105), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_expression, 3), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_expression, 3), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_locked_expression, 2), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_locked_expression, 2), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 4), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 6, .production_id = 45), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 6, .production_id = 45), - [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(180), - [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(5193), - [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(1004), - [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(1003), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(771), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(315), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(690), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(3605), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(586), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(585), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(584), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(583), - [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(582), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(581), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(334), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(5660), - [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(396), - [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(6565), - [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(3587), - [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(5123), - [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(976), - [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3), - [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3), - [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambiguous_expression, 2), - [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambiguous_expression, 2), - [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_expression, 2, .production_id = 7), - [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_expression, 2, .production_id = 7), - [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_current_changed_expression, 2), - [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_current_changed_expression, 2), - [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3), - [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3), - [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_expression, 2), - [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_expression, 2), - [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_expression, 3), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_expression, 3), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 3), - [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 3), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6559), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5707), - [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6106), - [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(320), - [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(5217), - [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(1124), - [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(1123), - [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(1101), - [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(301), - [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(735), - [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(3502), - [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(719), - [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(718), - [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(717), - [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(716), - [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(715), - [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(714), - [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(1057), - [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(5690), - [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(411), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), - [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(6089), - [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(6559), - [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(3563), - [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(5213), - [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(1135), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), - [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6151), - [1338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6153), - [1341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5659), - [1344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(213), - [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_expression, 1), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6678), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_expression, 1), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), - [1361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 13), SHIFT(214), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 13), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_expression, 3, .production_id = 13), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [1382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(253), - [1385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(5274), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), - [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(1098), - [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(1096), - [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(1038), - [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(255), - [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(755), - [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3518), - [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(512), - [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(519), - [1414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(520), - [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(521), - [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(522), - [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(535), - [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(1028), - [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(5450), - [1432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(537), - [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(6598), - [1438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3671), - [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(5179), - [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(1097), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(253), - [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(5274), - [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(1098), - [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(1096), - [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(1038), - [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(255), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), - [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(755), - [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(3518), - [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(512), - [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(519), - [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(520), - [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(521), - [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(522), - [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(535), - [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(1028), - [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(5450), - [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(537), - [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(6598), - [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(3671), - [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(5179), - [1515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(1097), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), - [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(317), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6618), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [1595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6330), - [1598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6331), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5540), - [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5423), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5692), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6430), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5732), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5638), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6571), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6567), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6563), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6561), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [2325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 13), SHIFT(346), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 1), - [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_literal_repeat1, 1), - [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_conditon, 1), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_conditon, 1), - [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_conditon, 3), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_conditon, 3), - [2342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(1033), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6652), - [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6226), - [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6227), - [2353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5760), - [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 1), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_abl_statement_repeat1, 1), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), - [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [2366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 13), SHIFT(1035), - [2369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6195), - [2372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6192), - [2375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5648), - [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(1037), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6646), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 13), SHIFT(1055), - [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_button_tuning, 2), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_button_tuning, 2), - [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6675), - [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 3), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 2), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6609), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 5), - [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_option, 2), - [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_option, 2), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6587), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6584), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_tuning, 2), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_tuning, 2), - [2556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6473), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, .production_id = 10), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [2591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5429), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 3), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5870), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6692), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6482), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6622), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 2), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 2), - [2634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 2), SHIFT_REPEAT(1483), - [2637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 2), SHIFT_REPEAT(1481), - [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 2), SHIFT_REPEAT(1493), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 5), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), - [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6635), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_tuning, 2), - [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_tuning, 2), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6526), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 10), - [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 10), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1), REDUCE(sym_if_statement, 4, .production_id = 10), - [2752] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__statement, 1), REDUCE(sym_if_statement, 4, .production_id = 10), SHIFT(70), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_to_phrase, 3), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 10), - [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 10), SHIFT(70), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 10), - [2769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1), REDUCE(sym_if_statement, 4, .production_id = 10), - [2772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1), SHIFT(67), - [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_statement, 5, .production_id = 60), - [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 10), SHIFT(67), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_tuning, 1), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [2784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(70), - [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_tuning, 1), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [2791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(67), - [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 10), SHIFT(67), - [2797] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__statement, 1), REDUCE(sym_if_statement, 4, .production_id = 10), SHIFT(67), - [2801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 10), SHIFT(70), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 1), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 2), - [2808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 2), SHIFT_REPEAT(5231), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_definition_repeat1, 2), - [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1), SHIFT(70), - [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_tuning, 1), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 5, .production_id = 60), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), - [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), - [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, .production_id = 4), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_tuning, 2, .production_id = 16), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_tuning, 2, .production_id = 16), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat1, 2), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_mode, 1), - [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6173), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), - [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), - [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), - [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6572), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6573), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), - [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6524), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 10, .production_id = 26), - [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 10, .production_id = 26), - [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 7), - [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 7), - [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 7, .production_id = 17), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 7), - [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 7, .production_id = 35), - [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 19), - [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_workfile_definition, 7, .production_id = 26), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 7, .production_id = 26), - [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 7, .production_id = 26), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 7, .production_id = 49), - [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 7, .production_id = 49), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 7, .production_id = 26), - [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 7, .production_id = 26), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 26), - [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 26), - [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_workfile_definition, 7, .production_id = 15), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 7, .production_id = 15), - [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 7, .production_id = 15), - [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 7, .production_id = 47), - [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 7, .production_id = 47), - [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_parameter_definition, 7, .production_id = 26), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 7, .production_id = 15), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 7, .production_id = 15), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 7), - [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 7), - [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 7, .production_id = 17), - [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 7, .production_id = 35), - [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 44), - [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_run_statement, 6, .production_id = 12), - [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 6, .production_id = 20), - [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 8, .production_id = 19), - [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 7, .production_id = 7), - [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 7, .production_id = 19), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 6, .production_id = 43), - [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 7, .production_id = 52), - [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_statement, 7), - [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prompt_for_statement, 7, .production_id = 31), - [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 7, .production_id = 43), - [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 7, .production_id = 20), - [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 7, .production_id = 53), - [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 44), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 8, .production_id = 15), - [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 8, .production_id = 15), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 8, .production_id = 15), - [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 8, .production_id = 15), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 8), - [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 8), - [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 6, .production_id = 11), - [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_statement, 6), - [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 6, .production_id = 19), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 6, .production_id = 7), - [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_terminator, 3), - [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 6), - [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 6, .production_id = 39), - [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 6, .production_id = 29), - [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 6), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 6, .production_id = 17), - [3089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 6, .production_id = 17), - [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 8, .production_id = 26), - [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 8, .production_id = 26), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 8, .production_id = 55), - [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 8, .production_id = 55), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 8, .production_id = 26), - [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 8, .production_id = 26), - [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_workfile_definition, 8, .production_id = 26), - [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 19), - [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 8), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 8), - [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 8), - [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 8, .production_id = 52), - [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 8, .production_id = 58), - [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 8, .production_id = 53), - [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 44), - [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 9, .production_id = 15), - [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 9, .production_id = 15), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 9, .production_id = 26), - [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 9, .production_id = 26), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 9, .production_id = 26), - [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 9, .production_id = 26), - [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 19), - [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 9), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 9), - [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_terminator, 3), - [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 9, .production_id = 58), - [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 44), - [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 9), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 10, .production_id = 15), - [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 10, .production_id = 15), - [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 19), - [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 10), - [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 44), - [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 10), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 11, .production_id = 15), - [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 11, .production_id = 15), - [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 11, .production_id = 26), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 11, .production_id = 26), - [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 6), - [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 6, .production_id = 35), - [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 19), - [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_workfile_definition, 6, .production_id = 26), - [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 6, .production_id = 26), - [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 6, .production_id = 26), - [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_button_definition, 6, .production_id = 26), - [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_workfile_definition, 6, .production_id = 15), - [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 6, .production_id = 15), - [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 6, .production_id = 15), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 6, .production_id = 36), - [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 6, .production_id = 36), - [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 6, .production_id = 15), - [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 6, .production_id = 15), - [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_parameter_definition, 6, .production_id = 26), - [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 6, .production_id = 15), - [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 6, .production_id = 15), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 6), - [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 6), - [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 6, .production_id = 17), - [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 6, .production_id = 35), - [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 19), - [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_run_statement, 5, .production_id = 12), - [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 5, .production_id = 20), - [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 5, .production_id = 11), - [3217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prompt_for_statement, 5), - [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prompt_for_statement, 5, .production_id = 31), - [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 5), - [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 44), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 12, .production_id = 26), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 12, .production_id = 26), - [3229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 19), - [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 44), - [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 19), - [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 44), - [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 5, .production_id = 19), - [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 5, .production_id = 7), - [3241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 19), - [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 44), - [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 44), - [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2), - [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 5), - [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5, .production_id = 30), - [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5, .production_id = 29), - [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 5), - [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5), - [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 5, .production_id = 17), - [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 5, .production_id = 17), - [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 5), - [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__procedure_terminator, 3), - [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 5), - [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 5, .production_id = 14), - [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 5, .production_id = 25), - [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 5, .production_id = 24), - [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 19), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_workfile_definition, 5, .production_id = 26), - [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_button_definition, 5, .production_id = 26), - [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_button_definition, 5, .production_id = 15), - [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_workfile_definition, 5, .production_id = 15), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 5, .production_id = 15), - [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 5, .production_id = 15), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 5), - [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 5), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 5, .production_id = 17), - [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 5, .production_id = 25), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 5, .production_id = 24), - [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 5, .production_id = 14), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), - [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_run_statement, 4, .production_id = 12), - [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 4, .production_id = 20), - [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 4, .production_id = 11), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 4), - [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 4), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 4, .production_id = 19), - [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 4, .production_id = 7), - [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4), - [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_terminator, 1), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 4), - [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 4), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 4, .production_id = 17), - [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_terminator, 1), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 4), - [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 4), - [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1), - [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 4, .production_id = 14), - [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_button_definition, 4, .production_id = 15), - [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_workfile_definition, 4, .production_id = 15), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_definition, 4), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 4), - [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 4), - [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 4, .production_id = 14), - [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6245), - [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_run_statement, 3, .production_id = 12), - [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 3, .production_id = 11), - [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prompt_for_statement, 3), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_scope_statement, 3), - [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 3), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 3, .production_id = 7), - [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 3), - [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 3), - [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 3), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), - [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 3), - [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_terminator, 2), - [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 3), - [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 3), - [3394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abl_statement, 3, .production_id = 1), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), - [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_statement, 2), - [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_statement, 2), - [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 2), - [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 2), - [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 2), - [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abl_statement, 2, .production_id = 1), - [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stream_statement, 1), - [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 44), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 44), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 19), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 44), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 19), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 44), - [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 19), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 44), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 19), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 10), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 44), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 10), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 19), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 9), - [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 44), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 9, .production_id = 58), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 9), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 9), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 19), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 44), - [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 8, .production_id = 53), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 8, .production_id = 58), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 8, .production_id = 52), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 8, .production_id = 19), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 8), - [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 8), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 8), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 19), - [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_definition, 8, .production_id = 26), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 44), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 7, .production_id = 53), - [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 7, .production_id = 20), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 7, .production_id = 43), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prompt_for_statement, 7, .production_id = 31), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_statement, 7), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 7, .production_id = 52), - [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 7, .production_id = 19), - [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 7, .production_id = 7), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 7), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 7), - [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 7, .production_id = 17), - [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 7), - [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 7, .production_id = 35), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 19), - [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_definition, 7, .production_id = 26), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_definition, 7, .production_id = 15), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_parameter_definition, 7, .production_id = 26), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 7, .production_id = 17), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 7, .production_id = 35), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 44), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_statement, 6, .production_id = 12), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 6, .production_id = 20), - [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 6, .production_id = 43), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 6, .production_id = 11), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_statement, 6), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 6, .production_id = 19), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 6, .production_id = 7), - [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_terminator, 3), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 6), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 6, .production_id = 39), - [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 6, .production_id = 29), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 6), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 6, .production_id = 17), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 6, .production_id = 17), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_terminator, 3), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 6), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 6, .production_id = 35), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 19), - [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_definition, 6, .production_id = 26), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_button_definition, 6, .production_id = 26), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_definition, 6, .production_id = 15), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_parameter_definition, 6, .production_id = 26), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 6, .production_id = 17), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stream_statement, 1), - [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abl_statement, 2, .production_id = 1), - [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 6, .production_id = 35), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_statement, 5, .production_id = 12), - [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 5, .production_id = 20), - [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_phrase, 2, .production_id = 10), - [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 5, .production_id = 11), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prompt_for_statement, 5), - [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prompt_for_statement, 5, .production_id = 31), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 2), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 2), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 5), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 5, .production_id = 19), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 5, .production_id = 7), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 2), - [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_statement, 2), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 5), - [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 4, .production_id = 32), - [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5, .production_id = 30), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5), - [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5, .production_id = 29), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 5), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5), - [3636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6258), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 5, .production_id = 17), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), - [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abl_statement, 3, .production_id = 1), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 3), - [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 3), - [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_terminator, 2), - [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 3), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 5, .production_id = 17), - [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 5), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__procedure_terminator, 3), - [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 3), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 3), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 3), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 3, .production_id = 7), - [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 3), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_scope_statement, 3), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prompt_for_statement, 3), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 5), - [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 1), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sort_clause_repeat1, 1), - [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 3, .production_id = 11), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_statement, 3, .production_id = 12), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1), - [3689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6301), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 5, .production_id = 14), - [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 5, .production_id = 25), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 5, .production_id = 24), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 19), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_definition, 5, .production_id = 26), - [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 1), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_definition_repeat1, 1), - [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_tuning, 2), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_tuning, 2), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_order, 1), - [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sort_order, 1), - [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 4, .production_id = 14), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_definition, 4), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_definition, 4, .production_id = 15), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_button_definition, 4, .production_id = 15), - [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 4, .production_id = 14), - [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_column, 2, .production_id = 28), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sort_column, 2, .production_id = 28), - [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 2), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 4), - [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 4), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_terminator, 1), - [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 4, .production_id = 17), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 4), - [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 4), - [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_terminator, 1), - [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 4, .production_id = 7), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 4, .production_id = 19), - [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 4), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 4), - [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 4, .production_id = 11), - [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 4, .production_id = 20), - [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_statement, 4, .production_id = 12), - [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_button_definition, 5, .production_id = 26), - [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 5, .production_id = 14), - [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 5, .production_id = 24), - [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 5, .production_id = 25), - [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 5, .production_id = 17), - [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_definition, 5, .production_id = 15), - [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_button_definition, 5, .production_id = 15), - [3774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 2), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_code_repeat1, 1), - [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 1), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6207), - [3802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6351), - [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 4), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5825), - [3812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6399), - [3815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6698), - [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), - [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_on_statement_repeat1, 2), - [3830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5609), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stop_after_phrase, 2), - [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6302), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), - [3842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6262), - [3845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5773), - [3848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5572), - [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_argument, 1), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6663), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [3857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(2018), - [3860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(6422), - [3863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 13), SHIFT(2004), - [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6242), - [3869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(2486), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6562), - [3874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(2466), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6638), - [3879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(2458), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6628), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [3890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 13), SHIFT(2452), - [3893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 13), SHIFT(2462), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 1, .production_id = 27), - [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 2, .production_id = 37), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type, 2), - [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type, 2), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 13), SHIFT(2494), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [3989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5460), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5496), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_phrase, 3), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [4051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_phrase, 3), - [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6410), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [4114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(2541), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6593), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_tuning, 1), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 2), - [4129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6352), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 1), - [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_when_branch_repeat1, 1), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [4142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(2713), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6588), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [4223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 13), SHIFT(2763), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [4230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 13), SHIFT(2565), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6230), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), - [4275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(6322), - [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(5681), - [4281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(5112), - [4284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(5112), - [4287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(5113), - [4290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(5113), - [4293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(2996), - [4296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(3019), - [4299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(473), - [4302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(5114), - [4305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(2999), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6603), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_literal_repeat1, 2), - [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_operator, 1), - [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comparison_operator, 1), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), - [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1), - [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__additive_operator, 1), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__additive_operator, 1), - [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiplicative_operator, 1), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiplicative_operator, 1), - [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__logical_operator, 1), - [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__logical_operator, 1), - [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_aggregate, 1), - [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_aggregate, 1), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_tuning, 1), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), - [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), - [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_phrase, 7, .production_id = 61), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_phrase, 7, .production_id = 61), - [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_button_tuning, 1), - [4362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_button_tuning, 1), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 2, .production_id = 27), - [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 1), - [4378] = {.entry = {.count = 5, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_buffer_definition_repeat1, 1), REDUCE(aux_sym_property_definition_repeat1, 1), REDUCE(aux_sym_event_definition_repeat1, 1), SHIFT(2991), - [4384] = {.entry = {.count = 4, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_buffer_definition_repeat1, 1), REDUCE(aux_sym_property_definition_repeat1, 1), REDUCE(aux_sym_event_definition_repeat1, 1), - [4389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_property_definition_repeat1, 1), - [4392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_definition_repeat1, 1), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), - [4396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 1), REDUCE(aux_sym_event_definition_repeat1, 1), - [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 1), - [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_event_definition_repeat1, 1), - [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 1), - [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_button_definition_repeat1, 1), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 3, .production_id = 37), - [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_phrase, 8), - [4411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_phrase, 8), - [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_size_phrase, 4, .production_id = 48), - [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_size_phrase, 4, .production_id = 48), - [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_phrase, 12, .production_id = 61), - [4419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_phrase, 12, .production_id = 61), - [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 4, .production_id = 37), - [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 3, .production_id = 27), - [4425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_serialization_tuning, 1), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_serialization_tuning, 1), - [4429] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_buffer_definition_repeat1, 1), REDUCE(aux_sym_workfile_definition_repeat1, 1), - [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat1, 1), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), - [4439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(3172), - [4442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(504), - [4445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(3120), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), - [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 5, .production_id = 37), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [4464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5784), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 4, .production_id = 27), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), - [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 1), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 6, .production_id = 37), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 5, .production_id = 27), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), - [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_field, 1, .production_id = 18), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), - [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), - [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), - [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6358), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6357), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6210), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6681), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), - [4563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(6380), - [4566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(940), - [4569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(940), - [4572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(5543), - [4575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(5150), - [4578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(3215), - [4581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), SHIFT_REPEAT(2991), - [4584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), SHIFT_REPEAT(2732), - [4587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), SHIFT_REPEAT(3209), - [4590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), SHIFT_REPEAT(3300), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), - [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3), - [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_field, 3, .production_id = 42), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 1), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using, 3), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), - [4625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1783), - [4628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1783), - [4631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1247), - [4634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3400), - [4637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3910), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), - [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6541), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), - [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6453), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [4672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(792), - [4675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(792), - [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_of, 2), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), - [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), - [4698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(2991), - [4701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(2732), - [4704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(3209), - [4707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_definition_repeat1, 2), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using, 2), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), - [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), - [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6671), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 1), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), - [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), - [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_using_repeat1, 2), - [4761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_using_repeat1, 2), SHIFT_REPEAT(4853), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7, .production_id = 26), - [4768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7, .production_id = 26), - [4770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 6, .production_id = 15), - [4772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 6, .production_id = 15), - [4774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), - [4776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(2732), - [4779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat3, 2), - [4781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(4546), - [4784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(4547), - [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 1), - [4789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_definition_repeat1, 1), - [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 6, .production_id = 26), - [4793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 6, .production_id = 26), - [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 5, .production_id = 15), - [4797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 5, .production_id = 15), - [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_option, 1), - [4801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_option, 1), - [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tuning, 1), - [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), - [4807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), SHIFT_REPEAT(3217), - [4810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), SHIFT_REPEAT(4741), - [4813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), SHIFT_REPEAT(6554), - [4816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_event_definition_repeat1, 2), SHIFT_REPEAT(2991), - [4819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_event_definition_repeat1, 2), SHIFT_REPEAT(2732), - [4822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_event_definition_repeat1, 2), SHIFT_REPEAT(3300), - [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_event_definition_repeat1, 2), - [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tuning, 2), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), - [4857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), SHIFT_REPEAT(3217), - [4860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), SHIFT_REPEAT(4741), - [4863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), SHIFT_REPEAT(752), - [4866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), SHIFT_REPEAT(6554), - [4869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), SHIFT_REPEAT(5504), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), - [4880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), SHIFT_REPEAT(2991), - [4883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), SHIFT_REPEAT(2732), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), - [4942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(770), - [4945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(770), - [4948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(5307), - [4951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(3350), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), - [4988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(4056), - [4991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(4066), - [4994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(4092), - [4997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(4569), - [5000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(4576), - [5003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(4100), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_type, 1), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [5026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5878), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [5031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat1, 2), SHIFT_REPEAT(2991), - [5034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat1, 2), SHIFT_REPEAT(2732), - [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat1, 2), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pre_tuning, 1), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [5077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_argument_with_mode, 2), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), - [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), - [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 3), - [5127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 3), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), - [5131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 3), - [5133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 3), - [5135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_tuning, 1), - [5137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_tuning, 1), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), - [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 1), - [5151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat2, 1), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [5155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 1), - [5157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat3, 1), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [5161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_run_statement_repeat1, 2), - [5163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_run_statement_repeat1, 2), SHIFT_REPEAT(6466), - [5166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_run_statement_repeat1, 2), SHIFT_REPEAT(6460), - [5169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_run_statement_repeat1, 2), SHIFT_REPEAT(5579), - [5172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_run_statement_repeat1, 2), SHIFT_REPEAT(3663), - [5175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_run_statement_repeat1, 2), SHIFT_REPEAT(5580), - [5178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), - [5180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), SHIFT_REPEAT(3753), - [5183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), SHIFT_REPEAT(3751), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), - [5190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 5), - [5192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 5), - [5194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 5), - [5196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 5), - [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 6), - [5200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 6), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), - [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 7), - [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 7), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [5216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 4), - [5218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 4), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 4), - [5224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 4), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [5244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 6), - [5246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 6), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [5250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 1), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [5256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 2), - [5258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 2), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [5262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 2), - [5264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 2), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [5268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6633), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [5275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 7), - [5277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 7), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [5301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 1), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [5307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), - [5309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(421), - [5312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(3761), - [5315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(3480), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [5340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_tuning, 3), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [5358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 4, .production_id = 26), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [5368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), - [5370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), SHIFT_REPEAT(685), - [5373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_definition_repeat2, 2), SHIFT_REPEAT(685), - [5376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), SHIFT_REPEAT(5259), - [5379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), SHIFT_REPEAT(3816), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [5430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_tuning, 2), - [5432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 17), - [5434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 3, .production_id = 15), - [5436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 4), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_tuning, 1), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [5456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_run_statement_repeat1, 1), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [5476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inherits, 2), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [5484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements, 2), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), - [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), - [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), - [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [5520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inherits_repeat1, 2), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [5526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_buffer_definition_repeat1, 1), - [5528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 6, .production_id = 27), - [5530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), - [5532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(2928), - [5535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(2928), - [5538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1247), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 1, .production_id = 4), - [5545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable, 1, .production_id = 4), - [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [5551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 1), - [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 7, .production_id = 37), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [5559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 1), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 1), - [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [5585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2), - [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [5609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), - [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), - [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), - [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), - [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 1), - [5625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_definition_repeat2, 1), - [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_tuning, 1), - [5629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_tuning, 1), - [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [5637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_tuning, 1), - [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), - [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), - [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), - [5647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_argument_with_mode, 3), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inherits, 3), - [5653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements, 3), - [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), - [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), - [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4983), - [5663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inherits_repeat1, 2), SHIFT_REPEAT(4608), - [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), - [5670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 2), - [5672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 2), SHIFT_REPEAT(4072), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [5677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [5683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), - [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6616), - [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), - [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6690), - [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 5, .production_id = 26), - [5715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_destructor_definition_repeat1, 2), - [5717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_destructor_definition_repeat1, 2), SHIFT_REPEAT(4351), - [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), - [5724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 5, .production_id = 15), - [5726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 3, .production_id = 4), - [5728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameter_repeat1, 2), - [5730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameter_repeat1, 2), SHIFT_REPEAT(3834), - [5733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameter_repeat1, 2), SHIFT_REPEAT(4349), - [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), - [5740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 3, .production_id = 17), - [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), - [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), - [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6704), - [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), - [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6640), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), - [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6174), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), - [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), - [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), - [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), - [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6705), - [5790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 2), SHIFT_REPEAT(4099), - [5793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 2), - [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [5801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 4), - [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), - [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), - [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6224), - [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), - [5837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 4, .production_id = 17), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [5855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_var_statement_repeat1, 2), SHIFT_REPEAT(3739), - [5858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_var_statement_repeat1, 2), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5014), - [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), - [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 4, .production_id = 15), - [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), - [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6531), - [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), - [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6281), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), - [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), - [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [5960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 6, .production_id = 26), - [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [5972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_include_repeat2, 2), SHIFT_REPEAT(4921), - [5975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 2), SHIFT_REPEAT(5222), - [5978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 2), - [5980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 2), SHIFT_REPEAT(4527), - [5983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 2), SHIFT_REPEAT(6640), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), - [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_to_phrase, 5), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [6014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), - [6016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), SHIFT_REPEAT(6288), - [6019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), SHIFT_REPEAT(314), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), - [6040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_serializable, 1), - [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_relation_repeat1, 2), - [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract, 1), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [6048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_tuning, 1), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [6054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat2, 2), - [6056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat2, 2), SHIFT_REPEAT(4512), - [6059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 1), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), - [6069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final, 1), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_widget_pool, 1), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), - [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 1), - [6083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_tuning, 1), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [6125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), SHIFT_REPEAT(4535), - [6128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), - [6130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), SHIFT_REPEAT(6547), - [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 7, .production_id = 56), - [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 7, .production_id = 30), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 6), - [6143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 6), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [6149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_destructor_definition_repeat1, 1), - [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 54), - [6153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 54), - [6155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 6), - [6157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 6), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 8), - [6163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 8), - [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 59), - [6167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 59), - [6169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 5), - [6171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 5), - [6173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 6), - [6175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 6), - [6177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 10), SHIFT(69), - [6180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 8), - [6182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 8), - [6184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 10), SHIFT(69), - [6187] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__statement, 1), REDUCE(sym_if_statement, 4, .production_id = 10), SHIFT(69), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [6193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(69), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [6202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 59), - [6204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 59), - [6206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 8), - [6208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 8), - [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 2), - [6212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(4845), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [6221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_definition, 8), - [6223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_definition, 8), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [6229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_phrase, 3), - [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6547), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [6235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_tuning, 2), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [6239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6, .production_id = 50), - [6241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6), - [6243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6, .production_id = 30), - [6245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 7), - [6247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 7), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [6259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), - [6261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), SHIFT_REPEAT(5130), - [6264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), SHIFT_REPEAT(5001), - [6267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat1, 2), SHIFT_REPEAT(813), - [6270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_relation_repeat1, 2), SHIFT_REPEAT(5736), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [6277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 7), - [6279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 7), - [6281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), - [6283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), - [6285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1), SHIFT(69), - [6288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 11), - [6290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 11), - [6292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_phrase, 2), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [6296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 54), - [6298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 54), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [6304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameter_repeat1, 1), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [6308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 5), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [6314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 10), - [6316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 10), - [6318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 54), - [6320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 54), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [6336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), - [6338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), SHIFT_REPEAT(6344), - [6341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), SHIFT_REPEAT(6501), - [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 7), - [6346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 7), - [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_definition, 7), - [6350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_definition, 7), - [6352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_argument_with_mode, 4), - [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_definition, 9), - [6356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_definition, 9), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [6360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 59), - [6362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 59), - [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_body, 2), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 9), - [6372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 9), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), - [6424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), - [6426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(5039), - [6429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(5039), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), - [6440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 2), - [6442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 2), SHIFT_REPEAT(202), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [6463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_statement_repeat1, 2), - [6465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_statement_repeat1, 2), SHIFT_REPEAT(4569), - [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), - [6470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 4), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), - [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 1), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [6492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 8, .production_id = 37), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [6500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 7, .production_id = 27), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), - [6510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_error_phrase, 5), - [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat2, 1), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 5), - [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 5, .production_id = 38), - [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), - [6522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 5), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6512), - [6532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_tuning, 1), - [6534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 2), - [6536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 2), SHIFT_REPEAT(6160), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), - [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), - [6559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5453), - [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), - [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), - [6566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_error_phrase, 6, .production_id = 30), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), - [6578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 6), - [6580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 6, .production_id = 50), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [6588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 1), - [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6685), - [6592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 6), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_fields, 3), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_repeat_statement_repeat1, 2), - [6620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_statement_repeat1, 2), SHIFT_REPEAT(6357), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), - [6651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_fields, 2), - [6653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 7), - [6655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter_mode, 1), - [6657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 7, .production_id = 57), - [6659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 2), - [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6522), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [6665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 7, .production_id = 56), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6513), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), - [6685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 7, .production_id = 30), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6363), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6529), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6520), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), - [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6623), - [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), - [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [6757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 4), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), - [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6178), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [6843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 1), - [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [6851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_repeat2, 1), - [6853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 1), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [6863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 5), - [6865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1, .production_id = 5), - [6867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1, .production_id = 5), - [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), - [6873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1), - [6875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1), - [6877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 3), - [6879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 3), - [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [6887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 1), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [6891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 6, .production_id = 50), - [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), - [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 6), - [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), - [6901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_stop_phrase, 6, .production_id = 30), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6486), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6477), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [6927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_tuning, 1), - [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), - [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), - [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), - [6967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_on_statement_repeat1, 2), SHIFT_REPEAT(495), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), - [6980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1, .production_id = 4), - [6982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1, .production_id = 4), - [6984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 1), - [6986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 1), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6551), - [6992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_type, 2, .production_id = 16), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [7000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 2), - [7002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 2), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [7012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 8, .production_id = 27), - [7014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat3, 2), - [7016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat3, 2), SHIFT_REPEAT(6610), - [7019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition_tuning, 1), - [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), - [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), - [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), - [7031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 1), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), - [7053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 1), - [7055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 1), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6440), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), - [7075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition_tuning, 2), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), - [7081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_stop_phrase, 5), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [7085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 9, .production_id = 37), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [7101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_branch_body, 1, .production_id = 1), - [7103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_branch_body, 1), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [7111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 1), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [7123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), - [7137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), - [7139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), SHIFT_REPEAT(3524), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [7150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), - [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), - [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6221), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), - [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), - [7214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), - [7216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4, .production_id = 4), - [7218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), - [7220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4376), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [7227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), - [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), - [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6517), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), - [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), - [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6514), - [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), - [7281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), - [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), - [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [7293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_tuning, 3), - [7295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_repeat_statement_repeat1, 1), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), - [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), - [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), - [7303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 1), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), - [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), - [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6353), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), - [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), - [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6332), - [7317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_var_statement_repeat1, 1), - [7319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_var_statement_repeat1, 1), - [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), - [7323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 1), - [7325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable, 1), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), - [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), - [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5696), - [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6268), - [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), - [7365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), - [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6199), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), - [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), - [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6669), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), - [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5713), - [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [7387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_when_branch, 3, .production_id = 40), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), - [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), - [7401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), - [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [7409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_arguments_repeat1, 2), SHIFT_REPEAT(178), - [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_arguments_repeat1, 2), - [7414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), - [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [7420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), - [7422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), SHIFT_REPEAT(3861), - [7425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), - [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), - [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), - [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), - [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), - [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), - [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), - [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [7449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_when_branch, 4, .production_id = 51), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6347), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), - [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), - [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6177), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), - [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [7491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 2), - [7493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(5301), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [7504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), - [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), - [7510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_fields_repeat1, 2), SHIFT_REPEAT(5401), - [7513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_fields_repeat1, 2), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), - [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), - [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6568), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6365), - [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4932), - [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), - [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), - [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6216), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [7591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 1), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [7601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4, .production_id = 4), - [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [7607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 9), SHIFT_REPEAT(6632), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), - [7620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [7624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), - [7626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), - [7634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), - [7636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [7640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4), - [7642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 1), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [7646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), - [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), - [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [7690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_fields_repeat1, 1), - [7692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_fields_repeat1, 1), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), - [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), - [7700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6538), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), - [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6495), - [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), - [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), - [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), - [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [7784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_statement_repeat1, 1), - [7786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_tuning, 1), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), - [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), - [7820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6385), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), - [7840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), - [7846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), - [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), - [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), - [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), - [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), - [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 10, .production_id = 37), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), - [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), - [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6680), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), - [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), - [7996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [8012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_argument_with_mode, 5), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), - [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6527), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), - [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), - [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6499), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [8044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), - [8054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [8058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), - [8076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), - [8084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat3, 1), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), - [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), - [8100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 9, .production_id = 27), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), - [8106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), - [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6273), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), - [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6209), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6797), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6796), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6788), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5475), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [65] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6811), + [71] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), + [85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_minus_expressions, 1), + [87] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_minus_expressions, 1), + [89] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_access, 2, .production_id = 3), + [91] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_access, 2, .production_id = 3), + [93] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), + [95] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), + [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6688), + [100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 6), + [102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 6), + [104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), + [106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), + [108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), + [110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_qualified_name_repeat1, 2), + [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5955), + [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 2), + [117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_arguments, 2), + [119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access, 2, .production_id = 3), + [121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access, 2, .production_id = 3), + [123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_expression, 4, .production_id = 23), + [125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_expression, 4, .production_id = 23), + [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), + [129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), + [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6533), + [134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_expression, 2, .production_id = 9), + [136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_expression, 2, .production_id = 9), + [138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 4), + [140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_arguments, 4), + [142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 3), + [144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_arguments, 3), + [146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, .production_id = 2), + [148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, .production_id = 2), + [150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_literal, 1), + [152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_literal, 1), + [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 2), + [158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 2), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 6), + [164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 6), + [166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4), + [168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4), + [170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_expression, 1), + [172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_expression, 1), + [174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 4, .production_id = 24), + [176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 4, .production_id = 24), + [178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 3), + [180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 3), + [182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, .production_id = 22), + [184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, .production_id = 22), + [186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 24), + [188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 24), + [190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 35), + [192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 35), + [194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 3), + [200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 3), + [202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decimal_literal, 3), + [204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__decimal_literal, 3), + [206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_available_expression, 2), + [212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_available_expression, 2), + [214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 34), + [216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 34), + [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 34), + [220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 34), + [222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 47), + [224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 47), + [226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 35), + [228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 35), + [230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 7, .production_id = 47), + [236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 7, .production_id = 47), + [238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 2), + [240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 2), + [242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 4), + [244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 4), + [246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 1), + [248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 1), + [250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_code, 1), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 1), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6632), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6486), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6758), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5696), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), + [306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_code_repeat1, 2), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(138), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4635), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4637), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5467), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1940), + [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5453), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(385), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4643), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(411), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3070), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(6797), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(6796), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4645), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5470), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(429), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5471), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3073), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4274), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4026), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3599), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(6788), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5474), + [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(452), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5475), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5476), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1276), + [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4284), + [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot_body, 1), + [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3), + [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(140), + [400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), + [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4713), + [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4690), + [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1631), + [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5411), + [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(349), + [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4715), + [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(626), + [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3078), + [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(6632), + [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(6486), + [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4688), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5575), + [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(558), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5703), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3089), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4304), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3996), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3601), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(6758), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5696), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(390), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5578), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(5579), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1275), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4395), + [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 2), + [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot_body, 2), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4940), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6195), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6624), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6678), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6396), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5653), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6757), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5121), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6280), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5999), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6490), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5711), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6567), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 2), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6673), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 3), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_clause, 3), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6665), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_clause, 2), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(146), + [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), + [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(5315), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(384), + [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(383), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(291), + [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(288), + [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(982), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(3471), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(609), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(610), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(611), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(612), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(613), + [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(614), + [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(234), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(5793), + [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(435), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(6665), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(3791), + [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(5294), + [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(356), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6774), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_column, 1, .production_id = 29), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sort_column, 1, .production_id = 29), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), + [1108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6203), + [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_locked_expression, 2), + [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_locked_expression, 2), + [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_expression, 3), + [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_expression, 3), + [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 3), + [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 3), + [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambiguous_expression, 2), + [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambiguous_expression, 2), + [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(182), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(5326), + [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(997), + [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(986), + [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(729), + [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(277), + [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(928), + [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(3443), + [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(550), + [1154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(549), + [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(548), + [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(547), + [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(546), + [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(545), + [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(348), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(5757), + [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(428), + [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(6673), + [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(3816), + [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(5197), + [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(993), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_expression, 2, .production_id = 8), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_expression, 2, .production_id = 8), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_expression, 3), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_expression, 3), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_expression, 2), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_expression, 2), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 6, .production_id = 46), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 6, .production_id = 46), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_current_changed_expression, 2), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_current_changed_expression, 2), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 4), + [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(364), + [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(5319), + [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(1141), + [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(1140), + [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(1094), + [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(286), + [1238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(968), + [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(3403), + [1244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(683), + [1247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(682), + [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(681), + [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(679), + [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(677), + [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(676), + [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(1081), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(5782), + [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(434), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(6217), + [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(6667), + [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(3797), + [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(5270), + [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_when_branch_repeat1, 2), SHIFT_REPEAT(1132), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6667), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [1336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5927), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [1341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6314), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), + [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5821), + [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(259), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_expression, 1), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6736), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_expression, 1), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [1362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6162), + [1365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6202), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(265), + [1373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(5381), + [1376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(1107), + [1379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(1108), + [1382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(1091), + [1385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(266), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), + [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(660), + [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(3417), + [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(559), + [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(623), + [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(574), + [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(575), + [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(576), + [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(578), + [1414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(1056), + [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(5572), + [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(579), + [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(6567), + [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(3744), + [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(5384), + [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_literal_repeat1, 2), SHIFT_REPEAT(1100), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(265), + [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(5381), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), + [1467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(1107), + [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(1108), + [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(1091), + [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(266), + [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(660), + [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3417), + [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(559), + [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(623), + [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(574), + [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(575), + [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(576), + [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(578), + [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(1056), + [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(5572), + [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(579), + [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(6567), + [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3744), + [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(5384), + [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(1100), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 14), SHIFT(258), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 14), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_expression, 3, .production_id = 14), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [1585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6344), + [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5571), + [1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6177), + [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(352), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6613), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [1683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5667), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5992), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6539), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6585), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6679), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6628), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6676), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6675), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6671), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6669), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), + [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5802), + [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [2338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 14), SHIFT(351), + [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_conditon, 1), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_conditon, 1), + [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_conditon, 3), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_conditon, 3), + [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_literal_repeat1, 1), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_literal_repeat1, 1), + [2355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6169), + [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [2360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(6099), + [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(1046), + [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6735), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [2370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6164), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 1), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_abl_statement_repeat1, 1), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [2379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 14), SHIFT(1053), + [2382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6156), + [2385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6161), + [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(1062), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6719), + [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5736), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), + [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 14), SHIFT(1071), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_button_tuning, 2), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_button_tuning, 2), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 3), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6664), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 5), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 2), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_option, 2), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_option, 2), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6644), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6642), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6700), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [2571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6489), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_tuning, 2), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_tuning, 2), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, .production_id = 11), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6636), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [2612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6465), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), + [2617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(6136), + [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5495), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 3), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6197), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), + [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 5), + [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), + [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 2), + [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 2), SHIFT_REPEAT(1529), + [2676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 2), SHIFT_REPEAT(1530), + [2679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 2), SHIFT_REPEAT(1502), + [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6692), + [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 2), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6805), + [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_tuning, 2), + [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_tuning, 2), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6171), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6670), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_statement, 5, .production_id = 61), + [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 11), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [2766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1), REDUCE(sym_if_statement, 4, .production_id = 11), + [2769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1), SHIFT(70), + [2772] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__statement, 1), REDUCE(sym_if_statement, 4, .production_id = 11), SHIFT(70), + [2776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 11), SHIFT(70), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 11), + [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 11), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [2787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(70), + [2790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 11), SHIFT(67), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 5, .production_id = 61), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 11), + [2797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 11), SHIFT(67), + [2800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 11), SHIFT(70), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6508), + [2805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1), REDUCE(sym_if_statement, 4, .production_id = 11), + [2808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1), SHIFT(67), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(67), + [2816] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__statement, 1), REDUCE(sym_if_statement, 4, .production_id = 11), SHIFT(67), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_tuning, 1), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, .production_id = 7), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 2), + [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 2), SHIFT_REPEAT(5301), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_definition_repeat1, 2), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_to_phrase, 3), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_mode, 1), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 1), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_tuning, 1), + [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_tuning, 1), + [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 5, .production_id = 26), + [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 6), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 7), + [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 7), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 7, .production_id = 18), + [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 7, .production_id = 36), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 45), + [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_run_statement, 6, .production_id = 13), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 6, .production_id = 21), + [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 6, .production_id = 44), + [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 6, .production_id = 12), + [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_statement, 6), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 6, .production_id = 20), + [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 6, .production_id = 8), + [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_terminator, 3), + [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 6), + [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 6, .production_id = 40), + [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 6, .production_id = 30), + [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 6), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 6, .production_id = 18), + [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 6, .production_id = 18), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_terminator, 3), + [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 6), + [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 6, .production_id = 36), + [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 20), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_workfile_definition, 6, .production_id = 27), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 6, .production_id = 27), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 6, .production_id = 27), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_button_definition, 6, .production_id = 27), + [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_workfile_definition, 6, .production_id = 16), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 6, .production_id = 16), + [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 6, .production_id = 16), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 6, .production_id = 37), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 6, .production_id = 37), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 6, .production_id = 16), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 6, .production_id = 16), + [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_parameter_definition, 6, .production_id = 27), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 6, .production_id = 16), + [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 6, .production_id = 16), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 6), + [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 6, .production_id = 18), + [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 6, .production_id = 36), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 7, .production_id = 27), + [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 7, .production_id = 27), + [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_run_statement, 5, .production_id = 13), + [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 5, .production_id = 21), + [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 5, .production_id = 12), + [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prompt_for_statement, 5), + [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prompt_for_statement, 5, .production_id = 32), + [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_parameter_definition, 7, .production_id = 27), + [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 5), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 7, .production_id = 48), + [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 7, .production_id = 48), + [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 5, .production_id = 20), + [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 7, .production_id = 16), + [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 7, .production_id = 16), + [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_workfile_definition, 7, .production_id = 16), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 27), + [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 27), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 5, .production_id = 8), + [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 20), + [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 7, .production_id = 50), + [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 7, .production_id = 50), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 7, .production_id = 27), + [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 7, .production_id = 27), + [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_workfile_definition, 7, .production_id = 27), + [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 20), + [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 7, .production_id = 36), + [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 5), + [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 7), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 7, .production_id = 18), + [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 7), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 7), + [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 7, .production_id = 8), + [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 7, .production_id = 20), + [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 7, .production_id = 53), + [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5, .production_id = 31), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5), + [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5, .production_id = 30), + [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 5), + [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5), + [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 5, .production_id = 18), + [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 5, .production_id = 18), + [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 5), + [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__procedure_terminator, 3), + [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 5), + [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_statement, 7), + [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prompt_for_statement, 7, .production_id = 32), + [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 5, .production_id = 15), + [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 7, .production_id = 44), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 7, .production_id = 21), + [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 7, .production_id = 54), + [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 45), + [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 8, .production_id = 16), + [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 8, .production_id = 16), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 8, .production_id = 16), + [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 8, .production_id = 16), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 8), + [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 8), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 8, .production_id = 27), + [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 8, .production_id = 27), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 8, .production_id = 27), + [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 8, .production_id = 27), + [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_workfile_definition, 8, .production_id = 27), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 20), + [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 8), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5524), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6495), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), + [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 8), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 8), + [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 8, .production_id = 20), + [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 8, .production_id = 53), + [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 8, .production_id = 59), + [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 8, .production_id = 54), + [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 45), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 9, .production_id = 16), + [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 9, .production_id = 16), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 9, .production_id = 27), + [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 9, .production_id = 27), + [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 5, .production_id = 25), + [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 20), + [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 9, .production_id = 27), + [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 9, .production_id = 27), + [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_workfile_definition, 5, .production_id = 27), + [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_button_definition, 5, .production_id = 27), + [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_button_definition, 5, .production_id = 16), + [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_workfile_definition, 5, .production_id = 16), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 5, .production_id = 16), + [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 5, .production_id = 16), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 5), + [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 5), + [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 5, .production_id = 18), + [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 5, .production_id = 26), + [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 5, .production_id = 25), + [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 5, .production_id = 15), + [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 20), + [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_run_statement, 4, .production_id = 13), + [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 4, .production_id = 21), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 4, .production_id = 12), + [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 4), + [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 4), + [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 4, .production_id = 20), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 4, .production_id = 8), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4), + [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_terminator, 1), + [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 9), + [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 4), + [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 9), + [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 9, .production_id = 59), + [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 45), + [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 9), + [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 4), + [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 4, .production_id = 18), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 10, .production_id = 16), + [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 10, .production_id = 16), + [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_terminator, 1), + [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 4), + [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 4), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 10, .production_id = 27), + [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 10, .production_id = 27), + [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 20), + [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 10), + [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 11, .production_id = 27), + [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 4, .production_id = 15), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 11, .production_id = 16), + [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 11, .production_id = 16), + [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_workfile_definition, 4, .production_id = 16), + [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_definition, 4), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 4), + [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 4), + [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 4, .production_id = 15), + [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat1, 2), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 7, .production_id = 36), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_run_statement, 3, .production_id = 13), + [3229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_statement, 3, .production_id = 12), + [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prompt_for_statement, 3), + [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_scope_statement, 3), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 3), + [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_button_definition, 4, .production_id = 16), + [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 3, .production_id = 8), + [3241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 3), + [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 3), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 11, .production_id = 27), + [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 3), + [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1), + [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1), + [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 45), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 12, .production_id = 27), + [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 12, .production_id = 27), + [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 20), + [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 45), + [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 3), + [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_terminator, 2), + [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 3), + [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 3), + [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abl_statement, 3, .production_id = 1), + [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 20), + [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 45), + [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 20), + [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 45), + [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 45), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6428), + [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6683), + [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_statement, 2), + [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 2), + [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 2), + [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 2), + [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5487), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6544), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6633), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), + [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 7, .production_id = 16), + [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 7, .production_id = 16), + [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abl_statement, 2, .production_id = 1), + [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stream_statement, 1), + [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 45), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 45), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 20), + [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 45), + [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 20), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 45), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 20), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 45), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 20), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 10), + [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 10), + [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 45), + [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 45), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 10), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 20), + [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 9), + [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_statement, 2), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 45), + [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 9, .production_id = 59), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 9), + [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 9), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 20), + [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 45), + [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 8, .production_id = 54), + [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 8, .production_id = 59), + [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 8, .production_id = 53), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 8, .production_id = 20), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 8), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 8), + [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 8), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 20), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_definition, 8, .production_id = 27), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 45), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 7, .production_id = 54), + [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 7, .production_id = 21), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 7, .production_id = 44), + [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prompt_for_statement, 7, .production_id = 32), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_statement, 7), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 4, .production_id = 15), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 7, .production_id = 53), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 7, .production_id = 20), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 7, .production_id = 8), + [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 7), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 7), + [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 7, .production_id = 18), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 7), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 20), + [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_definition, 7, .production_id = 27), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_definition, 7, .production_id = 16), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_parameter_definition, 7, .production_id = 27), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 7, .production_id = 18), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 7, .production_id = 36), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 45), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_statement, 6, .production_id = 13), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 6, .production_id = 21), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 6, .production_id = 44), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 6, .production_id = 12), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_statement, 6), + [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 6, .production_id = 20), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 6, .production_id = 8), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_terminator, 3), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 6), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 6, .production_id = 40), + [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 6, .production_id = 30), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 6), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 6, .production_id = 18), + [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 6, .production_id = 18), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_terminator, 3), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 6), + [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 6, .production_id = 36), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 20), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_definition, 6, .production_id = 27), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_button_definition, 6, .production_id = 27), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_definition, 6, .production_id = 16), + [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_parameter_definition, 6, .production_id = 27), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 6, .production_id = 18), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 6, .production_id = 36), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_statement, 5, .production_id = 13), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 5, .production_id = 21), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 5, .production_id = 12), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prompt_for_statement, 5), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prompt_for_statement, 5, .production_id = 32), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 5), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 5, .production_id = 20), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 5, .production_id = 8), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 5), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5, .production_id = 31), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5, .production_id = 30), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 5), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 5, .production_id = 18), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 5, .production_id = 18), + [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 5), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__procedure_terminator, 3), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 5), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 5, .production_id = 15), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 5, .production_id = 26), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 5, .production_id = 25), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 20), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_definition, 5, .production_id = 27), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_button_definition, 5, .production_id = 27), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_button_definition, 5, .production_id = 16), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_definition, 5, .production_id = 16), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 5, .production_id = 18), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 5, .production_id = 26), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 5, .production_id = 25), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 5, .production_id = 15), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_statement, 4, .production_id = 13), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stream_statement, 1), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abl_statement, 2, .production_id = 1), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 4, .production_id = 21), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 4, .production_id = 12), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 4), + [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 4), + [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 8, .production_id = 56), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 4, .production_id = 20), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 4, .production_id = 8), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_terminator, 1), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 4), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 2), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 2), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 2), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 4), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 4, .production_id = 18), + [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_terminator, 1), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 2), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_statement, 2), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 8, .production_id = 56), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6590), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [3660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6290), + [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_tuning, 2, .production_id = 17), + [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_tuning, 2, .production_id = 17), + [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 4), + [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 4), + [3671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6319), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 4, .production_id = 15), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_button_definition, 4, .production_id = 16), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_definition, 4, .production_id = 16), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_definition, 4), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6479), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6474), + [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abl_statement, 3, .production_id = 1), + [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 3), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 3), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_terminator, 2), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 3), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 3), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 3), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 3), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 3, .production_id = 8), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 3), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_scope_statement, 3), + [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prompt_for_statement, 3), + [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_statement, 3, .production_id = 12), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_statement, 3, .production_id = 13), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_tuning, 2), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_tuning, 2), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_code_repeat1, 1), + [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 1), + [3748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6463), + [3751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6409), + [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 2), + [3756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6296), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), + [3773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_column, 2, .production_id = 29), + [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sort_column, 2, .production_id = 29), + [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_order, 1), + [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sort_order, 1), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), + [3789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 1), + [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_definition_repeat1, 1), + [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 4, .production_id = 33), + [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_phrase, 2, .production_id = 11), + [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 1), + [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sort_clause_repeat1, 1), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_on_statement_repeat1, 2), + [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(6044), + [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5699), + [3837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(2507), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6712), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 7), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6210), + [3852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(2512), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6548), + [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6170), + [3860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(6105), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), + [3869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6309), + [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6684), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [3877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 14), SHIFT(2495), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6410), + [3885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(2604), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6645), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stop_after_phrase, 2), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5481), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [3899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(2528), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6653), + [3904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 14), SHIFT(2449), + [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5465), + [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_argument, 1), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), + [3918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(2547), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6699), + [3923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 14), SHIFT(2509), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6220), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5647), + [3937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6246), + [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6351), + [3943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(2452), + [3946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 1), SHIFT(6430), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 2), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type, 2), + [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type, 2), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [4093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 14), SHIFT(2559), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6798), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_phrase, 3), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), + [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_phrase, 3), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_tuning, 1), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), + [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 1, .production_id = 28), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6267), + [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 2, .production_id = 38), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [4152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_when_branch_repeat1, 1), + [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_when_branch_repeat1, 1), + [4198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 14), SHIFT(2623), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [4223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_input_expression, 3, .production_id = 14), SHIFT(2545), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6662), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6656), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_literal_repeat1, 2), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), + [4274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(6230), + [4277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(6061), + [4280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(5210), + [4283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(5210), + [4286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(5213), + [4289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(5213), + [4292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(3034), + [4295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(3066), + [4298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(485), + [4301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(5215), + [4304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 2), SHIFT_REPEAT(3036), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6626), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [4333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_aggregate, 1), + [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_aggregate, 1), + [4337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__logical_operator, 1), + [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__logical_operator, 1), + [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiplicative_operator, 1), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiplicative_operator, 1), + [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__additive_operator, 1), + [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__additive_operator, 1), + [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_operator, 1), + [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comparison_operator, 1), + [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), + [4355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), + [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6122), + [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_button_tuning, 1), + [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_button_tuning, 1), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), + [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_tuning, 1), + [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_phrase, 7, .production_id = 62), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), + [4385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_phrase, 7, .production_id = 62), + [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_size_phrase, 4, .production_id = 49), + [4389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_size_phrase, 4, .production_id = 49), + [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), + [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 1), + [4395] = {.entry = {.count = 5, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_buffer_definition_repeat1, 1), REDUCE(aux_sym_property_definition_repeat1, 1), REDUCE(aux_sym_event_definition_repeat1, 1), SHIFT(3047), + [4401] = {.entry = {.count = 4, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_buffer_definition_repeat1, 1), REDUCE(aux_sym_property_definition_repeat1, 1), REDUCE(aux_sym_event_definition_repeat1, 1), + [4406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_property_definition_repeat1, 1), + [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_definition_repeat1, 1), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), + [4413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 1), REDUCE(aux_sym_event_definition_repeat1, 1), + [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 1), + [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_event_definition_repeat1, 1), + [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 2, .production_id = 28), + [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_phrase, 8), + [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_phrase, 8), + [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_button_definition_repeat1, 1), + [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_button_definition_repeat1, 1), + [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 3, .production_id = 38), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_phrase, 12, .production_id = 62), + [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_phrase, 12, .production_id = 62), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 4, .production_id = 38), + [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6445), + [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6443), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4906), + [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6150), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6566), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6285), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 3, .production_id = 28), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6704), + [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_serialization_tuning, 1), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_serialization_tuning, 1), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 4, .production_id = 28), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 1), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 5, .production_id = 38), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [4492] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_buffer_definition_repeat1, 1), REDUCE(aux_sym_workfile_definition_repeat1, 1), + [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat1, 1), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 6, .production_id = 38), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), + [4518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(3243), + [4521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(516), + [4524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(3169), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), + [4529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5950), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 5, .production_id = 28), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [4552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3), + [4568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), SHIFT_REPEAT(3047), + [4571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), SHIFT_REPEAT(2765), + [4574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), SHIFT_REPEAT(3258), + [4577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), SHIFT_REPEAT(3308), + [4580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_field, 1, .production_id = 19), + [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), + [4592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(6806), + [4595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(845), + [4598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(845), + [4601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(5461), + [4604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(5400), + [4607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(3251), + [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_field, 3, .production_id = 43), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 1), + [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using, 3), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), + [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6562), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), + [4672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(3047), + [4675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(2765), + [4678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(3258), + [4681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_definition_repeat1, 2), + [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), + [4685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2401), + [4688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2401), + [4691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1269), + [4694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3402), + [4697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(4040), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6607), + [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 1), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_using_repeat1, 2), + [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_using_repeat1, 2), SHIFT_REPEAT(4922), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), + [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using, 2), + [4731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(754), + [4734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(754), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_of, 2), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), + [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6513), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6793), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6650), + [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_option, 1), + [4785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_option, 1), + [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 6, .production_id = 16), + [4789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 6, .production_id = 16), + [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 6, .production_id = 27), + [4793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 6, .production_id = 27), + [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 5, .production_id = 16), + [4797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 5, .production_id = 16), + [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), + [4801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(2765), + [4804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat3, 2), + [4806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(4559), + [4809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(4577), + [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 1), + [4814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_definition_repeat1, 1), + [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7, .production_id = 27), + [4818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7, .production_id = 27), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tuning, 1), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), + [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), + [4828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), SHIFT_REPEAT(3271), + [4831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), SHIFT_REPEAT(4795), + [4834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), SHIFT_REPEAT(6483), + [4837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_event_definition_repeat1, 2), SHIFT_REPEAT(3047), + [4840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_event_definition_repeat1, 2), SHIFT_REPEAT(2765), + [4843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_event_definition_repeat1, 2), SHIFT_REPEAT(3308), + [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_event_definition_repeat1, 2), + [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_argument_with_mode, 2), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tuning, 2), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), + [4888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(699), + [4891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(699), + [4894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(5303), + [4897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(3468), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_type, 1), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), + [4966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), SHIFT_REPEAT(3047), + [4969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), SHIFT_REPEAT(2765), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), + [4980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(4099), + [4983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(4054), + [4986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(4055), + [4989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(4689), + [4992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(4647), + [4995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(4072), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [5006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), + [5008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), SHIFT_REPEAT(3271), + [5011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), SHIFT_REPEAT(4795), + [5014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), SHIFT_REPEAT(706), + [5017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), SHIFT_REPEAT(6483), + [5020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), SHIFT_REPEAT(5711), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [5057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat1, 2), SHIFT_REPEAT(3047), + [5060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat1, 2), SHIFT_REPEAT(2765), + [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat1, 2), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [5069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable, 1, .production_id = 4), + [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pre_tuning, 1), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), + [5101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(6080), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), + [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), + [5164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), SHIFT_REPEAT(3844), + [5167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), SHIFT_REPEAT(3898), + [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), + [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), + [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), + [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 3), + [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 3), + [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 7), + [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 7), + [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 3), + [5212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 3), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [5228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 7), + [5230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 7), + [5232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 4), + [5234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 4), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), + [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [5242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 4), + [5244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 4), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [5252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 1), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [5256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 5), + [5258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 5), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [5268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 6), + [5270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 6), + [5272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_tuning, 1), + [5274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_tuning, 1), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 6), + [5280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 6), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 2), + [5286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 2), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [5290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 1), + [5292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat2, 1), + [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 1), + [5296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat3, 1), + [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_run_statement_repeat1, 2), + [5300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_run_statement_repeat1, 2), SHIFT_REPEAT(6437), + [5303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_run_statement_repeat1, 2), SHIFT_REPEAT(6447), + [5306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_run_statement_repeat1, 2), SHIFT_REPEAT(5975), + [5309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_run_statement_repeat1, 2), SHIFT_REPEAT(3618), + [5312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_run_statement_repeat1, 2), SHIFT_REPEAT(5826), + [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [5317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 2), + [5319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 2), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [5327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 5), + [5329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 5), + [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), + [5337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), + [5339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(432), + [5342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(3912), + [5345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(3560), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [5358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6315), + [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), + [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), + [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5095), + [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 1), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), + [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), + [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6265), + [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [5423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements, 2), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [5431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inherits, 2), + [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), + [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6584), + [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [5459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), + [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), + [5465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [5467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 3, .production_id = 16), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), + [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [5481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_run_statement_repeat1, 1), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [5487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_tuning, 1), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6802), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6193), + [5505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 18), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), + [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [5517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_var_statement_repeat1, 2), SHIFT_REPEAT(3363), + [5520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_var_statement_repeat1, 2), + [5522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_var_statement_repeat1, 2), SHIFT_REPEAT(5467), + [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [5527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 2), SHIFT_REPEAT(3875), + [5530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 2), + [5532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 2), SHIFT_REPEAT(5467), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [5551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 4), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), + [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6739), + [5573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 4, .production_id = 27), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6459), + [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [5597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), + [5599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), SHIFT_REPEAT(690), + [5602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_definition_repeat2, 2), SHIFT_REPEAT(690), + [5605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), SHIFT_REPEAT(5201), + [5608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), SHIFT_REPEAT(3959), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_tuning, 2), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [5637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_tuning, 3), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), + [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), + [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), + [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), + [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [5725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 1), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [5735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), + [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), + [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), + [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6182), + [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), + [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [5763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 1), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [5767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 6, .production_id = 28), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [5803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_buffer_definition_repeat1, 1), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [5807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), + [5809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(3013), + [5812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(3013), + [5815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1269), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inherits_repeat1, 2), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [5828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 1), + [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 7, .production_id = 38), + [5832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inherits_repeat1, 2), SHIFT_REPEAT(5136), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), + [5837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 2), + [5839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 2), SHIFT_REPEAT(4241), + [5842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements, 3), + [5844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inherits, 3), + [5846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_argument_with_mode, 3), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_tuning, 1), + [5852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_tuning, 1), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [5856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_tuning, 1), + [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 1), + [5860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_definition_repeat2, 1), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [5872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 5, .production_id = 27), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [5880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 4, .production_id = 18), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6214), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6554), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [5894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 4), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [5904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 4, .production_id = 16), + [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), + [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), + [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [5922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 6, .production_id = 27), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), + [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 5, .production_id = 16), + [5928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_include_repeat2, 2), SHIFT_REPEAT(4680), + [5931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 2), SHIFT_REPEAT(5190), + [5934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 2), + [5936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 2), SHIFT_REPEAT(4579), + [5939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 2), SHIFT_REPEAT(6706), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6814), + [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6706), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6815), + [5962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 3, .production_id = 18), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), + [5978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameter_repeat1, 2), + [5980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameter_repeat1, 2), SHIFT_REPEAT(3960), + [5983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameter_repeat1, 2), SHIFT_REPEAT(4300), + [5986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 3, .production_id = 4), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6817), + [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [6016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_destructor_definition_repeat1, 2), + [6018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_destructor_definition_repeat1, 2), SHIFT_REPEAT(4363), + [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6141), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [6025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract, 1), + [6027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final, 1), + [6029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat2, 2), + [6031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat2, 2), SHIFT_REPEAT(4614), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [6046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_widget_pool, 1), + [6048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 1), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), + [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_tuning, 1), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [6066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_serializable, 1), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [6128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_to_phrase, 5), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [6132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 1), + [6134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), + [6136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), SHIFT_REPEAT(6143), + [6139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), SHIFT_REPEAT(281), + [6142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_tuning, 1), + [6144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_relation_repeat1, 2), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_tuning, 2), + [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), + [6160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), + [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 55), + [6164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 55), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [6168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), + [6170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), SHIFT_REPEAT(6304), + [6173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), SHIFT_REPEAT(6145), + [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [6180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 5), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [6184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1), SHIFT(73), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [6199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 7), + [6201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 7), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6, .production_id = 51), + [6209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_destructor_definition_repeat1, 1), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [6213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_phrase, 3), + [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), + [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [6225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 7), + [6227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 7), + [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_definition, 7), + [6231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_definition, 7), + [6233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), SHIFT_REPEAT(4609), + [6236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), + [6238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), SHIFT_REPEAT(6497), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [6243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 2), + [6245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(4906), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6), + [6252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_relation_repeat1, 2), SHIFT_REPEAT(5897), + [6255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_phrase, 2), + [6257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 7, .production_id = 31), + [6259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 7, .production_id = 57), + [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [6263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5550), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 11), + [6272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 11), + [6274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 8), + [6276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 8), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [6280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_body, 2), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [6290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_definition, 8), + [6292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_definition, 8), + [6294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 6), + [6296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 6), + [6298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 7), + [6300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 7), + [6302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameter_repeat1, 1), + [6304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 60), + [6306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 60), + [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), + [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [6312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 5), + [6314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 5), + [6316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 8), + [6318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 8), + [6320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 55), + [6322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 55), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [6326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 60), + [6328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 60), + [6330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 8), + [6332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 8), + [6334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 6), + [6336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 6), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [6346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), + [6348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), SHIFT_REPEAT(5310), + [6351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), SHIFT_REPEAT(4840), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [6358] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__statement, 1), REDUCE(sym_if_statement, 4, .production_id = 11), SHIFT(73), + [6362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 11), SHIFT(73), + [6365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 6), + [6367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 6), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [6373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 11), SHIFT(73), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [6378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 10), + [6380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 10), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [6392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 9), + [6394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 9), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [6408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 60), + [6410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 60), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [6418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 55), + [6420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 55), + [6422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat1, 2), SHIFT_REPEAT(771), + [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [6427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_definition, 9), + [6429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_definition, 9), + [6431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_argument_with_mode, 4), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [6449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6, .production_id = 31), + [6451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(73), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [6460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 4), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 8, .production_id = 38), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 7, .production_id = 28), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6772), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [6548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 2), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6738), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [6568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_fields, 3), + [6570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_fields, 2), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), + [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [6588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_statement_repeat1, 2), + [6590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_statement_repeat1, 2), SHIFT_REPEAT(4689), + [6593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6729), + [6596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 7, .production_id = 58), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [6604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter_mode, 1), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [6608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 7), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [6612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_repeat_statement_repeat1, 2), + [6614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_statement_repeat1, 2), SHIFT_REPEAT(6443), + [6617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 2), + [6619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 2), SHIFT_REPEAT(6197), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), + [6630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_error_phrase, 6, .production_id = 31), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [6640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 1), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), + [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6517), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [6656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 1), + [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), + [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [6668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat2, 1), + [6670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workfile_tuning, 1), + [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [6674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 6), + [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [6678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_error_phrase, 5), + [6680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), + [6682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(5048), + [6685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(5048), + [6688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 6), + [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), + [6692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 5), + [6694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 6, .production_id = 51), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 2), + [6706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 2), SHIFT_REPEAT(211), + [6709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 5), + [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 5, .production_id = 39), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [6727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 3), + [6729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 3), + [6731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_repeat2, 1), + [6733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 1), + [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6462), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [6749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4, .production_id = 7), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), + [6759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1), + [6761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1), + [6763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 4), + [6765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat3, 2), + [6767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat3, 2), SHIFT_REPEAT(6718), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [6772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5505), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [6777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(6724), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [6788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1, .production_id = 4), + [6790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1, .production_id = 4), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), + [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), + [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6372), + [6816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition_tuning, 2), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6491), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6500), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), + [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6573), + [6862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 6, .production_id = 51), + [6864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 6), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), + [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), + [6872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_stop_phrase, 6, .production_id = 31), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), + [6880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_stop_phrase, 5), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [6910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 1), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6282), + [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), + [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5796), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [6968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 1), + [6970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition_tuning, 1), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [6978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 5), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [6982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_tuning, 1), + [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), + [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), + [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6277), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), + [6998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_on_statement_repeat1, 2), SHIFT_REPEAT(908), + [7001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 1), + [7003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable, 1), + [7005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 1), + [7007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 1), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [7011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_var_statement_repeat1, 1), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), + [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6638), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6629), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [7033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_type, 2, .production_id = 17), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6540), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [7061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1, .production_id = 5), + [7063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1, .production_id = 5), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), + [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6593), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [7077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 7, .production_id = 57), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [7085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 1), + [7087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 1), + [7089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 2), + [7091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 2), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [7105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 8, .production_id = 28), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [7109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 7, .production_id = 31), + [7111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 9, .production_id = 38), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [7121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 1), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6595), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [7173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 1), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), + [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), + [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6461), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6696), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), + [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), + [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6388), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), + [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), + [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6451), + [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), + [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [7273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), + [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [7291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_tuning, 3), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [7305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 1), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), + [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6062), + [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6759), + [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), + [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), + [7317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 1), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), + [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6640), + [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6589), + [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), + [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), + [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6469), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [7345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [7347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4311), + [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [7362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_fields_repeat1, 2), SHIFT_REPEAT(5988), + [7365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_fields_repeat1, 2), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), + [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), + [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), + [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), + [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6190), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), + [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [7385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), + [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6184), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), + [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), + [7401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_repeat_statement_repeat1, 1), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), + [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), + [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), + [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), + [7419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6397), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), + [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), + [7431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), + [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), + [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6468), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), + [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5732), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6505), + [7445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_when_branch, 4, .production_id = 52), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), + [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [7471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6385), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [7475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), SHIFT_REPEAT(3986), + [7478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), + [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6353), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [7488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), + [7490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(5979), + [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), + [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [7509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [7521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_branch_body, 1), + [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_when_branch, 3, .production_id = 41), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [7529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_branch_body, 1, .production_id = 1), + [7531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_arguments_repeat1, 2), SHIFT_REPEAT(181), + [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_arguments_repeat1, 2), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), + [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), + [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [7548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), + [7550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), SHIFT_REPEAT(3686), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6536), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), + [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), + [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), + [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), + [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), + [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), + [7651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 2), + [7653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(5436), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [7670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), + [7672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [7706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), + [7718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [7726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [7746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6647), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [7760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6604), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), + [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [7784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), + [7798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6559), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [7808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [7812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6384), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), + [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6510), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), + [7836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [7838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_argument_with_mode, 5), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), + [7844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_pass_type, 1), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), + [7852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6551), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [7866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6752), + [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [7890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), + [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), + [7938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), + [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_statement_repeat1, 1), + [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_tuning, 1), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), + [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), + [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), + [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), + [8008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [8042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [8050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), + [8054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6782), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), + [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6521), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [8076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), + [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6480), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), + [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6434), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), + [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6370), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), + [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6316), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6268), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), - [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6166), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), - [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), - [8168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), - [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), - [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), - [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), - [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), - [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [8256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [8282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), - [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), - [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [8358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_var_statement_repeat1, 2), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), - [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), - [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6161), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), - [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), - [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6605), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [8452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_pass_type, 1), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [8604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_body, 3), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), - [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), + [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), + [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [8168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), + [8188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6677), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), + [8206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), + [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6291), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), + [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [8258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4, .production_id = 7), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [8276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 9, .production_id = 28), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [8372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_fields_repeat1, 1), + [8374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_fields_repeat1, 1), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), + [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [8406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6478), + [8422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_workfile_definition_repeat3, 1), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), + [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6747), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), + [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6776), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [8500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), + [8526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 10, .production_id = 38), + [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), + [8534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), + [8538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [8542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), + [8548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), + [8556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [8566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [8676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 9), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), [8710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__find_type, 1), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [8830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 6), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [9054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_otherwise_branch, 2, .production_id = 41), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [9094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 7), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [9212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 8), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [9274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 9), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [9506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6703), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [9606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 1), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [9634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6706), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [9652] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [9704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6664), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [9708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), - [9710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 3), - [9712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 4), - [9714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), - [9716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 5), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [8720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_body, 3), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [8836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 8), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), + [9010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 7), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6786), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [9262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 6), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [9402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_otherwise_branch, 2, .production_id = 42), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), + [9558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6813), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), + [9636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 1), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), + [9672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [9702] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [9752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), + [9754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), + [9756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 5), + [9758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 3), + [9760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), + [9762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 4), }; #ifdef __cplusplus